/* ========== LANDING PAGE — RESET & VARS ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lp-bg: #09090b;
    --lp-surface: #18181b;
    --lp-surface-2: #27272a;
    --lp-border: #3f3f46;
    --lp-text: #fafafa;
    --lp-text-muted: #a1a1aa;
    --lp-accent: #c47d5a;
    --lp-accent-light: #e8c4b0;
    --lp-accent-dark: #a0614a;
    --lp-gradient-1: #c47d5a;
    --lp-gradient-2: #e88d67;
    --lp-gradient-3: #f5d5cb;
    --lp-success: #22c55e;
    --lp-radius: 16px;
    --lp-radius-sm: 8px;
    --lp-radius-xs: 6px;
    --lp-font-display: 'Playfair Display', Georgia, serif;
    --lp-font-body: 'Inter', -apple-system, sans-serif;
    --lp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--lp-font-body);
    background: var(--lp-bg);
    color: var(--lp-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== CONTAINERS ========== */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-container-sm {
    max-width: 800px;
}

/* ========== NAVBAR ========== */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--lp-transition);
}

.lp-nav.scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lp-border);
    padding: 12px 0;
}

.lp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lp-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-logo svg {
    color: var(--lp-accent);
}

.lp-nav-links {
    display: flex;
    gap: 32px;
}

.lp-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    transition: var(--lp-transition);
    position: relative;
}

.lp-nav-links a:hover {
    color: var(--lp-text);
}

.lp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lp-accent);
    transition: var(--lp-transition);
}

.lp-nav-links a:hover::after {
    width: 100%;
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.lp-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lp-text);
    transition: var(--lp-transition);
    border-radius: 2px;
}

/* ========== BUTTONS ========== */
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--lp-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--lp-transition);
    text-align: center;
    justify-content: center;
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 125, 90, 0.35);
}

.lp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--lp-text);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--lp-radius-sm);
    border: 1.5px solid var(--lp-border);
    cursor: pointer;
    transition: var(--lp-transition);
    text-align: center;
    justify-content: center;
}

.lp-btn-outline:hover {
    border-color: var(--lp-accent);
    color: var(--lp-accent);
    transform: translateY(-2px);
}

.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: transparent;
    color: var(--lp-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--lp-transition);
    border-radius: var(--lp-radius-sm);
}

.lp-btn-ghost:hover {
    color: var(--lp-text);
    background: var(--lp-surface);
}

.lp-btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.lp-btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.lp-btn-block {
    display: flex;
    width: 100%;
}

.lp-btn-white {
    background: #fff;
    color: var(--lp-accent-dark);
}

.lp-btn-white:hover {
    background: #f5f5f5;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ========== HERO ========== */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lp-hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196, 125, 90, 0.15) 0%, transparent 70%);
    animation: lp-float 15s ease-in-out infinite;
}

@keyframes lp-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 30px) scale(1.1); }
    66% { transform: translate(30px, -20px) scale(0.95); }
}

.lp-hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--lp-accent);
    margin-bottom: 24px;
    grid-column: 1;
}

.lp-hero h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    grid-column: 1;
}

.lp-gradient-text {
    background: linear-gradient(135deg, var(--lp-gradient-1), var(--lp-gradient-2), var(--lp-gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: 1.15rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    grid-column: 1;
}

.lp-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    grid-column: 1;
}

.lp-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    grid-column: 1;
}

.lp-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--lp-font-display);
}

.lp-stat span {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}

.lp-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--lp-border);
}

.lp-hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
}

/* ========== DEVICE MOCKUPS ========== */
.lp-device-group {
    position: relative;
    width: 100%;
    height: 500px;
}

.lp-device-frame {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    overflow: hidden;
    position: relative;
}

/* Desktop device */
.lp-device-desktop .lp-device-frame {
    border-radius: 12px;
}

.lp-device-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--lp-surface-2);
    border-bottom: 1px solid var(--lp-border);
}

.lp-dots {
    display: flex;
    gap: 6px;
}

