/* ===== DESIGN TOKENS ===== */
:root {
    --bg: #fafaf9;
    --bg-alt: #f5f5f0;
    --bg-dark: #1a1a1a;
    --bg-card: #ffffff;
    --bg-card-dark: #222222;

    --text: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-muted: #999999;
    --text-light: #f5f5f5;

    --accent: #ff4d00;
    --accent-light: #ff6b2b;
    --accent-bg: rgba(255, 77, 0, 0.06);
    --accent-glow: rgba(255, 77, 0, 0.15);

    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.15);

    --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Sora', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(250, 250, 249, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--text);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--text);
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 5px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 60px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero-eyebrow span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-title-em {
    color: var(--accent);
    position: relative;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--text);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--accent-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid var(--border-strong);
    border-radius: 100px;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--text);
    background: rgba(0, 0, 0, 0.03);
}

/* Hero Proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    border: 2px solid var(--bg);
    margin-left: -8px;
}

.proof-avatar:first-child { margin-left: 0; }

.proof-avatar-more {
    background: var(--bg-dark) !important;
    font-size: 0.65rem;
}

.proof-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Hero Right — Video Timeline Card */
.hero-right {
    position: relative;
}

/* ===== HERO VIRAL ENGINE HUD (ANYFRAME STUDIO) ===== */
/* ===== HERO VIRAL ENGINE HUD ===== */
.hero-viral-engine {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding: 30px 10px;
}

.engine-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.22) 0%, rgba(255, 204, 0, 0.1) 50%, transparent 80%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: aura-pulse 6s ease-in-out infinite alternate;
}

@keyframes aura-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.engine-grid-bg {
    position: absolute;
    top: 10%;
    left: 5%;
    right: 5%;
    bottom: 10%;
    background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
}

/* Main HUD Card */
.editor-hud-card {
    position: relative;
    z-index: 2;
    background: #121214;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 77, 0, 0.15);
    overflow: hidden;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.editor-hud-card:hover {
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 77, 0, 0.25);
    border-color: rgba(255, 77, 0, 0.4);
}

/* HUD Header */
.hud-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #18181b;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hud-dots {
    display: flex;
    gap: 6px;
}
.hud-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.hud-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: #a1a1aa;
    letter-spacing: 0.05em;
}
.hud-title svg { color: var(--accent); }

.hud-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

