/* Gibrid.AI landing — extracted from inline <style> for caching. */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    :root {
      /* Aligned with chat-workspace.css palette — no purple */
      --bg: #0a0a0f;
      --bg-elev-1: #11121a;
      --bg-elev-2: #181925;
      --border: rgba(255, 255, 255, 0.07);
      --border-strong: rgba(255, 255, 255, 0.14);
      --fg: #ececee;
      --fg-muted: #a1a1a9;
      --fg-dim: #71717a;
      --accent: #60a5fa;          /* chat --accent */
      --accent-hover: #3b82f6;    /* chat --accent-h */
      --accent-bg: #2563eb;       /* chat --accent-bg */
      --accent-soft: rgba(59, 130, 246, 0.12);
      --success: #10b981;
      --danger: #ef4444;
      --info: #38bdf8;
      --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
      --shadow-xl: 0 50px 100px -30px rgba(0, 0, 0, 0.7);
      --shadow-md: 0 8px 24px -8px rgba(0, 0, 0, 0.4);

      /* Page tint shifts under each hero slide. Solid colors only. */
      --page-tint: #0a0a0f;
    }
    html {
      /* Smooth-scroll for anchors; account for sticky nav */
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: var(--page-tint);
      color: var(--fg);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      /* Subtle dot pattern — Apple/Stripe style, not a gradient */
      background-image:
        radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(rgba(96,165,250,0.04) 1px, transparent 1px);
      background-size: 24px 24px, 48px 48px;
      background-position: 0 0, 12px 12px;
      transition: background-color .9s cubic-bezier(.4,0,.2,1);
    }
    body.modal-open { overflow: hidden; }

    /* ── Vignette — dark corners frame the viewport like a film aperture.
       Sits under the grain, above the dot-pattern. Pointer-events: none. */
    body::after {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none;
      z-index: 1;
      box-shadow:
        inset 0 0 200px 60px rgba(0, 0, 0, 0.35),       /* gentler corner darkening */
        inset 0 -90px 80px -50px rgba(0, 0, 0, 0.28);   /* softer bottom roll */
    }

    /* ── Film grain overlay — body-wide, fixed, animated very slowly
       Adds the "shot on celluloid" texture without any image asset.
       Powered by SVG feTurbulence inline data-URI. ~5KB, GPU-cheap. */
    body::before {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: 0.04;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch' seed='5'/><feColorMatrix type='matrix' values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.85 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
      background-size: 260px 260px;
      animation: grain-drift 7s steps(8) infinite;
    }
    @keyframes grain-drift {
      0%   { transform: translate(0, 0); }
      10%  { transform: translate(-3%, -5%); }
      20%  { transform: translate(5%, -2%); }
      30%  { transform: translate(-4%, 3%); }
      40%  { transform: translate(2%, -4%); }
      50%  { transform: translate(-2%, 5%); }
      60%  { transform: translate(4%, 0); }
      70%  { transform: translate(-3%, -3%); }
      80%  { transform: translate(3%, 4%); }
      90%  { transform: translate(-5%, 2%); }
      100% { transform: translate(0, 0); }
    }
    @media (prefers-reduced-motion: reduce) {
      body::before { animation: none; }
    }


    /* ── Letter-by-letter reveal on section h2 headlines.
       JS wraps each char in <span class="char">. When the heading enters
       the viewport (.is-visible class), characters rise into place. */
    .section-head h2 .char {
      display: inline-block;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .55s cubic-bezier(.2, .85, .2, 1),
                  transform .55s cubic-bezier(.2, .85, .2, 1);
    }
    .section-head h2.is-visible .char {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      .section-head h2 .char { transition: none; opacity: 1; transform: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
    }

    .material-symbols-rounded {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      vertical-align: middle; line-height: 1; user-select: none;
    }
    .serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-style: italic; }
    .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    a { color: inherit; }
    img { display: block; max-width: 100%; height: auto; }

    /* ── Accessible focus ── */
    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 6px;
    }

    /* Visually-hidden but accessible to AT */
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    /* ── NAV ── */
    nav.top {
      position: sticky; top: 0; z-index: 50;
      background: rgba(10, 10, 15, 0.78);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px; gap: 16px;
    }
    .brand {
      display: inline-flex; align-items: center; gap: 12px;
      text-decoration: none; color: var(--fg);
      font-weight: 700; letter-spacing: -0.01em;
    }
    .brand-mark {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--accent);
      display: grid; place-items: center;
      font-size: 18px; font-weight: 800; color: #0a0a0f;
      box-shadow: 0 6px 20px -4px rgba(96, 165, 250, 0.35);
    }
    .nav-right { display: inline-flex; align-items: center; gap: 10px; }

    /* ── Nav links — compact text-links between brand and right cluster ── */
    .nav-links {
      display: inline-flex; align-items: center; gap: 28px;
      margin: 0 auto 0 36px;                            /* anchored left of nav-right */
    }
    .nav-links a {
      color: var(--fg-muted);
      font-size: 14px; font-weight: 500;
      text-decoration: none;
      letter-spacing: -0.005em;
      transition: color .15s ease;
    }
    .nav-links a:hover { color: var(--fg); }
    @media (max-width: 820px) { .nav-links { display: none; } }

    /* ── Scroll-to-top floating button ── */
    .scroll-top {
      position: fixed;
      right: 22px; bottom: 22px;
      z-index: 80;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(13, 13, 18, 0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--fg);
      display: grid; place-items: center;
      cursor: pointer;
      opacity: 0; transform: translateY(8px);
      pointer-events: none;
      transition: opacity .25s ease, transform .25s ease, border-color .15s ease, background .15s ease;
      box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.55);
    }
    .scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .scroll-top:hover { border-color: var(--accent); color: var(--accent); background: rgba(13, 13, 18, 0.95); }
    .scroll-top .material-symbols-rounded { font-size: 22px; }
    @media (max-width: 700px) { .scroll-top { right: 14px; bottom: 14px; width: 40px; height: 40px; } }

    /* ── Sticky Telegram CTA ── slides up after the hero is out of view.
       Compact, dismissable, sits flush with bottom on mobile. Don't compete
       with the auth modal or the scroll-top button.                       */
    .tg-stick {
      position: fixed;
      left: 22px; right: 22px; bottom: 22px;
      z-index: 70;
      pointer-events: none;
      opacity: 0; transform: translateY(14px);
      transition: opacity .25s ease, transform .25s ease;
    }
    .tg-stick.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .tg-stick.dismissed { display: none; }
    .tg-stick-inner {
      max-width: 760px;
      margin: 0 auto;
      display: flex; align-items: center; gap: 14px;
      padding: 12px 14px 12px 18px;
      background: rgba(13, 13, 18, 0.92);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border: 1px solid var(--border-strong);
      border-radius: 16px;
      box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.75);
    }
    .tg-stick-ico {
      flex-shrink: 0; width: 32px; height: 32px;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .tg-stick-ico svg { width: 32px; height: 32px; display: block; }
    .tg-stick-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
    .tg-stick-text strong {
      font-size: 13.5px; font-weight: 700; color: var(--fg); letter-spacing: -.005em;
      line-height: 1.2;
    }
    .tg-stick-text span {
      font-size: 12px; color: var(--fg-muted); line-height: 1.35;
      overflow: hidden; text-overflow: ellipsis;
      display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    }
    .tg-stick-cta {
      flex-shrink: 0;
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--fg); color: var(--bg);
      padding: 8px 14px;
      border-radius: 10px;
      font-size: 13px; font-weight: 600;
      text-decoration: none;
      transition: background .15s ease, transform .15s ease;
    }
    .tg-stick-cta:hover { background: #fff; transform: translateY(-1px); }
    .tg-stick-cta .material-symbols-rounded { font-size: 16px; line-height: 1; }
    .tg-stick-close {
      flex-shrink: 0;
      background: transparent; border: 0;
      width: 30px; height: 30px;
      border-radius: 8px;
      color: var(--fg-muted); cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center;
      transition: color .15s ease, background .15s ease;
    }
    .tg-stick-close:hover { color: var(--fg); background: var(--bg-elev-2); }
    .tg-stick-close .material-symbols-rounded { font-size: 18px; line-height: 1; }
    @media (max-width: 640px) {
      .tg-stick { left: 12px; right: 12px; bottom: 12px; }
      .tg-stick-inner { padding: 10px 10px 10px 14px; gap: 10px; border-radius: 14px; }
      .tg-stick-text span { display: none; }       /* keep only the headline on mobile */
      .tg-stick-text strong { font-size: 12.5px; }
      .tg-stick-cta { padding: 7px 11px; font-size: 12px; }
      .tg-stick-cta span:not(.material-symbols-rounded) { display: none; }   /* icon-only on tight screens */
    }
    .lang-switch {
      display: inline-flex; padding: 3px;
      background: var(--bg-elev-2);
      border: 1px solid var(--border);
      border-radius: 999px;
    }
    .lang-btn {
      border: 0; background: transparent;
      padding: 6px 12px; border-radius: 999px;
      font: inherit; font-size: 12.5px; font-weight: 600;
      color: var(--fg-muted); cursor: pointer;
      letter-spacing: 0.04em;
      transition: color .15s ease, background .15s ease;
    }
    .lang-btn.active { background: var(--bg); color: var(--fg); }
    .lang-btn:hover:not(.active) { color: var(--fg); }

    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--fg); color: var(--bg);
      padding: 9px 18px; border-radius: 10px;
      font: inherit; font-weight: 600; font-size: 14px;
      border: 0; cursor: pointer;
      transition: transform .15s ease, background .15s ease;
    }
    .nav-cta:hover { background: #fff; transform: translateY(-1px); }

    /* ── Dropdown menu (Chat ▾, profile chip) — shared widget ── */
    .nav-dd { position: relative; display: inline-flex; }
    .nav-dd-btn,
    .nav-link {
      display: inline-flex; align-items: center; gap: 5px;
      color: var(--fg-muted);
      font-size: 14px; font-weight: 500;
      background: transparent; border: 0; padding: 6px 4px;
      font-family: inherit; cursor: pointer;
      letter-spacing: -0.005em;
      text-decoration: none;
      transition: color .15s ease;
    }
    .nav-link:hover,
    .nav-dd-btn:hover,
    .nav-dd[data-open] .nav-dd-btn { color: var(--fg); }
    .nav-dd-menu {
      position: absolute;
      top: calc(100% + 10px); left: 0;
      min-width: 280px;
      background: rgba(15, 15, 22, 0.96);
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      border: 1px solid var(--border-strong);
      border-radius: 14px;
      padding: 6px;
      box-shadow: 0 18px 50px -16px rgba(0, 0, 0, 0.65);
      z-index: 200;
      opacity: 0; transform: translateY(-4px) scale(.985);
      pointer-events: none;
      transition: opacity .14s ease, transform .14s ease;
    }
    .nav-dd[data-open] .nav-dd-menu { opacity: 1; transform: none; pointer-events: auto; }
    .nav-dd-menu > a,
    .nav-dd-menu > [role="menuitem"] {
      display: flex; align-items: center; gap: 12px;
      padding: 9px 12px; border-radius: 9px;
      color: var(--fg);
      text-decoration: none; font-size: 13.5px; font-weight: 500;
      transition: background .12s ease;
    }
    .nav-dd-menu > a:hover { background: var(--bg-elev-2); }
    .nav-dd-menu > a:hover .nav-dd-ic { color: var(--fg); border-color: var(--border-strong); }
    .nav-dd-menu > a:hover .material-symbols-rounded { color: var(--fg); }
    /* Profile-menu glyphs — monochrome, fixed slot. */
    .nav-dd-menu > a > .material-symbols-rounded {
      width: 20px; font-size: 20px; line-height: 1;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--fg-muted);
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 24;
      transition: color .12s ease;
    }
    /* Chat-dropdown row icons — neutral outlined tile, single muted tone.
       No per-row colour: the menu has to read "serious", not festive.       */
    .nav-dd-ic {
      width: 30px; height: 30px; border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center;
      background: transparent;
      border: 1px solid var(--border, rgba(255,255,255,0.10));
      color: var(--fg-muted);
      flex-shrink: 0;
      transition: color .12s ease, border-color .12s ease;
    }
    .nav-dd-ic .material-symbols-rounded {
      font-size: 18px; line-height: 1;
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 24;
    }
    .nav-dd-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
    .nav-dd-t { font-size: 13.5px; font-weight: 600; color: var(--fg); letter-spacing: -.005em; }
    .nav-dd-s { font-size: 11px; color: var(--fg-dim); letter-spacing: .005em; }
    .nav-dd-sep { height: 1px; background: var(--border); margin: 6px 4px; }
    .nav-dd-danger { color: #fca5a5 !important; }
    .nav-dd-danger:hover { background: rgba(239, 68, 68, 0.10) !important; }

    /* ── Profile chip (replaces login button when authenticated) ── */
    .nav-profile-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--bg-elev-2);
      border: 1px solid var(--border);
      padding: 4px 10px 4px 4px;
      border-radius: 99px;
      color: var(--fg); font: inherit; font-size: 13px; font-weight: 600;
      cursor: pointer;
      transition: border-color .15s ease, background .15s ease;
    }
    .nav-profile-btn:hover,
    .nav-profile[data-open] .nav-profile-btn { border-color: var(--border-strong); background: var(--bg-elev-1); }
    .nav-profile-av {
      width: 28px; height: 28px; border-radius: 50%;
      object-fit: cover; display: block; flex-shrink: 0;
      background: var(--accent);
    }
    .nav-profile-av-init {
      display: inline-flex; align-items: center; justify-content: center;
      color: #0a0a0f; font-size: 13px; font-weight: 700;
    }
    .nav-profile-av-lg { width: 40px; height: 40px; font-size: 17px; }
    .nav-profile-name {
      max-width: 120px; white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis;
    }
    @media (max-width: 480px) { .nav-profile-name { display: none; } }
    .nav-profile-menu { right: 0; left: auto; min-width: 240px; }
    .nav-profile-head {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 12px 12px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 4px;
    }
    .nav-profile-meta { min-width: 0; flex: 1; }
    .nav-profile-mname { font-size: 14px; font-weight: 700; color: var(--fg); letter-spacing: -.01em; }
    .nav-profile-muser { font-size: 11.5px; color: var(--fg-dim); margin-top: 1px; }

    /* ── Mobile burger button (shown on ≤820px in place of nav-links) ── */
    .nav-burger {
      display: none;
      align-items: center; justify-content: center;
      width: 40px; height: 40px;
      background: var(--bg-elev-2);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--fg-muted); cursor: pointer;
      transition: color .15s ease, border-color .15s ease;
    }
    .nav-burger:hover { color: var(--fg); border-color: var(--border-strong); }
    .nav-burger .material-symbols-rounded { font-size: 22px; }
    @media (max-width: 820px) { .nav-burger { display: inline-flex; } }

    /* Mobile menu overlay */
    .mobile-menu {
      position: fixed; inset: 0; z-index: 95;
      background: rgba(5, 6, 9, 0.92);
      backdrop-filter: blur(14px);
      display: none; flex-direction: column;
      padding: 80px 28px 36px;
      animation: mobile-menu-in .25s ease;
    }
    .mobile-menu.open { display: flex; }
    @keyframes mobile-menu-in { from { opacity: 0; } to { opacity: 1; } }
    .mobile-menu .close {
      position: absolute; top: 14px; right: 14px;
      width: 40px; height: 40px;
      border-radius: 10px; border: 1px solid var(--border);
      background: var(--bg-elev-2); color: var(--fg-muted);
      display: grid; place-items: center; cursor: pointer;
    }
    .mobile-menu .close:hover { color: var(--fg); }
    .mobile-menu a {
      display: block;
      font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
      color: var(--fg); text-decoration: none;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu a:last-of-type { border-bottom: 0; }
    .mobile-menu .menu-cta {
      margin-top: 24px;
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--accent); color: #0a0a0f;
      padding: 14px 22px; border-radius: 12px;
      font-weight: 700; font-size: 15px; font-family: inherit;
      border: 0; cursor: pointer;
    }
    body.menu-open { overflow: hidden; }

    /* ── HERO — full-bleed slider (edge to edge, no rounded box) ── */
    .hero { padding: 16px 0 24px; position: relative; }
    .hero .wrap-full { width: 100%; max-width: none; padding: 0; }
    .slider {
      position: relative; overflow: hidden;
      border-radius: 0;                                 /* edge-to-edge */
      border: 0;
      border-top: 1px solid var(--border);              /* subtle seam under sticky nav */
      border-bottom: 1px solid var(--border);
      background: #050609;
      box-shadow: none;
    }
    .slider-track {
      display: flex;
      transition: transform .8s cubic-bezier(.6, .05, .15, 1);
      will-change: transform;
    }
    .slide {
      flex: 0 0 100%;
      position: relative;
      aspect-ratio: 21 / 9;
      min-height: 680px;                                 /* taller so display title + chip + models fit */
      overflow: hidden;
      background: #050609;
    }
    @media (max-width: 700px) { .slide { aspect-ratio: 4 / 5; min-height: 660px; } }

    .slide-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      filter: brightness(0.60) saturate(0.92);
      transition: transform 9s ease;
    }
    .slide.is-active .slide-img { transform: scale(1.06); }

    .slide-overlay {
      position: absolute; inset: 0;
      background-color: rgba(0, 0, 0, 0.36);
      box-shadow: inset 0 -220px 220px -80px rgba(0,0,0,0.78),
                  inset 0 160px 160px -100px rgba(0,0,0,0.55),
                  inset 0 0 220px 60px rgba(0,0,0,0.40);  /* poster vignette */
    }
    /* Cinemascope letterbox — thick black bars frame the slide like a poster */
    .slide::before, .slide::after {
      content: '';
      position: absolute; left: 0; right: 0;
      height: 8px;
      background: #000;
      z-index: 5;
      pointer-events: none;
    }
    .slide::before { top: 0; }
    .slide::after  { bottom: 0; }
    @media (max-width: 700px) {
      .slide::before, .slide::after { height: 5px; }
    }
    /* ── Poster overlays — injected by JS after slider init.
       Make each slide feel like a printed cinematic poster, not a web hero. */
    .slide-poster-meta {
      position: absolute; top: 24px; left: 28px; z-index: 4;
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.78);
      pointer-events: none;
    }
    .slide-poster-meta .pm-line {
      display: inline-block; width: 28px; height: 1px;
      background: rgba(255,255,255,0.45);
    }
    .slide-poster-meta .pm-num {
      color: #fff; font-weight: 800; letter-spacing: 0.16em;
    }
    .slide-poster-spine {
      position: absolute; right: 24px; top: 50%; z-index: 4;
      transform: translateY(-50%) rotate(90deg); transform-origin: right center;
      writing-mode: horizontal-tb;
      font-size: 10px; font-weight: 700; letter-spacing: 0.32em;
      text-transform: uppercase; color: rgba(255,255,255,0.55);
      white-space: nowrap;
      pointer-events: none;
    }
    @media (max-width: 700px) {
      .slide-poster-meta { top: 16px; left: 18px; font-size: 9.5px; }
      .slide-poster-spine { display: none; }
    }
    /* Subtle film-grain overlay — SVG noise scaled tiny, low opacity. */
    .slide-poster-grain {
      position: absolute; inset: 0; z-index: 3;
      pointer-events: none; mix-blend-mode: overlay; opacity: 0.18;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 160px 160px;
    }

    /* Anamorphic horizontal lens flare — thin coloured streak across the slide.
       Coloured per-slide via --cta-fill so it matches the slide's accent. */
    .slide .anamorphic-flare {
      position: absolute;
      left: -10%; right: -10%; top: 28%;
      height: 1px;
      pointer-events: none; z-index: 3;
      background: linear-gradient(
        90deg,
        transparent 0%,
        var(--cta-fill, #60a5fa) 38%,
        rgba(255, 255, 255, 0.8) 50%,
        var(--cta-fill, #60a5fa) 62%,
        transparent 100%
      );
      filter: blur(1px) drop-shadow(0 0 24px var(--cta-fill, #60a5fa));
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .slide.is-active .anamorphic-flare {
      opacity: 0.55;
      animation: flare-drift 9s ease-in-out infinite;
    }
    @keyframes flare-drift {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-12px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .slide.is-active .anamorphic-flare { animation: none; }
    }
    .slide-content {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 56px 72px 56px;
      max-width: 880px;
      z-index: 4;
    }
    @media (max-width: 900px)  { .slide-content { padding: 36px 36px 36px; } }
    @media (max-width: 640px)  { .slide-content { padding: 28px 22px 32px; max-width: none; } }

    /* ── Tech-style slide override — different aesthetic from cinema slides.
       Applied to slides about chat/agents/dashboards where the look should
       read "software" rather than "movie poster": thin frame, no grain,
       no italic-serif accent, terminal-style metadata. */
    .slide.slide-style-tech .slide-poster-grain { display: none; }
    .slide.slide-style-tech .slide-poster-spine { display: none; }
    .slide.slide-style-tech::before,
    .slide.slide-style-tech::after { height: 2px; opacity: 0.6; }
    .slide.slide-style-tech .slide-overlay {
      background-color: rgba(0, 0, 0, 0.32);
      box-shadow: inset 0 -200px 200px -80px rgba(0,0,0,0.72),
                  inset 0 140px 140px -100px rgba(0,0,0,0.45);
    }
    .slide.slide-style-tech .anamorphic-flare { display: none; }
    .slide.slide-style-tech .slide-poster-meta {
      font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
      font-size: 10.5px; letter-spacing: 0.10em;
      color: rgba(255,255,255,0.62); font-weight: 600;
      text-transform: none;
    }
    .slide.slide-style-tech .slide-poster-meta .pm-line { display: none; }
    .slide.slide-style-tech .slide-poster-meta .pm-num {
      color: #7DD3FC; font-weight: 700; letter-spacing: 0;
    }
    /* Chip becomes a hard-edged tag with cyan accent */
    .slide.slide-style-tech .slide-chip {
      border-top: 0;
      padding: 5px 10px;
      background: rgba(125, 211, 252, 0.10);
      border: 1px solid rgba(125, 211, 252, 0.32);
      border-radius: 4px;
      color: #93c5fd;
      letter-spacing: 0.12em;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-weight: 600;
      font-size: 11px;
    }
    .slide.slide-style-tech .slide-chip::before { display: none; }
    /* Title: drop the serif italic accent — clean sans, uppercase-track */
    .slide.slide-style-tech .slide-title .serif {
      font-family: inherit;
      font-style: normal;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: -0.03em;
    }
    /* Tighten letterbox feel on tech: keep the bars dim but slim */
    .slide.slide-style-tech .slide-content { padding-top: 56px; padding-bottom: 56px; }
    /* CTAs: more pill-rounded, slight cyan accent on hover */
    .slide.slide-style-tech .slide-cta-row .btn-primary,
    .slide.slide-style-tech .slide-cta-row .btn-ghost-light {
      border-radius: 10px;
      letter-spacing: 0;
    }

    /* ── Agent board — "Slack for agents" mini panel on hero slide 3 ─── */
    .slide-agent-board {
      position: absolute;
      right: 56px; top: 56px;
      width: 320px;
      background: rgba(13, 13, 18, 0.78);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      padding: 14px;
      color: #ececee;
      font-size: 12.5px;
      box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75);
      animation: sab-in .55s cubic-bezier(.2, .8, .2, 1) .25s both;
      pointer-events: none;
      z-index: 3;
    }
    @keyframes sab-in {
      from { opacity: 0; transform: translateY(-6px) scale(.985); }
      to   { opacity: 1; transform: none; }
    }
    /* mobile/tablet override — see "Compact widgets ≤1100px" block below */
    .sab-head {
      display: flex; align-items: center; gap: 8px;
      padding-bottom: 10px;
      margin-bottom: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 12px; font-weight: 600; color: #d4d4d8;
    }
    .sab-head .material-symbols-rounded {
      font-size: 14px; opacity: .7;
      font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' -25, 'opsz' 24;
    }
    .sab-live {
      margin-left: auto;
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
      color: #34d399; font-weight: 700;
    }
    .sab-pulse {
      width: 6px; height: 6px; border-radius: 50%;
      background: #34d399;
      box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
      animation: sab-pulse 1.6s ease-out infinite;
    }
    @keyframes sab-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
      80%  { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
      100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
    }
    .sab-row {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 6px 0;
      opacity: 0; animation: sab-row .45s ease both;
    }
    .sab-row:nth-of-type(2) { animation-delay: .50s; }
    .sab-row:nth-of-type(3) { animation-delay: .80s; }
    .sab-row:nth-of-type(4) { animation-delay: 1.10s; }
    .sab-row:nth-of-type(5) { animation-delay: 1.40s; }
    @keyframes sab-row {
      from { opacity: 0; transform: translateY(4px); }
      to   { opacity: 1; transform: none; }
    }
    .sab-av {
      width: 24px; height: 24px; border-radius: 7px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 11.5px; font-weight: 700;
      flex-shrink: 0;
    }
    .sab-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
    .sab-name { font-size: 11.5px; font-weight: 700; color: #ececee; letter-spacing: -.005em; }
    .sab-msg {
      font-size: 12px; color: #a1a1a9; line-height: 1.4;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .sab-dots {
      display: inline-flex; gap: 4px; padding: 4px 0;
    }
    .sab-dots > span {
      width: 4px; height: 4px; border-radius: 50%;
      background: #c4b5fd;
      animation: sab-bounce 1.4s ease-in-out infinite;
    }
    .sab-dots > span:nth-child(2) { animation-delay: .15s; }
    .sab-dots > span:nth-child(3) { animation-delay: .30s; }
    @keyframes sab-bounce {
      0%, 60%, 100% { transform: translateY(0); opacity: .55; }
      30%           { transform: translateY(-3px); opacity: 1; }
    }
    @media (prefers-reduced-motion: reduce) {
      .slide-agent-board, .sab-row, .sab-pulse, .sab-dots > span { animation: none; }
      .slide-agent-board, .sab-row { opacity: 1; transform: none; }
    }

    /* ── Chat-with-models board — slide 2 (tech style) ────────────────
       Shows model-tabs + a chat thread mid-swap (GPT-5 → Claude),
       so the "instant switching" claim is shown, not just told.        */
    .slide-chat-board {
      position: absolute;
      right: 56px; top: 56px;
      width: 320px;
      background: rgba(13, 13, 18, 0.78);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border: 1px solid rgba(125, 211, 252, 0.18);
      border-radius: 14px;
      padding: 14px;
      color: #ececee;
      font-size: 12.5px;
      box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75),
                  0 0 0 1px rgba(0, 217, 255, 0.04);
      animation: sab-in .55s cubic-bezier(.2, .8, .2, 1) .25s both;
      pointer-events: none;
      z-index: 3;
    }
    /* mobile/tablet override — see "Compact widgets ≤1100px" block below */

    .scb-head {
      display: flex; align-items: center; gap: 8px;
      padding-bottom: 10px; margin-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .scb-tabs {
      display: inline-flex; align-items: center; gap: 4px;
      flex: 1; min-width: 0;
    }
    .scb-tab {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 4px 8px; border-radius: 5px;
      font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em;
      color: rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      flex-shrink: 0;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      pointer-events: auto;                         /* override parent panel */
      cursor: pointer;
      transition: color .15s ease, background .15s ease, border-color .15s ease;
    }
    .scb-tab[data-prov]:hover:not(.is-active) {
      color: #ececee; background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.14);
    }
    .scb-tab-more { pointer-events: none; cursor: default; }
    .scb-tab.is-active {
      color: #ececee;
      background: rgba(0, 217, 255, 0.12);
      border-color: rgba(0, 217, 255, 0.38);
      box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.30);
      animation: scb-tab-pulse 2.2s ease-in-out infinite;
    }
    @keyframes scb-tab-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.30); }
      50%      { box-shadow: 0 0 0 4px rgba(0, 217, 255, 0); }
    }
    .scb-tab-more {
      color: rgba(255,255,255,0.45);
      background: transparent;
      border-style: dashed;
    }
    /* Stacked "online" indicator: label + dot up top, counter underneath.
       Right-aligned so it reads like a live status counter, not a chip.    */
    .scb-status {
      display: inline-flex; flex-direction: column; align-items: flex-end;
      gap: 1px; flex-shrink: 0;
      line-height: 1;
    }
    .scb-status-lbl {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 9px; letter-spacing: 0.20em; text-transform: uppercase;
      color: rgba(52, 211, 153, 0.85); font-weight: 800;
    }
    .scb-status-num {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 15px; font-weight: 800; color: #ececee;
      letter-spacing: -0.01em;
      display: inline-flex; align-items: flex-start;
    }
    .scb-status-num-plus {
      font-size: 10px; color: rgba(255,255,255,0.55);
      font-weight: 700; margin-left: 1px; margin-top: 1px;
    }
    .scb-status-dot {
      width: 6px; height: 6px; border-radius: 50%; background: #34d399;
      box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
      animation: sab-pulse 1.6s ease-out infinite;
    }

    .scb-thread {
      display: flex; flex-direction: column; gap: 9px;
    }
    .scb-msg {
      padding: 8px 10px;
      border-radius: 10px;
      opacity: 0; transform: translateY(4px);
      animation: scb-msg-in .45s ease both;
    }
    .scb-msg:nth-of-type(1) { animation-delay: .50s; }
    .scb-msg:nth-of-type(2) { animation-delay: .85s; }
    .scb-msg:nth-of-type(3) { animation-delay: 1.40s; }
    @keyframes scb-msg-in {
      to { opacity: 1; transform: none; }
    }
    .scb-msg-user {
      align-self: flex-end; max-width: 88%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.07);
      border-bottom-right-radius: 3px;
    }
    .scb-msg-bot {
      align-self: flex-start; max-width: 92%;
      background: rgba(0, 217, 255, 0.06);
      border: 1px solid rgba(0, 217, 255, 0.14);
      border-bottom-left-radius: 3px;
    }
    .scb-msg-head {
      display: flex; align-items: center; gap: 6px;
      margin-bottom: 4px;
    }
    .scb-msg-av {
      width: 16px; height: 16px; border-radius: 4px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 800; color: #fff;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      flex-shrink: 0;
    }
    .scb-msg-openai     .scb-msg-av { background: #10a37f; }
    .scb-msg-anthropic  .scb-msg-av { background: #d97706; }
    .scb-msg-google     .scb-msg-av { background: #4285f4; }
    .scb-msg-deepseek   .scb-msg-av { background: #4d6bfe; }
    .scb-msg-name {
      font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,0.78);
      letter-spacing: 0.02em;
    }
    .scb-msg-text {
      font-size: 11.5px; line-height: 1.45;
      color: rgba(255,255,255,0.85);
    }

    /* Mid-thread swap indicator */
    .scb-swap {
      align-self: center;
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase;
      color: rgba(0, 217, 255, 0.78); font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      background: rgba(0, 217, 255, 0.06);
      border: 1px dashed rgba(0, 217, 255, 0.28);
      opacity: 0; animation: scb-msg-in .45s ease 1.15s both;
    }
    .scb-swap-ico { font-size: 12px; line-height: 1; opacity: .85; }

    /* Typing dots inside last (Claude) bubble */
    .scb-typing-dots {
      display: inline-flex; gap: 4px; padding: 2px 0;
    }
    .scb-typing-dots > span {
      width: 4px; height: 4px; border-radius: 50%;
      background: #fcd34d;
      animation: sab-bounce 1.4s ease-in-out infinite;
    }
    .scb-typing-dots > span:nth-child(2) { animation-delay: .15s; }
    .scb-typing-dots > span:nth-child(3) { animation-delay: .30s; }

    .scb-foot {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 12px; padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 10px; color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.04em;
    }
    .scb-foot-kbd {
      padding: 2px 6px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 4px;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 9.5px; color: rgba(255,255,255,0.72);
    }
    @media (prefers-reduced-motion: reduce) {
      .slide-chat-board, .scb-msg, .scb-swap, .scb-tab.is-active,
      .scb-status-dot, .scb-typing-dots > span { animation: none; }
      .slide-chat-board, .scb-msg, .scb-swap { opacity: 1; transform: none; }
    }

    /* ── Render-pipeline board — slide 1 (Video Studio, cinema style) ─
       Three steps (Soul → Director → Model) with live progress bar.    */
    .slide-render-board {
      position: absolute;
      right: 56px; top: 56px;
      width: 320px;
      background: rgba(13, 13, 18, 0.78);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border: 1px solid rgba(245, 158, 11, 0.18);     /* warm cinema accent */
      border-radius: 14px;
      padding: 14px;
      color: #ececee;
      font-size: 12.5px;
      box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75),
                  0 0 0 1px rgba(229, 9, 20, 0.04);
      animation: sab-in .55s cubic-bezier(.2, .8, .2, 1) .25s both;
      pointer-events: none;
      z-index: 3;
    }
    /* See "Mobile-adapted widgets" block further down — they re-appear in
       a compact form on tablet/phone instead of vanishing entirely. */

    /* Slate-strip header — mimics clapperboard chevron stripes (red+white). */
    .srbd-head {
      display: flex; align-items: center; gap: 8px;
      padding-bottom: 10px; margin-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .srbd-slate {
      flex: 1; display: inline-flex; align-items: center; gap: 0;
      padding: 4px 8px;
      background: #0a0a0f;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      min-width: 0;
    }
    .srbd-slate-stripe { width: 8px; height: 14px; flex-shrink: 0; transform: skewX(-22deg); }
    .srbd-slate-stripe.srbd-slate-r { background: #e50914; }
    .srbd-slate-stripe.srbd-slate-w { background: #f2efe9; }
    .srbd-slate-num {
      margin-left: 8px; flex: 1; min-width: 0;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.75); font-weight: 700;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .srbd-res {
      padding: 3px 7px;
      border: 1px solid rgba(245, 158, 11, 0.42);
      background: rgba(245, 158, 11, 0.08);
      border-radius: 4px;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 10px; letter-spacing: 0.10em; font-weight: 800;
      color: #fcd34d; flex-shrink: 0;
    }

    /* Pipeline steps */
    .srbd-pipe { display: flex; flex-direction: column; gap: 8px; }
    .srbd-step {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 10px;
      border-radius: 8px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      opacity: 0; transform: translateY(4px);
      animation: scb-msg-in .45s ease both;
      position: relative;
    }
    .srbd-step:nth-of-type(1) { animation-delay: .45s; }
    .srbd-step:nth-of-type(2) { animation-delay: .80s; }
    .srbd-step:nth-of-type(3) { animation-delay: 1.20s; }
    .srbd-step-num {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 9.5px; font-weight: 800;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.05em;
      width: 22px; flex-shrink: 0; text-align: center;
    }
    .srbd-step-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
    .srbd-step-name {
      font-size: 12.5px; font-weight: 700; color: #ececee;
      letter-spacing: -.005em;
    }
    .srbd-step-tag {
      font-size: 10.5px; color: rgba(255,255,255,0.55);
      letter-spacing: 0.02em;
    }
    .srbd-step-check {
      width: 22px; height: 22px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 800;
      background: rgba(52, 211, 153, 0.14);
      border: 1px solid rgba(52, 211, 153, 0.42);
      color: #6ee7b7;
      flex-shrink: 0;
    }

    /* Done step — slightly dimmer body */
    .srbd-step-done { background: rgba(255,255,255,0.025); }
    .srbd-step-done .srbd-step-num { color: rgba(110, 231, 183, 0.7); }

    /* Active step — warm orange glow + animated bar */
    .srbd-step-active {
      background: rgba(229, 9, 20, 0.06);
      border-color: rgba(245, 158, 11, 0.36);
      box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.32);
      animation: scb-msg-in .45s ease 1.20s both, srbd-active-pulse 2.6s ease-in-out infinite 1.65s;
    }
    @keyframes srbd-active-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.32); }
      50%      { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
    }
    .srbd-step-active .srbd-step-num { color: #fcd34d; }
    .srbd-step-active .srbd-step-name {
      color: #fff;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 12px; letter-spacing: 0;
    }
    .srbd-step-bar {
      width: 64px; height: 4px;
      border-radius: 2px;
      background: rgba(255,255,255,0.06);
      overflow: hidden;
      position: relative; flex-shrink: 0;
    }
    .srbd-step-bar-fill {
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 8%;
      background: linear-gradient(90deg, #e50914, #f59e0b, #fcd34d);
      animation: srbd-bar 4s ease-in-out infinite;
    }
    @keyframes srbd-bar {
      0%   { width: 6%;  }
      85%  { width: 92%; }
      100% { width: 92%; opacity: 0; }
    }

    .srbd-foot {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 12px; padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 10.5px; color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.02em;
    }
    .srbd-foot-meta b { color: #fcd34d; font-weight: 700; }
    .srbd-foot-eta {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      color: #fcd34d; font-weight: 700;
    }

    @media (prefers-reduced-motion: reduce) {
      .slide-render-board, .srbd-step, .srbd-step-bar-fill, .srbd-step-active {
        animation: none;
      }
      .slide-render-board, .srbd-step { opacity: 1; transform: none; }
    }

    /* ── Filmstrip board — director shots on hero slide 4 ────────────── */
    .slide-reel-board {
      position: absolute;
      right: 56px; top: 56px;
      width: 300px;
      background: rgba(13, 13, 18, 0.78);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      padding: 14px;
      color: #ececee;
      font-size: 12.5px;
      box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75);
      animation: sab-in .55s cubic-bezier(.2, .8, .2, 1) .25s both;
      pointer-events: none;
      z-index: 3;
    }
    /* mobile/tablet override — see "Compact widgets ≤1100px" block below */

    .srb-head {
      display: flex; align-items: center; gap: 10px;
      padding-bottom: 10px; margin-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .srb-rec {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 9.5px; letter-spacing: 0.20em; text-transform: uppercase;
      color: #fca5a5; font-weight: 800;
      padding: 3px 7px;
      border: 1px solid rgba(229, 9, 20, 0.45);
      border-radius: 4px;
      background: rgba(229, 9, 20, 0.10);
    }
    .srb-rec-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: #ef4444;
      animation: srb-rec 1.4s ease-in-out infinite;
    }
    @keyframes srb-rec {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.35; transform: scale(0.85); }
    }
    .srb-scene {
      font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7); font-weight: 700;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
      flex: 1;
    }

    /* Filmstrip: 3 frames stacked vertically with sprocket-hole edges */
    .srb-strip {
      display: flex; flex-direction: column;
      padding: 0 12px;                       /* room for sprocket gutter on both sides */
      position: relative;
      background: #050609;
      border-radius: 4px;
      /* sprocket holes — left + right gutters, repeating linear-gradient */
      background-image:
        linear-gradient(#050609, #050609),
        repeating-linear-gradient(
          to bottom,
          rgba(0,0,0,0.95) 0 5px,
          rgba(255,255,255,0.06) 5px 10px,
          rgba(0,0,0,0.95) 10px 15px,
          rgba(255,255,255,0.06) 15px 20px
        );
      background-clip: padding-box, border-box;
      background-origin: padding-box, border-box;
      background-position: 0 0, 0 0;
      background-size: calc(100% - 24px) 100%, 100% 100%;
      background-repeat: no-repeat, repeat-y;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }
    .srb-frame {
      padding: 8px 0;
      border-top: 1px dashed rgba(255,255,255,0.06);
      opacity: 0;
      animation: sab-row .45s ease both;
    }
    .srb-frame:first-child { border-top: 0; }
    .srb-frame:nth-of-type(1) { animation-delay: .50s; }
    .srb-frame:nth-of-type(2) { animation-delay: .85s; }
    .srb-frame:nth-of-type(3) { animation-delay: 1.20s; }
    .srb-frame-meta {
      font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55); font-weight: 700;
      margin-bottom: 4px;
    }
    .srb-frame-img {
      width: 100%; aspect-ratio: 16 / 9;
      border-radius: 3px;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10),
                  inset 0 0 30px rgba(0,0,0,0.45);
      overflow: hidden;
      background-color: #050609;
      background-size: cover;
      background-position: center;
      filter: saturate(0.95) brightness(0.92);
    }
    .srb-frame-img::before, .srb-frame-img::after {
      content: ""; position: absolute; left: 0; right: 0; height: 3px;
      background: rgba(0, 0, 0, 0.55);
    }
    .srb-frame-img::before { top: 0; }
    .srb-frame-img::after  { bottom: 0; }
    .srb-frame-glyph {
      font-size: 14px; color: rgba(255, 255, 255, 0.65);
      letter-spacing: 0.3em;
      filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
    }
    .srb-frame-credit {
      font-size: 10.5px; color: rgba(255, 255, 255, 0.78);
      margin-top: 4px; font-weight: 500;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }

    .srb-foot {
      display: flex; align-items: center; gap: 6px;
      margin-top: 12px; padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 10.5px; color: rgba(255, 255, 255, 0.6);
    }
    .srb-foot-model {
      color: #fff; font-weight: 700; letter-spacing: 0.04em;
      padding: 2px 6px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 3px;
      font-size: 9.5px;
    }
    .srb-foot-sep { opacity: 0.4; }
    .srb-progress {
      margin-left: auto;
      width: 56px; height: 3px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 2px; overflow: hidden;
      position: relative;
    }
    .srb-progress-fill {
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 42%;
      background: linear-gradient(90deg, #e50914, #f59e0b);
      animation: srb-progress 4s ease-in-out infinite;
    }
    @keyframes srb-progress {
      0%   { width: 8%;  }
      90%  { width: 92%; }
      100% { width: 92%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .slide-reel-board, .srb-frame, .srb-rec-dot, .srb-progress-fill { animation: none; }
      .slide-reel-board, .srb-frame { opacity: 1; }
    }
    @media (max-width: 700px) { .slide-content { padding: 26px 22px; } }
    /* The chip / sub-headline shouldn't be clipped by the top edge on narrow desktops. */
    .slide-models {
      max-height: 70px; overflow: hidden;                /* clamp to a single row visually */
      margin-bottom: 14px;
    }
    /* Slide chip — flat editorial label, no pill, like a poster credit-line.
       Sits above the title with a thin top border + uppercase letterspacing. */
    .slide-chip {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 8px 0 8px;
      background: transparent;
      border: 0;
      border-top: 1px solid rgba(255,255,255,0.32);
      border-radius: 0;
      font-size: 11px; font-weight: 700; color: #fff;
      letter-spacing: 0.22em; text-transform: uppercase;
      margin-bottom: 18px;
    }
    .slide-chip::before {
      content: ""; width: 14px; height: 1px;
      background: rgba(255,255,255,0.8); flex-shrink: 0;
    }
    .slide-chip .dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--success);
      box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22);
    }
    .slide-title {
      font-size: clamp(34px, 5.4vw, 80px);                 /* fits long RU titles cleanly */
      line-height: 1.02; letter-spacing: -0.035em;
      font-weight: 900; color: #fff; margin: 0 0 20px;
      text-shadow: 0 6px 32px rgba(0,0,0,0.65);
      hyphens: manual; -webkit-hyphens: manual;
      word-break: normal; overflow-wrap: normal;
      text-wrap: balance;
    }
    .slide-title .serif {
      font-family: 'Instrument Serif', Georgia, serif;
      font-style: italic; font-weight: 400; letter-spacing: -0.02em;
      color: rgba(255,255,255,0.92);
    }
    @media (max-width: 700px) {
      .slide-title { font-size: clamp(28px, 8vw, 44px); }
    }
    /* Char-by-char reveal — runs once when slide becomes active */
    .slide.is-active .slide-title > span > span {
      animation: title-rise .9s cubic-bezier(.2,.85,.2,1) backwards;
    }
    .slide.is-active .slide-title > span:nth-child(1) > span { animation-delay: 0.05s; }
    .slide.is-active .slide-title > span:nth-child(3) > span { animation-delay: 0.18s; }
    @keyframes title-rise {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .slide-sub {
      font-size: clamp(15px, 1.55vw, 18px);
      line-height: 1.55;
      color: rgba(245,245,247,0.88);
      max-width: 580px; margin: 0 0 32px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.55);
      hyphens: manual; -webkit-hyphens: manual;
      word-break: normal; overflow-wrap: normal;
    }
    .slide-cta-row {
      display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    }
    /* Ticket-style buttons — flat rectangles with thin border, no big radius,
       so the row reads like a film-festival pass row instead of web CTAs. */
    .slide-cta-row .btn-primary {
      border-radius: 6px;
      letter-spacing: 0.04em;
      padding: 14px 22px;
    }
    .slide-cta-row .btn-ghost-light {
      border-radius: 6px;
      letter-spacing: 0.04em;
      padding: 14px 22px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.5);
      color: #fff;
    }
    .slide-cta-row .btn-ghost-light:hover { background: rgba(255,255,255,0.10); border-color: #fff; }

    .slider-dots {
      position: absolute; top: 22px; right: 22px; z-index: 4;
      display: inline-flex; gap: 8px;
      background: rgba(0,0,0,0.30);
      backdrop-filter: blur(8px);
      padding: 8px 10px; border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
    }
    .slider-dot {
      width: 22px; height: 4px; border-radius: 999px;
      background: rgba(255,255,255,0.30);
      border: 0; padding: 0; cursor: pointer;
      transition: background .25s ease, width .25s ease;
    }
    .slider-dot.active { background: #fff; width: 32px; }
    .slider-arrows {
      position: absolute; bottom: 22px; right: 22px; z-index: 4;
      display: inline-flex; gap: 6px;
    }
    .slider-arrow {
      width: 42px; height: 42px; border-radius: 12px;
      background: rgba(0,0,0,0.40);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.16);
      color: #fff; cursor: pointer; display: grid; place-items: center;
      transition: background .15s ease;
    }
    .slider-arrow:hover { background: rgba(0,0,0,0.60); }
    .slider-arrow .material-symbols-rounded { font-size: 22px; }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 22px; border-radius: 12px;
      font-weight: 600; font-size: 15px; text-decoration: none;
      border: 1px solid transparent; cursor: pointer; font-family: inherit;
      transition: transform .15s ease, background .15s ease, border .15s ease;
    }
    /* Primary CTA — white by default, Google-blue on hover.
       Used everywhere outside the hero slider. */
    .btn-primary {
      background: #ffffff;
      color: #0a0a0f;
      border: 1px solid transparent;
      transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
    }
    .btn-primary:hover {
      background: #4285F4;
      color: #ffffff;
      transform: translateY(-1px);
    }
    /* Slide-context: the CTA is ALREADY tinted by the slide's theme.
       Hover just lifts/darkens — no colour swap. */
    /* Order: Video (red) → Chat (blue) → Souls (amber) → Outreach (green) */
    .slide[data-theme="0"] { --cta-fill: #e50914; --cta-fill-h: #b91c1c; }   /* Video — Netflix red */
    .slide[data-theme="1"] { --cta-fill: #4285F4; --cta-fill-h: #1a73e8; }   /* Chat — Google blue */
    .slide[data-theme="2"] { --cta-fill: #f59e0b; --cta-fill-h: #d97706; }   /* Souls — amber */
    .slide[data-theme="3"] { --cta-fill: #10b981; --cta-fill-h: #059669; }   /* Outreach — green */
    .slide[data-theme="4"] { --cta-fill: #e50914; --cta-fill-h: #b91c1c; }   /* Directors — Netflix red (paired with Video cinema family) */
    .slide .btn-primary {
      background: var(--cta-fill, #4285F4);
      color: #ffffff;
    }
    .slide .btn-primary:hover {
      background: var(--cta-fill-h, #1a73e8);
      color: #ffffff;
    }
    .btn-ghost-light {
      background: rgba(255,255,255,0.10);
      color: #fff;
      border-color: rgba(255,255,255,0.20);
      backdrop-filter: blur(6px);
    }
    .btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

    /* ── Live stats strip ── */
    .stats-strip {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      margin-top: 40px;
      background: var(--border);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    @media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
    .stat {
      background: var(--bg-elev-1);
      padding: 22px 22px;
      text-align: center;
    }
    .stat-num {
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: 800; letter-spacing: -0.02em;
      color: var(--fg);
    }
    .stat-num .serif { color: var(--accent); }
    .stat-label {
      margin-top: 4px; font-size: 12.5px; color: var(--fg-dim);
      letter-spacing: 0.06em; text-transform: uppercase;
    }

    /* ── Models strip ── */
    .models-strip {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
      gap: 18px 28px; padding: 32px 0;
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      color: var(--fg-dim);
      margin-top: 32px;
    }
    .models-strip .label {
      font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
      font-weight: 600; opacity: 0.7;
    }
    /* Provider chip — small coloured circle (brand colour, first letter) + name */
    .mchip {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 600; color: var(--fg-muted);
      letter-spacing: -0.01em;
    }
    .mchip-ico {
      width: 22px; height: 22px; border-radius: 50%;
      display: grid; place-items: center;
      font-family: 'Inter', sans-serif;
      font-weight: 800; font-size: 11px; color: #fff;
      flex-shrink: 0;
      overflow: hidden;
    }
    .mchip-ico svg { display: block; width: 100%; height: 100%; }
    .mchip[data-prov="openai"]     .mchip-ico { background: #000000; }
    .mchip[data-prov="anthropic"]  .mchip-ico { background: #d97706; }
    .mchip[data-prov="google"]     .mchip-ico { background: #ffffff; }
    .mchip[data-prov="meta"]       .mchip-ico { background: #0866ff; }
    .mchip[data-prov="deepseek"]   .mchip-ico { background: #4d6bfe; }
    .mchip[data-prov="mistral"]    .mchip-ico { background: #ffffff; }
    .mchip[data-prov="qwen"]       .mchip-ico { background: #615cff; }
    .mchip[data-prov="xai"]        .mchip-ico { background: #000000; color: #fff; }
    .mchip[data-prov="more"]       .mchip-ico { background: rgba(255,255,255,0.06); color: var(--fg-muted); }
    /* Video gen providers */
    .mchip[data-prov="veo"]        .mchip-ico { background: #ffffff; }
    .mchip[data-prov="runway"]     .mchip-ico { background: #000000; }
    .mchip[data-prov="pika"]       .mchip-ico { background: #ff4d8d; }
    .mchip[data-prov="kling"]      .mchip-ico { background: #00d2ff; }
    .mchip[data-prov="hailuo"]     .mchip-ico { background: #ff5b5b; }
    .mchip[data-prov="luma"]       .mchip-ico { background: #000000; }
    .mchip[data-prov="sora"]       .mchip-ico { background: #000000; }
    .mchip[data-prov="seedance"]   .mchip-ico { background: #000000; }
    .mchip[data-prov="wan"]        .mchip-ico { background: #000000; }
    .mchip[data-prov="hunyuan"]    .mchip-ico { background: #000000; }
    .mchip[data-prov="vidu"]       .mchip-ico { background: #000000; }
    .mchip[data-prov="mochi"]      .mchip-ico { background: #ffb6c1; }
    .mchip[data-prov="ltx"]        .mchip-ico { background: #000000; }

    /* "Latest 2026" badge near models / hero */
    .new-badge {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 3px 8px;
      background: rgba(16, 185, 129, 0.10);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.32);
      border-radius: 6px;
      font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.10em; text-transform: uppercase;
      line-height: 1;
      vertical-align: middle;
    }
    .new-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: #10b981; }

    /* Compact version used inside hero slides */
    .slide-models {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin: 0 0 18px;
    }
    .slide-models .mchip {
      padding: 4px 10px 4px 4px;
      background: rgba(0, 0, 0, 0.34);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      color: #ffffff;
      font-size: 12.5px;
    }
    .slide-models .mchip-ico { width: 18px; height: 18px; font-size: 10px; }

    /* ── Section ── */
    section { padding: 96px 0; }                        /* generous but not heavy */
    @media (max-width: 760px) { section { padding: 64px 0 !important; } }
    .section-head { text-align: center; margin-bottom: 48px; }
    .section-eyebrow {
      display: inline-block; font-size: 13px; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent); font-weight: 700;
      margin-bottom: 12px;
    }
    .section-head h2 {
      font-size: clamp(28px, 3.6vw, 44px);
      line-height: 1.12; letter-spacing: -0.025em;
      font-weight: 800; margin: 0 auto; max-width: 760px;
      /* Don't auto-hyphenate or break long words letter-by-letter.
         Russian copy with Latin terms (Reels, DM) wrapped weirdly. */
      hyphens: manual; -webkit-hyphens: manual;
      word-break: normal; overflow-wrap: normal;
    }
    .section-head p {
      margin: 14px auto 0; max-width: 720px; color: var(--fg-muted);
      font-size: 16px; line-height: 1.6;
      hyphens: manual; -webkit-hyphens: manual;
      word-break: normal; overflow-wrap: normal;
    }

    /* ─────────────────────────────────────────────────────────────────
       Compact widgets ≤1100px — instead of hiding the slide widgets on
       tablet/phone, shrink them and drop non-essential rows so they
       still tease the demo without crowding the slide content.
       ───────────────────────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .slide-agent-board,
      .slide-chat-board,
      .slide-reel-board,
      .slide-render-board {
        width: clamp(220px, 50vw, 256px);
        top: 56px; right: 14px;
        padding: 11px;
        font-size: 11.5px;
      }
      .slide-agent-board .sab-row:nth-of-type(n+3) { display: none; }
      .slide-chat-board  .scb-msg:nth-of-type(n+2),
      .slide-chat-board  .scb-swap                  { display: none; }
      .slide-chat-board  .scb-tab[data-prov]:nth-of-type(n+4) { display: none; }
      .slide-render-board .srbd-step-done:first-child { display: none; }
      .slide-reel-board   .srb-frame:nth-of-type(n+3) { display: none; }
      .slide-render-board .srbd-slate-num { display: none; }
    }
    /* Phone — even more minimal: keep only the head row of each widget. */
    @media (max-width: 640px) {
      .slide-agent-board,
      .slide-chat-board,
      .slide-reel-board,
      .slide-render-board {
        top: 44px; right: 10px;
        width: clamp(150px, 60vw, 200px);
        padding: 8px 10px;
        font-size: 10.5px;
        border-radius: 10px;
      }
      .slide-agent-board .sab-row,
      .slide-chat-board  .scb-thread,
      .slide-chat-board  .scb-foot,
      .slide-render-board .srbd-pipe,
      .slide-render-board .srbd-foot,
      .slide-reel-board   .srb-strip,
      .slide-reel-board   .srb-foot { display: none; }
      .slide-agent-board .sab-head,
      .slide-chat-board  .scb-head,
      .slide-render-board .srbd-head,
      .slide-reel-board   .srb-head { padding: 0; margin: 0; border: 0; }
      .slide-chat-board .scb-tab:not(.is-active):not(.scb-tab-more) { display: none; }
      .slide-chat-board .scb-status-num { display: none; }
      .slide-render-board .srbd-slate { padding: 3px 5px; }
      .slide-render-board .srbd-slate-stripe { height: 10px; width: 6px; }
    }

    /* ─────────────────────────────────────────────────────────────────
       Hero-banner v2 — competitive frame + live demo + price-anchor
       tiers + concrete CTA + trust micro-line. Replaces the old static
       editorial banner with a high-intent conversion block.
       ───────────────────────────────────────────────────────────────── */
    .hbv {
      padding: 80px 0 96px;
      position: relative;
    }
    .hbv-wrap {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
    }

    /* Live counter — tiny pulse-dot eyebrow */
    .hbv-stats {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11.5px; letter-spacing: 0.06em;
      color: var(--fg-muted);
      margin-bottom: 28px;
      flex-wrap: wrap; justify-content: center;
    }
    .hbv-stats b {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      color: var(--fg); font-weight: 800;
      margin-right: 3px;
    }
    .hbv-stats-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #34d399;
      box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
      animation: sab-pulse 1.6s ease-out infinite;
    }
    .hbv-stats-sep { opacity: .35; }

    /* Main title — competitive frame */
    .hbv-title {
      font-size: clamp(30px, 4.6vw, 56px);
      line-height: 1.08; letter-spacing: -0.028em;
      font-weight: 900; color: var(--fg);
      margin: 0 0 28px;
    }
    .hbv-sub2 {
      display: block;
      margin-top: 14px;
      font-size: clamp(15px, 1.6vw, 19px);
      font-weight: 500; line-height: 1.55;
      letter-spacing: -0.01em;
      color: var(--fg-muted);
    }
    .hbv-strike {
      text-decoration: line-through;
      text-decoration-color: rgba(229, 9, 20, 0.85);
      text-decoration-thickness: 2px;
      color: rgba(255,255,255,0.45);
    }
    .hbv-price {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      color: #34d399; font-weight: 800;
      letter-spacing: -0.02em;
      padding: 0 2px;
    }

    /* Mini live demo block */
    .hbv-demo {
      max-width: 520px; margin: 0 auto 36px;
      padding: 16px 16px;
      background: rgba(13, 13, 18, 0.78);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 12px;
      display: flex; flex-direction: column; gap: 10px;
      text-align: left;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      box-shadow: 0 24px 60px -28px rgba(0,0,0,0.5);
    }
    .hbv-demo-msg {
      display: flex; align-items: center; gap: 10px;
      font-size: 12.5px; min-height: 22px;
    }
    .hbv-demo-tag {
      flex-shrink: 0; width: 56px;
      padding: 3px 6px;
      border-radius: 4px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.55);
      font-size: 9.5px; font-weight: 800;
      letter-spacing: 0.12em; text-align: center;
    }
    .hbv-demo-tag-bot {
      background: rgba(0, 217, 255, 0.10);
      border-color: rgba(0, 217, 255, 0.32);
      color: #93c5fd;
    }
    .hbv-demo-text {
      color: var(--fg);
      letter-spacing: 0.005em;
    }
    .hbv-demo-caret {
      display: inline-block; width: 1px; height: 14px;
      background: var(--fg);
      animation: hbv-caret 1.1s steps(1) infinite;
      vertical-align: middle;
      margin-left: 2px;
    }
    @keyframes hbv-caret { 50% { opacity: 0; } }
    .hbv-demo-bar {
      flex: 1; height: 4px; border-radius: 2px;
      background: rgba(255,255,255,0.06);
      overflow: hidden; position: relative;
    }
    .hbv-demo-bar-fill {
      position: absolute; left: 0; top: 0; bottom: 0; width: 0;
      background: linear-gradient(90deg, #e50914, #f59e0b, #fcd34d);
    }
    .hbv-demo-status {
      flex-shrink: 0; color: #fcd34d;
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.04em;
    }

    /* Price-anchor tier strip */
    .hbv-tiers {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 0 auto 36px;
      max-width: 680px;
    }
    @media (max-width: 700px) { .hbv-tiers { grid-template-columns: 1fr; } }
    .hbv-tier {
      padding: 14px 14px 13px;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; flex-direction: column; gap: 4px;
      text-align: left;
      transition: border-color .15s ease, transform .15s ease;
    }
    .hbv-tier:hover { border-color: var(--border-strong); transform: translateY(-1px); }
    .hbv-tier-name {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 10px; letter-spacing: 0.18em;
      color: var(--fg-muted); font-weight: 700;
    }
    .hbv-tier-price {
      font-size: 22px; font-weight: 800; color: var(--fg);
      letter-spacing: -0.02em;
      display: inline-flex; align-items: baseline; gap: 2px;
    }
    .hbv-tier-per {
      font-size: 11px; font-weight: 500;
      color: var(--fg-dim); letter-spacing: 0;
    }
    .hbv-tier-list {
      font-size: 11.5px; color: var(--fg-muted);
      line-height: 1.45; letter-spacing: 0.005em;
    }
    .hbv-tier-featured {
      background: rgba(0, 217, 255, 0.04);
      border-color: rgba(0, 217, 255, 0.30);
      box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.08) inset;
    }
    .hbv-tier-featured .hbv-tier-name { color: #7DD3FC; }
    .hbv-tier-featured .hbv-tier-price { color: #fff; }

    /* CTAs */
    .hbv-cta-row {
      display: inline-flex; flex-wrap: wrap; gap: 12px;
      justify-content: center;
      margin-bottom: 20px;
    }
    .hbv-cta-primary {
      padding: 15px 28px;
      font-size: 15px;
      border-radius: 8px;
    }
    .hbv-cta-ghost {
      background: transparent;
      color: var(--fg-muted);
      border: 1px solid var(--border-strong);
      padding: 15px 22px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color .15s ease, border-color .15s ease, background .15s ease;
    }
    .hbv-cta-ghost:hover { color: var(--fg); border-color: var(--fg); background: rgba(255,255,255,0.04); }

    /* Trust micro-line */
    .hbv-trust {
      font-size: 12px; color: var(--fg-dim);
      letter-spacing: 0.04em;
      margin: 0;
      display: inline-flex; align-items: center; gap: 6px;
      justify-content: center;
    }
    .hbv-trust-ico {
      color: #34d399; font-weight: 800;
    }

    @media (max-width: 640px) {
      .hbv { padding: 56px 0 64px; }
      .hbv-stats { font-size: 10.5px; gap: 6px; }
      .hbv-stats-sep { display: none; }
      .hbv-demo { padding: 12px 12px; gap: 8px; max-width: none; }
      .hbv-demo-msg { font-size: 11px; min-height: 18px; gap: 8px; }
      .hbv-demo-tag { width: 44px; font-size: 8.5px; padding: 2px 4px; }
      .hbv-demo-status { font-size: 10px; }
      .hbv-cta-primary { padding: 13px 18px; font-size: 13.5px; width: 100%; justify-content: center; }
      .hbv-cta-ghost   { padding: 12px 18px; font-size: 13px; width: 100%; justify-content: center; text-align: center; }
      .hbv-cta-row { width: 100%; flex-direction: column; }
      .hbv-trust { font-size: 11px; flex-wrap: wrap; }
    }

    /* ── Persona grid ── 4 cards linking to /for/{slug} sub-landings */
    .persona-grid {
      display: grid; gap: 18px;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 1080px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px)  { .persona-grid { grid-template-columns: 1fr; } }
    .persona-card {
      display: flex; flex-direction: column;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      color: var(--fg);
      text-decoration: none;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      position: relative;
    }
    .persona-card:hover {
      transform: translateY(-2px);
      border-color: var(--border-strong);
      box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.6);
    }
    .persona-cover {
      aspect-ratio: 16 / 11;
      background-size: cover;
      background-position: center;
      background-color: var(--bg-elev-2);
      filter: saturate(0.85) brightness(0.78);
      transition: filter .25s ease, transform .35s ease;
    }
    .persona-card:hover .persona-cover {
      filter: saturate(1) brightness(0.92);
      transform: scale(1.02);
    }
    .persona-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .persona-eye {
      font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--fg-muted);
    }
    .persona-h {
      font-size: 22px; line-height: 1.16; letter-spacing: -0.022em;
      font-weight: 800; margin: 0;
    }
    .persona-h-dim { color: var(--fg-muted); font-weight: 500; }
    .persona-p {
      font-size: 13.5px; line-height: 1.55;
      color: var(--fg-muted); margin: 0; flex: 1;
    }
    .persona-cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--fg);
      margin-top: 8px;
      transition: gap .15s ease;
    }
    .persona-cta .material-symbols-rounded { font-size: 16px; line-height: 1; }
    .persona-card:hover .persona-cta { gap: 10px; }

    /* ── Features ── */
    .features {
      display: grid; gap: 22px;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (max-width: 960px) { .features { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 620px) { .features { grid-template-columns: 1fr; } }
    .feature-card {
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
      transition: transform .25s ease, border-color .25s ease, background .25s ease;
      opacity: 0; transform: translateY(16px);
      display: flex; flex-direction: column;
    }
    .feature-card.in { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
    .feature-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-strong);
      background: var(--bg-elev-2);
    }
    .feature-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .feature-thumb img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      filter: brightness(0.88) saturate(0.92);
    }
    .feature-thumb::after {
      content: ''; position: absolute; inset: 0;
      box-shadow: inset 0 -60px 60px -30px rgba(0,0,0,0.50);
      pointer-events: none;
    }
    .feature-icon {
      position: absolute; top: 14px; left: 14px;
      width: 40px; height: 40px; border-radius: 11px;
      display: grid; place-items: center;
      background: rgba(10,10,15,0.68);
      backdrop-filter: blur(8px);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
      z-index: 1;
    }
    .feature-icon .material-symbols-rounded { font-size: 22px; }
    .feature-body { padding: 22px 24px 24px; }
    .feature-title {
      font-size: 19px; font-weight: 700; letter-spacing: -0.015em;
      margin: 0 0 8px;
    }
    .feature-desc {
      font-size: 14.5px; color: var(--fg-muted); margin: 0;
      line-height: 1.55;
    }
    .feature-tag {
      display: inline-flex; align-items: center; gap: 4px;
      margin-top: 14px; font-size: 11.5px; font-weight: 600;
      color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase;
    }
    /* "What you can do" — concrete examples list under each feature card */
    .feature-uses {
      margin: 14px 0 0; padding: 0; list-style: none;
      display: flex; flex-direction: column; gap: 7px;
    }
    .feature-uses li {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 13px; color: var(--fg-muted); line-height: 1.45;
    }
    .feature-uses li::before {
      content: '';
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--accent);
      margin-top: 8px; flex-shrink: 0;
    }

    /* ── Features v3 — Bento grid (Apple "Designed by California" pattern)
       12-column layout with 1 hero card + 5 mixed-size tiles.
       Each tile keeps the per-feature accent colour for visual interest.   */
    .bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: minmax(260px, auto);
      gap: 18px;
      margin-top: 8px;
    }
    @media (max-width: 1100px) { .bento { grid-template-columns: repeat(6, 1fr); } }
    @media (max-width: 620px)  { .bento { grid-template-columns: 1fr; grid-auto-rows: auto; } }

    .bento-card {
      position: relative;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform .25s ease, border-color .25s ease, background .25s ease;
      opacity: 0; transform: translateY(20px);
    }
    .bento-card.in { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
    .bento-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-strong);
      background: var(--bg-elev-2);
    }
    /* Sizes (12-col grid) */
    .bento-card.b-hero  { grid-column: span 8; grid-row: span 2; }
    .bento-card.b-tall  { grid-column: span 4; grid-row: span 2; }
    .bento-card.b-wide  { grid-column: span 8; }
    .bento-card.b-med   { grid-column: span 4; }
    .bento-card.b-half  { grid-column: span 6; }
    /* 6-col tablet (1100-620px) */
    @media (max-width: 1100px) and (min-width: 621px) {
      .bento-card.b-hero { grid-column: span 6; grid-row: span 2; }
      .bento-card.b-tall { grid-column: span 6; grid-row: span 1; }
      .bento-card.b-wide { grid-column: span 6; }
      .bento-card.b-med  { grid-column: span 3; }
      .bento-card.b-half { grid-column: span 6; }
    }
    /* Phone */
    @media (max-width: 620px) {
      .bento-card.b-hero, .bento-card.b-tall, .bento-card.b-wide,
      .bento-card.b-med,  .bento-card.b-half { grid-column: span 1; grid-row: span 1; }
    }

    /* Media area — large feature image with subtle bottom vignette */
    .bento-media {
      position: relative;
      flex: 1 1 auto;
      min-height: 180px;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .bento-media img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      filter: brightness(0.88) saturate(0.92);
      transition: transform .8s ease, filter .4s ease;
    }
    .bento-card:hover .bento-media img {
      transform: scale(1.04);
      filter: brightness(0.95) saturate(1);
    }
    .bento-media::after {
      content: ''; position: absolute; inset: 0;
      box-shadow: inset 0 -80px 80px -40px rgba(0,0,0,0.45);
      pointer-events: none;
    }
    /* Floating tag on the image (top-left): coloured per feature */
    .bento-tag {
      position: absolute; top: 16px; left: 16px;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 12px 6px 6px;
      background: rgba(10, 10, 15, 0.62);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      color: #fff;
      font-size: 11.5px; font-weight: 700;
      letter-spacing: 0.10em; text-transform: uppercase;
    }
    .bento-tag .ico {
      width: 22px; height: 22px; border-radius: 50%;
      display: grid; place-items: center;
      background: rgba(255, 255, 255, 0.10);
    }
    .bento-tag .ico .material-symbols-rounded { font-size: 14px; color: #fff; }

    /* Body */
    .bento-body { padding: 22px 24px 24px; }
    .bento-card.b-hero .bento-body { padding: 28px 30px 30px; }
    .bento-title {
      font-size: 19px; font-weight: 700; letter-spacing: -0.015em;
      margin: 0 0 8px; line-height: 1.18;
    }
    .bento-card.b-hero .bento-title { font-size: clamp(22px, 2.6vw, 30px); }
    .bento-desc {
      font-size: 14.5px; color: var(--fg-muted); margin: 0;
      line-height: 1.55;
    }
    .bento-card.b-hero .bento-desc { font-size: 15.5px; }
    .bento-meta {
      margin-top: 14px; font-size: 11.5px; font-weight: 700;
      color: var(--accent); letter-spacing: 0.10em; text-transform: uppercase;
    }

    /* Per-card accent for the tag colour — keeps visual variety */
    .bento-card[data-accent="chat"]      .bento-tag .ico { background: rgba(66, 133, 244, 0.18); }
    .bento-card[data-accent="souls"]     .bento-tag .ico { background: rgba(245, 158, 11, 0.18); }
    .bento-card[data-accent="video"]     .bento-tag .ico { background: rgba(229, 9, 20, 0.22); }
    .bento-card[data-accent="outreach"]  .bento-tag .ico { background: rgba(16, 185, 129, 0.18); }
    .bento-card[data-accent="monitor"]   .bento-tag .ico { background: rgba(96, 165, 250, 0.18); }
    .bento-card[data-accent="mobile"]    .bento-tag .ico { background: rgba(38, 165, 228, 0.18); }
    .bento-card[data-accent="chat"]      .bento-meta { color: #4285F4; }
    .bento-card[data-accent="souls"]     .bento-meta { color: #f59e0b; }
    .bento-card[data-accent="video"]     .bento-meta { color: #e50914; }
    .bento-card[data-accent="outreach"]  .bento-meta { color: #10b981; }
    .bento-card[data-accent="monitor"]   .bento-meta { color: #60a5fa; }
    .bento-card[data-accent="mobile"]    .bento-meta { color: #26a5e4; }

    /* ── Features v2 — editorial alternating rows (kept for fallback) ── */
    .feature-rows {
      display: flex; flex-direction: column;
      gap: 96px;                                        /* generous breathing room */
      margin-top: 8px;
    }
    @media (max-width: 760px) { .feature-rows { gap: 56px; } }

    .feature-row {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
      opacity: 0; transform: translateY(20px);
    }
    .feature-row.in { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
    @media (max-width: 920px) {
      .feature-row { grid-template-columns: 1fr; gap: 28px; }
    }
    /* Alternate the media side */
    .feature-row:nth-child(even) .feature-row-media { order: 2; }
    @media (max-width: 920px) {
      .feature-row:nth-child(even) .feature-row-media { order: 0; }
    }

    .feature-row-media {
      position: relative;
      aspect-ratio: 4 / 3;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border-strong);
      box-shadow: var(--shadow-xl);
      background: #050609;
      transition: transform .4s ease;
    }
    .feature-row:hover .feature-row-media { transform: translateY(-4px); }
    .feature-row-media img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      filter: brightness(0.86) saturate(0.93);
      transition: transform .8s ease, filter .4s ease;
    }
    .feature-row:hover .feature-row-media img {
      transform: scale(1.04);
      filter: brightness(0.92) saturate(1);
    }
    .feature-row-media::after {
      content: '';
      position: absolute; inset: 0;
      box-shadow: inset 0 -120px 120px -60px rgba(0,0,0,0.50);
      pointer-events: none;
    }

    /* Floating icon-chip on the image (top-left) */
    .feature-row-chip {
      position: absolute; top: 18px; left: 18px;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 12px 7px 7px;
      background: rgba(10,10,15,0.62);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 999px;
      color: #fff; font-size: 12px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    .feature-row-chip .ico {
      width: 22px; height: 22px; border-radius: 50%;
      display: grid; place-items: center;
      background: rgba(255, 255, 255, 0.10);
    }
    .feature-row-chip .ico .material-symbols-rounded { font-size: 16px; color: #fff; }

    .feature-row-body {
      display: flex; flex-direction: column;
      max-width: 480px;
    }
    .feature-row-eyebrow {
      display: inline-block;
      font-size: 12px; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent); font-weight: 700;
      margin-bottom: 14px;
    }
    .feature-row-title {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.1; letter-spacing: -0.025em;
      font-weight: 800; margin: 0 0 14px;
    }
    .feature-row-title .serif { color: var(--fg-muted); }
    .feature-row-desc {
      font-size: 16.5px; color: var(--fg-muted);
      margin: 0 0 22px; line-height: 1.6;
    }
    .feature-row-body .feature-uses { margin-top: 0; gap: 9px; }
    .feature-row-body .feature-uses li { font-size: 14.5px; }
    .feature-row-body .feature-uses li::before { margin-top: 9px; }
    .feature-row-tag {
      display: inline-flex; align-items: center; gap: 4px;
      margin-top: 22px; font-size: 11.5px; font-weight: 700;
      color: var(--accent); letter-spacing: 0.10em; text-transform: uppercase;
    }
    .feature-row-tag::before {
      content: ''; width: 16px; height: 1px; background: var(--accent);
      display: inline-block;
    }

    /* ── Scroll-reveal base — soft slide-up via IntersectionObserver ── */
    .price-card,
    .trust-item,
    .faq-item,
    .compare-wrap,
    .hero-banner-img {
      opacity: 0; transform: translateY(20px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .price-card.in,
    .trust-item.in,
    .faq-item.in,
    .compare-wrap.in,
    .hero-banner-img.in {
      opacity: 1; transform: translateY(0);
    }

    /* ── Pricing ── */
    .pricing-grid {
      display: grid; gap: 20px;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 620px)  { .pricing-grid { grid-template-columns: 1fr; } }
    .price-card {
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 30px 28px 28px;
      display: flex; flex-direction: column; gap: 18px;
      position: relative;
      transition: transform .2s ease, border-color .2s ease;
    }
    .price-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
    .price-card.featured {
      border-color: rgba(96, 165, 250, 0.5);
      background: var(--bg-elev-2);
    }
    .price-badge {
      position: absolute; top: -10px; left: 28px;
      background: var(--accent); color: #0a0a0f;
      padding: 4px 10px; border-radius: 999px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .price-name { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-muted); margin: 0; }
    .price-num { font-size: 38px; font-weight: 800; letter-spacing: -0.025em; margin: 0; }
    .price-per { font-size: 13px; color: var(--fg-dim); margin: -8px 0 0; }
    .price-for { font-size: 14px; color: var(--fg-muted); margin: 0; }
    .price-list { list-style: none; margin: 0; padding: 0; }
    .price-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--fg);
      padding: 6px 0;
    }
    .price-list .material-symbols-rounded {
      font-size: 18px; color: var(--accent); margin-top: 2px; flex-shrink: 0;
    }
    .price-cta {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 18px; border-radius: 12px;
      font: inherit; font-weight: 600; font-size: 14.5px;
      border: 1px solid var(--border-strong);
      background: transparent; color: var(--fg);
      cursor: pointer;
      transition: background .15s ease, color .15s ease;
    }
    .price-cta.primary { background: var(--accent); color: #0a0a0f; border-color: var(--accent); }
    .price-cta.primary:hover { background: var(--accent-hover); color: #fff; }
    .price-cta:not(.primary):hover { background: var(--bg-elev-2); }

    /* ── FAQ ── */
    .faq {
      max-width: 760px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 10px;
    }
    .faq-item {
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      border: 0; background: transparent;
      color: var(--fg); font: inherit; font-weight: 600; font-size: 15.5px;
      text-align: left; padding: 18px 22px;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      cursor: pointer;
    }
    .faq-q .chev { transition: transform .25s ease; color: var(--fg-muted); }
    .faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--accent); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .25s ease;
      padding: 0 22px;
      color: var(--fg-muted); font-size: 14.5px; line-height: 1.6;
    }
    .faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

    /* ── Hero-banner above bottom CTA ── */
    .hero-banner {
      margin-top: 0;
      padding: 0;
    }
    .hero-banner-wrap {
      position: relative;
      max-width: 1280px; margin: 0 auto;
      padding: 0 24px;
    }
    .hero-banner-img {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      max-height: 520px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border-strong);
      box-shadow: var(--shadow-xl);
      background: #050609;
    }
    .hero-banner-img img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.82) saturate(0.95);
    }
    .hero-banner-img::after {
      content: '';
      position: absolute; inset: 0;
      box-shadow:
        inset 0 -160px 160px -60px rgba(0,0,0,0.62),
        inset 0 60px 100px -40px rgba(0,0,0,0.30);
      pointer-events: none;
    }
    .hero-banner-content {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 48px 56px;
      max-width: 760px;
    }
    @media (max-width: 700px) { .hero-banner-content { padding: 24px 22px; } }
    .hero-banner-eyebrow {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 12px; border-radius: 999px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      font-size: 11.5px; font-weight: 700; color: #fff;
      letter-spacing: 0.10em; text-transform: uppercase;
      margin-bottom: 18px;
    }
    .hero-banner h2 {
      font-size: clamp(28px, 3.6vw, 44px);
      line-height: 1.08; letter-spacing: -0.028em;
      font-weight: 800; color: #fff; margin: 0 0 12px;
      text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    }
    .hero-banner p {
      font-size: clamp(14.5px, 1.5vw, 17px);
      color: rgba(245,245,247,0.86); margin: 0 0 22px;
      max-width: 560px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }
    .hero-banner .btn-primary {
      background: #4285F4;                              /* Google-blue, ready-now feel */
      color: #ffffff;
      border-color: #4285F4;
    }
    .hero-banner .btn-primary:hover { background: #1a73e8; }

    /* ── Bottom CTA ── */
    .cta-strip {
      padding: 96px 0 104px;
      background: var(--bg-elev-1);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center;
    }
    .cta-strip h2 {
      font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.025em;
      font-weight: 800; margin: 0 0 14px;
    }
    .cta-strip p { color: var(--fg-muted); margin: 0 0 28px; font-size: 16.5px; }
    .cta-strip .btn-primary { padding: 14px 28px; font-size: 15.5px; }

    /* ── How it works (3 steps) ── */
    .steps {
      display: grid; gap: 22px;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (max-width: 920px) { .steps { grid-template-columns: 1fr; } }
    .step {
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px 28px 30px;
      position: relative;
    }
    .step-num {
      font-family: 'Instrument Serif', Georgia, serif;
      font-style: italic;
      font-size: 56px; line-height: 1;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .step h3 {
      font-size: 18px; font-weight: 700; letter-spacing: -0.012em;
      margin: 0 0 8px;
    }
    .step p { font-size: 14.5px; color: var(--fg-muted); margin: 0; line-height: 1.6; }

    /* ── Souls gallery — famous personalities + "How it works" explainer ── */
    .souls-grid {
      display: grid; gap: 18px;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 1000px) { .souls-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px)  { .souls-grid { grid-template-columns: 1fr; } }
    .soul-card {
      position: relative;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer; font-family: inherit; text-align: left;
      transition: transform .25s ease, border-color .25s ease, background .25s ease;
      display: flex; flex-direction: column;
    }
    .soul-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-strong);
      background: var(--bg-elev-2);
    }
    .soul-portrait {
      aspect-ratio: 1 / 1; overflow: hidden;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .soul-portrait img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top;
      filter: saturate(0.92);
      transition: transform .8s ease;
    }
    .soul-card:hover .soul-portrait img { transform: scale(1.04); }
    .soul-portrait::after {
      content: ''; position: absolute; inset: 0;
      box-shadow: inset 0 -60px 60px -30px rgba(0,0,0,0.45);
      pointer-events: none;
    }
    .soul-portrait .ai-badge {
      position: absolute; top: 12px; right: 12px;
      padding: 4px 9px;
      background: rgba(10, 10, 15, 0.62);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      color: #fff; font-size: 10px; font-weight: 700;
      letter-spacing: 0.10em; text-transform: uppercase;
    }
    .soul-body { padding: 18px 20px 20px; }
    .soul-name {
      font-size: 17px; font-weight: 700; letter-spacing: -0.012em;
      color: #ffffff;
      margin: 0 0 4px;
    }
    .soul-role {
      font-size: 12px; font-weight: 700; color: #e50914;            /* red accent — pops against white name */
      letter-spacing: 0.10em; text-transform: uppercase;
      margin: 0 0 14px;
    }
    .soul-quote {
      font-family: 'Instrument Serif', Georgia, serif;
      font-style: italic; font-weight: 400;
      font-size: 15px; color: #ffffff;                              /* white quote — easy to read */
      margin: 0 0 16px; line-height: 1.5;
      min-height: 46px;
    }
    /* Single-word emphasis inside the quote — accent stays red */
    .soul-quote em { font-style: italic; color: #e50914; }
    .soul-cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12.5px; font-weight: 700; color: var(--fg);
      letter-spacing: 0.04em;
    }
    .soul-cta .material-symbols-rounded { font-size: 16px; transition: transform .2s ease; }
    .soul-card:hover .soul-cta .material-symbols-rounded { transform: translateX(3px); }
    .soul-cta-extra {
      grid-column: 1 / -1;
      background: var(--bg-elev-2);
      border: 1px dashed var(--border-strong);
      border-radius: 20px;
      padding: 28px 24px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px; flex-wrap: wrap;
    }
    .soul-cta-extra h3 {
      font-size: 18px; font-weight: 700; letter-spacing: -0.012em;
      margin: 0 0 4px;
    }
    .soul-cta-extra p { font-size: 14px; color: var(--fg-muted); margin: 0; }

    /* "How souls work" 3-step explainer */
    .soul-how {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 56px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }
    @media (max-width: 760px) { .soul-how { grid-template-columns: 1fr; gap: 12px; } }
    .soul-how-step {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .soul-how-num {
      flex-shrink: 0;
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(96, 165, 250, 0.10);
      border: 1px solid rgba(96, 165, 250, 0.28);
      color: var(--accent);
      display: grid; place-items: center;
      font-family: 'Instrument Serif', Georgia, serif;
      font-style: italic; font-weight: 400;
      font-size: 22px;
    }
    .soul-how-text h4 {
      font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
      margin: 0 0 4px;
    }
    .soul-how-text p {
      font-size: 13.5px; color: var(--fg-muted); margin: 0;
      line-height: 1.5;
    }

    /* ── Directors slider — horizontal scroll strip with cinematic portraits ── */
    .directors-section { overflow: hidden; }
    .directors-wrap {
      position: relative;
      margin-top: 16px;
    }
    .directors-strip {
      display: flex; gap: 18px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 4px 24px 24px;
      margin: 0 -24px;                                   /* bleed to viewport edges */
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
      scroll-padding-left: 24px;
    }
    .directors-strip::-webkit-scrollbar { display: none; }
    .director-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer; font-family: inherit; text-align: left;
      transition: transform .25s ease, border-color .25s ease, background .25s ease;
      display: flex; flex-direction: column;
    }
    @media (max-width: 760px) { .director-card { flex-basis: 240px; } }
    .director-card:hover {
      transform: translateY(-4px);
      border-color: rgba(229, 9, 20, 0.50);              /* Netflix-red accent on hover */
      background: var(--bg-elev-2);
    }
    .director-portrait {
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .director-portrait img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      transition: transform .8s ease;
      filter: saturate(0.92);
    }
    .director-card:hover .director-portrait img { transform: scale(1.04); }
    .director-portrait::after {
      content: ''; position: absolute; inset: 0;
      box-shadow: inset 0 -70px 70px -40px rgba(0,0,0,0.55);
      pointer-events: none;
    }
    .director-portrait .ai-badge {
      position: absolute; top: 12px; right: 12px;
      padding: 4px 9px;
      background: rgba(10, 10, 15, 0.62);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      color: #fff; font-size: 10px; font-weight: 700;
      letter-spacing: 0.10em; text-transform: uppercase;
    }
    .director-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; }
    .director-name {
      font-size: 17px; font-weight: 700; letter-spacing: -0.012em;
      color: #ffffff; margin: 0;
    }
    .director-sig {
      font-family: 'Instrument Serif', Georgia, serif;
      font-style: italic; font-weight: 400;
      font-size: 14px; color: var(--fg-muted);
      margin: 0; line-height: 1.4;
      min-height: 38px;
    }
    .director-model {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 700;
      color: #e50914; letter-spacing: 0.10em; text-transform: uppercase;
    }
    .director-model .arrow { color: var(--fg-dim); transition: transform .2s ease, color .2s ease; }
    .director-card:hover .director-model .arrow { color: #e50914; transform: translateX(3px); }

    /* Arrow controls */
    .directors-arrows {
      display: inline-flex; gap: 8px;
      margin-top: 24px;
    }
    .directors-arrow {
      width: 42px; height: 42px; border-radius: 12px;
      background: var(--bg-elev-1);
      border: 1px solid var(--border-strong);
      color: var(--fg-muted);
      display: grid; place-items: center;
      cursor: pointer;
      transition: color .15s ease, border-color .15s ease, background .15s ease;
    }
    .directors-arrow:hover { color: var(--fg); border-color: rgba(255,255,255,0.30); background: var(--bg-elev-2); }
    .directors-arrow .material-symbols-rounded { font-size: 22px; }

    /* ── Templates gallery — clickable use-cases ── */
    .templates-grid {
      display: grid; gap: 14px;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 960px) { .templates-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .templates-grid { grid-template-columns: 1fr; } }
    .template-card {
      position: relative;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px 20px 18px;
      text-align: left;
      cursor: pointer;
      font-family: inherit;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      display: flex; flex-direction: column; gap: 10px;
      min-height: 142px;
    }
    .template-card:hover {
      transform: translateY(-3px);
      border-color: var(--accent);
      background: var(--bg-elev-2);
    }
    .template-emoji { font-size: 26px; line-height: 1; }
    .template-title {
      font-size: 14.5px; font-weight: 700; color: var(--fg);
      letter-spacing: -0.005em; line-height: 1.3;
    }
    .template-meta {
      margin-top: auto;
      font-size: 11px; font-weight: 700; color: var(--accent);
      letter-spacing: 0.10em; text-transform: uppercase;
    }
    .template-card::after {
      content: '→';
      position: absolute; top: 18px; right: 20px;
      color: var(--fg-dim); font-size: 16px;
      transition: transform .2s ease, color .2s ease;
    }
    .template-card:hover::after { color: var(--accent); transform: translateX(3px); }

    /* ── Comparison table ── */
    .compare-wrap {
      max-width: 920px; margin: 0 auto;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
    }
    .compare {
      width: 100%; border-collapse: collapse;
      font-size: 14.5px;
    }
    .compare th, .compare td {
      text-align: center;
      padding: 16px 18px;
      border-bottom: 1px solid var(--border);
      color: var(--fg);
    }
    .compare tbody tr:last-child td { border-bottom: 0; }
    .compare th {
      font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--fg-dim); font-weight: 700;
      background: var(--bg-elev-2);
      padding-top: 18px; padding-bottom: 18px;
    }
    .compare th.us {
      color: var(--accent);
    }
    .compare td:first-child, .compare th:first-child {
      text-align: left;
      color: var(--fg-muted); font-weight: 500;
      padding-left: 22px;
    }
    .compare .yes { color: var(--success); font-weight: 700; }
    .compare .no  { color: var(--fg-dim); }
    .compare .partial { color: #f59e0b; }
    .compare tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
    .compare tr td.us-col, .compare tr th.us {
      background: rgba(96, 165, 250, 0.045);
    }

    /* ── Trust strip ── */
    .trust {
      display: grid; gap: 22px;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 920px) { .trust { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .trust { grid-template-columns: 1fr; } }
    .trust-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 18px 20px;
      background: var(--bg-elev-1);
      border: 1px solid var(--border);
      border-radius: 16px;
    }
    .trust-ico {
      width: 36px; height: 36px; border-radius: 10px;
      display: grid; place-items: center;
      background: rgba(16, 185, 129, 0.10); color: var(--success);
      flex-shrink: 0;
    }
    .trust-ico .material-symbols-rounded { font-size: 22px; }
    .trust-text strong { display: block; font-size: 14.5px; color: var(--fg); margin: 0 0 4px; font-weight: 600; }
    .trust-text span { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

    /* ── Footer ── */
    footer.foot {
      padding: 56px 0 36px;
      color: var(--fg-dim); font-size: 13.5px;
      border-top: 1px solid var(--border);
    }
    .foot-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px;
    }
    @media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
    .foot-col h4 {
      font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--fg-muted); margin: 0 0 14px; font-weight: 700;
    }
    .foot-col a {
      display: block; color: var(--fg-dim); text-decoration: none;
      padding: 5px 0; font-size: 14px;
      transition: color .15s ease;
    }
    .foot-col a:hover { color: var(--fg); }
    .foot-brand p {
      max-width: 320px; margin: 12px 0 0;
      color: var(--fg-dim); font-size: 13.5px; line-height: 1.55;
    }
    .foot-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      text-align: center;
    }

    /* ── Payment methods (footer) — airy editorial row ── */
    .pay-row {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
      gap: 14px 18px;                                    /* row-gap 14, col-gap 18 — breathing room */
      margin: 48px 0 8px;                                /* push away from foot-grid and stop earlier */
      padding: 26px 24px 4px;
      border-top: 1px solid var(--border);
    }
    .pay-row .pay-label {
      font-size: 11px; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--fg-dim);
      margin-right: 18px; font-weight: 700;
    }
    .pay {
      display: inline-flex; align-items: center; justify-content: center;
      height: 34px; padding: 0 16px;
      background: var(--bg-elev-2);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--fg-muted);
      font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
      font-family: 'Inter', -apple-system, sans-serif;
      white-space: nowrap;
      transition: border-color .15s ease, background .15s ease;
    }
    .pay:hover { border-color: var(--border-strong); background: var(--bg-elev-1); }
    .pay svg { display: block; height: 16px; width: auto; }
    .pay .apl { font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 500; }

    /* ── Compact provider chips for trust strip (Telegram / Google / Email) ── */
    .provider-chips {
      display: inline-flex; gap: 6px; margin-top: 6px; flex-wrap: wrap;
    }
    .provider-chip {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 3px 8px;
      background: var(--bg-elev-2);
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 11.5px; color: var(--fg-muted); font-weight: 600;
    }
    .provider-chip svg { width: 12px; height: 12px; display: block; }

    /* ── MODAL ── */
    .modal-backdrop {
      position: fixed; inset: 0; z-index: 100;
      background: rgba(2, 3, 8, 0.78);
      backdrop-filter: blur(10px) saturate(120%); -webkit-backdrop-filter: blur(10px) saturate(120%);
      display: none;
      align-items: center; justify-content: center;
      padding: 20px;
      animation: modalFade .22s ease;
    }
    .modal-backdrop.open { display: flex; }
    @keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

    /* Premium auth modal — slate card with cinema letterbox + film grain,
       editorial eyebrow chip above title, monospace tech tabs, ticket CTAs. */
    .modal {
      width: 100%; max-width: 440px;
      background: rgba(13, 13, 18, 0.94);
      backdrop-filter: blur(22px) saturate(140%);
      -webkit-backdrop-filter: blur(22px) saturate(140%);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 18px;
      padding: 36px 32px 28px;
      box-shadow: 0 30px 80px -30px rgba(0,0,0,0.85),
                  0 0 0 1px rgba(0, 217, 255, 0.04);
      position: relative;
      overflow: hidden;
      animation: modalUp .25s cubic-bezier(.2,.8,.2,1);
    }
    @keyframes modalUp {
      from { opacity: 0; transform: translateY(14px) scale(.98); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    /* Cinema letterbox bars top + bottom inside the card */
    .modal::before, .modal::after {
      content: ''; position: absolute; left: 0; right: 0;
      height: 6px; background: #000;
      pointer-events: none; z-index: 2;
    }
    .modal::before { top: 0; }
    .modal::after  { bottom: 0; }
    /* Subtle film grain across the card */
    .modal > * { position: relative; z-index: 1; }
    .modal-mark-wrap {
      display: flex; justify-content: center; margin: 4px 0 18px;
    }
    .modal-close {
      position: absolute; top: 18px; right: 18px;
      width: 32px; height: 32px; border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.65);
      display: grid; place-items: center; cursor: pointer;
      transition: color .15s ease, border .15s ease, background .15s ease;
      z-index: 3;
    }
    .modal-close:hover { color: #fff; border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.06); }
    .modal-close .material-symbols-rounded { font-size: 18px; }

    /* Editorial eyebrow chip above title — matches slide-chip pattern */
    .auth-eye {
      display: flex; align-items: center; gap: 10px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.65);
      margin-bottom: 12px;
      border-top: 1px solid rgba(255,255,255,0.18);
      padding-top: 10px;
    }
    .auth-eye .auth-eye-line {
      flex: 1; height: 1px; background: rgba(255,255,255,0.18);
    }

    .auth-title {
      font-size: 26px; font-weight: 800;
      margin: 0 0 8px; letter-spacing: -0.024em;
      color: #fff;
      line-height: 1.15;
    }
    .auth-sub { color: var(--fg-muted); font-size: 13.5px; margin: 0 0 22px; line-height: 1.5; }

    /* Tech-style tabs — JetBrains Mono, cyan accent on active */
    .tabs {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 4px; padding: 4px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px;
      margin-bottom: 22px;
    }
    .tab {
      border: 0; background: transparent; cursor: pointer;
      padding: 9px 8px; border-radius: 6px;
      color: rgba(255,255,255,0.55); font-weight: 600; font-size: 12px;
      font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
      letter-spacing: 0.02em;
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      transition: background .15s ease, color .15s ease, box-shadow .15s ease;
    }
    .tab:hover:not(.active) { color: #ececee; background: rgba(255,255,255,0.04); }
    .tab.active {
      background: rgba(0, 217, 255, 0.10);
      color: #fff;
      box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.30);
    }
    .tab .material-symbols-rounded { font-size: 16px; }
    .pane { display: none; }
    .pane.active { display: block; animation: fadeUp .25s ease; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
    .telegram-mount {
      display: flex; justify-content: center; align-items: center;
      min-height: 56px;
    }
    .pane-hint { text-align: center; color: var(--fg-dim); font-size: 13px; margin: 14px 0 0; }
    .pane-hint a { color: var(--fg-muted); text-decoration: underline; text-underline-offset: 3px; }
    .google-btn {
      width: 100%;
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: #f2efe9; color: #0a0a0f;
      border: 1px solid #f2efe9;
      padding: 13px 18px; border-radius: 6px;
      font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit;
      letter-spacing: 0.02em;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .google-btn:hover { background: #fff; border-color: rgba(229,9,20,0.45); transform: translateY(-1px); }
    .google-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
    .field { display: block; margin-bottom: 12px; }
    .field label {
      display: block; font-size: 10.5px; color: rgba(255,255,255,0.55);
      margin-bottom: 6px; font-weight: 700; letter-spacing: 0.10em;
      text-transform: uppercase;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
    }
    .field input {
      width: 100%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 6px;
      color: var(--fg); font-family: inherit;
      font-size: 14px; padding: 12px 14px;
      letter-spacing: 0.005em;
      transition: border-color .15s ease, background .15s ease;
    }
    .field input:focus {
      outline: none;
      border-color: rgba(0, 217, 255, 0.42);
      background: rgba(0, 217, 255, 0.05);
      box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.08);
    }
    .submit-row { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 12px; }
    .btn-submit {
      flex: 1;
      background: #f2efe9; color: #0a0a0f;
      border: 1px solid #f2efe9; cursor: pointer;
      padding: 13px 18px; border-radius: 6px;
      font-weight: 700; font-size: 14px; font-family: inherit;
      letter-spacing: 0.04em;
      transition: background .15s ease, border-color .15s ease, transform .15s ease;
    }
    .btn-submit:disabled { opacity: 0.55; cursor: progress; }
    .btn-submit:not(:disabled):hover { background: #fff; border-color: rgba(229,9,20,0.45); transform: translateY(-1px); }
    .form-msg { font-size: 13px; color: var(--danger); text-align: center; margin-top: 12px; min-height: 18px; }
    .form-msg.ok { color: var(--success); }
    iframe[id^="telegram-login-"] { border-radius: 12px; }

    /* ── Cookie banner ── */
    .cookie {
      position: fixed; bottom: 18px; right: 18px; left: 18px; z-index: 90;
      max-width: 460px; margin-left: auto;
      background: var(--bg-elev-2);
      border: 1px solid var(--border-strong);
      border-radius: 16px;
      padding: 16px 18px;
      box-shadow: var(--shadow-lg);
      display: none;
      animation: cookieIn .35s ease;
    }
    .cookie.show { display: block; }
    @keyframes cookieIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .cookie p { margin: 0 0 12px; font-size: 13.5px; color: var(--fg-muted); line-height: 1.5; }
    .cookie .row { display: flex; gap: 8px; align-items: center; justify-content: flex-end; }
    .cookie a {
      color: var(--fg-muted); text-decoration: none;
      font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
      border-bottom: 1px solid var(--border-strong);
      padding-bottom: 1px;
      transition: color .15s ease, border-color .15s ease;
    }
    .cookie a:hover { color: var(--fg); border-color: var(--fg); }
    .cookie button {
      background: #f2efe9; color: #0a0a0f;
      border: 1px solid #f2efe9;
      padding: 9px 18px; border-radius: 6px;
      font: inherit; font-weight: 700; font-size: 13px; cursor: pointer;
      letter-spacing: 0.04em;
      transition: background .15s ease, border-color .15s ease, transform .15s ease;
    }
    .cookie button:hover { background: #fff; border-color: rgba(229,9,20,0.45); transform: translateY(-1px); }

    /* ════════════════════════════════════════════════════════════════════
       ── Mobile pass — overrides for ≤ 760 px and ≤ 460 px screens
       Targets: hero slider, models strip, features rows, pricing,
       comparison table (with horizontal scroll), trust, FAQ, hero-banner,
       cta-strip, footer, payment row, auth modal, cookie banner,
       scroll-top button, brand-wordmark.
       ════════════════════════════════════════════════════════════════════ */
    @media (max-width: 760px) {
      /* General section breathing */
      section { padding: 56px 0; }
      .section-head { margin-bottom: 32px; }

      /* Brand wordmark — tighter tracking on phone (saves horizontal room) */
      .brand-wordmark { font-size: 13px; letter-spacing: 0.10em; }

      /* Hero slider */
      .hero { padding: 0; }
      .slider { border-radius: 0; }
      .slide-content { padding: 22px 22px 32px; }
      .slide-chip { font-size: 10.5px; padding: 6px 11px; margin-bottom: 22px; letter-spacing: 0.06em; }
      .slide-title { font-size: clamp(28px, 8vw, 38px); }
      .slide-sub   { font-size: 14.5px; }
      .slide-models { gap: 6px; margin-bottom: 14px; }
      .slide-models .mchip { font-size: 11px; padding: 3px 9px 3px 3px; }
      .slide-models .mchip-ico { width: 16px; height: 16px; font-size: 9px; }
      .slider-dots  { top: 14px; right: 14px; padding: 6px 8px; gap: 6px; }
      .slider-dot   { width: 18px; height: 3px; }
      .slider-dot.active { width: 24px; }
      .slider-arrows { bottom: 14px; right: 14px; gap: 4px; }
      .slider-arrow { width: 36px; height: 36px; border-radius: 10px; }
      .slider-arrow .material-symbols-rounded { font-size: 18px; }

      /* Models strip */
      .models-strip { gap: 14px 18px; padding: 24px 0; margin-top: 24px; }
      .models-strip .label { font-size: 11px; letter-spacing: 0.12em; }
      .new-badge { font-size: 9.5px; }

      /* Features rows already collapse at 920 — phone-only tightening */
      .feature-rows { gap: 48px; }
      .feature-row-media { border-radius: 18px; }
      .feature-row-eyebrow { font-size: 11px; letter-spacing: 0.10em; margin-bottom: 10px; }
      .feature-row-title { font-size: clamp(24px, 7vw, 30px); }
      .feature-row-desc { font-size: 15px; }
      .feature-row-body .feature-uses li { font-size: 13.5px; }

      /* Pricing */
      .pricing-grid { gap: 16px; }
      .price-card { padding: 24px 22px 22px; }
      .price-num { font-size: 30px; }

      /* Comparison table — let it scroll horizontally so columns stay readable */
      .compare-wrap { border-radius: 18px; }
      .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .compare { min-width: 540px; font-size: 13px; }
      .compare th, .compare td { padding: 12px 12px; }
      .compare td:first-child, .compare th:first-child { padding-left: 16px; }

      /* Trust */
      .trust-item { padding: 16px 16px; gap: 12px; }
      .trust-ico { width: 32px; height: 32px; }
      .trust-text strong { font-size: 13.5px; }
      .trust-text span   { font-size: 12.5px; }
      .provider-chip { font-size: 11px; padding: 3px 7px; }

      /* FAQ */
      .faq-q { padding: 16px 18px; font-size: 14.5px; }
      .faq-a { font-size: 13.5px; line-height: 1.55; }
      .faq-item.open .faq-a { padding: 0 18px 16px; }

      /* Hero-banner */
      .hero-banner-img { border-radius: 18px; }
      .hero-banner-content { padding: 22px 22px 24px; }
      .hero-banner h2 { font-size: clamp(22px, 6.5vw, 30px); }
      .hero-banner p { font-size: 14px; margin-bottom: 16px; }

      /* CTA strip */
      .cta-strip { padding: 64px 0 72px; }
      .cta-strip h2 { font-size: clamp(24px, 6.5vw, 32px); }
      .cta-strip p { font-size: 14.5px; }
      .cta-strip .btn-primary { padding: 12px 22px; font-size: 14.5px; }

      /* Footer */
      footer.foot { padding: 40px 0 28px; }
      .foot-grid { gap: 22px; margin-bottom: 22px; }
      .foot-col h4 { font-size: 11px; }
      .foot-col a { font-size: 13.5px; padding: 4px 0; }
      .foot-brand p { font-size: 12.5px; }
      .foot-bottom { padding-top: 20px; font-size: 12.5px; }

      /* Payment row — tighter on phone but still airy */
      .pay-row { gap: 10px 12px; margin: 32px 0 4px; padding: 22px 8px 4px; }
      .pay { height: 30px; padding: 0 12px; font-size: 11px; }
      .pay svg { height: 14px; }
      .pay-row .pay-label { font-size: 10.5px; margin-right: 10px; flex-basis: 100%; text-align: center; }

      /* Auth modal */
      .modal-backdrop { padding: 12px; align-items: flex-start; padding-top: 8vh; }
      .modal { padding: 24px 22px 22px; border-radius: 20px; }
      .modal-close { top: 10px; right: 10px; }
      .auth-title { font-size: 19px; }
      .auth-sub { font-size: 13px; margin-bottom: 18px; }
      .tab { font-size: 12.5px; padding: 9px 6px; }
      .field input { font-size: 14px; padding: 10px 12px; }
      .google-btn { font-size: 14px; padding: 11px 16px; }
      .btn-submit { font-size: 14px; padding: 11px 16px; }

      /* Cookie banner — full-width footer-style on phone */
      .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 14px 16px; border-radius: 14px; }
      .cookie p { font-size: 12.5px; margin-bottom: 10px; }
      .cookie button { font-size: 12.5px; padding: 7px 14px; }

      /* Scroll-to-top */
      .scroll-top { right: 12px; bottom: 12px; width: 38px; height: 38px; border-radius: 11px; }
      .scroll-top .material-symbols-rounded { font-size: 19px; }

      /* Bottom CTA red button — guarantee no overflow */
      .cta-strip button, .btn { white-space: normal; }
    }

    /* Ultra-small phones (< 460 px): shave the last few px and stack tighter */
    @media (max-width: 460px) {
      .wrap { padding: 0 16px; }
      .nav-inner { height: 56px; gap: 8px; }
      .brand-mark { width: 30px; height: 30px; border-radius: 8px; font-size: 15px; padding-bottom: 6px; }
      .brand-wordmark { font-size: 12px; letter-spacing: 0.08em; }
      .nav-cta { padding: 7px 14px; font-size: 13px; }
      .lang-switch { padding: 2px; }
      .lang-btn { font-size: 11.5px; padding: 5px 10px; }

      .slide { aspect-ratio: auto; min-height: 560px; }
      .slide-title { font-size: 26px; }
      .slide-sub { font-size: 13.5px; }
      .slide-cta-row { gap: 8px; }
      .slide-cta-row .btn { padding: 11px 16px; font-size: 14px; }

      .modal-backdrop { padding-top: 4vh; }
      .modal { padding: 22px 18px 18px; }

      .price-num { font-size: 26px; }
      .price-list li { font-size: 13.5px; }

      .pay-row { gap: 8px 10px; padding: 18px 4px 4px; }
      .pay { height: 28px; padding: 0 10px; font-size: 10.5px; }
    }