/* ============================================================
   Atlas home / landing page — page-specific styles.
   Loaded by templates/index.html only.

   Externalized from the inline <style> block on 2026-05-04.
   Content is unchanged from the original; selectors and rules
   still target the same markup. Subsequent migration passes
   move legacy classes to the .f-* / .fm-* foundation and
   delete duplicated rules.

   Local :root vars (--accent, --bg, --text, etc.) shadow the
   foundation tokens for backward compatibility while the
   migration completes. To adopt a foundation token, replace
   `var(--f-accent)` → `var(--f-accent)`, `var(--bg)` → `var(--f-bg-raised)`,
   `var(--f-ink)` → `var(--f-ink)`, etc.
   ============================================================ */
:root {
            /* Page-local surface tokens — drifted slightly from foundation, kept page-scoped. */
            --bg: #ffffff;
            --bg-tint: #f4f6f9;
            --bg-gray: var(--bg-tint);
            --bg-soft: #fafafa;          /* used for very subtle hovers */

            /* Page-local borders — drifted slightly from --f-border. */
            --border: #e5e7eb;

            /* Shared border style used on app-icons, mock graphics, and major cards on both pages.
               Color is appended at the call site so light/dark themes can vary the tone. */
            --border-graphic: 5px solid;

            /* Page-local text — only --text-3 is non-canonical (no foundation match). */
            --text-3: #374151;

            /* Page-local status — drifted/page-specific values; foundation has --f-error*/--f-warning. */
            --red-bg: #fee2e2;
            --green: #00ff00;            /* bright green — page-specific accent */
            --green-bg: #dcfce7;
            --yellow: #facc15;
        }

        /* Dark-mode (Agency variant). Page-local override; foundation tokens flip via [data-theme="dark"]. */
        body.dark {
            --bg: #000000;
            --bg-tint: #101010;
            --bg-gray: var(--bg-tint);
            --bg-soft: #1a1a1a;
            --border: #2a2a2a;
            --text-3: #d4d4d8;
            background: var(--bg);
            color: var(--f-ink);
        }
        /* Hero on dark = no distinct background, just the body */
        body.dark .hero { background: transparent; }

        /* Agency-only: "Three steps to scale your agency" — full-width subtle Atlas blue glow + thin top border */
        body.dark .how {
            position: relative;
            background: linear-gradient(180deg, rgba(0, 176, 241, 0.20) 0%, transparent 220px);
            border-top: 1px solid var(--f-accent);
        }

        /* Agency-only: feature-first keeps the wider centered line + softer glow that fade to nothing on left/right */
        body.dark .feature-first {
            position: relative;
            background: transparent;
        }
        body.dark .feature-first::before,
        body.dark .feature-first::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            pointer-events: none;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
                    mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
        }
        body.dark .feature-first::before {
            top: 2px;
            width: 1120px;
            max-width: 96vw;
            height: 200px;
            background: linear-gradient(180deg, rgba(0, 176, 241, 0.18) 0%, transparent 100%);
            z-index: 0;
        }
        body.dark .feature-first::after {
            top: 0;
            width: 1120px;
            max-width: 96vw;
            height: 2px;
            background: var(--f-accent);
            z-index: 1;
        }
        body.dark .feature-first > * { position: relative; z-index: 2; }

        /* Copy variants — one HTML, two voices.
           Light/Creator copy is default; Dark/Agency copy reveals when body.dark. */
        .copy-agency { display: none; }
        body.dark .copy-creator { display: none; }
        body.dark .copy-agency { display: inline; }
        /* Block-level page-variant swap (use these for entire layout chunks, not inline text) */
        body:not(.dark) .agency-only { display: none; }
        body.dark .creator-only { display: none; }
        /* Sections — transparent so the dark body color shows through (consistent across the agency page) */
        body.dark .faq,
        body.dark .cta,
        body.dark .footer {
            background: transparent;
            color: var(--f-ink);
        }
        /* Cards — slightly-elevated dark surface */
        body.dark .header-inner.scrolled,
        body.dark .feature-card.solid,
        body.dark .two-up-card.solid,
        body.dark .feature-card.tint,
        body.dark .two-up-card.tint,
        body.dark .visual,
        body.dark .paid-cal,
        body.dark .ai-post,
        body.dark .testimonial-card {
            background: var(--bg-tint);
            color: var(--f-ink);
            border-color: var(--f-border-soft);
        }
        body.dark .how-step {
            color: var(--f-ink);
            border: 3px solid transparent;
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(135deg,
                    var(--f-accent) 0%,
                    var(--f-border) 20%,
                    var(--f-border) 100%
                ) border-box;
        }
        body.dark .how-step:nth-child(2) {
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(180deg,
                    var(--f-accent) 0%,
                    var(--f-border) 22%,
                    var(--f-border) 100%
                ) border-box;
        }
        body.dark .how-step:nth-child(3) {
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(225deg,
                    var(--f-accent) 0%,
                    var(--f-border) 20%,
                    var(--f-border) 100%
                ) border-box;
        }
        body.dark .header-inner {
            background: transparent;
            border-color: transparent;
        }
        body.dark .header-inner.scrolled {
            border-color: var(--f-border-soft);
        }
        body.dark .mobile-nav { background: rgba(10, 10, 10, 0.96); }
        body.dark .mobile-nav a { color: var(--f-ink); border-bottom-color: var(--f-border-soft); }
        body.dark .header-nav a, body.dark .btn-text { color: var(--f-ink-soft); }
        body.dark .header-nav a:hover, body.dark .btn-text:hover { color: var(--f-ink); }
        /* logo color now handled by --f-ink token (flips with [data-theme="dark"]) */
        body.dark .pay-card,
        body.dark .scheduler-row,
        body.dark .tier {
            background: var(--bg-soft);
            border-color: var(--border);
        }
        body.dark .paid-day { background: var(--bg-soft); color: var(--f-ink-muted); }
        body.dark .paid-flow { background: var(--f-bg-hover); border-color: var(--border); color: var(--f-ink); }
        body.dark .locked-content { background: var(--bg-soft); }
        body.dark .locked-overlay { background: rgba(20, 20, 20, 0.7); }
        body.dark .locked-content-blur p { color: var(--f-ink-soft); }
        body.dark .cta-card { background: var(--bg-tint); border-color: var(--f-border-soft); }
        body.dark .ai-post-handle, body.dark .ai-post-caption { color: var(--f-ink); }
        body.dark .testimonial-card .quote { color: var(--f-ink); }
        body.dark .testimonial-meta .username { color: var(--f-ink); }
        body.dark .feature-card .feature-desc, body.dark .two-up-card p,
        body.dark .ai-post-time, body.dark .visual-label,
        body.dark .scheduler-title, body.dark .scheduler-time,
        body.dark .tier-desc, body.dark .pay-label,
        body.dark .feature-list li, body.dark .how-step-body p,
        body.dark .faq-answer-inner,
        body.dark .footer-brand p, body.dark .footer-bottom,
        body.dark .testimonials-header p,
        body.dark .how-header p, body.dark .cta-card p, body.dark .bento-header p,
        body.dark .addons-header p, body.dark .power-desc,
        body.dark .hero-desc, body.dark .how-cta-text {
            color: var(--f-ink-soft);
        }
        body.dark .feature-card h3, body.dark .two-up-card h3,
        body.dark .how-step-body h3, body.dark .testimonials-header h2,
        body.dark .how-header h2,
        body.dark .faq-header h2, body.dark .cta-card h2, body.dark .bento-header h2,
        body.dark .addons-header h2, body.dark .power-title,
        body.dark .hero-title, body.dark .pay-value, body.dark .tier-name,
        body.dark .tier-price, body.dark .scheduler-title,
        body.dark .faq-question-text {
            color: var(--f-ink);
        }
        body.dark .faq-toggle { background: transparent; border-color: transparent; }
        body.dark .faq-toggle svg { stroke: var(--f-accent); }
        body.dark .faq-list, body.dark .faq-item { border-color: var(--f-border-soft); }
        body.dark .fm-btn-hero--secondary {
            background-image: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
            color: var(--f-ink);
            border-color: transparent;
        }
        body.dark .fm-btn-hero--secondary:hover {
            background-image: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
            border-color: transparent;
        }
        body.dark .f-section-eyebrow--dotted {
            background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
            border: 1px solid #3a3a3a;
        }
        body.dark .f-section-eyebrow--dotted::before,
        body.dark .f-section-eyebrow--dotted::after {
            display: none;
        }
        /* Header + footer CTAs invert on dark: white bg with black text */
        body.dark .btn-primary {
            background: #ffffff;
            color: #000000;
        }
        body.dark .btn-primary:hover {
            background: #f0f0f0;
        }
        body.dark .footer-cta {
            background: #ffffff;
            color: #000000;
        }
        body.dark .footer-cta:hover {
            background: #f0f0f0;
        }
        body.dark .avatar-stack { border-color: var(--bg-tint); }

        /* View Transitions API: line-wipe between / and /agency
           Old page sits still; new page reveals via a fast clip-path wipe — the wipe edge reads as a moving line. */
        @keyframes wipe-in-from-left {
            from { clip-path: inset(0 100% 0 0); }
            to { clip-path: inset(0 0 0 0); }
        }
        @keyframes wipe-in-from-right {
            from { clip-path: inset(0 0 0 100%); }
            to { clip-path: inset(0 0 0 0); }
        }
        ::view-transition-old(root) {
            animation: none;
            opacity: 1;
        }
        ::view-transition-new(root) {
            animation-duration: 0.5s;
            animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
            animation-fill-mode: both;
        }
        html.transition-forward::view-transition-new(root) { animation-name: wipe-in-from-left; }
        html.transition-back::view-transition-new(root) { animation-name: wipe-in-from-right; }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
            color: var(--f-ink);
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0) 600px) no-repeat,
                var(--bg-tint);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        body.dark {
            background: #000000;
        }
        img, svg { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
        ul { list-style: none; }

        /* Mona Sans for display surfaces */
        h1, h2, h3, h4, .display, button, .btn, nav a, .pill-solid, .pill-highlight,
        .live-pill, .hero-rating-text, .stats-row > div > div:first-child {
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-feature-settings: "ss02", "ss03";
        }
        /* Below the hero — switch headings back to Inter (CTA buttons + graphic mockups keep Mona Sans).
           Eyebrow pills use .f-section-eyebrow--dotted which already declares Inter. */
        .how :is(h1, h2, h3, h4),
        .bento :is(h1, h2, h3, h4),
        .bento-card-title,
        .testimonials :is(h1, h2, h3, h4),
        .creator-card-name,
        .creator-card-quote,
        .creator-card-revenue-label,
        .creator-card-amount,
        .creator-card-amount small,
        .testimonial-meta .username,
        .faq :is(h1, h2, h3, h4),
        .faq-question-text,
        .footer :is(h1, h2, h3, h4) {
            font-family: Inter, system-ui, sans-serif;
        }

        /* Skip to content (a11y) */
        .skip-link {
            position: absolute;
            left: 1rem;
            top: -40px;
            z-index: 100;
            background: var(--f-accent);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: "Mona Sans", Inter, sans-serif;
            transition: top 0.2s;
        }
        .skip-link:focus { top: 0.5rem; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes live-ping {
            0% { box-shadow: 0 0 0 0 var(--ring-color); }
            100% { box-shadow: 0 0 0 8px transparent; }
        }
        @keyframes logo-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes waveAnim { 0% { height: 20%; } 100% { height: 90%; } }
        @keyframes typingAnim { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
        @keyframes barGrow { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }

        .reveal { opacity: 0; animation: fadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        .reveal-1 { animation-delay: 0.05s; }
        .reveal-2 { animation-delay: 0.15s; }
        .reveal-3 { animation-delay: 0.6s; }   /* lands after the hero-title cascade */
        .reveal-4 { animation-delay: 0.78s; }

        /* Per-character cascade animation for hero title (matches auth-page feel).
           Chars are inserted at runtime by the data-cascade splitter; only the
           leaf .cascade-char spans animate, so nested elements like .pill-solid
           keep their styling. */
        .cascade-char {
            display: inline-block;
            animation: cascade-char-in 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
            white-space: pre;
        }

        /* When the title is cascaded, the per-char inline-blocks break
           `.title-text-grad`'s background-clip:text trick (each child becomes
           its own paint context, so the gradient never reaches the glyphs).
           Inside a cascaded hero title, fall back to solid ink so the chars
           are visible. The pill on the right keeps its solid black gradient. */
        .hero-title--cascade .title-text-grad {
            background: none;
            -webkit-background-clip: border-box;
            background-clip: border-box;
            -webkit-text-fill-color: var(--f-ink);
            color: var(--f-ink);
        }
        body.dark .hero-title--cascade .title-text-grad {
            -webkit-text-fill-color: #ffffff;
            color: #ffffff;
        }
        @keyframes cascade-char-in {
            from { opacity: 0; transform: translateY(0.35em) scale(0.94); filter: blur(6px); }
            to   { opacity: 1; transform: translateY(0)     scale(1);    filter: blur(0); }
        }
        @media (prefers-reduced-motion: reduce) {
            .cascade-char { animation-duration: 0.01ms; }
        }

        /* Pill (.pill-solid) bg animates as one unit, anchored to the delay
           of its first inner char. The inner chars still cascade individually. */
        .cascade-bg {
            animation: cascade-char-in 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
        }
        @media (prefers-reduced-motion: reduce) {
            .cascade-bg { animation-duration: 0.01ms; }
        }

        /* Container */
        .wrap {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        @media (min-width: 1024px) {
            .wrap { padding: 0 2rem; }
        }

        /* Announcement bar */
        .announce {
            position: relative;
            z-index: 40;
            background: transparent;
        }
        .announce-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1.5rem;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            font-size: 0.85rem;
            color: var(--f-ink);
        }
        .live-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 4px 10px;
            border-radius: 9999px;
            background: var(--red-bg);
            color: var(--f-error-strong);
            border: 1px solid rgba(220, 38, 38, 0.20);
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1;
        }
        .live-dot {
            --ring-color: rgba(220, 38, 38, 0.55);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--f-error-strong);
            display: inline-block;
            flex-shrink: 0;
            box-shadow: 0 0 0 0 var(--ring-color);
            animation: live-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        .visual-tag .live-dot {
            --ring-color: rgba(0, 176, 241, 0.55);
            background: var(--f-accent);
        }
        .announce-text { font-weight: 500; }
        .announce-text strong { font-weight: 700; }
        .announce-text-mobile { display: none; }
        @media (max-width: 640px) {
            .announce-text-desktop { display: none; }
            .announce-text-mobile { display: inline; }
        }
        .announce-cta {
            display: none;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            color: var(--f-accent);
        }
        .announce-cta-arrow {
            display: inline-block;
            transition: transform 0.18s ease;
        }
        .announce-cta:hover .announce-cta-arrow { transform: translateX(4px); }
        @media (min-width: 640px) { .announce-cta { display: inline-flex; } }

        /* Header — floating pill */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            padding: 0.55rem 1rem;
            pointer-events: none;
            background: transparent;
        }
        .header-inner {
            pointer-events: auto;
            position: relative;
            max-width: 1110px;
            margin: 0 auto;
            padding: 0 0.7rem 0 1.25rem;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 1.4rem;
            background: transparent;
            backdrop-filter: blur(8px) saturate(120%);
            -webkit-backdrop-filter: blur(8px) saturate(120%);
            border: 1px solid transparent;
            transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, max-width 0.3s ease;
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
        }
        .header-inner.scrolled {
            max-width: 1040px;
            background: #ffffff;
            border-color: var(--f-border);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }
        .header-inner.scrolled .nav-faq { display: none; }
        @media (max-width: 768px) {
            .header-inner { padding-left: 0; }
        }
        .header-logo { display: inline-flex; align-items: center; gap: 0.6rem; }
        .header-logo-icon { height: 40px; width: 40px; }
        /* .header-logo-text moved to .fm-logo__text in static/css/marketing.css */
        .header-nav {
            display: none;
            align-items: center;
            gap: 1.4rem;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        /* Mobile nav toggle (hamburger) */
        .nav-toggle {
            display: inline-flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            width: 38px;
            height: 38px;
            padding: 0 9px;
            border-radius: 9999px;
            background: var(--bg-gray);
            border: 1px solid var(--f-border-soft);
            transition: background 0.2s;
        }
        .nav-toggle:hover { background: var(--f-bg-hover); }
        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--f-ink);
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
        body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
        body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
        @media (min-width: 768px) {
            .nav-toggle { display: none; }
        }

        /* Mobile nav overlay */
        .mobile-nav {
            position: fixed;
            top: 88px;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            max-width: 100%;
            box-sizing: border-box;
            z-index: 45;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            display: flex;
            flex-direction: column;
            padding: 1.5rem 1.5rem 2rem;
            gap: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-12px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
            overflow-x: hidden;
        }
        body.nav-open .mobile-nav {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
        }
        body.nav-open { overflow: hidden; }
        .mobile-nav a {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--f-ink);
            padding: 0.85rem 0.5rem;
            border-bottom: 1px solid var(--f-border-soft);
            letter-spacing: -0.02em;
        }
        .mobile-nav a:last-of-type { border-bottom: 0; }
        .mobile-nav .mobile-nav-cta {
            margin-top: 1.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
            color: #fff;
            font-size: 1.05rem;
            font-weight: 600;
            padding: 0.95rem 1.5rem;
            border-radius: 14px;
            border: 0;
            text-align: center;
            transition: background 0.2s;
        }
        .mobile-nav .mobile-nav-cta:hover {
            background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
        }
        @media (min-width: 768px) {
            .mobile-nav { display: none; }
        }
        .header-nav a {
            font-size: 0.84rem;
            font-weight: 500;
            color: var(--f-ink-soft);
            transition: color 0.2s;
        }
        .header-nav a:hover { color: var(--f-ink); }
        .header-actions { display: flex; align-items: center; gap: 0.4rem; }
        .btn-text {
            display: none;
            align-items: center;
            font-size: 0.84rem;
            font-weight: 500;
            color: var(--text-3);
            padding: 0.4rem 0.7rem;
            transition: color 0.2s;
        }
        .btn-text:hover { color: var(--f-ink); }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 0.78rem 1.45rem;
            border-radius: 0.85rem;
            transition: background 0.2s, filter 0.2s;
        }
        .btn-primary:hover {
            background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
        }
        .btn-arrow {
            display: inline-block;
            margin-left: 0.35rem;
            transition: transform 0.2s ease;
        }
        .btn-primary:hover .btn-arrow,
        .mobile-nav-cta:hover .btn-arrow { transform: translateX(3px); }
        @media (min-width: 768px) { .header-nav { display: flex; } }
        @media (min-width: 640px) { .btn-text { display: inline-flex; } }

        /* Hero */
        .hero-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 6rem 1.5rem 4.5rem;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            align-items: center;
            text-align: center;
        }
        @media (min-width: 768px) {
            .hero-inner { padding: 7rem 2rem 6rem; gap: 3rem; }
        }
        @media (min-width: 1024px) {
            .hero-inner { padding: 8rem 2rem 6rem; gap: 3.5rem; }
        }
        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 880px;
        }
        /* Hero graphic — wide desktop dashboard mockup with bottom fade
           Parent aspect 16/7 crops off the bottom of the 16/10 window inside;
           the mask fade spans the last ~18% so the cropped edge (and the
           window's drop shadow) dissolves toward the bottom. The padding
           gives the window's box-shadow room to show on the sides + top. */
        /* Wrap holds the graphic + 4 floating addon icons. The icons live
           OUTSIDE .hero-graphic (which has overflow:hidden) so they aren't
           clipped or faded by the bottom mask. */
        .hero-graphic-wrap {
            position: relative;
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
        }
        .hg-addon {
            position: absolute;
            width: 64px;
            height: 64px;
            z-index: 2;
            filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.20));
            pointer-events: none;
        }
        /* All four icons float ABOVE the graphic container (negative top);
           outer icons sit higher than inner ones. Inner icons sit close to
           the outer ones (small horizontal gap); both pairs are kept away
           from the middle. Right rotates clockwise, left CCW.

           Cascade order: outer pair first (left then right), then inner pair.
           `.auth-appear` keyframe lives in marketing.css. The keyframe animates
           `transform` (translateY); we use the individual `rotate` CSS property
           so the rotation composes with the animated translate without conflict. */
        .hg-addon--l-out { left:  12%; top: -112px; rotate: -10deg; animation-delay: 360ms; }
        .hg-addon--l-in  { left:  22%; top:  -56px; rotate:  -5deg; animation-delay: 480ms; }
        .hg-addon--r-out { right: 12%; top: -112px; rotate:  10deg; animation-delay: 420ms; }
        .hg-addon--r-in  { right: 22%; top:  -56px; rotate:   5deg; animation-delay: 540ms; }
        @media (max-width: 640px) {
            .hg-addon { width: 44px; height: 44px; }
            .hg-addon--l-out, .hg-addon--r-out { top: -80px; }
            .hg-addon--l-in,  .hg-addon--r-in  { top: -40px; }
        }

        .hero-graphic {
            position: relative;
            width: 100%;
            max-width: 1140px;
            margin-left: auto;
            margin-right: auto;
            box-sizing: border-box;
            padding: 50px 56px 0;
            aspect-ratio: 14 / 5;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
        }

        /* Browser-style window card.
           Soft glow (no offset) that haloes the card on all sides. The blur
           radii are sized to fit inside the parent's padding so the parent's
           `overflow: hidden` doesn't clip the glow into a hard square edge.
           The parent's bottom mask dissolves the lower half of the glow. */
        .hg-window {
            width: 100%;
            aspect-ratio: 16 / 10;
            background: #fff;
            border: 1px solid #d4d4d8;
            border-radius: 18px;
            box-shadow:
                0 0 0 1px rgba(15, 23, 42, 0.04),
                0 0 18px rgba(15, 23, 42, 0.13),
                0 0 44px rgba(15, 23, 42, 0.16);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }
        .hg-window__chrome {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            background: #f4f6f9;
            border-bottom: 1px solid #eef0f3;
            flex-shrink: 0;
        }
        .hg-window__dots {
            display: flex;
            gap: 6px;
            flex-shrink: 0;
        }
        .hg-window__dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: block;
        }
        .hg-window__dots span:nth-child(1) { background: #ff5f57; }
        .hg-window__dots span:nth-child(2) { background: #ffbd2e; }
        .hg-window__dots span:nth-child(3) { background: #28c840; }
        .hg-window__url {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            border: 1px solid #eef0f3;
            border-radius: 6px;
            padding: 5px 14px;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: #525866;
            margin: 0 auto;
            max-width: 380px;
        }
        .hg-window__lock {
            width: 11px;
            height: 11px;
            fill: #888;
            flex-shrink: 0;
        }

        .hg-window__body {
            display: flex;
            flex: 1;
            min-height: 0;
        }
        .hg-window__sidebar {
            width: 22%;
            min-width: 0;
            border-right: 1px solid #eef0f3;
            padding: 16px 12px;
            background: #fafbfc;
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex-shrink: 0;
        }
        .hg-window__brand {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 8px;
            margin-bottom: 12px;
        }
        .hg-window__brand img {
            width: 22px;
            height: 22px;
            display: block;
        }
        .hg-window__brand span {
            font-family: "Druk Wide", "Mona Sans", sans-serif;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: -0.02em;
            color: #111827;
        }
        .hg-window__navitem {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 10px;
            border-radius: 8px;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: #525866;
        }
        .hg-window__navitem.is-active {
            background: rgba(0, 176, 241, 0.12);
            color: #00b0f1;
            font-weight: 600;
        }
        .hg-window__navitem svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
        }

        .hg-window__main {
            flex: 1;
            padding: 18px 22px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-width: 0;
        }
        .hg-window__topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .hg-window__page-title {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #111827;
        }
        .hg-window__avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00b0f1, #009ad3);
            flex-shrink: 0;
        }

        .hg-window__stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .hg-stat {
            background: #fff;
            border: 1px solid #eef0f3;
            border-radius: 10px;
            padding: 12px 14px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
        }
        .hg-stat__label {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #525866;
        }
        .hg-stat__value {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 20px;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #111827;
            line-height: 1;
        }
        .hg-stat .hg-pill {
            align-self: flex-start;
            margin-top: 4px;
        }

        .hg-window__chart {
            background: #fff;
            border: 1px solid #eef0f3;
            border-radius: 10px;
            padding: 14px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }
        .hg-window__chart-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 4px;
        }
        .hg-window__chart-label {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #525866;
        }
        .hg-window__chart-value {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 22px;
            font-weight: 900;
            letter-spacing: -0.02em;
            color: #111827;
            margin-top: 2px;
            line-height: 1;
        }
        .hg-window__chart-svg {
            width: 100%;
            flex: 1;
            margin-top: 6px;
            display: block;
            min-height: 0;
        }

        /* Pill (shared, used in stats + chart head) */
        .hg-pill {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 10px;
            font-weight: 800;
            color: #16a34a;
            background: rgba(34, 197, 94, 0.14);
            padding: 4px 8px;
            border-radius: 6px;
            white-space: nowrap;
        }

        /* ---------- Dark variant for the agency page (body.dark) ---------- */
        body.dark .hg-window {
            background: #141414;
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.40),
                0 0 18px rgba(0, 0, 0, 0.55),
                0 0 44px rgba(0, 176, 241, 0.18);
        }
        body.dark .hg-window__chrome {
            background: #1a1a1a;
            border-bottom-color: rgba(255, 255, 255, 0.06);
        }
        body.dark .hg-window__url {
            background: #0f0f0f;
            border-color: rgba(255, 255, 255, 0.06);
            color: #888;
        }
        body.dark .hg-window__lock { fill: #888; }
        body.dark .hg-window__sidebar {
            background: #0f0f0f;
            border-right-color: rgba(255, 255, 255, 0.06);
        }
        body.dark .hg-window__brand span { color: #fff; }
        body.dark .hg-window__navitem { color: #888; }
        body.dark .hg-window__navitem.is-active {
            background: rgba(0, 176, 241, 0.16);
            color: #00b0f1;
        }
        body.dark .hg-window__page-title { color: #fff; }
        body.dark .hg-stat,
        body.dark .hg-window__chart {
            background: #1a1a1a;
            border-color: rgba(255, 255, 255, 0.06);
        }
        body.dark .hg-stat__label,
        body.dark .hg-window__chart-label { color: #888; }
        body.dark .hg-stat__value,
        body.dark .hg-window__chart-value { color: #fff; }

        .hero-rating {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.75rem;
        }

        .hero-stars { display: inline-flex; align-items: center; gap: 2px; }
        .hero-stars svg {
            display: block;
            width: 18px;
            height: 18px;
            fill: var(--yellow);
            overflow: visible;
            flex-shrink: 0;
        }
        .hero-rating-text {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--f-accent);
        }

        .hero-title {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: clamp(2rem, 5vw, 4.25rem);
            font-weight: 600;
            letter-spacing: -0.035em;
            line-height: 1.06;
            color: var(--f-ink);
            max-width: 1100px;
            margin: 0;
        }
        .hero-eyebrow { margin-bottom: 1rem; }
        .hero-title-line,
        .hero-title-line-2,
        .hero-title-line-3 { white-space: nowrap; }
        .hero-title-line-2,
        .hero-title-line-3 {
            display: block;
            margin-top: 0.3rem;
        }
        .title-virality {
            text-decoration-line: underline;
            text-decoration-color: var(--f-accent);
            text-decoration-thickness: 7px;
            text-underline-offset: 4px;
            text-decoration-skip-ink: none;
            background: linear-gradient(180deg, #4b4b4b 0%, #000000 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        body.dark .title-virality {
            background: linear-gradient(180deg, #d4dae3 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .title-text-grad {
            background: linear-gradient(180deg, #4b4b4b 0%, #000000 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        body.dark .title-text-grad {
            background: linear-gradient(180deg, #d4dae3 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .pill-solid {
            display: inline-block;
            padding: 0.04em 0.32em;
            border-radius: 0.2em;
            background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
            color: #fff;
            line-height: 1.05;
            white-space: nowrap;
        }
        .pill-solid-text {
            color: #ffffff;
        }
        .pill-highlight {
            display: inline-block;
            padding: 0.04em 0.32em;
            border-radius: 0.2em;
            background: var(--f-accent);
            color: #ffffff;
            white-space: nowrap;
        }

        .hero-desc {
            margin-top: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.5;
            color: var(--f-ink-soft);
            max-width: 480px;
        }
        @media (min-width: 768px) {
            .hero-desc { font-size: 1.15rem; max-width: 540px; }
        }

        .hero-cta {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            align-items: center;
            justify-content: center;
            margin-top: 2.5rem;
        }
        @media (min-width: 640px) { .hero-cta { flex-direction: row; } }
        /* Staggered cascade — same fade-up + un-blur as auth page (.auth-appear) */
        .hero-cta > .auth-appear:nth-child(1) { animation-delay: 200ms; }
        .hero-cta > .auth-appear:nth-child(2) { animation-delay: 270ms; }

        /* .btn-hero family moved to .fm-btn-hero / --primary --secondary --black --white in marketing.css */

        /* .section-head-inner block deleted — was dead code (no markup uses this class). */

        /* .eyebrow moved to .f-section-eyebrow.f-section-eyebrow--dotted in components.css */

        /* Bento section — sits between How-it-works and the merged feature section */
        .bento {
            background: transparent;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
        }
        @media (min-width: 768px) {
            .bento {
                border-top-left-radius: 52px;
                border-top-right-radius: 52px;
            }
        }
        body.dark .bento {
            position: relative;
            background: transparent;
        }
        body.dark .bento::before,
        body.dark .bento::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            pointer-events: none;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
                    mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
        }
        body.dark .bento::before {
            top: 2px;
            width: 720px;
            max-width: 80vw;
            height: 180px;
            background: linear-gradient(180deg, rgba(0, 176, 241, 0.18) 0%, transparent 100%);
            z-index: 0;
        }
        body.dark .bento::after {
            top: 0;
            width: 720px;
            max-width: 80vw;
            height: 2px;
            background: var(--f-accent);
            z-index: 1;
        }
        body.dark .bento > * { position: relative; z-index: 2; }
        .bento-inner {
            max-width: 1080px;
            margin: 0 auto;
            padding: 4rem 1.5rem 2rem;
        }
        @media (min-width: 768px) { .bento-inner { padding: 5rem 2rem 2.5rem; } }
        .bento-header { text-align: center; margin-bottom: 1.5rem; }
        @media (min-width: 768px) { .bento-header { margin-bottom: 1.75rem; } }
        .bento-header h2 {
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: clamp(2rem, 4.6vw, 44px);
            font-weight: 600;
            letter-spacing: -0.04em;
            line-height: 1.2em;
            color: #000000;
            text-align: center;
            margin-top: 1rem;
            max-width: 880px;
            margin-left: auto;
            margin-right: auto;
        }
        .bento-header p {
            margin-top: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.36px;
            line-height: 26.5px;
            color: #6b7280;
            text-align: center;
            text-wrap: balance;
        }
        .bento-grid { display: grid; grid-template-columns: 1fr; gap: 0.65rem; }
        @media (min-width: 768px) {
            .bento-grid { grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
        }
        .bento-card {
            border: var(--border-graphic) var(--f-border);
            background: transparent;
            border-radius: 24px;
            padding: 0;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            text-align: left;
            overflow: hidden;
            box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        @media (min-width: 768px) {
            .bento-card { min-height: 340px; }
        }
        /* Top-left wide card (AI Marketing) — taller to accommodate the broadcast graphic */
        .bento-grid-creator .bento-card:nth-child(1) { min-height: 360px; }
        @media (min-width: 768px) {
            .bento-grid-creator .bento-card:nth-child(1) { min-height: 380px; }
        }
        /* Bottom row of the creator bento grid: shorter than the standard min-height */
        .bento-grid-creator .bento-card:nth-child(3),
        .bento-grid-creator .bento-card:nth-child(4) {
            min-height: 280px;
        }
        @media (min-width: 768px) {
            .bento-grid-creator .bento-card:nth-child(3),
            .bento-grid-creator .bento-card:nth-child(4) {
                min-height: 300px;
            }
        }
        .bento-graphic {
            flex: 1;
            min-height: 160px;
            padding: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            isolation: isolate;
            background: linear-gradient(180deg,
                #e2e4e9 0%,
                transparent 100%);
        }
        /* Subtle dot pattern in the grey portion of the gradient (default: top), fading into the white */
        .bento-graphic::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(15, 23, 42, 0.18) 1px, transparent 1.5px);
            background-size: 7px 7px;
            pointer-events: none;
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 18%, transparent 55%);
            mask-image: linear-gradient(180deg, #000 0%, #000 18%, transparent 55%);
            z-index: -1;
        }
        body.dark .bento-graphic {
            background: linear-gradient(180deg,
                rgba(0, 176, 241, 0.28) 0%,
                rgba(0, 176, 241, 0.06) 70%,
                transparent 100%);
        }
        /* Text-on-top variant: reverse the gradient (dark/colored at bottom, light at top) */
        .bento-card-text-top .bento-graphic {
            background: linear-gradient(0deg,
                #e2e4e9 0%,
                transparent 100%);
        }
        /* Reverse dot mask for text-top variants — dots in bottom (grey) area */
        .bento-card-text-top .bento-graphic::before {
            -webkit-mask-image: linear-gradient(0deg, #000 0%, #000 18%, transparent 55%);
            mask-image: linear-gradient(0deg, #000 0%, #000 18%, transparent 55%);
        }
        body.dark .bento-card-text-top .bento-graphic {
            background: linear-gradient(0deg,
                rgba(0, 176, 241, 0.28) 0%,
                rgba(0, 176, 241, 0.06) 70%,
                transparent 100%);
        }
        /* Feature card (Direct Deposit) — white dots in the Atlas-blue portion (top) only */
        body:not(.dark) .bento-card.bento-card-feature .bento-graphic::before {
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1.5px);
            background-size: 7px 7px;
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 12%, transparent 35%);
            mask-image: linear-gradient(180deg, #000 0%, #000 12%, transparent 35%);
        }
        .bento-body {
            padding: 1.4rem 1.6rem 1.6rem;
        }
        .bento-card-title {
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.015em;
            color: var(--f-ink);
            margin: 0;
        }
        .bento-card-subtitle {
            font-size: 0.95rem;
            color: var(--f-ink-soft);
            line-height: 1.5;
            margin: 0.35rem 0 0;
        }

        /* ---------- Bento mini-mockup graphics ---------- */
        /* Shared mock surface (white panels in light, dark panels in dark) */
        .bm-panel {
            background: #ffffff;
            border: 1px solid var(--f-border-soft);
            border-radius: 14px;
            box-shadow: 0 8px 22px -10px rgba(15, 23, 42, 0.18);
        }
        body.dark .bm-panel {
            background: var(--bg-soft);
            border-color: var(--border);
        }
        .bm-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.7rem;
            border-radius: 999px;
            background: #ffffff;
            border: 1px solid var(--f-border-soft);
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--f-ink);
            box-shadow: 0 6px 14px -8px rgba(15, 23, 42, 0.20);
        }
        body.dark .bm-pill { background: var(--bg-soft); border-color: var(--border); color: var(--f-ink); }
        .bm-pill svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
        .bm-pill.is-accent { background: var(--f-accent); border-color: var(--f-accent); color: #fff; }

        /* 1) AI marketing — Atlas hub broadcasting to platform tiles */
        .bm-distribute {
            position: relative;
            width: 100%;
            max-width: 460px;
            height: 100%;
            min-height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bm-dist-lines {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        /* Liquid-glass app icons replace the old custom-painted tiles. PNG/WEBP IS the icon. */
        .bm-dist-hub {
            position: relative;
            z-index: 3;
            width: 90px;
            height: 90px;
            border-radius: 22px;
            filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.40));
        }
        .bm-dist-hub img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .bm-dist-tile {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 64px;
            height: 64px;
            margin: -32px 0 0 -32px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.22));
        }
        .bm-dist-tile img { width: 100%; height: 100%; display: block; }
        .bm-dist-tile-tt { transform: translate(-150px, -78px); }
        .bm-dist-tile-ig { transform: translate(150px, -78px); }
        .bm-dist-tile-x  { transform: translate(-150px, 78px); }
        .bm-dist-tile-yt { transform: translate(150px, 78px); }

        /* Static dashed guide wires (under the tiles) */
        .bm-dist-lines line { vector-effect: non-scaling-stroke; }
        .bm-dist-lines .bm-guide line {
            stroke: var(--f-border);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-dasharray: 8 8;
            fill: none;
        }
        /* Active beams — sequential, one beam fires per slot of the 4.8s cycle */
        .bm-dist-lines .bm-beam {
            stroke: #ffffff;
            stroke-width: 4;
            stroke-linecap: round;
            fill: none;
            stroke-dasharray: 18 200;
            stroke-dashoffset: 20;
            animation: bm-beam-travel 4.8s linear infinite;
        }
        /* Specificity must match the parent .bm-dist-lines .bm-beam rule, otherwise the shorthand above resets animation-delay to 0 */
        .bm-dist-lines .bm-beam-tt { animation-delay: 0s; }
        .bm-dist-lines .bm-beam-ig { animation-delay: 1.2s; }
        .bm-dist-lines .bm-beam-x  { animation-delay: 2.4s; }
        .bm-dist-lines .bm-beam-yt { animation-delay: 3.6s; }
        /* pathLength="100" normalizes all four wires; beam travels in 21% of cycle, then sits off-path */
        @keyframes bm-beam-travel {
            0%   { stroke-dashoffset: 20; }
            21%  { stroke-dashoffset: -118; }
            100% { stroke-dashoffset: -118; }
        }

        /* Green border flash on the icon at impact — matches the connect-square in Step 1 */
        .bm-dist-tile::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 22px;
            border: 5px solid var(--green);
            box-sizing: border-box;
            opacity: 0;
            pointer-events: none;
            animation: bm-tile-flash 4.8s ease-out infinite;
        }
        /* Ripple ring that grows outward — radius scales proportionally, no shape change */
        .bm-dist-tile::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 22px;
            border: 3px solid var(--green);
            box-sizing: border-box;
            opacity: 0;
            pointer-events: none;
            animation: bm-tile-ripple 4.8s ease-out infinite;
        }
        .bm-dist-tile-tt::before, .bm-dist-tile-tt::after { animation-delay: 0s; }
        .bm-dist-tile-ig::before, .bm-dist-tile-ig::after { animation-delay: 1.2s; }
        .bm-dist-tile-x::before,  .bm-dist-tile-x::after  { animation-delay: 2.4s; }
        .bm-dist-tile-yt::before, .bm-dist-tile-yt::after { animation-delay: 3.6s; }
        /* Beam head reaches icon edge near 15% — flash holds briefly, ripple grows after */
        @keyframes bm-tile-flash {
            0%, 13%  { opacity: 0; }
            16%, 28% { opacity: 1; }
            34%      { opacity: 0; }
            100%     { opacity: 0; }
        }
        @keyframes bm-tile-ripple {
            0%, 14%  { opacity: 0; transform: scale(1); }
            17%      { opacity: 0.75; transform: scale(1.02); }
            34%      { opacity: 0; transform: scale(1.42); }
            100%     { opacity: 0; transform: scale(1); }
        }

        /* (legacy) AI marketing — stacked social posts */
        .bm-ai-marketing {
            position: relative;
            width: 100%;
            height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bm-ai-post {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200px;
            padding: 0.55rem 0.7rem;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            transform: translate(-50%, -50%);
        }
        .bm-ai-post .bm-plat {
            width: 28px; height: 28px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: #fff;
            flex-shrink: 0;
        }
        .bm-ai-post .bm-plat svg { width: 16px; height: 16px; fill: currentColor; }
        .bm-ai-post .bm-plat-text { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; flex: 1; }
        .bm-ai-post .bm-bar { height: 6px; border-radius: 3px; background: var(--f-border-soft); }
        body.dark .bm-ai-post .bm-bar { background: var(--border); }
        .bm-ai-post .bm-bar.short { width: 60%; }
        .bm-ai-post .bm-spark {
            width: 22px; height: 22px;
            border-radius: 6px;
            background: rgba(0, 176, 241, 0.14);
            color: var(--f-accent);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .bm-ai-post .bm-spark svg { width: 13px; height: 13px; fill: currentColor; }
        .bm-ai-post-1 { transform: translate(-50%, calc(-50% - 32px)) rotate(-5deg); opacity: 0.55; }
        .bm-ai-post-2 { transform: translate(-50%, -50%) rotate(0deg); z-index: 2; }
        .bm-ai-post-3 { transform: translate(-50%, calc(-50% + 32px)) rotate(5deg); opacity: 0.55; }
        .bm-plat-tt { background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%); }
        .bm-plat-ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 30%, #dc2743 60%, #cc2366 100%); }
        .bm-plat-yt { background: #ff0000; }
        .bm-plat-x  { background: #0a0a0a; }

        /* 2) Recurring revenue — single card + stream of incoming deposits, all in a tall white container */
        .bm-recurring-stage {
            width: 100%;
            max-width: 240px;
            min-height: 180px;
            background: #ffffff;
            border: var(--border-graphic) var(--f-border);
            border-radius: 18px;
            padding: 0.85rem 1rem 0.9rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            overflow: hidden;
            box-shadow: 0 8px 22px -10px rgba(15, 23, 42, 0.18);
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
        }
        /* Tighten gap between the tall stage and the bottom of the bento card */
        .bento-card.bento-card-recurring .bento-graphic { padding-bottom: 0.35rem; }
        .bm-recurring {
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            padding-bottom: 0.85rem;
            border-bottom: 1px solid var(--f-border-soft);
        }
        .bm-recurring-head {
            display: flex; align-items: center; justify-content: space-between;
            font-size: 0.7rem; font-weight: 600; color: var(--f-ink-soft);
            text-transform: uppercase; letter-spacing: 0.04em;
        }
        .bm-recurring-head .bm-cycle {
            display: inline-flex; align-items: center; gap: 0.25rem;
            color: var(--f-accent);
        }
        .bm-recurring-head .bm-cycle svg { width: 11px; height: 11px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
        .bm-recurring-amount {
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 1.7rem; font-weight: 700; color: var(--f-ink);
            letter-spacing: -0.02em; line-height: 1;
        }
        .bm-recurring-amount .bm-per { font-size: 0.78rem; font-weight: 500; color: var(--f-ink-soft); margin-left: 0.2rem; }
        .bm-recurring-bar {
            height: 5px; border-radius: 3px; background: var(--f-border-soft); overflow: hidden;
        }
        body.dark .bm-recurring-bar { background: var(--border); }
        .bm-recurring-bar > span {
            display: block;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--f-accent) 0%, var(--f-accent-hover) 100%);
            border-radius: 3px;
            animation: bm-bar-fill 3s ease-out infinite;
        }
        @keyframes bm-bar-fill {
            0% { width: 0%; }
            92% { width: 100%; }
            100% { width: 100%; }
        }

        /* Deposit stream — top slot is highlighted; rows slide smoothly down each cycle */
        .bm-recurring-stream {
            position: relative;
            width: 100%;
            flex: 1;
            min-height: 110px;
            overflow: hidden;
        }
        .bm-deposit {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            display: flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            background: rgba(34, 197, 94, 0.05);
            border: 1px solid rgba(34, 197, 94, 0.16);
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(22, 163, 74, 0.65);
            letter-spacing: -0.01em;
            opacity: 1;
            box-sizing: border-box;
            animation: bm-deposit-rotate 9s ease-in-out infinite;
        }
        .bm-deposit::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: currentColor;
            flex-shrink: 0;
        }
        .bm-deposit:nth-child(1) { animation-delay: 0s; }
        .bm-deposit:nth-child(2) { animation-delay: -3s; }
        .bm-deposit:nth-child(3) { animation-delay: -6s; }
        @keyframes bm-deposit-rotate {
            0%, 30% {
                transform: translateY(0px);
                background: rgba(34, 197, 94, 0.16);
                border-color: rgba(34, 197, 94, 0.34);
                color: #15803d;
                opacity: 1;
            }
            33%, 63% {
                transform: translateY(32px);
                background: rgba(34, 197, 94, 0.05);
                border-color: rgba(34, 197, 94, 0.16);
                color: rgba(22, 163, 74, 0.65);
                opacity: 1;
            }
            66%, 96% {
                transform: translateY(64px);
                background: rgba(34, 197, 94, 0.05);
                border-color: rgba(34, 197, 94, 0.16);
                color: rgba(22, 163, 74, 0.65);
                opacity: 1;
            }
            99%, 100% {
                transform: translateY(64px);
                background: rgba(34, 197, 94, 0.05);
                border-color: rgba(34, 197, 94, 0.16);
                color: rgba(22, 163, 74, 0.65);
                opacity: 0;
            }
        }

        /* Bento variant — text on top, graphic below */
        .bento-card.bento-card-text-top { flex-direction: column-reverse; }

        /* 3) Payout Protection — image / shield placeholder */
        .bm-payout {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bm-payout-img {
            width: 150px;
            height: auto;
            max-width: 100%;
            object-fit: contain;
        }
        .bm-payout-shield {
            width: 110px;
            height: 110px;
            border-radius: 24px;
            background: linear-gradient(180deg, var(--f-accent) 0%, var(--f-accent-hover) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            box-shadow: 0 14px 30px -10px rgba(0, 176, 241, 0.45);
        }
        .bm-payout-shield svg {
            width: 56px;
            height: 56px;
            fill: none;
            stroke: currentColor;
        }

        /* (legacy) DM voice note — chat bubble with waveform */
        .bm-dm {
            width: 100%;
            max-width: 220px;
            padding: 0.7rem 0.85rem;
            border-radius: 14px 14px 14px 4px;
            display: flex; align-items: center; gap: 0.6rem;
            background: var(--f-accent);
            color: #fff;
            box-shadow: 0 8px 22px -10px rgba(0, 176, 241, 0.40);
        }
        .bm-dm-play {
            width: 32px; height: 32px; border-radius: 50%;
            background: rgba(255,255,255,0.22);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .bm-dm-play svg { width: 13px; height: 13px; fill: #fff; }
        .bm-dm-wave { display: flex; align-items: center; gap: 2px; flex: 1; height: 24px; }
        .bm-dm-wave span { display: block; width: 3px; border-radius: 2px; background: rgba(255,255,255,0.85); }
        .bm-dm-time { font-size: 0.72rem; font-weight: 600; opacity: 0.9; }

        /* 4) Paid every week — animated stage: withdraw → loading → direct deposit */
        .bm-paid-stage {
            position: relative;
            width: 100%;
            max-width: 420px;
            height: 100%;
        }
        .bm-pay-state {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
        }
        .bm-pay-state-1 { animation: pay-state-1-anim 6s ease-in-out infinite; }
        .bm-pay-state-2 { animation: pay-state-2-anim 6s ease-in-out infinite; }
        .bm-pay-state-3 { animation: pay-state-3-anim 6s ease-in-out infinite; }

        @keyframes pay-state-1-anim {
            0%, 27% { opacity: 1; }
            30%, 95% { opacity: 0; }
            100% { opacity: 1; }
        }
        @keyframes pay-state-2-anim {
            0%, 30% { opacity: 0; }
            33%, 53% { opacity: 1; }
            56%, 100% { opacity: 0; }
        }
        @keyframes pay-state-3-anim {
            0%, 56% { opacity: 0; transform: scale(0.94); }
            60% { opacity: 1; transform: scale(1.04); }
            65%, 92% { opacity: 1; transform: scale(1); }
            96%, 100% { opacity: 0; transform: scale(1); }
        }

        /* State panels — share the same dimensions for visual consistency */
        .bm-pay-withdraw,
        .bm-pay-loading,
        .bm-paid-success {
            width: 100%;
            max-width: 420px;
            padding: 1.1rem 1.3rem;
            min-height: 84px;
            box-sizing: border-box;
        }

        /* State 1 — Withdraw panel */
        .bm-pay-withdraw {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.15rem;
            border: var(--border-graphic) var(--f-border);
        }
        .bm-pay-balance { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
        .bm-pay-balance-label {
            font-size: 0.66rem; font-weight: 600;
            color: var(--f-ink-soft);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .bm-pay-balance-amount {
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 1.2rem; font-weight: 700;
            color: var(--f-ink);
            letter-spacing: -0.015em;
        }
        .bm-pay-btn {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #ffffff;
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 0.85rem; font-weight: 600;
            padding: 0.6rem 1rem;
            border-radius: 10px;
            border: 0;
            cursor: pointer;
            box-shadow: 0 6px 14px -4px rgba(34, 197, 94, 0.40);
            flex-shrink: 0;
            white-space: nowrap;
            letter-spacing: -0.005em;
        }

        /* State 2 — Loading panel (disabled-grey look) */
        .bm-pay-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.95rem;
            background: var(--f-bg-hover);
            border: var(--border-graphic) var(--f-border);
        }
        .bm-pay-spinner {
            width: 22px; height: 22px;
            border: 3px solid rgba(15, 23, 42, 0.10);
            border-top-color: var(--f-ink-muted);
            border-radius: 50%;
            animation: pay-spinner-spin 0.85s linear infinite;
            flex-shrink: 0;
        }
        @keyframes pay-spinner-spin { to { transform: rotate(360deg); } }
        .bm-pay-loading-text {
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 0.9rem; font-weight: 600;
            color: var(--f-ink-muted);
        }

        /* State 3 — success: green border (slightly transparent) */
        .bm-paid-success {
            border: var(--border-graphic) rgba(34, 197, 94, 0.45) !important;
        }

        /* Animated cursor (only shown during state 1 → click moment) */
        .bm-pay-cursor {
            position: absolute;
            width: 26px;
            height: 26px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: top left;
            pointer-events: none;
            z-index: 10;
        }
        .bm-pay-cursor-normal {
            background-image: url("/static/assets/CursorNormal.avif");
            animation: pay-cursor-normal 6s ease-in-out infinite;
        }
        .bm-pay-cursor-click {
            background-image: url("/static/assets/CursorClick.avif");
            opacity: 0;
            animation: pay-cursor-click 6s ease-in-out infinite;
        }
        @keyframes pay-cursor-normal {
            0% { left: 105%; top: 5%; opacity: 1; }
            18%, 22% { left: 68%; top: 52%; opacity: 1; }
            24% { left: 68%; top: 52%; opacity: 0; }
            100% { left: 68%; top: 52%; opacity: 0; }
        }
        @keyframes pay-cursor-click {
            0%, 22% { left: 68%; top: 52%; opacity: 0; }
            24% { left: 68%; top: 52%; opacity: 1; }
            28% { left: 68%; top: 52%; opacity: 1; }
            30%, 100% { left: 68%; top: 52%; opacity: 0; }
        }

        /* 4) Paid every week — bank deposit notification (final state) */
        .bm-paid {
            display: flex;
            align-items: center;
            gap: 1.15rem;
            border: var(--border-graphic) var(--f-border);
        }
        .bm-paid-icon {
            width: 46px; height: 46px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            filter: drop-shadow(0 6px 14px rgba(34, 197, 94, 0.42));
        }
        .bm-paid-icon img { width: 100%; height: 100%; display: block; }
        .bm-paid-text { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; min-width: 0; }
        .bm-paid-label { font-size: 0.78rem; font-weight: 600; color: var(--f-ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
        .bm-paid-amount { font-family: "Mona Sans", Inter, system-ui, sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--f-ink); letter-spacing: -0.01em; }
        .bm-paid-day { font-size: 0.85rem; font-weight: 600; color: #22c55e; padding: 0.3rem 0.7rem; border-radius: 8px; background: rgba(34, 197, 94, 0.12); flex-shrink: 0; }

        /* 5) Roster — grid of avatar circles */
        .bm-roster {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.55rem;
            padding: 0.4rem;
        }
        .bm-avatar {
            width: 38px; height: 38px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 700; font-size: 0.78rem;
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            position: relative;
            box-shadow: 0 6px 14px -6px rgba(15,23,42,0.20);
            border: 2px solid #ffffff;
        }
        body.dark .bm-avatar { border-color: var(--bg); }
        .bm-avatar::after {
            content: '';
            position: absolute;
            bottom: 0; right: 0;
            width: 9px; height: 9px;
            border-radius: 50%;
            background: #22c55e;
            border: 2px solid #ffffff;
        }
        body.dark .bm-avatar::after { border-color: var(--bg); }
        .bm-avatar-1 { background: linear-gradient(135deg, #00b0f1 0%, #0078d4 100%); }
        .bm-avatar-2 { background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%); }
        .bm-avatar-3 { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
        .bm-avatar-4 { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
        .bm-avatar-5 { background: linear-gradient(135deg, #22c55e 0%, #15803d 100%); }
        .bm-avatar-6 { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }
        .bm-avatar-7 { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%); }
        .bm-avatar-8 { background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%); }

        /* 6) AI for every creator — stacked avatars + sparkle */
        .bm-ai-roster {
            position: relative;
            width: 140px; height: 80px;
            display: flex; align-items: center; justify-content: center;
        }
        .bm-ai-roster .bm-avatar {
            position: absolute;
            width: 44px; height: 44px;
            font-size: 0.85rem;
        }
        .bm-ai-roster .bm-avatar:nth-child(1) { left: 10px; }
        .bm-ai-roster .bm-avatar:nth-child(2) { left: 38px; z-index: 2; }
        .bm-ai-roster .bm-avatar:nth-child(3) { left: 66px; z-index: 1; }
        .bm-ai-spark-badge {
            position: absolute;
            top: 0; right: 0;
            width: 32px; height: 32px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--f-accent) 0%, #8b7aff 100%);
            color: #fff;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 8px 18px -6px rgba(0, 176, 241, 0.45);
            z-index: 3;
        }
        .bm-ai-spark-badge svg { width: 16px; height: 16px; fill: currentColor; }

        /* 7) Centralized payouts — bar chart */
        .bm-bars {
            display: flex; align-items: flex-end; gap: 8px;
            height: 86px;
            padding: 0 0.4rem;
        }
        .bm-bars span {
            display: block;
            width: 14px;
            border-radius: 4px 4px 2px 2px;
            background: linear-gradient(180deg, var(--f-accent) 0%, color-mix(in srgb, var(--f-accent) 60%, transparent) 100%);
        }
        .bm-bars .b1 { height: 30%; }
        .bm-bars .b2 { height: 55%; }
        .bm-bars .b3 { height: 42%; }
        .bm-bars .b4 { height: 78%; }
        .bm-bars .b5 { height: 92%; background: linear-gradient(180deg, #8b7aff 0%, var(--f-accent) 100%); }

        /* 8) Recurring at scale — stacked subscription rows */
        .bm-stack {
            display: flex; flex-direction: column; gap: 0.4rem;
            width: 100%; max-width: 200px;
        }
        .bm-stack-row {
            display: flex; align-items: center; gap: 0.55rem;
            padding: 0.45rem 0.6rem;
        }
        .bm-stack-row .bm-dot {
            width: 22px; height: 22px; border-radius: 50%;
            flex-shrink: 0;
        }
        .bm-stack-row .bm-name { flex: 1; height: 6px; border-radius: 3px; background: var(--f-border-soft); }
        body.dark .bm-stack-row .bm-name { background: var(--border); }
        .bm-stack-row .bm-amt {
            font-size: 0.72rem; font-weight: 700; color: var(--f-accent);
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
        }
        .bm-stack-row:nth-child(1) .bm-dot { background: linear-gradient(135deg, #00b0f1 0%, #0078d4 100%); }
        .bm-stack-row:nth-child(2) .bm-dot { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
        .bm-stack-row:nth-child(3) .bm-dot { background: linear-gradient(135deg, #22c55e 0%, #15803d 100%); }

        /* 9) Built to grow — line chart trending up */
        .bm-trend {
            position: relative;
            width: 100%; max-width: 220px;
            height: 90px;
        }
        .bm-trend svg { width: 100%; height: 100%; overflow: visible; }
        .bm-trend-line { fill: none; stroke: var(--f-accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
        .bm-trend-area { fill: url(#bmTrendFill); stroke: none; }
        .bm-trend-dot { fill: var(--f-accent); stroke: #fff; stroke-width: 2.5; }
        body.dark .bm-trend-dot { stroke: var(--bg-soft); }
        .bm-trend-arrow {
            position: absolute;
            top: 4px; right: -4px;
            width: 26px; height: 26px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--f-accent) 0%, #8b7aff 100%);
            color: #fff;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 6px 14px -4px rgba(0, 176, 241, 0.40);
        }
        .bm-trend-arrow svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }

        /* ===== Agency bento card graphics (dark page) ===== */
        /* Dark-mode dot pattern: white dots over Atlas-blue gradient */
        body.dark .bento-graphic::before {
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1.5px);
        }

        /* 1. Multiply earnings — three creator deposit cards flowing into agency total */
        .bm-streams {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.25rem;
        }
        .bm-streams-row {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            width: 100%;
            max-width: 380px;
        }
        .bm-stream-card {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.6rem;
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.85) 0%, rgba(15, 15, 15, 0.85) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.5);
            min-width: 0;
        }
        .bm-stream-avatar {
            width: 26px; height: 26px;
            border-radius: 50%;
            display: grid; place-items: center;
            color: #fff;
            font-family: "Mona Sans", Inter, sans-serif;
            font-weight: 700;
            font-size: 10px;
            letter-spacing: 0.02em;
            flex-shrink: 0;
        }
        .bms-avatar-1 { background: linear-gradient(135deg, #00b0f1, #009ad3); }
        .bms-avatar-2 { background: linear-gradient(135deg, #8b7aff, #6552d8); }
        .bms-avatar-3 { background: linear-gradient(135deg, #4ade80, #16a34a); }
        .bm-stream-amt {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            color: #4ade80;
            letter-spacing: -0.01em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .bm-streams-flow {
            width: 100%;
            max-width: 380px;
            height: 22px;
            margin-top: -2px;
        }
        .bm-flow-line {
            fill: none;
            stroke: rgba(0, 176, 241, 0.45);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-dasharray: 3 4;
            animation: bm-flow-dash 2s linear infinite;
        }
        @keyframes bm-flow-dash {
            to { stroke-dashoffset: -14; }
        }
        .bm-stream-total {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.6rem 1.1rem;
            background: linear-gradient(180deg, rgba(0, 176, 241, 0.18) 0%, rgba(0, 176, 241, 0.05) 100%);
            border: 1px solid rgba(0, 176, 241, 0.35);
            border-radius: 14px;
            box-shadow: 0 8px 24px -8px rgba(0, 176, 241, 0.45);
        }
        .bm-stream-total-label {
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 0.66rem;
            font-weight: 600;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .bm-stream-total-amt {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.025em;
            line-height: 1.02;
            margin-top: 2px;
        }
        .bm-stream-total-amt small {
            font-size: 0.85rem;
            font-weight: 500;
            color: #9ca3af;
            letter-spacing: 0;
            margin-left: 3px;
        }

        /* 2. Diversified income — donut chart of 6 revenue streams */
        .bm-portfolio {
            position: relative;
            width: 180px; height: 180px;
        }
        .bm-portfolio svg { width: 100%; height: 100%; overflow: visible; }
        .bm-port-seg { stroke-linecap: butt; }
        .bm-port-1 { stroke: #00b0f1; }
        .bm-port-2 { stroke: #8b7aff; }
        .bm-port-3 { stroke: #4ade80; }
        .bm-port-4 { stroke: #f0a1ff; }
        .bm-port-5 { stroke: #ffd166; }
        .bm-portfolio-center {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .bm-portfolio-num {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
            letter-spacing: -0.025em;
        }
        .bm-portfolio-label {
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            color: #9ca3af;
            margin-top: 3px;
        }

        /* 3. Build a real brand — hub-and-spoke */
        .bm-brand {
            position: relative;
            width: 200px; height: 200px;
        }
        .bm-brand-lines {
            position: absolute;
            inset: 0;
            width: 100%; height: 100%;
        }
        .bbl {
            stroke: rgba(0, 176, 241, 0.4);
            stroke-width: 1.4;
            stroke-dasharray: 3 4;
            animation: bm-flow-dash 2.4s linear infinite;
        }
        .bm-brand-creator {
            position: absolute;
            width: 36px; height: 36px;
            border-radius: 50%;
            overflow: hidden;
            background: #1a1a1a;
            border: 2px solid #0f0f0f;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            transform: translate(-50%, -50%);
        }
        .bm-brand-creator img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
        }
        .bbc-1 { left: 85%; top: 50%; }
        .bbc-2 { left: 67.5%; top: 20%; }
        .bbc-3 { left: 32.5%; top: 20%; }
        .bbc-4 { left: 15%; top: 50%; }
        .bbc-5 { left: 32.5%; top: 80%; }
        .bbc-6 { left: 67.5%; top: 80%; }
        .bm-brand-hub {
            position: absolute;
            left: 50%; top: 50%;
            transform: translate(-50%, -50%);
            width: 52px; height: 52px;
            display: grid; place-items: center;
            filter: drop-shadow(0 6px 18px rgba(0, 176, 241, 0.55));
        }
        .bm-brand-hub img {
            width: 100%; height: 100%;
            object-fit: contain;
            display: block;
        }

        /* 4. Automate everything — task pipeline */
        .bm-tasks {
            width: 100%;
            max-width: 250px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .bm-task {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.5rem 0.6rem;
            background: #1a1a1a;
            border: 1px solid #2a2a2a;
            border-radius: 10px;
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            color: #9ca3af;
        }
        .bm-task-done {
            color: #fff;
            background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
            border-color: rgba(0, 176, 241, 0.32);
        }
        .bm-task-active {
            color: #fff;
            background: linear-gradient(180deg, rgba(0, 176, 241, 0.18) 0%, #141414 100%);
            border-color: rgba(0, 176, 241, 0.5);
        }
        .bm-task-check {
            width: 16px; height: 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14);
            display: grid; place-items: center;
            flex-shrink: 0;
        }
        .bm-task-done .bm-task-check {
            background: var(--f-accent);
            border-color: var(--f-accent);
        }
        .bm-task-check svg {
            width: 11px; height: 11px;
            fill: none;
            stroke: #fff;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .bm-task-active .bm-task-check {
            border: 2px solid rgba(0, 176, 241, 0.3);
            border-top-color: var(--f-accent);
            background: transparent;
            animation: pay-spinner-spin 0.85s linear infinite;
        }
        .bm-task-label {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .bm-task-tag {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--f-accent);
            background: rgba(0, 176, 241, 0.12);
            padding: 1px 6px;
            border-radius: 6px;
            letter-spacing: 0.02em;
        }

        /* 5. Sellable asset — valuation card with chart */
        .bm-valuation {
            width: 100%;
            max-width: 240px;
            padding: 0.85rem 1rem 0.5rem;
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.85) 0%, rgba(15, 15, 15, 0.85) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }
        .bm-val-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.2rem;
        }
        .bm-val-label {
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 0.66rem;
            font-weight: 600;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .bm-val-multiple {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.66rem;
            font-weight: 700;
            color: var(--f-accent);
            background: rgba(0, 176, 241, 0.12);
            padding: 2px 7px;
            border-radius: 6px;
            letter-spacing: 0.02em;
        }
        .bm-val-amount {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
            line-height: 1.05;
            margin-bottom: 0.4rem;
        }
        .bm-val-chart {
            display: block;
            width: 100%;
            height: 56px;
        }
        .bm-val-area { fill: url(#bmValFill); }
        .bm-val-line { fill: none; stroke: var(--f-accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .bm-val-dot { fill: var(--f-accent); stroke: #0f0f0f; stroke-width: 2; }

        /* Agency: ONE Atlas blue glow per card, position varies. Border highlight matches that single position. */
        body.dark .bento-card {
            border: 3px solid transparent;
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(135deg,
                    var(--f-accent) 0%,
                    var(--f-border) 20%,
                    var(--f-border) 100%
                ) border-box;
        }
        body.dark .bento-card:nth-child(2) {
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(45deg,
                    var(--f-accent) 0%,
                    var(--f-border) 22%,
                    var(--f-border) 100%
                ) border-box;
        }
        body.dark .bento-card:nth-child(3) {
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(0deg,
                    var(--f-border) 0%,
                    var(--f-border) 75%,
                    var(--f-accent) 100%
                ) border-box;
        }
        body.dark .bento-card:nth-child(4) {
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(225deg,
                    var(--f-accent) 0%,
                    var(--f-border) 22%,
                    var(--f-border) 100%
                ) border-box;
        }
        body.dark .bento-card:nth-child(5) {
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(270deg,
                    var(--f-accent) 0%,
                    var(--f-border) 22%,
                    var(--f-border) 100%
                ) border-box;
        }

        /* Stand-out feature card (light page only): dark grey at top fading to near-black at the bottom */
        body:not(.dark) .bento-card.bento-card-feature {
            background: linear-gradient(180deg,
                #2a2a2a 0%,
                #141414 35%,
                #050505 100%);
        }
        body:not(.dark) .bento-card.bento-card-feature .bento-graphic {
            background: transparent;
        }
        body:not(.dark) .bento-card.bento-card-feature .bento-card-title {
            color: #ffffff;
        }
        body:not(.dark) .bento-card.bento-card-feature .bento-card-subtitle {
            color: rgba(255, 255, 255, 0.72);
        }
        /* Feature card body — title left (wraps), subtitle right, vertically centered with the title */
        .bento-card-feature .bento-body {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .bento-card-feature .bento-card-title {
            flex: 0 0 auto;
        }
        .bento-card-feature .bento-card-subtitle {
            flex: 0 1 auto;
            max-width: 19.5rem;
            margin: 0;
            text-align: left;
        }
        /* Marketing on Autopilot — cap the subtitle to keep it from running edge-to-edge */
        .bento-grid-creator .bento-card:nth-child(1) .bento-card-subtitle {
            max-width: 28rem;
        }

        /* Show creator grid (4 cards) by default; agency grid (5 cards) only on the dark page */
        .bento-grid-agency { display: none; }
        body.dark .bento-grid-creator { display: none; }
        body.dark .bento-grid-agency { display: grid; }

        /* Bento layouts (desktop): asymmetric for visual interest */
        @media (min-width: 768px) {
            /* 4-card bento (creator) — large/small, small/large diagonal */
            .bento-grid-creator .bento-card:nth-child(1) { grid-column: span 4; }
            .bento-grid-creator .bento-card:nth-child(2) { grid-column: span 2; }
            .bento-grid-creator .bento-card:nth-child(3) { grid-column: span 2; }
            .bento-grid-creator .bento-card:nth-child(4) { grid-column: span 4; }

            /* 5-card bento (agency) — large + small on top, three thirds beneath */
            .bento-grid-agency .bento-card:nth-child(1) { grid-column: span 4; min-height: 380px; }
            .bento-grid-agency .bento-card:nth-child(2) { grid-column: span 2; }
            .bento-grid-agency .bento-card:nth-child(3) { grid-column: span 2; min-height: 300px; }
            .bento-grid-agency .bento-card:nth-child(4) { grid-column: span 2; min-height: 300px; }
            .bento-grid-agency .bento-card:nth-child(5) { grid-column: span 2; min-height: 300px; }
        }

        /* ---------- Add-ons section ---------- */
        .addons {
            background: transparent;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
        }
        @media (min-width: 768px) {
            .addons {
                border-top-left-radius: 52px;
                border-top-right-radius: 52px;
            }
        }
        body.dark .addons {
            position: relative;
            background: linear-gradient(180deg, rgba(0, 176, 241, 0.20) 0%, transparent 220px);
            border-top: 1px solid var(--f-accent);
        }
        .addons-inner {
            max-width: 1080px;
            margin: 0 auto;
            padding: 4rem 1.5rem 2rem;
        }
        @media (min-width: 768px) { .addons-inner { padding: 5rem 2rem 2.5rem; } }
        .addons-header { text-align: center; margin-bottom: 1.25rem; }
        @media (min-width: 768px) { .addons-header { margin-bottom: 1.5rem; } }
        .addons-header h2 {
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: clamp(2rem, 4.6vw, 44px);
            font-weight: 600;
            letter-spacing: -0.04em;
            line-height: 1.2em;
            color: #000000;
            text-align: center;
            margin-top: 1rem;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }
        .addons-header p {
            margin-top: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.36px;
            line-height: 26.5px;
            color: #6b7280;
            text-align: center;
            text-wrap: balance;
        }
        .addons-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }
        @media (min-width: 640px) {
            .addons-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 900px) {
            .addons-grid { grid-template-columns: repeat(3, 1fr); }
        }
        /* Same border + radius as bento cards */
        .addon-card {
            border: var(--border-graphic) var(--f-border);
            background: #ffffff;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            text-align: left;
            overflow: hidden;
            box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.08);
            cursor: pointer;
            transition: box-shadow 0.2s ease;
        }
        .addon-card:hover {
            box-shadow: 0 10px 28px -14px rgba(15, 23, 42, 0.14);
        }
        /* Top graphic zone — per-card colored gradient (var) fading to white + faded dot pattern */
        .addon-graphic {
            position: relative;
            min-height: 170px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            isolation: isolate;
            background: linear-gradient(180deg, var(--addon-tint, #e2e4e9) 0%, #ffffff 100%);
            transition: background 0.35s ease;
        }
        .addon-card:hover .addon-graphic {
            background: linear-gradient(180deg, var(--addon-tint-strong, var(--addon-tint, #e2e4e9)) 0%, #ffffff 100%);
        }
        .addon-graphic::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(15, 23, 42, 0.18) 1px, transparent 1.5px);
            background-size: 7px 7px;
            pointer-events: none;
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 18%, transparent 60%);
            mask-image: linear-gradient(180deg, #000 0%, #000 18%, transparent 60%);
            z-index: -1;
        }
        /* Per-card tints — approximations pulled from each icon's hue family. Swap for exact hex when ready. */
        .addon-card-chat       { --addon-tint: rgba(0, 176, 241, 0.32);  --addon-tint-strong: rgba(0, 176, 241, 0.58); }
        .addon-card-clip       { --addon-tint: rgba(236, 72, 153, 0.30); --addon-tint-strong: rgba(236, 72, 153, 0.55); }
        .addon-card-community  { --addon-tint: rgba(249, 115, 22, 0.32); --addon-tint-strong: rgba(249, 115, 22, 0.58); }
        .addon-card-massdm     { --addon-tint: rgba(239, 68, 68, 0.30);  --addon-tint-strong: rgba(239, 68, 68, 0.55); }
        .addon-card-affiliate  { --addon-tint: rgba(16, 185, 129, 0.32); --addon-tint-strong: rgba(16, 185, 129, 0.58); }
        .addon-card-tipgoals   { --addon-tint: rgba(168, 85, 247, 0.34); --addon-tint-strong: rgba(168, 85, 247, 0.60); }
        body.dark .addon-graphic {
            background: linear-gradient(180deg, var(--addon-tint, rgba(0, 176, 241, 0.28)) 0%, transparent 100%);
        }
        /* Pre-rendered Apple-style app icons: gradient + glyph baked in. Just float the PNG with a subtle lift. */
        .addon-icon {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 14px 24px rgba(15, 23, 42, 0.22));
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
        }
        .addon-card:hover .addon-icon {
            transform: translateY(-6px) rotate(-4deg);
            filter: drop-shadow(0 22px 32px rgba(15, 23, 42, 0.28));
        }
        .addon-icon img {
            width: 100%;
            height: 100%;
            display: block;
        }
        .addon-body {
            padding: 1.1rem 1.4rem 1.35rem;
        }
        .addon-title {
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.015em;
            color: var(--f-ink);
            margin: 0;
        }
        .addon-desc {
            margin: 0.35rem 0 0;
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--f-ink-soft);
        }
        body.dark .addon-card {
            background: var(--bg-tint);
            border-color: var(--f-border-soft);
        }
        body.dark .addon-title { color: var(--f-ink); }
        body.dark .addon-desc { color: var(--f-ink-soft); }
        /* CTA below the grid */
        .addons-cta {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
        }
        .addons-cta .fm-btn-hero,
        .faq-cta .fm-btn-hero {
            min-width: 0;
            height: 48px;
            padding: 0 1.4rem;
            font-size: 0.95rem;
            border-radius: 14px;
            box-shadow: none;
        }
        .addons-cta .fm-btn-hero:hover,
        .faq-cta .fm-btn-hero:hover {
            box-shadow: none;
        }
        .addons-cta .btn-arrow { transition: transform 0.2s ease; }
        .addons-cta .fm-btn-hero:hover .btn-arrow { transform: translateX(4px); }

        /* Agency variant of the addons section — 3 hero cards with title/sub on top, image filling the bottom */
        .power-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }
        @media (min-width: 768px) { .power-grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; } }
        .power-card {
            position: relative;
            display: flex;
            flex-direction: column;
            text-align: center;
            overflow: hidden;
            min-height: 460px;
            border-radius: 24px;
            border: 3px solid transparent;
            background:
                linear-gradient(var(--bg-tint), var(--bg-tint)) padding-box,
                linear-gradient(180deg, var(--f-accent) 0%, var(--f-border) 22%, var(--f-border) 100%) border-box;
        }
        /* Subtle grey dot matrix in the upper portion of the card, fading down */
        .power-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(160, 160, 160, 0.16) 1px, transparent 1.5px);
            background-size: 7px 7px;
            pointer-events: none;
            -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
            z-index: 0;
        }
        /* Short black gradient at the bottom — bleeds the image into the card */
        .power-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.6) 12%, transparent 35%);
            pointer-events: none;
            z-index: 1;
        }
        .power-body {
            position: relative;
            z-index: 2;
            padding: 2.6rem 1.4rem 0.6rem;
        }
        .power-title {
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 1.6rem;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.015em;
            color: var(--f-ink);
            margin: 0;
        }
        .power-desc {
            margin: 0.55rem auto 0;
            max-width: 260px;
            font-size: 0.9rem;
            line-height: 1.45;
            color: var(--f-ink-soft);
        }
        .power-graphic {
            position: relative;
            z-index: 0;
            flex: 1;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 1rem 1rem 0;
            overflow: hidden;
        }
        .power-graphic img {
            max-width: 100%;
            max-height: 230px;
            height: auto;
            display: block;
            object-fit: contain;
        }
        /* Card 1 — Flag Videos: nudge right, rotate counter-clockwise, slight scale */
        .power-grid .power-card:nth-child(1) .power-graphic img {
            transform: translateX(22px) rotate(-8deg) scale(1.08);
            transform-origin: center bottom;
            max-height: 260px;
        }
        /* Card 2 — Bot Protection: larger robot with a tight outer-edge radial fade
           closest-side keeps the gradient sized to the image so the 90→100% feather lands on the visible edge */
        .power-grid .power-card:nth-child(2) .power-graphic img {
            transform: scale(1.25);
            max-height: 280px;
            -webkit-mask-image: radial-gradient(ellipse closest-side at center, #000 65%, transparent 100%);
            mask-image: radial-gradient(ellipse closest-side at center, #000 65%, transparent 100%);
        }
        /* Card 3 — VIP Support: shift the graphic upward */
        .power-grid .power-card:nth-child(3) .power-graphic img {
            transform: translateY(-70px);
        }

        /* First feature section — grey-to-white gradient (light/creator default) */
        .feature-first {
            position: relative;
            background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 220px);
            padding: 0 0 1.5rem;
        }
        .feature-first .feature {
            padding-top: 0;
        }

        /* How it works */
        .how {
            background: #ffffff;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
        }
        @media (min-width: 768px) {
            .how {
                border-top-left-radius: 52px;
                border-top-right-radius: 52px;
            }
        }
        .how-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
        }
        @media (min-width: 768px) { .how-inner { padding: 6rem 2rem; } }
        .how-header {
            text-align: center;
            margin-bottom: 1.75rem;
        }
        @media (min-width: 768px) { .how-header { margin-bottom: 2rem; } }
        .how-header h2 {
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: clamp(2rem, 4.6vw, 44px);
            font-weight: 600;
            letter-spacing: -0.04em;
            line-height: 1.2em;
            color: #000000;
            text-align: center;
            margin-top: 1rem;
            max-width: 880px;
            margin-left: auto;
            margin-right: auto;
        }
        .how-header p {
            margin-top: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.36px;
            line-height: 26.5px;
            color: #6b7280;
            text-align: center;
            text-wrap: balance;
        }
        .how-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.85rem;
            max-width: 1080px;
            margin: 0 auto;
        }
        @media (min-width: 768px) {
            .how-grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
        }
        .how-step {
            background: #ffffff;
            border: var(--border-graphic) #ffffff;
            outline: 5px solid var(--f-border);
            outline-offset: 0;
            border-radius: 24px;
            padding: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 12px 32px -16px rgba(15, 23, 42, 0.10);
        }

        /* Top graphic zone — grey gradient at top fading to white at body boundary
           (matches the .bento-graphic "Marketing on Autopilot" card pattern) */
        .how-step-graphic {
            min-height: 280px;
            background: linear-gradient(180deg,
                #e2e4e9 0%,
                transparent 100%);
            padding: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .how-step-graphic::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(15, 23, 42, 0.18) 1px, transparent 1.5px);
            background-size: 7px 7px;
            pointer-events: none;
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 18%, transparent 55%);
            mask-image: linear-gradient(180deg, #000 0%, #000 18%, transparent 55%);
            z-index: -1;
        }
        body.dark .how-step-graphic {
            background: linear-gradient(180deg,
                rgba(0, 176, 241, 0.55) 0%,
                rgba(0, 176, 241, 0.36) 35%,
                rgba(0, 176, 241, 0.05) 92%,
                var(--bg-tint) 100%);
        }

        /* Default centered icon (cards 1 & 2) */
        .how-step-icon {
            width: 110px;
            aspect-ratio: 1 / 1;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.70);
            border: 1px solid rgba(0, 176, 241, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--f-accent);
            box-shadow: 0 10px 24px -8px rgba(0, 176, 241, 0.34);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .how-step-icon svg {
            width: 50px;
            height: 50px;
            stroke: currentColor;
            stroke-width: 1.7;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Card 1 — Connect graphic */
        .connect-graphic {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Liquid-glass app icons — strip the old tile bg/border/shadow; the PNG itself IS the icon */
        .connect-square {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.22));
        }
        .connect-square img {
            width: 100%;
            height: 100%;
            display: block;
        }
        /* Green ring that flashes around the icon at the connection moment (replaces the old border-color flash) */
        .connect-square::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 22px;
            border: 3px solid var(--green);
            opacity: 0;
            pointer-events: none;
            box-sizing: border-box;
        }
        /* Counter-rotate the icon image so it stays upright while the square tile rotates */
        /* Tiles rotate WITH the parent — no counter-rotation. Apart they lean away from each other; together they lean toward each other. */
        .connect-1 {
            animation: connect-1-move 4s ease-in-out infinite;
        }
        .connect-1::after { animation: connect-glow 4s ease-in-out infinite; }
        .connect-2 {
            animation: connect-2-move 4s ease-in-out infinite;
        }
        .connect-2::after { animation: connect-glow 4s ease-in-out infinite; }
        @keyframes connect-glow {
            0%, 35%   { opacity: 0; }
            60%, 78%  { opacity: 1; }
            85%, 100% { opacity: 0; }
        }
        .connect-line {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 0;
            border-top: 2px dashed rgba(0, 0, 0, 0.55);
            animation: connect-line-anim 4s ease-in-out infinite;
        }
        /* Two beams that travel in opposite directions along the connector during the apart phase */
        .connect-beam {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 3px;
            border-radius: 2px;
            background: var(--f-accent);
            box-shadow: 0 0 6px rgba(0, 176, 241, 0.7);
            opacity: 0;
            pointer-events: none;
        }
        .connect-beam-1 { animation: connect-beam-ltr 4s ease-in-out infinite; }
        .connect-beam-2 { animation: connect-beam-rtl 4s ease-in-out infinite; }
        @keyframes connect-beam-ltr {
            0%, 3%    { left: 0; opacity: 0; }
            7%        { opacity: 1; }
            25%       { left: calc(100% - 14px); opacity: 1; }
            28%, 100% { left: calc(100% - 14px); opacity: 0; }
        }
        @keyframes connect-beam-rtl {
            0%, 3%    { left: calc(100% - 14px); opacity: 0; }
            7%        { opacity: 1; }
            25%       { left: 0; opacity: 1; }
            28%, 100% { left: 0; opacity: 0; }
        }
        .connect-pill {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #000000;
            color: #ffffff;
            padding: 0.13rem 0.42rem;
            border-radius: 0.38rem;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.5rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
            z-index: 2;
            animation: connect-pill-anim 4s ease-in-out infinite;
        }
        /* Same fast snap-decelerate motion both directions: apart → in (30%-56%) and out → apart (74%-100%) — equal duration (26% of cycle), equal easing. */
        @keyframes connect-1-move {
            0%, 30%   { transform: translate(calc(-50% - 80px), -50%) rotate(-12deg) scale(0.85); animation-timing-function: cubic-bezier(0.2, 0.8, 0.3, 1); }
            56%, 74%  { transform: translate(calc(-50% - 45px), -50%) rotate(-4deg) scale(1); animation-timing-function: cubic-bezier(0.2, 0.8, 0.3, 1); }
            100%      { transform: translate(calc(-50% - 80px), -50%) rotate(-12deg) scale(0.85); }
        }
        @keyframes connect-2-move {
            0%, 30%   { transform: translate(calc(-50% + 80px), -50%) rotate(12deg) scale(0.85); animation-timing-function: cubic-bezier(0.2, 0.8, 0.3, 1); }
            56%, 74%  { transform: translate(calc(-50% + 45px), -50%) rotate(4deg) scale(1); animation-timing-function: cubic-bezier(0.2, 0.8, 0.3, 1); }
            100%      { transform: translate(calc(-50% + 80px), -50%) rotate(12deg) scale(0.85); }
        }
        @keyframes connect-line-anim {
            0%, 30%   { width: 50px; opacity: 0.85; }
            38%, 78%  { width: 0; opacity: 0; }
            92%, 100% { width: 50px; opacity: 0.85; }
        }
        @keyframes connect-pill-anim {
            0%, 25%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            34%, 80%  { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
            92%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        }

        /* Card 2 — AI-generated post mockup */
        .ai-post {
            width: 100%;
            background: rgba(255, 255, 255, 0.96);
            border: var(--border-graphic) var(--f-border);
            border-radius: 14px 14px 0 0;
            border-bottom: 0;
            padding: 0.75rem 0.85rem 0.7rem;
            box-shadow: 0 10px 22px -10px rgba(15, 23, 42, 0.18);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            align-self: stretch;
            margin: 0 auto;
            justify-content: flex-start;
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 65%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 65%, transparent 100%);
        }
        .how-step-2 .how-step-graphic {
            align-items: stretch;
            padding-bottom: 0;
        }
        .ai-post-title {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--f-ink);
            text-align: center;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            letter-spacing: -0.01em;
        }
        .ai-post-head {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }
        .ai-post-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(180deg, #2a2a2a 0%, #000000 100%);
            flex-shrink: 0;
            box-shadow: 0 2px 6px rgba(15, 23, 42, 0.18);
        }
        .ai-post-meta {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }
        .ai-post-handle {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.74rem;
            font-weight: 700;
            color: var(--f-ink);
            line-height: 1.1;
            letter-spacing: -0.01em;
        }
        .ai-post-time {
            font-size: 0.58rem;
            color: var(--f-ink-soft);
            line-height: 1;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .ai-post-time-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--f-ink-muted);
        }
        .ai-post-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
            color: #ffffff;
            padding: 3px 7px;
            border-radius: 5px;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.55rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
        }
        .ai-post-tag svg {
            width: 8px;
            height: 8px;
            fill: currentColor;
        }

        .ai-post-body {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .ai-post-caption {
            font-size: 0.78rem;
            color: var(--f-ink);
            line-height: 1.35;
            margin: 0;
            font-weight: 500;
        }
        .ai-post-hashtags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .ai-post-hashtags span {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            color: var(--f-ink-soft);
            letter-spacing: -0.01em;
        }

        .ai-post-metrics {
            display: flex;
            justify-content: space-between;
            padding-top: 0.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }
        .metric {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--f-ink);
            letter-spacing: -0.01em;
        }
        .metric svg {
            width: 13px;
            height: 13px;
            stroke: var(--f-ink-soft);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
        }
        .metric-counter {
            font-variant-numeric: tabular-nums;
            min-width: 24px;
        }

        .ai-post-bar {
            position: relative;
            height: 4px;
            border-radius: 2px;
            background: rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-top: -0.25rem;
        }
        .ai-post-bar::before {
            content: '';
            position: absolute;
            inset: 0 100% 0 0;
            background: linear-gradient(90deg, #1a1a1a, #000000);
            border-radius: inherit;
            animation: post-bar 5s ease-in-out infinite;
        }
        @keyframes post-bar {
            0%, 5% { right: 100%; }
            85%, 95% { right: 0%; }
            100% { right: 100%; }
        }

        /* Card 3 — paid graphic */
        .paid-graphic {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            justify-content: center;
        }
        .paid-amount {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--f-ink);
            text-align: center;
            letter-spacing: -0.035em;
            line-height: 1;
        }
        .paid-cal {
            background: rgba(255, 255, 255, 0.94);
            border: var(--border-graphic) var(--f-border);
            border-radius: 18px;
            padding: 0.6rem 0.7rem;
            box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.18);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            display: flex;
            flex-direction: column;
        }
        .paid-cal-head {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.6rem;
            font-weight: 700;
            color: var(--f-ink-soft);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.7rem;
        }
        .paid-cal-head svg {
            width: 11px;
            height: 11px;
            color: var(--f-ink-soft);
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
        }

        /* Active area — vertical padding gives PAID popup breathing room above/below */
        .paid-active-area {
            position: relative;
            margin-bottom: 0.7rem;
            padding: 0.9rem 0;
            display: flex;
            align-items: center;
        }
        .paid-week {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
        }
        .paid-day {
            aspect-ratio: 1 / 1;
            border-radius: 8px;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.6rem;
            font-weight: 700;
            color: #9ca3af;
            transition: background 0.3s ease, color 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .paid-day .day-letter {
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        .paid-day .day-check {
            position: absolute;
            width: 12px;
            height: 12px;
            color: #fff;
            opacity: 0;
            transform: scale(0.4);
            transition: opacity 0.25s ease 0.05s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s;
            stroke: currentColor;
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .paid-day.checked {
            background: #00ff00;
            color: #fff;
        }
        .paid-day.checked .day-letter { opacity: 0; transform: scale(0.5); }
        .paid-day.checked .day-check { opacity: 1; transform: scale(1); }

        /* PAID state overlay — only covers the days + gap, NOT header or flow */
        .paid-state {
            position: absolute;
            inset: 0;
            background: #00ff00;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.1rem;
            color: #fff;
            opacity: 0;
            transform: scale(0.88);
            transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
        }
        .paid-active-area.is-paid .paid-state {
            opacity: 1;
            transform: scale(1);
        }
        .paid-state svg {
            width: 26px;
            height: 26px;
            color: #fff;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .paid-state span {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1;
        }

        /* Reliable money flow — sits inside the calendar card with a darker bg */
        .paid-flow {
            background: #eef0f3;
            border: 1px solid #e2e5ea;
            border-radius: 7px;
            padding: 0.4rem 0.55rem;
            display: flex;
            align-items: center;
            gap: 0.42rem;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--f-ink);
        }
        .paid-flow-dot {
            --ring-color: rgba(0, 255, 0, 0.55);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #00ff00;
            flex-shrink: 0;
            box-shadow: 0 0 0 0 var(--ring-color);
            animation: live-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        /* Divider line with step pill in the middle, sits just above the lower body */
        .how-step-divider {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .how-step-line {
            flex: 1;
            height: 1px;
        }
        .how-step-line.left {
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.45));
        }
        .how-step-line.right {
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent);
        }
        .how-step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.42rem 0.9rem;
            background: #000000;
            color: #ffffff;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            border-radius: 0.5rem;
            letter-spacing: -0.005em;
            flex-shrink: 0;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }

        /* Body zone — divider + title + subtitle */
        .how-step-body {
            padding: 1.25rem 2rem 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            flex: 1;
            text-align: center;
        }
        @media (min-width: 768px) { .how-step-body { padding: 1.5rem 1.75rem 1.4rem; } }
        .how-step-body .how-step-divider {
            margin-bottom: 0;
        }
        .how-step-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.18;
            margin: 0;
        }
        .how-step-body p {
            font-size: 14px;
            color: var(--f-ink-soft);
            line-height: 1.45;
            margin: 0;
            margin-top: -0.25rem;
            text-align: center;
            text-wrap: balance;
            white-space: nowrap;
        }

        /* CTA below the three steps */
        .how-cta {
            margin-top: 3.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .how-cta-avatars {
            display: flex;
            align-items: center;
            margin-top: 0.85rem;
        }
        .avatar-stack {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid #ffffff;
            box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
            margin-left: -8px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .avatar-stack:first-child { margin-left: 0; }
        /* Creator (light) → selfies; Agency (dark) → profile pictures */
        .avatar-stack.s1 { background-image: url("/static/assets/Selfie1.png"); }
        .avatar-stack.s2 { background-image: url("/static/assets/Selfie2.png"); }
        .avatar-stack.s3 { background-image: url("/static/assets/Selfie3.png"); }
        .avatar-stack.s4 { background-image: url("/static/assets/Selfie4.png"); }
        .avatar-stack.s5 { background-image: url("/static/assets/Selfie5.png"); }
        body.dark .avatar-stack.s1 { background-image: url("/static/assets/profile_picture_4.jpg"); }
        body.dark .avatar-stack.s2 { background-image: url("/static/assets/profile_picture_5.jpg"); }
        body.dark .avatar-stack.s3 { background-image: url("/static/assets/profile_picture_6.jpg"); }
        body.dark .avatar-stack.s4 { background-image: url("/static/assets/profile_picture_7.jpg"); }
        body.dark .avatar-stack.s5 { background-image: url("/static/assets/profile_picture_8.jpg"); }
        .how-cta-text {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--f-ink-soft);
            letter-spacing: -0.01em;
            margin: 0.5rem 0 0;
        }

        /* Agency trust strip — 5 vertical scrolling carousels (one split, behind center stat panel) */
        .trust-strip {
            position: relative;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            grid-template-rows: 290px;
            gap: 12px;
            height: 290px;
            width: 100%;
            max-width: 760px;
            margin: 0 auto;
            padding: 0;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .trust-strip {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                grid-template-rows: 260px;
                height: 260px;
                gap: 9px;
            }
            .trust-strip > .trust-col:nth-of-type(2),
            .trust-strip > .trust-col:nth-of-type(4) { display: none; }
        }
        .trust-col {
            min-width: 0;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
        }
        .tw-track {
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-width: 0;
            animation-duration: var(--trust-dur, 28s);
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            will-change: transform;
        }
        .trust-col-up .tw-track { animation-name: trustScrollUp; }
        .trust-col-down .tw-track { animation-name: trustScrollDown; }
        @keyframes trustScrollUp {
            from { transform: translateY(0); }
            to { transform: translateY(-50%); }
        }
        @keyframes trustScrollDown {
            from { transform: translateY(-50%); }
            to { transform: translateY(0); }
        }
        @media (prefers-reduced-motion: reduce) {
            .tw-track { animation: none; }
        }
        .trust-item {
            flex: 0 0 auto;
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 16px;
            overflow: hidden;
            background: #1a1a1a;
            border: 1px solid #2a2a2a;
        }
        .trust-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .trust-col-split {
            overflow: visible;
            display: flex;
            flex-direction: column;
            gap: 12px;
            -webkit-mask-image: none;
            mask-image: none;
        }
        .trust-half {
            flex: 1 1 50%;
            min-height: 0;
            min-width: 0;
            overflow: hidden;
        }
        .trust-half-top {
            -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
        }
        .trust-half-bottom {
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
        }
        .trust-half-top .tw-track { animation-name: trustScrollDown; }
        .trust-half-bottom .tw-track { animation-name: trustScrollUp; }
        .trust-center {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 160px;
            height: 160px;
            background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
            border: 1px solid #3a3a3a;
            border-radius: 22px;
            padding: 12px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 3;
            box-shadow:
                0 24px 56px rgba(0, 0, 0, 0.55),
                0 0 0 5px rgba(10, 10, 10, 0.6);
        }
        @media (max-width: 768px) {
            .trust-center { width: 132px; height: 132px; padding: 10px; border-radius: 18px; }
        }
        .trust-num {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: clamp(2.4rem, 5vw, 3.4rem);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
            background: linear-gradient(180deg, #00b0f1 0%, #009ad3 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .tw-label {
            color: #888;
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 14px;
            font-weight: 500;
            margin-top: 6px;
        }

        /* Feature card */
        .feature {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 1.5rem 1.5rem;
        }
        @media (min-width: 1024px) { .feature { padding: 0 2rem 1.5rem; } }

        .feature-card {
            border-radius: 22px;
            padding: 1.4rem 1.5rem;
            display: grid;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .feature-card {
                padding: 1.6rem 1.75rem;
                grid-template-columns: 1fr 1fr;
                gap: 1.75rem;
                align-items: center;
            }
        }
        @media (min-width: 1024px) {
            .feature-card { padding: 1.9rem 2.1rem; border-radius: 26px; }
        }
        .feature-card.tint {
            background: linear-gradient(180deg, #e2e4e9 0%, #ffffff 100%);
            border: var(--border-graphic) var(--f-border);
            box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.06);
        }
        .feature-card.solid {
            background: linear-gradient(0deg, #e2e4e9 0%, #ffffff 100%);
            border: var(--border-graphic) var(--f-border);
            box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.06);
        }

        .feature-card h3 {
            font-size: clamp(1.5rem, 3.2vw, 2.1rem);
            font-weight: 600;
            letter-spacing: -0.022em;
            line-height: 1.12;
            margin-top: 0.5rem;
        }
        .feature-card .feature-desc {
            margin-top: 0.9rem;
            font-size: 0.95rem;
            color: var(--f-ink-soft);
            line-height: 1.6;
            max-width: 460px;
        }
        @media (min-width: 768px) {
            .feature-card .feature-desc { font-size: 1rem; }
        }

        /* Visual mock card */
        .visual {
            background: #fff;
            border-radius: 16px;
            border: 1px solid var(--f-border-soft);
            padding: 1.5rem;
            box-shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.10);
        }
        @media (min-width: 768px) { .visual { padding: 1.75rem; } }
        .visual-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.25rem;
        }
        .visual-label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--f-ink-muted);
        }
        .visual-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 2px 8px;
            border-radius: 0.375rem;
            background: rgba(0, 176, 241, 0.10);
            color: var(--f-accent);
            font-size: 0.65rem;
            font-weight: 600;
        }
        .visual-tag.green { background: var(--green-bg); color: #00ff00; }

        /* Wave bars */
        .wave-row {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 56px;
            margin: 1rem 0;
        }
        .wave-bar {
            width: 4px;
            border-radius: 2px;
            background: var(--f-accent);
            animation: waveAnim 1.2s ease-in-out infinite alternate;
        }
        .wave-bar:nth-child(2) { animation-delay: 0.1s; }
        .wave-bar:nth-child(3) { animation-delay: 0.2s; }
        .wave-bar:nth-child(4) { animation-delay: 0.3s; }
        .wave-bar:nth-child(5) { animation-delay: 0.15s; }
        .wave-bar:nth-child(6) { animation-delay: 0.25s; }
        .wave-bar:nth-child(7) { animation-delay: 0.35s; }
        .wave-bar:nth-child(8) { animation-delay: 0.05s; }
        .wave-bar:nth-child(9) { animation-delay: 0.2s; }
        .wave-bar:nth-child(10) { animation-delay: 0.3s; }
        .wave-bar:nth-child(11) { animation-delay: 0.1s; }
        .wave-bar:nth-child(12) { animation-delay: 0.25s; }

        .quote {
            font-size: 0.875rem;
            color: var(--f-ink);
            line-height: 1.55;
            font-style: italic;
        }
        .quote strong { color: var(--f-accent); font-style: normal; }

        /* Scheduler rows */
        .scheduler-row {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 0.875rem;
            background: var(--bg-gray);
            border: 1px solid var(--f-border-soft);
        }
        .scheduler-row + .scheduler-row { margin-top: 0.75rem; }
        .scheduler-icon {
            width: 32px; height: 32px;
            border-radius: 0.5rem;
            background: rgba(0, 176, 241, 0.10);
            color: var(--f-accent);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .scheduler-icon svg { width: 16px; height: 16px; fill: currentColor; }
        .scheduler-meta { flex: 1; min-width: 0; }
        .scheduler-title {
            font-size: 0.78rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .scheduler-time { font-size: 0.7rem; color: var(--f-ink-soft); }
        .scheduler-tag {
            font-size: 0.65rem; font-weight: 600;
            padding: 2px 8px;
            border-radius: 0.375rem;
            flex-shrink: 0;
        }
        .scheduler-tag.green { background: var(--green-bg); color: #00ff00; }
        .scheduler-tag.accent { background: rgba(0,176,241,0.10); color: var(--f-accent); }

        .reach-section {
            margin-top: 1.25rem;
            padding-top: 1rem;
            border-top: 1px solid var(--f-border-soft);
        }
        .reach-head {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 0.75rem;
        }
        .reach-head .label {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--f-ink-muted);
        }
        .reach-head .delta { font-size: 0.7rem; font-weight: 600; color: var(--green); }
        .reach-bars {
            display: flex; align-items: flex-end; gap: 6px; height: 48px;
        }
        .reach-bar {
            flex: 1;
            border-radius: 2px;
            transform-origin: bottom;
            animation: barGrow 1.2s cubic-bezier(0.16,1,0.3,1) infinite alternate;
        }
        .reach-bar:nth-child(2) { animation-delay: 0.1s; }
        .reach-bar:nth-child(3) { animation-delay: 0.2s; }
        .reach-bar:nth-child(4) { animation-delay: 0.3s; }
        .reach-bar:nth-child(5) { animation-delay: 0.4s; }
        .reach-bar:nth-child(6) { animation-delay: 0.5s; }
        .reach-bar:nth-child(7) { animation-delay: 0.6s; }

        /* Feature list (checkmarks) */
        .feature-list {
            margin-top: 1.5rem;
            max-width: 460px;
            display: flex; flex-direction: column; gap: 0.5rem;
        }
        .feature-list li {
            display: flex; align-items: flex-start; gap: 0.625rem;
            font-size: 0.95rem;
            color: var(--text-3);
        }
        .feature-list li svg {
            width: 20px; height: 20px;
            color: var(--f-accent);
            flex-shrink: 0;
            margin-top: 2px;
            fill: currentColor;
        }

        /* Tier list */
        .tier-list { display: flex; flex-direction: column; gap: 0.75rem; }
        .tier {
            padding: 1rem 1.25rem;
            border-radius: 1rem;
            border: 1px solid var(--f-border-soft);
            background: var(--bg-gray);
            display: flex; align-items: center; justify-content: space-between;
        }
        .tier.popular {
            background: rgba(0, 176, 241, 0.04);
            border: 2px solid var(--f-accent);
            position: relative;
        }
        .tier-badge {
            position: absolute; top: -10px; left: 1.25rem;
            padding: 2px 8px;
            background: var(--f-accent); color: #fff;
            font-size: 0.6rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.06em;
            border-radius: 0.375rem;
        }
        .tier-info { display: flex; flex-direction: column; gap: 2px; }
        .tier-name { font-size: 0.875rem; font-weight: 600; }
        .tier-desc { font-size: 0.72rem; color: var(--f-ink-muted); }
        .tier-price { font-size: 1rem; font-weight: 700; }
        .tier-price small { font-size: 0.72rem; font-weight: 400; color: var(--f-ink-muted); }

        /* Messages */
        .msg-list { display: flex; flex-direction: column; gap: 0.5rem; }
        .msg {
            padding: 0.5rem 0.875rem;
            border-radius: 1rem;
            font-size: 0.85rem;
            max-width: 80%;
        }
        .msg.fan {
            background: #f3f4f6;
            color: var(--f-ink);
            border-bottom-left-radius: 4px;
            align-self: flex-start;
        }
        .msg.creator {
            background: var(--f-accent);
            color: #fff;
            border-bottom-right-radius: 4px;
            align-self: flex-end;
        }
        .typing { display: flex; gap: 4px; padding: 0.5rem 0.75rem; align-self: flex-start; }
        .typing-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #9ca3af;
            animation: typingAnim 1.4s ease-in-out infinite;
        }
        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }

        .voice-note {
            margin-top: 1.25rem;
            padding-top: 1rem;
            border-top: 1px solid var(--f-border-soft);
            display: flex; align-items: center; gap: 0.75rem;
        }
        .voice-icon {
            width: 32px; height: 32px;
            border-radius: 0.5rem;
            background: rgba(0,176,241,0.10);
            color: var(--f-accent);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .voice-icon svg { width: 16px; height: 16px; }
        .voice-bars {
            display: flex; align-items: center; gap: 3px;
            flex: 1; height: 24px;
        }

        /* Two-up grid */
        .two-up {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 1.5rem 4rem;
            display: grid;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .two-up { grid-template-columns: 1fr 1fr; padding: 0 2rem 6rem; }
        }
        .two-up-card {
            border-radius: 28px;
            padding: 2rem;
            display: flex; flex-direction: column;
        }
        @media (min-width: 768px) { .two-up-card { padding: 2.5rem; } }
        .two-up-card.tint { background: var(--bg-tint); border: 1px solid var(--f-border-soft); box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.06); }
        .two-up-card.solid { background: #fff; border: 1px solid var(--f-border-soft); box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.06); }
        .two-up-card h3 {
            font-size: clamp(1.6rem, 3.2vw, 2.4rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-top: 0.5rem;
        }
        .two-up-card p {
            margin-top: 1rem;
            font-size: 0.95rem;
            color: var(--f-ink-soft);
            line-height: 1.6;
        }

        /* Locked content */
        .locked-content {
            margin-top: 1.5rem;
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--f-border-soft);
            min-height: 120px;
        }
        .locked-content-blur { padding: 1.25rem; filter: blur(5px); user-select: none; }
        .locked-content-blur p { font-size: 0.875rem; color: var(--f-ink-soft); line-height: 1.5; }
        .locked-overlay {
            position: absolute; inset: 0;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            gap: 0.625rem;
        }
        .locked-overlay svg { width: 32px; height: 32px; color: #9ca3af; }
        .locked-overlay button {
            background: var(--f-accent); color: #fff;
            font-size: 0.75rem; font-weight: 600;
            padding: 0.5rem 1.1rem; border-radius: 9999px;
        }

        /* Payment breakdown */
        .pay-card {
            margin-top: 1.5rem;
            background: var(--bg-gray);
            border: 1px solid var(--f-border-soft);
            border-radius: 1rem;
            padding: 1.25rem;
        }
        .pay-row {
            display: flex; align-items: center; justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e5e5e5cc;
            font-size: 0.875rem;
        }
        .pay-row:last-child { border-bottom: 0; }
        .pay-label { color: var(--f-ink-soft); }
        .pay-value { font-weight: 600; color: var(--f-ink); }
        .pay-value.green { color: var(--green); font-weight: 700; }

        /* Trust strip */
        .trust {
            background: var(--bg-gray);
            border-top: 1px solid var(--f-border-soft);
            border-bottom: 1px solid var(--f-border-soft);
            overflow: hidden;
        }
        .trust-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem;
        }
        @media (min-width: 768px) { .trust-inner { padding: 3rem 2rem; } }
        .trust-label {
            text-align: center;
            font-size: 0.72rem; font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--f-ink-muted);
            margin-bottom: 1.5rem;
        }
        .trust-track {
            display: flex; align-items: center;
            gap: 4rem; width: max-content;
            animation: logo-scroll 35s linear infinite;
        }
        .trust-track img {
            height: 24px; width: auto;
            opacity: 0.6; filter: grayscale(1);
            flex-shrink: 0;
        }

        /* Testimonials — grey-to-white gradient (light/creator default) */
        .testimonials {
            background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 220px);
        }
        .testimonials-inner {
            max-width: 1500px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem 2rem;
        }
        @media (min-width: 768px) { .testimonials-inner { padding: 3rem 2rem 2.5rem; } }
        .testimonials-header {
            margin-bottom: 1.5rem;
            text-align: center;
        }
        @media (min-width: 768px) { .testimonials-header { margin-bottom: 1.75rem; } }
        .testimonials-header h2 {
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: clamp(2rem, 4.6vw, 44px);
            font-weight: 600;
            letter-spacing: -0.04em;
            line-height: 1.2em;
            color: #000000;
            text-align: center;
            margin-top: 1rem;
        }
        .testimonials-header p {
            margin-top: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.36px;
            line-height: 26.5px;
            color: #6b7280;
            text-align: center;
            text-wrap: balance;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        @media (min-width: 640px) {
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
        }
        @media (min-width: 1024px) {
            .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
        }
        .testimonial-card {
            background: #fff;
            border: 1px solid var(--f-border-soft);
            border-radius: 20px;
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.06);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .testimonial-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px -14px rgba(15, 23, 42, 0.10);
        }
        .testimonial-head {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Mona Sans", Inter, sans-serif;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
            letter-spacing: -0.02em;
        }
        .avatar.g1 { background: linear-gradient(135deg, #00b0f1 0%, #8b7aff 100%); }
        .avatar.g2 { background: linear-gradient(135deg, #f97316 0%, #ec4899 100%); }
        .avatar.g3 { background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%); }
        .avatar.g4 { background: linear-gradient(135deg, #facc15 0%, #f97316 100%); }
        .avatar.g5 { background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%); }
        .avatar.g6 { background: linear-gradient(135deg, #06b6d4 0%, #00b0f1 100%); }
        .testimonial-meta {
            display: flex;
            flex-direction: column;
            gap: 1px;
            min-width: 0;
        }
        .testimonial-meta .username {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--f-ink);
            letter-spacing: -0.015em;
        }
        .testimonial-meta .username-sub {
            font-size: 0.78rem;
            color: var(--f-ink-soft);
        }
        .testimonial-card .quote {
            font-size: 0.98rem;
            line-height: 1.55;
            color: var(--f-ink);
            margin: 0;
            font-style: normal;
        }

        /* Creator carousel (creator page only) */
        .creator-carousel {
            --card-w: 460px;
            --card-gap: 20px;
            position: relative;
            width: 100%;
            max-width: calc(var(--card-w) * 3 + var(--card-gap) * 2);
            margin: 0 auto;
        }
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(20, 20, 20, 0.55);
            backdrop-filter: blur(8px) saturate(140%);
            -webkit-backdrop-filter: blur(8px) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, opacity 0.2s;
            z-index: 10;
            padding: 0;
            box-shadow: 0 6px 18px -6px rgba(15, 23, 42, 0.25);
        }
        .carousel-prev { left: calc(50% - var(--card-w) / 2 - 76px); }
        .carousel-next { right: calc(50% - var(--card-w) / 2 - 76px); }
        .carousel-arrow:hover { background: rgba(20, 20, 20, 0.75); border-color: rgba(255, 255, 255, 0.22); }
        .carousel-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
        .carousel-arrow svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .carousel-viewport {
            flex: 1;
            min-width: 0;
            max-width: calc(var(--card-w) * 3 + var(--card-gap) * 2);
            overflow: hidden;
            position: relative;
            padding: 1rem 0;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
        }
        .carousel-track {
            display: flex;
            align-items: center;
            gap: var(--card-gap);
            transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }
        .creator-card {
            flex: 0 0 var(--card-w);
            aspect-ratio: 4 / 4.7;
            background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
            border: var(--border-graphic) var(--f-border);
            border-radius: 36px;
            position: relative;
            overflow: hidden;
            transform: scale(0.92);
            opacity: 0.5;
            transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease;
        }
        .creator-card.is-active {
            transform: scale(1);
            opacity: 1;
        }
        /* Selfie photo fills the card behind the text overlay */
        .creator-card-photo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        /* Daniel selfie has black space at the top — zoom in from the bottom anchor so the top crops out */
        .carousel-track .creator-card:nth-child(3) .creator-card-photo {
            transform: scale(1.18);
            transform-origin: center bottom;
        }
        /* Black gradient overlay rising from the bottom — sits behind the text, in front of the photo */
        .creator-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 38%, transparent 75%);
            pointer-events: none;
            z-index: 1;
        }
        .creator-card-num {
            position: absolute;
            top: 14px;
            right: 14px;
            min-width: 36px;
            height: 36px;
            padding: 0 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.20);
            color: #fff;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .creator-card-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.25rem 1.4rem 1.5rem;
            color: #fff;
            z-index: 2;
        }
        .creator-card-name {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 1.55rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 0.45rem;
            letter-spacing: -0.015em;
            line-height: 1.2;
        }
        .creator-card-quote {
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 1.55rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 1.1rem;
            line-height: 1.25;
            letter-spacing: -0.015em;
        }
        .creator-card-revenue-label {
            display: block;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.15;
            letter-spacing: -0.01em;
            margin-bottom: 0.2rem;
        }
        .creator-card-amount {
            display: block;
            font-family: "Mona Sans", Inter, sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--f-accent);
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        .creator-card-amount small {
            display: inline;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--f-accent);
            letter-spacing: -0.01em;
            margin-left: 0.3rem;
        }

        /* FAQ */
        .faq { background: #fff; }
        .faq-inner {
            max-width: 880px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem 0;
        }
        @media (min-width: 768px) { .faq-inner { padding: 3rem 2rem 0; } }
        .faq-header { text-align: center; margin-bottom: 1.75rem; }
        @media (min-width: 768px) { .faq-header { margin-bottom: 2rem; } }
        .faq-header h2 {
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: clamp(2rem, 4.6vw, 44px);
            font-weight: 600;
            letter-spacing: -0.04em;
            line-height: 1.2em;
            color: #000000;
            text-align: center;
            margin-top: 1rem;
        }
        .faq-header p {
            margin-top: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            font-family: Inter, "Inter Placeholder", sans-serif;
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.36px;
            line-height: 26.5px;
            color: #6b7280;
            text-align: center;
            text-wrap: balance;
        }
        .faq-list {
            background: transparent;
            border: var(--border-graphic) var(--f-border);
            border-radius: 20px;
            padding: 0.85rem;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }
        .faq-item {
            background: var(--bg-tint);
            border-radius: 14px;
            padding: 0 1rem;
        }
        .faq-question {
            width: 100%;
            display: flex; align-items: center; justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 0;
            text-align: left;
            background: transparent;
        }
        .faq-question-text {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--f-ink);
        }
        @media (min-width: 768px) { .faq-question-text { font-size: 1.15rem; } }
        .faq-toggle {
            flex-shrink: 0;
            width: 22px; height: 22px;
            background: transparent;
            border: 0;
            display: flex; align-items: center; justify-content: center;
            transition: transform 0.25s ease;
        }
        .faq-toggle svg {
            width: 16px; height: 16px;
            stroke: var(--f-accent);
            fill: none;
            stroke-width: 2.6;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .faq-item.open .faq-toggle { transform: rotate(90deg); }
        .faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
        .faq-item.open .faq-answer { max-height: 360px; }
        .faq-answer-inner {
            padding-bottom: 1.25rem;
            font-size: 1.05rem;
            color: var(--f-ink-soft);
            line-height: 1.65;
            max-width: 760px;
        }
        .faq-cta {
            margin-top: 2rem;
            text-align: center;
        }
        .faq-cta .btn-arrow { transition: transform 0.2s ease; }
        .faq-cta .fm-btn-hero:hover .btn-arrow { transform: translateX(4px); }

        /* CTA */
        .cta { background: #fff; border-top: 1px solid var(--f-border-soft); }
        .cta-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
        }
        @media (min-width: 768px) { .cta-inner { padding: 7rem 2rem; } }
        .cta-card {
            background: var(--bg-gray);
            border: 1px solid var(--f-border-soft);
            border-radius: 28px;
            padding: 3rem 1.5rem;
            text-align: center;
        }
        @media (min-width: 768px) { .cta-card { padding: 5rem 2rem; border-radius: 36px; } }
        .cta-card h2 {
            font-size: clamp(2.1rem, 4.6vw, 3.3rem);
            font-weight: 600;
            letter-spacing: -0.025em;
            line-height: 1.05;
            margin-top: 1rem;
            max-width: 920px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-card p {
            margin-top: 1.25rem;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
            font-size: 0.95rem;
            color: var(--f-ink-soft);
            line-height: 1.55;
        }
        .cta-buttons {
            display: flex; flex-direction: column; gap: 0.75rem;
            align-items: center; justify-content: center;
            margin-top: 2.25rem;
        }
        @media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

        /* Footer */
        .footer { background: #fff; }
        .footer-inner {
            max-width: 1110px;
            margin: 0 auto;
            padding: 3.5rem 1.5rem;
        }
        @media (min-width: 768px) { .footer-inner { padding: 4rem 2rem; } }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }
        @media (min-width: 768px) {
            .footer-grid { grid-template-columns: repeat(5, 1fr); gap: 2rem; }
        }
        .footer-brand { grid-column: span 2; }
        .footer-logo { display: inline-flex; align-items: center; gap: 0.5rem; }
        .footer-logo-icon { height: 26px; width: 26px; }
        /* .footer-logo-text moved to .fm-logo__text--sm in static/css/marketing.css */
        .footer-brand p {
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--f-ink-soft);
            line-height: 1.6;
            max-width: 320px;
        }
        .footer-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.25rem;
            background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
            color: #fff;
            font-family: "Mona Sans", Inter, system-ui, sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            padding: 0.72rem 1.35rem;
            border-radius: 0.75rem;
            transition: background 0.2s;
        }
        .footer-cta:hover {
            background: linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 100%);
        }
        .footer-cta svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }
        .footer-cta:hover svg { transform: translate(2px, -2px); }
        /* Footer columns moved to .fm-footer-col* in static/css/marketing.css */
        .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--f-border-soft);
            display: flex; flex-direction: column; gap: 0.75rem;
            font-size: 0.75rem; color: var(--f-ink-muted);
        }
        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