.lp-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-dots span:nth-child(1) { background: #ef4444; }
.lp-dots span:nth-child(2) { background: #eab308; }
.lp-dots span:nth-child(3) { background: #22c55e; }

.lp-address-bar {
    flex: 1;
    padding: 5px 14px;
    background: var(--lp-bg);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--lp-text-muted);
}

.lp-device-screen {
    padding: 12px;
    background: #faf8f5;
}

/* Screen content mocks */
.lp-mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e4df;
}

.lp-mock-logo {
    width: 60px;
    height: 10px;
    background: #c47d5a;
    border-radius: 4px;
}

.lp-mock-links {
    display: flex;
    gap: 8px;
}

.lp-mock-links span {
    width: 30px;
    height: 6px;
    background: #d4d0cc;
    border-radius: 3px;
}

.lp-mock-hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lp-mock-hamburger span {
    width: 14px;
    height: 2px;
    background: #999;
    border-radius: 1px;
}

.lp-mock-hero {
    text-align: center;
    padding: 12px 0;
}

.lp-mock-title {
    width: 120px;
    height: 10px;
    background: #2d2d2d;
    border-radius: 4px;
    margin: 0 auto 6px;
}

.lp-mock-subtitle {
    width: 80px;
    height: 6px;
    background: #ccc;
    border-radius: 3px;
    margin: 0 auto;
}

.lp-mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.lp-mock-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.lp-mock-photo {
    aspect-ratio: 4/3;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* Desktop in hero */
.lp-device-group .lp-device-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    z-index: 1;
    animation: lp-device-float 6s ease-in-out infinite;
}

@keyframes lp-device-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Tablet in hero */
.lp-device-group .lp-device-tablet {
    position: absolute;
    bottom: 0;
    right: 15%;
    width: 30%;
    z-index: 2;
    animation: lp-device-float 6s ease-in-out infinite 1s;
}

.lp-device-tablet .lp-device-frame {
    border-radius: 14px;
    padding: 8px;
}

.lp-device-tablet .lp-device-screen {
    border-radius: 8px;
}

/* Phone in hero */
.lp-device-group .lp-device-phone {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 18%;
    min-width: 120px;
    z-index: 3;
    animation: lp-device-float 6s ease-in-out infinite 2s;
}

.lp-device-phone .lp-device-frame {
    border-radius: 20px;
    padding: 6px;
    background: #1a1a1a;
    border-color: #333;
}

.lp-device-notch {
    width: 40%;
    height: 14px;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lp-device-phone .lp-device-screen {
    border-radius: 14px;
    padding: 8px;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
}

.lp-mock-phone-photo {
    flex: 1;
    border-radius: 8px;
    min-height: 120px;
}

.lp-mock-phone-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 6px 0;
}

.lp-mock-heart,
.lp-mock-comment,
.lp-mock-share {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid #666;
}

.lp-mock-heart-active {
    background: #e74c6f;
    border-color: #e74c6f;
}

.lp-mock-phone-info {
    padding: 4px 0;
}

.lp-mock-title-sm {
    width: 60%;
    height: 6px;
    background: #555;
    border-radius: 3px;
    margin-bottom: 4px;
}

.lp-mock-subtitle-sm {
    width: 40%;
    height: 4px;
    background: #444;
    border-radius: 2px;
}

/* ========== SECTIONS ========== */
.lp-section {
    padding: 100px 0;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.lp-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(196, 125, 90, 0.1);
    color: var(--lp-accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-section-header h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.lp-section-header p {
    font-size: 1.1rem;
    color: var(--lp-text-muted);
    max-width: 550px;
    margin: 0 auto;
}

/* ========== FEATURES GRID ========== */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-feature-card {
    padding: 32px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    transition: var(--lp-transition);
}

.lp-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--lp-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lp-feature-card p {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

/* ========== SHOWCASE ========== */
.lp-showcase {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.lp-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--lp-text-muted);
    border: 1px solid var(--lp-border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--lp-transition);
    font-family: var(--lp-font-body);
}

.lp-tab:hover {
    color: var(--lp-text);
    border-color: var(--lp-text-muted);
}

.lp-tab.active {
    background: var(--lp-accent);
    color: #fff;
    border-color: var(--lp-accent);
}

.lp-showcase-display {
    display: flex;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.lp-showcase-screen {
    display: none;
    width: 100%;
    justify-content: center;
    animation: lp-fade-in 0.4s ease;
}

.lp-showcase-screen.active {
    display: flex;
}

@keyframes lp-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Showcase devices (larger than hero) */
.lp-showcase-device.lp-device-desktop {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.lp-showcase-device.lp-device-tablet {
    position: relative;
    width: 50%;
    max-width: 400px;
}

.lp-showcase-device.lp-phone-showcase {
    position: relative;
    width: 25%;
    max-width: 240px;
}

.lp-screen-showcase {
    min-height: 300px;
}

.lp-mock-hero-showcase {
    padding: 20px 0;
}

.lp-mock-title-lg {
    width: 200px;
    height: 14px;
}

.lp-mock-subtitle-lg {
    width: 140px;
    height: 8px;
}

.lp-mock-grid-showcase {
    gap: 8px;
}

.lp-mock-photo-lg {
    aspect-ratio: 4/3;
    border-radius: 6px;
}

.lp-mock-overlay {
    position: absolute;
    bottom: 6px;
    left: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-mock-heart-sm {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(231, 76, 111, 0.8);
}

.lp-mock-count {
    width: 16px;
    height: 5px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
}

.lp-mock-phone-photo-lg {
    min-height: 240px;
}

.lp-mock-tiktok-label {
    text-align: center;
    font-size: 0.6rem;
    color: var(--lp-accent);
    font-weight: 600;
    padding: 4px;
    background: rgba(196, 125, 90, 0.15);
    border-radius: 4px;
    margin-top: 4px;
}

/* ========== SHOWCASE — PERSONALISATION SPLIT ========== */
.lp-showcase-split {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

.lp-showcase-panel {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
}

.lp-panel-header {
    padding: 14px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--lp-border);
    color: var(--lp-accent);
}

.lp-panel-body { padding: 16px; }

.lp-config-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(63, 63, 70, 0.2);
}

.lp-config-row:last-child { border-bottom: none; }

.lp-config-label {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}

.lp-config-value {
    font-size: 0.78rem;
    font-weight: 600;
}

.lp-config-colors {
    display: flex;
    gap: 6px;
}

.lp-config-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--lp-border);
}

.lp-config-layouts {
    display: flex;
    gap: 6px;
}

.lp-config-layout {
    width: 36px;
    height: 28px;
    border: 1.5px solid var(--lp-border);
    border-radius: 4px;
    padding: 3px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
}

.lp-config-layout.active { border-color: var(--lp-accent); }

.lp-config-layout span {
    background: var(--lp-border);
    border-radius: 1px;
    height: 8px;
}

.lp-config-layout span.lp-full {
    grid-column: 1 / -1;
    height: 100%;
}

.lp-config-card-demo {
    width: 28px;
    height: 20px;
    border: 1.5px solid var(--lp-border);
    background: var(--lp-surface-2);
}

.lp-config-card-demo.active { border-color: var(--lp-accent); }

.lp-config-banner-preview {
    width: 80px;
    height: 24px;
    border-radius: 4px;
}

.lp-showcase-result {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-showcase-caption {
    text-align: center;
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    font-style: italic;
    margin-top: 12px;
}

/* ========== SHOWCASE — SCROLL INTERACTIVE ========== */
.lp-showcase-tiktok-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ---- iPhone Mockup (standalone) ---- */
.iphone-mock {
    width: 280px;
    position: relative;
    background: #1c1c1e;
    border-radius: 48px;
    padding: 14px;
    border: 3px solid #3a3a3c;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.iphone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #1c1c1e;
    border-radius: 0 0 16px 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-camera {
    width: 10px;
    height: 10px;
    background: #2c2c2e;
    border-radius: 50%;
    border: 1.5px solid #3a3a3c;
}

.iphone-screen {
    width: 100%;
    height: 540px;
    border-radius: 34px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #000;
    position: relative;
}

.iphone-screen::-webkit-scrollbar { display: none; }

.iphone-bar {
    width: 100px;
    height: 4px;
    background: #636366;
    border-radius: 2px;
    margin: 8px auto 0;
}

.lp-tiktok-slide {
    width: 100%;
    height: 100%;
    position: relative;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.lp-tiktok-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-tiktok-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    pointer-events: none;
}

.lp-tiktok-info {
    position: absolute;
    bottom: 40px;
    left: 14px;
    z-index: 2;
}

.lp-tiktok-title-text {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.lp-tiktok-badge-text {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.lp-tiktok-actions {
    position: absolute;
    right: 10px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
}

.lp-tiktok-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.lp-tiktok-action span {
    font-size: 0.6rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.lp-tiktok-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}

.lp-tiktok-heart-active {
    background: #e74c6f;
    border-color: #e74c6f;
}

.lp-tiktok-heart-icon {
    border-color: rgba(255,255,255,0.5);
}

.lp-tiktok-comment-icon { border-color: rgba(255,255,255,0.5); }
.lp-tiktok-share-icon { border-color: rgba(255,255,255,0.5); }

/* Scroll hint */
.lp-tiktok-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 20;
    animation: lp-bounce-hint 1.5s ease infinite;
    pointer-events: none;
    background: rgba(0,0,0,0.5);
    padding: 4px 12px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

@keyframes lp-bounce-hint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.lp-tiktok-scroll-hint.hidden { display: none; }

/* Description */
.lp-tiktok-desc h3 {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-tiktok-desc p {
    font-size: 0.95rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.lp-tiktok-try {
    color: var(--lp-accent) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.lp-tiktok-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-tiktok-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
}

.lp-tiktok-features svg { color: var(--lp-accent); flex-shrink: 0; }

/* ========== SHOWCASE — DASHBOARD ========== */
.lp-dash-sidebar {
    width: 60px;
    background: #1a1d27;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 300px;
    border-right: 1px solid #2e3347;
}

.lp-dash-logo {
    width: 32px;
    height: 8px;
    background: #6c63ff;
    border-radius: 4px;
    margin: 0 auto 12px;
}

.lp-dash-nav-item {
    width: 100%;
    height: 8px;
    background: #2e3347;
    border-radius: 4px;
}

.lp-dash-nav-item.active { background: #6c63ff; }

.lp-dash-content {
    flex: 1;
    padding: 16px;
}

.lp-dash-title {
    width: 120px;
    height: 12px;
    background: #333;
    border-radius: 4px;
    margin-bottom: 16px;
}

.lp-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.lp-dash-stat {
    background: #1a1d27;
    border: 1px solid #2e3347;
    border-radius: 8px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-dash-stat-num {
    width: 30px;
    height: 10px;
    background: #e4e6f0;
    border-radius: 3px;
}

.lp-dash-stat-label {
    width: 45px;
    height: 5px;
    background: #555;
    border-radius: 2px;
}

.lp-dash-table {
    background: #1a1d27;
    border: 1px solid #2e3347;
    border-radius: 8px;
    overflow: hidden;
}

.lp-dash-table-row {
    height: 20px;
    border-bottom: 1px solid #2e3347;
}

.lp-dash-table-row.header { background: #242836; }
.lp-dash-table-row:last-child { border-bottom: none; }

/* ========== SHOWCASE RESPONSIVE ========== */
@media (max-width: 968px) {
    .lp-showcase-split {
        grid-template-columns: 1fr;
    }
    .lp-showcase-tiktok-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 32px;
        text-align: center;
    }
    .lp-tiktok-features { align-items: center; }
}

@media (max-width: 640px) {
    .lp-showcase-panel { display: none; }
    .iphone-mock { width: 240px; border-radius: 40px; padding: 10px; }
    .iphone-screen { height: 440px; border-radius: 30px; }
    .iphone-notch { top: 10px; width: 76px; height: 22px; }
    .lp-showcase-tiktok-wrap { grid-template-columns: 1fr; }
}

/* ========== PRICING ========== */
.lp-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.lp-toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    cursor: pointer;
    transition: var(--lp-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-toggle-label.active {
    color: var(--lp-text);
}

.lp-save-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--lp-success);
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 100px;
}

.lp-toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--lp-surface-2);
    border: 1px solid var(--lp-border);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: var(--lp-transition);
}

.lp-toggle-switch:hover {
    border-color: var(--lp-accent);
}

.lp-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--lp-accent);
    border-radius: 50%;
    transition: var(--lp-transition);
}

.lp-toggle-switch.active .lp-toggle-knob {
    left: 25px;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.lp-price-card {
    padding: 36px 32px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    position: relative;
    transition: var(--lp-transition);
}

.lp-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lp-price-popular {
    border-color: var(--lp-accent);
    background: linear-gradient(180deg, rgba(196, 125, 90, 0.05) 0%, var(--lp-surface) 100%);
    transform: scale(1.05);
}

.lp-price-popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.lp-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.lp-price-header {
    margin-bottom: 24px;
}

.lp-price-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.lp-price-header p {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
}

.lp-price-amount {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.lp-price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--lp-font-display);
}

.lp-price-period {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
}

.lp-price-features {
    list-style: none;
    margin-bottom: 28px;
}

.lp-price-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(63, 63, 70, 0.3);
}

.lp-price-features li:last-child {
    border-bottom: none;
}

.lp-check::before,
.lp-cross::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-check::before {
    background: rgba(34, 197, 94, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 6l2 2 4-4' stroke='%2322c55e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.lp-cross::before {
    background: rgba(161, 161, 170, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M4 4l4 4M8 4l-4 4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.lp-cross {
    color: var(--lp-text-muted);
}

.lp-trial-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    margin-top: 10px;
}

/* Long term plans */
.lp-long-term {
    margin-top: 60px;
    text-align: center;
}

.lp-long-term h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--lp-text-muted);
}

.lp-long-term-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.lp-long-term-card {
    padding: 28px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    text-align: left;
}

.lp-lt-period {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-accent);
    background: rgba(196, 125, 90, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.lp-lt-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-lt-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-lt-row:last-child {
    border-bottom: none;
}

.lp-lt-row form {
    flex-shrink: 0;
}

.lp-lt-prices > div {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-lt-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    min-width: 60px;
}

.lp-lt-price {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--lp-font-display);
}

.lp-lt-save {
    font-size: 0.75rem;
    color: var(--lp-success);
    font-weight: 500;
}

/* ========== FAQ ========== */
.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-faq-item {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    overflow: hidden;
    transition: var(--lp-transition);
}

.lp-faq-item.open {
    border-color: var(--lp-accent);
}

.lp-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--lp-text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--lp-font-body);
    transition: var(--lp-transition);
}

.lp-faq-question:hover {
    color: var(--lp-accent);
}

.lp-faq-chevron {
    transition: var(--lp-transition);
    flex-shrink: 0;
    color: var(--lp-text-muted);
}

.lp-faq-item.open .lp-faq-chevron {
    transform: rotate(180deg);
    color: var(--lp-accent);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.lp-faq-item.open .lp-faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.lp-faq-answer p {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
}

/* ========== CTA FINAL ========== */
.lp-cta-final {
    background: linear-gradient(135deg, var(--lp-accent-dark), var(--lp-accent), var(--lp-gradient-2));
    text-align: center;
}

.lp-cta-content h2 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.lp-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FOOTER ========== */
.lp-footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--lp-border);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.lp-footer-brand p {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    margin-top: 12px;
    line-height: 1.6;
}

.lp-footer-brand .lp-logo {
    font-size: 1.2rem;
}

.lp-footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lp-text-muted);
}

.lp-footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    padding: 4px 0;
    transition: var(--lp-transition);
}

.lp-footer-col a:hover {
    color: var(--lp-accent);
}

.lp-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--lp-border);
    text-align: center;
}