/* HUD Preview Screen */
.hud-preview-screen {
    position: relative;
    height: 220px;
    background: radial-gradient(circle at center, #27272a 0%, #09090b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: background 0.5s ease;
}

.preview-overlay-tags {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}
.tag-live {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse-dot 1.2s infinite;
}
.tag-metric {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.visualizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-bottom: 16px;
}
.visualizer-bars .bar {
    width: 4px;
    background: linear-gradient(180deg, var(--accent) 0%, #ff8800 100%);
    border-radius: 2px;
    animation: bounce-bar 1.2s ease-in-out infinite alternate;
}
.b1 { height: 15px; animation-delay: 0.1s; }
.b2 { height: 28px; animation-delay: 0.3s; }
.b3 { height: 38px; animation-delay: 0.2s; }
.b4 { height: 20px; animation-delay: 0.5s; }
.b5 { height: 32px; animation-delay: 0.1s; }
.b6 { height: 40px; animation-delay: 0.4s; }
.b7 { height: 25px; animation-delay: 0.2s; }
.b8 { height: 35px; animation-delay: 0.6s; }
.b9 { height: 18px; animation-delay: 0.3s; }
.b10 { height: 30px; animation-delay: 0.5s; }
.b11 { height: 22px; animation-delay: 0.1s; }
.b12 { height: 14px; animation-delay: 0.4s; }

@keyframes bounce-bar {
    0% { transform: scaleY(0.4); opacity: 0.6; }
    100% { transform: scaleY(1.1); opacity: 1; }
}

.preview-center-badge {
    text-align: center;
}
.play-pulse-btn {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 0 25px var(--accent-glow);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}
.play-pulse-btn:hover {
    transform: scale(1.15);
    background: #ff5d1a;
}
.play-pulse-btn svg { width: 18px; height: 18px; margin-left: 2px; }

.preview-center-badge h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.preview-center-badge p {
    color: #a1a1aa;
    font-size: 0.75rem;
    font-family: var(--font-mono);
}

/* HUD Multi-Layer Timeline */
.hud-timeline {
    padding: 16px 20px;
    background: #121214;
}

/* HUD Timeline Toolbar */
.timeline-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background: #18181b;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-mono);
    font-size: 0.68rem;
}
.tb-left { display: flex; gap: 8px; }
.tb-btn {
    padding: 3px 8px;
    border-radius: 4px;
    color: #a1a1aa;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.2s ease;
}
.tb-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.1); transform: translateY(-1px); }
.tb-btn.active { color: #fff; background: rgba(255, 77, 0, 0.2); border-color: var(--accent); box-shadow: 0 0 10px rgba(255, 77, 0, 0.3); }
.tb-badge { color: #34d399; font-weight: 600; }

.timeline-timecode {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: #71717a;
    margin-bottom: 12px;
    padding-left: 75px;
}

.timeline-tracks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.track {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    background: #18181b;
    border-radius: 6px;
    padding: 0 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

.track-label {
    width: 75px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    color: #a1a1aa;
    flex-shrink: 0;
}

.clip {
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    color: #fff;
    padding: 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: filter 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    position: relative;
}
.clip:hover {
    filter: brightness(1.4);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    z-index: 5;
}
.clip-selected {
    box-shadow: 0 0 16px var(--accent), inset 0 0 8px rgba(255,255,255,0.25) !important;
    filter: brightness(1.5) !important;
    z-index: 6;
}
.clip-icon { margin-right: 4px; font-size: 0.75rem; }

/* Video 2 (B-Roll) Clips */
.c-v2-1 { background: linear-gradient(90deg, #06b6d4, #0e7490); width: 25%; border: 1px solid rgba(6, 182, 212, 0.5); }
.c-v2-2 { background: linear-gradient(90deg, #6366f1, #4338ca); width: 25%; border: 1px solid rgba(99, 102, 241, 0.5); }
.c-v2-3 { background: linear-gradient(90deg, #a855f7, #7e22ce); width: 25%; border: 1px solid rgba(168, 85, 247, 0.5); }
.c-v2-4 { background: linear-gradient(90deg, #ec4899, #be185d); width: 25%; border: 1px solid rgba(236, 72, 153, 0.5); }

/* Video 1 (A-Roll) Clips */
.c-main { background: linear-gradient(90deg, #3b82f6, #1d4ed8); width: 35%; border: 1px solid rgba(59, 130, 246, 0.5); }
.c-broll { background: linear-gradient(90deg, #8b5cf6, #6d28d9); width: 40%; border: 1px solid rgba(139, 92, 246, 0.5); }
.c-impact { background: linear-gradient(90deg, #f43f5e, #be123c); width: 25%; border: 1px solid rgba(244, 63, 94, 0.5); }

/* Graphics & Captions */
.c-txt1 { background: rgba(234, 179, 8, 0.25); color: #facc15; border: 1px dashed rgba(234, 179, 8, 0.6); width: 40%; }
.c-txt2 { background: rgba(14, 165, 233, 0.25); color: #38bdf8; border: 1px dashed rgba(14, 165, 233, 0.6); width: 35%; }
.c-txt3 { background: rgba(16, 185, 129, 0.25); color: #34d399; border: 1px dashed rgba(16, 185, 129, 0.6); width: 25%; }

/* SFX Clips */
.c-sfx1 { background: rgba(245, 158, 11, 0.25); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.5); width: 18%; }
.c-sfx2 { background: rgba(239, 68, 68, 0.25); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.5); width: 22%; }
.c-sfx3 { background: rgba(16, 185, 129, 0.25); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.5); width: 20%; }
.c-sfx4 { background: rgba(139, 92, 246, 0.25); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.5); width: 20%; }
.c-sfx5 { background: rgba(6, 182, 212, 0.25); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.5); width: 20%; }

/* Audio Track */
.c-audio {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.wave-line {
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(90deg, #34d399 0, #34d399 2px, transparent 2px, transparent 5px);
    opacity: 0.8;
}
.wave-line-bottom {
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(90deg, #10b981 0, #10b981 1px, transparent 1px, transparent 5px);
    opacity: 0.5;
}

/* Animated Playhead */
.timeline-playhead {
    position: absolute;
    top: -6px;
    bottom: -6px;
    left: 45%;
    width: 2px;
    background: #ef4444;
    z-index: 10;
    pointer-events: none;
    animation: playhead-scan 8s linear infinite;
}
.playhead-top {
    position: absolute;
    top: -4px;
    left: -5px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.playhead-time-popup {
    position: absolute;
    top: -24px;
    left: -32px;
    background: #ef4444;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}
@keyframes playhead-scan {
    0% { left: 15%; }
    100% { left: 95%; }
}

/* ===== FLOATING STATS CARDS ===== */
.floating-stat-card {
    position: absolute;
    z-index: 25;
    background: rgba(24, 24, 27, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    cursor: pointer;
}

.floating-stat-card:hover {
    transform: scale(1.08) !important;
    z-index: 50;
    animation-play-state: paused !important;
}

.card-retention:hover {
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.5), 0 15px 35px rgba(0, 0, 0, 0.6);
    background: rgba(16, 185, 129, 0.12);
}

.card-growth:hover {
    border-color: rgba(245, 158, 11, 0.8);
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.5), 0 15px 35px rgba(0, 0, 0, 0.6);
    background: rgba(245, 158, 11, 0.12);
}

.card-speed:hover {
    transform: translateY(-50%) scale(1.08) !important;
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.5), 0 15px 35px rgba(0, 0, 0, 0.6);
    background: rgba(59, 130, 246, 0.12);
}

.f-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.green-bg { background: rgba(16, 185, 129, 0.2); border: 1px solid rgba(16, 185, 129, 0.4); }
.orange-bg { background: rgba(245, 158, 11, 0.2); border: 1px solid rgba(245, 158, 11, 0.4); }
.blue-bg { background: rgba(59, 130, 246, 0.2); border: 1px solid rgba(59, 130, 246, 0.4); }

.f-data {
    display: flex;
    flex-direction: column;
}
.f-label {
    font-size: 0.72rem;
    color: #a1a1aa;
    font-weight: 500;
}
.f-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.f-up {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}
.f-sub {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: #f59e0b;
    font-weight: 600;
}

/* Positioning in 3D Space */
.card-retention {
    top: -15px;
    left: -20px;
    animation: float-card-1 5s ease-in-out infinite alternate;
}
.card-growth {
    bottom: -15px;
    right: -20px;
    animation: float-card-2 6s ease-in-out infinite alternate;
}
.card-speed {
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    animation: float-card-3 5.5s ease-in-out infinite alternate;
}

@keyframes float-card-1 {
    0% { transform: translateY(0px) rotate(-2deg); }
    100% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes float-card-2 {
    0% { transform: translateY(0px) rotate(2deg); }
    100% { transform: translateY(8px) rotate(-1deg); }
}
@keyframes float-card-3 {
    0% { transform: translateY(-50%) translateX(0px); }
    100% { transform: translateY(-50%) translateX(-6px); }
}

@media (max-width: 900px) {
    .floating-stat-card { position: static; margin-top: 12px; }
    .card-retention, .card-growth, .card-speed { animation: none; transform: none !important; }
}

/* ===== TICKER ===== */
.ticker {
    padding: 20px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 25s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
}

.ticker-content span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.ticker-star {
    color: var(--accent) !important;
    font-size: 0.7rem !important;
}

/* ===== SECTION INTRO ===== */
.section-intro {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 56px;
}

.section-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    padding: 6px 12px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 6px;
}

.section-intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.em-dot {
    color: var(--accent);
}

.section-intro-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
}

/* ===== SERVICES — BENTO ===== */
.services {
    padding: 120px 0;
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bento-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bento-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.bento-card:hover::after {
    transform: scaleX(1);
}

.bento-large {
    grid-column: span 2;
}

.bento-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bento-tags span {
    padding: 4px 12px;
    background: var(--bg-alt);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== RESULTS ===== */
.results {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.results .section-intro-text p {
    color: rgba(255,255,255,0.5);
}

.results .section-intro-text h2 {
    color: white;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.result-item {
    background: var(--bg-card-dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.4s ease;
}

.result-item:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.result-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.result-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.1);
}

.result-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.result-type {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.result-numbers {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.result-arrow {
    color: var(--accent);
}

.result-num-sm {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
}

.result-num-lg {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.result-num-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.result-growth {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 77, 0, 0.1);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
}

/* Results Summary */
.results-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    flex-wrap: wrap;
}

.summary-stat {
    text-align: center;
}

.summary-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
}

.summary-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.summary-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.08);
}

/* ===== WORK SHOWCASE ===== */
.work-showcase {
    background: #0e0e0e;
    padding: 100px 0 60px;
    overflow: hidden;
}

.work-carousel {
    padding: 0 0 0 max(40px, calc((100vw - 1200px) / 2 + 40px));
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.work-carousel::-webkit-scrollbar { display: none; }
.work-carousel:active { cursor: grabbing; }

.work-track {
    display: flex;
    gap: 24px;
    padding: 10px 60px 10px 0;
    width: max-content;
}

.work-card {
    flex-shrink: 0;
    width: 420px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.work-card:hover {
    transform: translateY(-6px);
}

.work-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.work-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.08);
    font-family: var(--font-display);
    font-weight: 900;
}

.work-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 56px;
    height: 56px;
    background: rgba(255, 77, 0, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.work-play svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.work-thumb:hover .work-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
}

.work-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.work-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 4px 0;
}

.work-meta-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.work-meta div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.work-meta strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.work-meta span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 500;
}

.work-scroll-hint {
    text-align: center;
    padding: 24px 0 0;
}

.work-scroll-hint span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== SHORTS & REELS SHOWCASE ===== */
.shorts-showcase {
    background: #0e0e0e;
    padding: 60px 0 100px;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.shorts-carousel {
    padding: 20px 0 0 max(40px, calc((100vw - 1200px) / 2 + 40px));
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.shorts-carousel::-webkit-scrollbar { display: none; }

.shorts-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding-right: 60px;
}

.short-card {
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
}

.short-thumb {
    width: 100%;
    height: 426px; /* 9:16 aspect ratio */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.short-card:hover .short-thumb {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.25);
    border-color: rgba(255, 77, 0, 0.4);
}

.short-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}

.short-play {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.short-play svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.short-card:hover .short-play {
    transform: scale(1.15);
    background: var(--accent);
    border-color: var(--accent);
}

.short-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 4px;
}

.short-meta div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.short-meta strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.short-meta span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 500;
}

/* ===== CREATORS ===== */
.creators {
    padding: 120px 0;
}

/* Creator Showcase — Large Avatar Marquee */
.creator-showcase {
    overflow: hidden;
    position: relative;
    margin-top: 10px;
    padding: 30px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.showcase-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: showcase-scroll 40s linear infinite;
}

.creator-showcase:hover .showcase-track {
    animation-play-state: paused;
}

@keyframes showcase-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    flex-shrink: 0;
    width: 180px;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-item:hover {
    transform: translateY(-8px);
}

/* Avatar with animated ring */
.showcase-avatar-wrap {
    position: relative;
    width: 150px;
    height: 150px;
}

.showcase-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    border: 3px solid var(--bg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(
        from 0deg,
        var(--accent),
        #ff8a3d,
        #ffbd59,
        var(--accent),
        #ff8a3d
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
    animation: ring-spin 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .showcase-ring {
    opacity: 1;
}

.showcase-item:hover .showcase-avatar {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 77, 0, 0.25);
}

@keyframes ring-spin {
    to { transform: rotate(360deg); }
}

.showcase-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.showcase-subs {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.showcase-niche {
    padding: 3px 10px;
    background: var(--accent-bg);
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Brands Bar */
.brands-bar {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.brands-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s;
}

.brand-chip:hover {
    border-color: var(--accent);
    background: var(--accent-bg);
}

.brand-icon { font-size: 1.1rem; }

.brand-flag {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--bg-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.about-left h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 20px 0;
}

.about-em {
    color: var(--accent);
}

.about-left p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-niches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.about-niches span {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.about-niches span:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-bg);
}

.about-stat-card {
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: white;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.about-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.req {
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Service Chips */
.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 10px 20px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--text-secondary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.chip:hover {
    border-color: var(--text-secondary);
}

.chip.selected {
    background: var(--text);
    color: white;
    border-color: var(--text);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}

/* Contact Info */
.contact-info-card {
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: 36px;
    color: white;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.contact-link:hover {
    background: rgba(255,255,255,0.1);
}

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.contact-social:hover {
    background: rgba(255,255,255,0.06);
    color: white;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.response-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

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

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

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

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

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-bento {
        grid-template-columns: 1fr 1fr;
    }

    .bento-large {
        grid-column: span 2;
    }



    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 24px;
        border-left: 1px solid var(--border);
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .services-bento {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }

    .results-showcase {
        grid-template-columns: 1fr;
    }



    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .float-stat {
        display: none;
    }

    .section-intro {
        flex-direction: column;
        gap: 12px;
    }

    .results-summary {
        gap: 28px;
    }

    .summary-divider {
        display: none;
    }

    .brand-chips {
        flex-direction: column;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

::selection {
    background: rgba(255, 77, 0, 0.15);
    color: var(--text);
}