.lp-footer-bottom p {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}

/* ========== SCROLL ANIMATIONS ========== */
.lp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-animate.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE — TABLET (<=968px) ========== */
@media (max-width: 968px) {
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(9, 9, 11, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--lp-border);
    }

    .lp-nav-links.open {
        display: flex;
    }

    .lp-nav-actions {
        display: none;
    }

    .lp-nav-links.open + .lp-nav-actions {
        display: flex;
        position: absolute;
        top: calc(100% + 140px);
        left: 0;
        right: 0;
        padding: 0 20px 20px;
        background: rgba(9, 9, 11, 0.95);
        backdrop-filter: blur(20px);
    }

    .lp-menu-toggle {
        display: flex;
    }

    .lp-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .lp-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .lp-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .lp-hero {
        padding: 100px 0 60px;
    }

    .lp-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-hero-badge {
        justify-self: center;
    }

    .lp-hero-subtitle {
        margin: 0 auto 32px;
    }

    .lp-hero-cta {
        justify-content: center;
    }

    .lp-hero-stats {
        justify-content: center;
    }

    .lp-hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 600px;
        margin: 40px auto 0;
    }

    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .lp-price-popular {
        transform: none;
    }

    .lp-price-popular:hover {
        transform: translateY(-4px);
    }

    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .lp-footer-brand {
        grid-column: 1 / -1;
    }
}

/* ========== RESPONSIVE — MOBILE (<=640px) ========== */
@media (max-width: 640px) {
    .lp-section {
        padding: 60px 0;
    }

    .lp-hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .lp-hero h1 {
        font-size: 2rem;
    }

    .lp-hero-subtitle {
        font-size: 1rem;
    }

    .lp-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .lp-hero-cta .lp-btn-lg {
        width: 100%;
    }

    .lp-hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .lp-stat-divider {
        width: 40px;
        height: 1px;
    }

    .lp-device-group {
        height: 300px;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .lp-feature-card {
        padding: 24px;
    }

    .lp-showcase-tabs {
        gap: 4px;
    }

    .lp-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .lp-long-term-grid {
        grid-template-columns: 1fr;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lp-btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .lp-nav-links.open + .lp-nav-actions {
        flex-direction: column;
    }
}

/* ========== MOBILE MENU OPEN — SHOW ACTIONS ========== */
.lp-nav.menu-open .lp-nav-actions {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lp-border);
    z-index: 10;
}

/* ========== NAV ACTIVE LINK ========== */
.lp-nav-active {
    color: var(--lp-accent) !important;
}

.lp-nav-active::after {
    width: 100% !important;
}

/* ========== CONTACT FORM ========== */
.lp-contact {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
}

.lp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lp-contact-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    margin-bottom: 6px;
}

.lp-contact-field input,
.lp-contact-field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    color: var(--lp-text);
    font-size: 0.9rem;
    font-family: var(--lp-font-body);
    transition: var(--lp-transition);
}

.lp-contact-field input:focus,
.lp-contact-field textarea:focus {
    outline: none;
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px rgba(196, 125, 90, 0.1);
}

.lp-contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.lp-contact-success {
    text-align: center;
    padding: 48px 24px;
}

.lp-contact-success svg {
    color: var(--lp-success);
    margin-bottom: 16px;
}

.lp-contact-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-contact-success p {
    color: var(--lp-text-muted);
}

.lp-contact-error {
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--lp-radius-sm);
    color: #ef4444;
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .lp-contact-row { grid-template-columns: 1fr; }
}

/* ========== EXPLORE PAGE ========== */
.explore-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.explore-header {
    text-align: center;
    margin-bottom: 40px;
}

.explore-header h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.explore-header p {
    font-size: 1.05rem;
    color: var(--lp-text-muted);
}

/* Search */
.explore-search {
    max-width: 600px;
    margin: 0 auto 48px;
}

.explore-search-wrap {
    display: flex;
    align-items: center;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 100px;
    padding: 4px 4px 4px 20px;
    transition: var(--lp-transition);
}

.explore-search-wrap:focus-within {
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px rgba(196, 125, 90, 0.15);
}

.explore-search-icon {
    flex-shrink: 0;
    color: var(--lp-text-muted);
}

.explore-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--lp-text);
    font-size: 0.95rem;
    padding: 12px 16px;
    font-family: var(--lp-font-body);
}

.explore-search-input::placeholder {
    color: var(--lp-text-muted);
}

.explore-search-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lp-transition);
    font-family: var(--lp-font-body);
    white-space: nowrap;
}

.explore-search-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(196, 125, 90, 0.3);
}

/* Section */
.explore-section {
    margin-bottom: 48px;
}

.explore-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.explore-count {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    margin-left: 8px;
}

/* Grid */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.explore-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: var(--lp-transition);
    display: block;
}

.explore-card:hover {
    transform: translateY(-4px);
    border-color: var(--lp-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.explore-card-preview {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--lp-surface-2);
    overflow: hidden;
}

.explore-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.explore-card:hover .explore-card-img {
    transform: scale(1.05);
}

.explore-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--lp-transition);
}

.explore-card:hover .explore-card-overlay {
    opacity: 1;
}

.explore-card-visit {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--lp-bg);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
}

.explore-card-info {
    padding: 16px 20px;
}

.explore-card-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.explore-card-stats {
    display: flex;
    gap: 16px;
}

.explore-card-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}

.explore-card-stats svg {
    color: var(--lp-text-muted);
}

/* Empty state */
.explore-empty {
    text-align: center;
    padding: 60px 24px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
}

.explore-empty svg {
    color: var(--lp-text-muted);
    margin-bottom: 16px;
}

.explore-empty p {
    font-size: 1rem;
    color: var(--lp-text-muted);
}

/* ========== EXPLORE RESPONSIVE ========== */
@media (max-width: 968px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .explore-page {
        padding: 90px 0 40px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-search-wrap {
        flex-direction: column;
        border-radius: var(--lp-radius);
        padding: 8px;
        gap: 8px;
    }

    .explore-search-icon {
        display: none;
    }

    .explore-search-input {
        width: 100%;
        text-align: center;
    }

    .explore-search-btn {
        width: 100%;
        border-radius: var(--lp-radius-sm);
    }
}
