    /* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --bg:          #060810;
      --bg2:         #0a0d16;
      --bg3:         #0f1220;
      --surface:     #141828;
      --surface2:    #1a1f30;
      --border:      rgba(255,255,255,0.07);
      --border2:     rgba(255,255,255,0.12);
      --text:        #f0f2ff;
      --text2:       #8892b0;
      --text3:       #7a87a8; /* bumped from #4a5578 to clear WCAG AA on --bg #060810 */
      --accent:      #4f8ef7;
      --accent2:     #7b5ea7;
      --accent3:     #36d6b4;
      --glow:        rgba(79,142,247,0.18);
      --glow2:       rgba(123,94,167,0.15);
      --r:           12px;
      --r2:          20px;
      --r3:          28px;
      --font-h:      'Bricolage Grotesque', sans-serif;
      --font-b:      'Plus Jakarta Sans', sans-serif;
    }

    .theme-light {
      --bg:          #f8f9fd;
      --bg2:         #f2f4fb;
      --bg3:         #eceef8;
      --surface:     #ffffff;
      --surface2:    #f5f6fc;
      --border:      rgba(0,0,0,0.07);
      --border2:     rgba(0,0,0,0.13);
      --text:        #0d1117;
      --text2:       #4a5578;
      --text3:       #5a6577; /* bumped from #94a3b8 to clear WCAG AA on --bg #f8f9fd */
      --accent:      #2563eb;
      --accent2:     #7c3aed;
      --accent3:     #059669;
      --glow:        rgba(37,99,235,0.1);
      --glow2:       rgba(124,58,237,0.08);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: #ffffff;
      color: var(--text);
      font-family: var(--font-b);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    /* Mobile safety net — any oversized media or canvas would push body
       width on phones and create a phantom right gutter. Cap the media
       itself; do NOT cap structural ancestors or html, since overflow
       clipping on the scroll root kills `position: sticky` for the
       Problem and Use Cases sections. */
    @media (max-width: 768px) {
      img, video, canvas, iframe, svg { max-width: 100%; height: auto; }
    }

    [lang="ar"] { direction: rtl; }

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

    /* ─── URGENCY BAR ───────────────────────────────────────── */
    #urgency-bar {
      position: relative; z-index: 250;
      background: linear-gradient(90deg, #7b5ea7 0%, #4f8ef7 100%);
      color: #fff; font-size: 13px; font-weight: 500;
      padding: 9px 20px; text-align: center;
      display: flex; align-items: center; justify-content: center; gap: 12px;
      letter-spacing: 0.01em;
    }
    #urgency-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
    #urgency-bar .ub-close {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      background: none; border: none; color: rgba(255,255,255,0.7);
      font-size: 18px; cursor: pointer; padding: 2px 6px; line-height: 1;
      transition: color 0.15s;
    }
    #urgency-bar .ub-close:hover { color: #fff; }

    /* ─── CTA STRIP ─────────────────────────────────────────── */
    .cta-strip {
      background: linear-gradient(135deg, rgba(79,142,247,0.08) 0%, rgba(123,94,167,0.08) 100%);
      border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2);
      padding: 40px clamp(16px,4vw,64px);
    }
    .cta-strip-inner {
      max-width: 900px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; gap: 32px;
      flex-wrap: wrap;
    }
    .cta-strip-text { flex: 1; }
    .cta-strip-text strong { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: var(--text); display: block; margin-bottom: 6px; }
    .cta-strip-text span { font-size: 14px; color: var(--text2); }
    .cta-strip-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
    .cta-strip-trust span { font-size: 12.5px; color: var(--text3); display: flex; align-items: center; gap: 5px; }
    .cta-strip-trust span::before { content: '✓'; color: var(--accent3); font-weight: 700; }

    /* ─── FINAL CTA ──────────────────────────────────────────── */
    .final-cta {
      padding: 120px clamp(16px,4vw,64px);
      background: var(--bg);
      text-align: center;
      border-top: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(79,142,247,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
    .final-cta h2 {
      font-family: var(--font-h); font-size: clamp(28px,5vw,52px); font-weight: 800;
      line-height: 1.1; letter-spacing: -0.03em; color: var(--text);
      margin-bottom: 18px;
    }
    .final-cta p { font-size: 17px; color: var(--text2); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .final-cta-trust {
      display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 20px;
    }
    .final-cta-trust span { font-size: 13px; color: var(--text3); display: flex; align-items: center; gap: 6px; }
    .final-cta-trust span::before { content: '✓'; color: var(--accent3); font-weight: 700; font-size: 14px; }
    .final-cta-social {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .social-face {
      width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border2);
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 700; color: #fff;
    }
    .social-face:not(:first-child) { margin-left: -10px; }
    .final-cta-social-text { font-size: 13.5px; color: var(--text2); }
    .final-cta-social-text strong { color: var(--text); }

    /* ─── NAVBAR ─────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      height: 60px;
      transition: top 0.2s ease, background 0.3s;
      display: flex;
      align-items: center;
      padding: 0 clamp(16px,4vw,64px);
      gap: 0;
      background: oklch(from var(--bg) l c h / 0.7);
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.03em;
      margin-right: 40px;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 28px;
      height: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      flex: 1;
    }
    .nav-links a {
      color: var(--text2);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 7px 13px;
      border-radius: 8px;
      transition: color 0.15s, background 0.15s;
    }
    .nav-links a:hover { color: var(--text); background: var(--surface); }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .btn-ghost {
      background: none; border: none;
      color: var(--text2);
      font-family: var(--font-b);
      font-size: 14px; font-weight: 500;
      cursor: pointer;
      padding: 8px 14px;
      border-radius: 8px;
      transition: color 0.15s, background 0.15s;
    }
    .btn-ghost:hover { color: var(--text); background: var(--surface); }

    .btn-cta {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff;
      border: none;
      font-family: var(--font-b);
      font-size: 14px; font-weight: 600;
      cursor: pointer;
      padding: 9px 20px;
      border-radius: 10px;
      transition: opacity 0.15s, transform 0.15s;
      box-shadow: 0 4px 20px var(--glow);
    }
    .btn-cta:hover { opacity: 0.88; transform: translateY(-1px); }

    /* Language selector */
    .lang-wrap { position: relative; }
    .lang-btn {
      display: flex;
      align-items: center;
      gap: 5px;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 8px;
      padding: 6px 11px;
      font-family: var(--font-b);
      font-size: 13px;
      font-weight: 500;
      color: var(--text2);
      cursor: pointer;
      transition: border-color 0.15s, color 0.15s;
    }
    .lang-btn:hover { border-color: var(--accent); color: var(--text); }
    .lang-chevron { font-size: 10px; opacity: 0.5; }
    .lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      padding: 6px;
      min-width: 160px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.18);
      z-index: 500;
      flex-direction: column;
      gap: 1px;
    }
    .lang-dropdown.open { display: flex; }
    .lang-opt {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 8px 10px;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text2);
      cursor: pointer;
      background: none;
      border: none;
      font-family: var(--font-b);
      width: 100%;
      text-align: left;
      transition: background 0.12s, color 0.12s;
    }
    .lang-opt:hover { background: var(--bg3); color: var(--text); }
    .lang-opt.active { color: var(--accent); font-weight: 600; }
    .lang-flag { font-size: 15px; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none; border: none;
    }
    .hamburger span { width: 22px; height: 2px; background: var(--text2); border-radius: 2px; }

    /* ─── MOBILE MENU ────────────────────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      padding: 16px;
      flex-direction: column;
      gap: 2px;
      z-index: 199;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--text2);
      text-decoration: none;
      font-size: 15px; font-weight: 500;
      padding: 11px 14px;
      border-radius: 9px;
      transition: background 0.15s, color 0.15s;
    }
    .mobile-menu a:hover { background: var(--surface); color: var(--text); }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px clamp(20px,5vw,80px) 80px;
      overflow: hidden;
    }

    /* Animated mesh background */
    .hero-mesh {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .mesh-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
    }
    .mb1 {
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(79,142,247,0.13) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      animation: mbFloat1 12s ease-in-out infinite;
    }
    .mb2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(123,94,167,0.10) 0%, transparent 70%);
      top: -10%; right: -5%;
      animation: mbFloat2 16s ease-in-out infinite;
    }
    .mb3 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(54,214,180,0.07) 0%, transparent 70%);
      bottom: -5%; left: 5%;
      animation: mbFloat3 14s ease-in-out infinite;
    }
    .mb4 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(79,142,247,0.06) 0%, transparent 70%);
      top: 20%; left: 10%;
      animation: mbFloat1 18s ease-in-out infinite reverse;
    }

    @keyframes mbFloat1 {
      0%,100% { transform: translate(-50%,-50%) scale(1) rotate(0deg); }
      33% { transform: translate(-52%,-48%) scale(1.08) rotate(5deg); }
      66% { transform: translate(-48%,-52%) scale(0.94) rotate(-5deg); }
    }
    @keyframes mbFloat2 {
      0%,100% { transform: translate(0,0) scale(1); }
      50% { transform: translate(-3%,4%) scale(1.1); }
    }
    @keyframes mbFloat3 {
      0%,100% { transform: translate(0,0) scale(1); }
      50% { transform: translate(2%,-3%) scale(1.12); }
    }

    /* Grid overlay */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
      pointer-events: none;
    }

    #hero-canvas {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%; height: 100%;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 4;
      max-width: 700px;
      margin: 0 auto;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 100px;
      padding: 5px 14px 5px 8px;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--text2);
      margin-bottom: 28px;
      animation: fadeUp 0.5s ease both;
    }
    .eyebrow-chip {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 9px;
      border-radius: 100px;
      letter-spacing: 0.03em;
    }

    .hero-h1 {
      font-family: var(--font-h);
      font-size: clamp(36px, 5.2vw, 64px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.035em;
      margin-bottom: 18px;
      animation: fadeUp 0.6s 0.08s ease both;
      text-wrap: balance;
    }
    .hero-h1 .grad {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(15px,1.8vw,18px);
      color: var(--text2);
      font-weight: 400;
      line-height: 1.55;
      margin-bottom: 36px;
      animation: fadeUp 0.6s 0.16s ease both;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-input-row {
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 480px;
      margin: 0 auto 14px;
      animation: fadeUp 0.6s 0.24s ease both;
    }
    .hero-input-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 13px;
      padding: 5px 5px 5px 16px;
      gap: 10px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .hero-input-wrap:focus-within {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px var(--glow);
    }
    .hero-input-wrap.recharge {
      animation: rechargeGlow 0.6s ease forwards;
    }
    @keyframes rechargeGlow {
      0%   { border-color: var(--border2); box-shadow: none; }
      35%  { border-color: var(--accent); box-shadow: 0 0 0 4px var(--glow), 0 0 24px rgba(79,142,247,0.45); }
      100% { border-color: var(--border2); box-shadow: none; }
    }
    .hero-input {
      flex: 1;
      background: none;
      border: none;
      outline: none;
      font-family: var(--font-b);
      font-size: 14.5px;
      color: var(--text);
      min-width: 0;
    }
    .hero-input::placeholder { color: var(--text3); }
    /* Mode tabs */
    .hero-tabs {
      display: flex; gap: 6px; max-width: 520px; margin: 0 auto 12px;
      background: rgba(255,255,255,0.04); border: 1px solid var(--border);
      border-radius: 100px; padding: 4px; animation: fadeUp 0.6s 0.2s ease both;
    }
    .hero-tab {
      flex: 1; padding: 8px 14px; border-radius: 100px; border: none;
      font-family: var(--font-b); font-size: 13px; font-weight: 600;
      cursor: pointer; transition: all 0.2s;
      background: transparent; color: var(--text3);
    }
    .hero-tab.active { background: var(--accent); color: #fff; box-shadow: 0 2px 12px rgba(79,142,247,0.4); }
    .hero-tab:not(.active):hover { color: var(--text2); }
    /* Textarea hero input */
    textarea.hero-input { resize: none; min-height: 80px; line-height: 1.6; padding: 4px 0; }
    .hero-submit {
      background: linear-gradient(135deg, #4f8ef7, #7b5ea7);
      color: #fff;
      border: none;
      border-radius: 9px;
      width: 44px; height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: box-shadow 0.2s, transform 0.15s;
      box-shadow: 0 0 0 3px rgba(79,142,247,0.25), 0 4px 20px rgba(79,142,247,0.5), 0 0 40px rgba(79,142,247,0.2);
    }
    .hero-submit:hover { transform: scale(1.07); box-shadow: 0 0 0 4px rgba(79,142,247,0.35), 0 6px 28px rgba(79,142,247,0.65), 0 0 60px rgba(79,142,247,0.3); }

    .hero-proof {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      margin-top: 44px;
      animation: fadeUp 0.6s 0.4s ease both;
    }
    .proof-stars-big { color: #f7c14f; font-size: 28px; letter-spacing: 4px; display: block; }
    .proof-text { font-size: 14px; color: var(--text2); text-align: center; font-weight: 500; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── LOGOS BAR ──────────────────────────────────────────── */
    .logos-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 20px clamp(20px,5vw,80px);
      background: var(--bg2);
    }
    .logos-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .logos-label {
      font-size: 12px;
      font-weight: 500;
      color: var(--text3);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .logo-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text3);
      font-size: 14px;
      font-weight: 600;
      font-family: var(--font-h);
      letter-spacing: -0.02em;
      transition: color 0.2s;
    }
    .logo-pill:hover { color: var(--text2); }
    .logo-pill-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.5;
    }

    /* ─── SECTIONS ───────────────────────────────────────────── */
    .section {
      padding: clamp(70px,9vw,130px) clamp(20px,5vw,80px);
    }
    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .sect-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .sect-label::before {
      content: '';
      width: 16px; height: 2px;
      background: var(--accent);
      border-radius: 2px;
      flex-shrink: 0;
    }
    .sect-h2 {
      font-family: var(--font-h);
      font-size: clamp(28px,3.5vw,50px);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.08;
      margin-bottom: 14px;
      text-wrap: balance;
    }
    .sect-sub {
      font-size: clamp(14px,1.4vw,17px);
      color: var(--text2);
      max-width: 480px;
      line-height: 1.6;
    }

    .skeleton {
      background: linear-gradient(90deg, var(--surface2) 25%, var(--surface) 50%, var(--surface2) 75%);
      background-size: 200% 100%;
      animation: skeletonShimmer 1.5s infinite;
    }
    @keyframes skeletonShimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-in.vis { opacity: 1; transform: none; }
    .fd1 { transition-delay: 0.08s; }
    .fd2 { transition-delay: 0.16s; }
    .fd3 { transition-delay: 0.24s; }
    .fd4 { transition-delay: 0.32s; }

    /* ─── PROBLEM ────────────────────────────────────────────── */
    .problem-bg {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px,4vw,60px);
      align-items: stretch;
    }
    .stat-row {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 24px;
    }
    .stat-item {
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r2);
      padding: 14px 20px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .stat-item:hover { border-color: var(--border2); transform: translateX(4px); }
    .stat-number {
      font-family: var(--font-h);
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -0.05em;
      line-height: 1;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      min-width: 90px;
    }
    .stat-desc { font-size: 13.5px; color: var(--text2); line-height: 1.5; }

    .ba-stack {
      display: flex;
      flex-direction: column;
      gap: 14px;
      height: 100%;
    }
    .ba-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r2);
      padding: 28px 30px;
      transition: border-color 0.2s;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .ba-card.good {
      border-color: rgba(79,142,247,0.3);
      background: linear-gradient(135deg, rgba(79,142,247,0.04), rgba(123,94,167,0.04));
    }
    .ba-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 12px;
    }
    .ba-card:not(.good) .ba-tag { background: rgba(255,255,255,0.06); color: var(--text3); }
    .ba-card.good .ba-tag { background: var(--glow); color: var(--accent); }
    .ba-title {
      font-family: var(--font-h);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }
    .ba-list { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: space-evenly; }
    .ba-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: var(--text2);
      line-height: 1.4;
    }
    .ba-list li .ic {
      width: 18px; height: 18px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ba-card:not(.good) .ba-list li .ic { background: rgba(255,255,255,0.06); }
    .ba-card.good .ba-list li .ic { background: var(--glow); }
    .ba-card:not(.good) .ba-list li .ic::after { content:'×'; font-size:10px; color: var(--text3); }
    .ba-card.good .ba-list li .ic::after { content:'✓'; font-size:10px; color: var(--accent); }

    /* ─── PROBLEM STICKY SCROLL ─────────────────────────────── */
    /* 2 panels × ~100vh dwell each. Reduced from 280vh — was forcing the user
       to scroll nearly three screens through a two-state fade. */
    .problem-scroll-outer {
      position: relative;
      height: 200vh;
      background: transparent;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .problem-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      /* nudge content slightly below center */
      padding-top: clamp(40px,5vh,72px);
    }
    .problem-sticky-inner {
      max-width: 1240px;
      margin: 0 auto;
      /* asymmetric padding shifts everything subtly right */
      padding: 0 clamp(16px,3vw,48px) 0 clamp(48px,6vw,88px);
      width: 100%;
    }

    /* Left column — hosts the vertical progress line */
    .problem-left-col {
      position: relative;
      padding-left: 28px;
    }

    /* Vertical progress line */
    .prob-line-progress {
      position: absolute;
      left: 0; top: 0;
      width: 2px; height: 100%;
      background: var(--border);
      border-radius: 1px;
      overflow: hidden;
    }
    .prob-line-fill {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 0%;
      background: linear-gradient(to bottom, var(--accent), var(--accent3));
      border-radius: 1px;
      transition: height 0.08s linear;
    }

    /* Morph container — fixed height so both layers overlay cleanly */
    .problem-morph-container {
      position: relative;
      margin-top: 18px;
      height: clamp(420px, 56vh, 620px);
    }
    .problem-text-layer {
      position: absolute;
      top: 0; left: 0; width: 100%;
      will-change: opacity, transform, filter;
    }
    .problem-image-layer {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.96) translateY(32px);
      filter: blur(12px);
      pointer-events: none;
      will-change: opacity, transform, filter;
    }
    .problem-img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      border-radius: var(--r2);
      background: transparent;
      display: block;
      margin: 0 auto;
    }
    video.problem-img { background: #000; object-fit: contain; }

    /* Step counter + dots */
    .prob-progress-bar {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 10px;
    }
    .prob-dots { display: flex; gap: 6px; align-items: center; }
    .prob-dot {
      width: 6px; height: 6px;
      border-radius: 3px;
      background: var(--border2);
      transition: background 0.35s ease, width 0.35s cubic-bezier(0.16,1,0.3,1);
    }
    .prob-dot.active { background: var(--accent); width: 22px; }
    @keyframes probCounterPop {
      from { opacity: 0; transform: translateY(5px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .prob-step-counter {
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.1em; color: var(--text3);
      font-variant-numeric: tabular-nums;
    }
    .prob-step-counter.bump { animation: probCounterPop 0.3s cubic-bezier(0.16,1,0.3,1) both; }

    /* Mobile / reduced-motion: plain stacked layout, no sticky */
    @media (max-width: 960px) {
      .problem-scroll-outer { height: auto; }
      .problem-sticky { position: relative; height: auto; padding: clamp(60px,9vw,120px) clamp(20px,5vw,80px); }
      .problem-left-col { padding-left: 0; }
      .prob-line-progress, .prob-progress-bar { display: none; }
      .problem-morph-container { min-height: 0; margin-top: 24px; }
      .problem-text-layer { display: none !important; }
      .problem-image-layer {
        position: relative;
        opacity: 1 !important; transform: none !important; filter: none !important;
        pointer-events: auto;
      }
      .problem-img { max-height: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .problem-scroll-outer { height: auto; }
      .problem-sticky { position: relative; height: auto; padding: clamp(60px,9vw,120px) clamp(20px,5vw,80px); }
      .prob-line-progress, .prob-progress-bar { display: none; }
      .problem-morph-container { min-height: 0; margin-top: 24px; }
      .problem-text-layer { display: none !important; }
      .problem-image-layer {
        position: relative;
        opacity: 1 !important; transform: none !important; filter: none !important;
        pointer-events: auto;
      }
      .problem-img { max-height: none; }
    }

    /* ─── HOW IT WORKS ───────────────────────────────────────── */
    .steps {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 18px;
      margin-top: 56px;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 40px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
      z-index: 0;
    }
    .step {
      position: relative;
      z-index: 1;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r2);
      padding: 28px 22px 24px;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .step:hover {
      border-color: var(--border2);
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }
    .step-num-wrap {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: var(--bg2);
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .step-num {
      font-family: var(--font-h);
      font-size: 14px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .step-title {
      font-family: var(--font-h);
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }
    .step-desc { font-size: 13px; color: var(--text2); line-height: 1.6; }

    /* ── How-it-works sequential reveal ── */
    .step { opacity: 0; transform: translateY(24px); }
    @keyframes stepIn {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes stepPulse {
      0%   { border-color: var(--border); box-shadow: none; }
      35%  { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,142,247,0.22), 0 8px 40px rgba(79,142,247,0.18); }
      100% { border-color: var(--border); box-shadow: none; }
    }
    .step.step-active {
      animation: stepIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards,
                 stepPulse 2.2s ease 0.3s forwards;
    }

    /* ─── APP MOCKUP ─────────────────────────────────────────── */
    .demo-bg {
      background: transparent;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .demo-layout {
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      gap: clamp(40px,5vw,80px);
      align-items: center;
    }

    .app-frame {
      border-radius: 16px;
      border: 1px solid var(--border);
      overflow: hidden;
      background: var(--surface);
      box-shadow:
        0 10px 32px rgba(0,0,0,0.18),
        0 0 60px var(--glow);
      transition: transform 0.5s cubic-bezier(0.2,1,0.3,1);
    }
    .app-frame:hover { transform: translateY(-6px) rotate3d(0,1,0,1deg); }

    .af-bar {
      background: var(--bg3);
      border-bottom: 1px solid var(--border);
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .af-dots { display: flex; gap: 6px; }
    .af-dots span { width: 11px; height: 11px; border-radius: 50%; }
    .d-r { background: #ff5f57; } .d-y { background: #febc2e; } .d-g { background: #28c840; }
    .af-url {
      flex: 1;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: 5px 12px;
      font-size: 12px;
      color: var(--text3);
      max-width: 260px;
      margin: 0 auto;
      text-align: center;
    }

    .af-body {
      display: grid;
      grid-template-columns: 180px 1fr;
      min-height: 420px;
    }
    .af-sidebar {
      background: var(--bg3);
      border-right: 1px solid var(--border);
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .af-brand {
      font-family: var(--font-h);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.03em;
      padding: 6px 10px 14px;
      color: var(--text);
    }
    .af-nav-item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 8px 10px;
      border-radius: 8px;
      font-size: 12.5px;
      color: var(--text2);
      font-weight: 500;
      cursor: default;
    }
    .af-nav-item.active {
      background: var(--glow);
      color: var(--accent);
    }
    .af-nav-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: currentColor;
      flex-shrink: 0;
      opacity: 0.6;
    }
    .af-nav-item.active .af-nav-dot { opacity: 1; }

    .af-main {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .af-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .af-title {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.03em;
    }
    .af-gen-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 600;
      cursor: default;
      box-shadow: 0 4px 12px var(--glow);
    }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7,1fr);
      gap: 8px;
    }
    .cal-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: 10px 8px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .cal-day {
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--text3);
    }
    .cal-img {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 6px;
      background: var(--surface2);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cal-img-shimmer {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--bg3) 25%, var(--surface) 50%, var(--bg3) 75%);
      background-size: 200% 200%;
      animation: shimmer 2.5s linear infinite;
    }
    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    /* ── Pricing urgency + strikethrough ────────────────────── */
    .pr-urgency-badge {
      display: inline-block;
      background: linear-gradient(135deg, rgba(247,193,79,0.15), rgba(247,130,79,0.1));
      border: 1px solid rgba(247,193,79,0.35);
      color: #f7c14f;
      font-size: 12.5px;
      font-weight: 700;
      padding: 5px 16px;
      border-radius: 100px;
      margin: 12px auto 8px;
      letter-spacing: 0.02em;
    }
    .plan-price-row {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
      margin-bottom: 0;
    }
    .plan-price-line {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      flex-wrap: nowrap;
    }

    /* ── Use Cases section (Premium Scroll Narrative) ──────── */
    .uc-section { padding-bottom: 0; padding-top: clamp(50px,6.5vw,90px); }
    .uc-section .section-inner { margin-bottom: 8px; }

    .uc-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--glow);
      border: 1px solid rgba(79,142,247,0.2);
      border-radius: 100px;
      padding: 4px 12px;
      margin-bottom: 20px;
    }
    .uc-panel-title {
      font-family: var(--font-h);
      font-size: clamp(24px, 2.6vw, 36px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.15;
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }
    .uc-panel-desc {
      font-size: 16px;
      color: var(--text2);
      line-height: 1.65;
      margin: 0 0 24px;
      max-width: 420px;
    }
    .uc-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .uc-bullets li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text2);
      font-weight: 500;
    }
    .uc-bullets li::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent3);
      flex-shrink: 0;
    }

    /* Desktop: sticky scroll */
    /* 3 cases × ~107vh dwell each. Reduced from 500vh (was ~167vh per case —
       felt like dead scrolling). The scroll-progress JS in landing-app.js
       divides outer.offsetHeight evenly across textPanels.length, so this
       stays correct if cases are added/removed. */
    .uc-scroll-outer {
      position: relative;
      height: 320vh;
      margin-top: 24px;
      margin-left: calc(-1 * clamp(20px,5vw,80px));
      margin-right: calc(-1 * clamp(20px,5vw,80px));
    }
    .uc-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .uc-bg-glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      transition: background 0.9s ease;
    }
    .uc-sticky[data-case="0"] .uc-bg-glow { background: radial-gradient(ellipse at 75% 50%, rgba(79,142,247,0.10) 0%, transparent 60%); }
    .uc-sticky[data-case="1"] .uc-bg-glow { background: radial-gradient(ellipse at 75% 50%, rgba(123,94,167,0.10) 0%, transparent 60%); }
    .uc-sticky[data-case="2"] .uc-bg-glow { background: radial-gradient(ellipse at 75% 50%, rgba(54,214,180,0.08) 0%, transparent 60%); }
    .uc-sticky[data-case="3"] .uc-bg-glow { background: radial-gradient(ellipse at 75% 50%, rgba(247,147,79,0.08) 0%, transparent 60%); }
    .uc-sticky-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 clamp(24px,5vw,80px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    /* ─ Text column ─ */
    .uc-text-col { position: relative; height: 340px; }

    /* Vertical progress line */
    .uc-line-progress {
      position: absolute;
      left: -22px;
      top: 0;
      width: 2px;
      height: 100%;
      background: var(--border);
      border-radius: 1px;
      overflow: hidden;
    }
    .uc-line-fill {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 0%;
      background: linear-gradient(to bottom, var(--accent), var(--accent3));
      border-radius: 1px;
      transition: height 0.1s linear;
    }

    /* Text panels — directional transitions */
    .uc-text-panel {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.52s cubic-bezier(0.16,1,0.3,1),
                  transform 0.52s cubic-bezier(0.16,1,0.3,1);
      pointer-events: none;
      will-change: opacity, transform;
    }
    .uc-text-panel.no-transition { transition: none !important; }
    .uc-text-panel.enter-above   { transform: translateY(-32px); opacity: 0; }
    .uc-text-panel.exit-up       { opacity: 0; transform: translateY(-26px); pointer-events: none; }
    .uc-text-panel.exit-down     { opacity: 0; transform: translateY(32px);  pointer-events: none; }
    .uc-text-panel.active        { opacity: 1; transform: translateY(0); pointer-events: auto; }

    /* Staggered bullets */
    @keyframes ucBulletIn {
      from { opacity: 0; transform: translateX(-10px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .uc-text-panel.active .uc-bullets li {
      animation: ucBulletIn 0.45s cubic-bezier(0.16,1,0.3,1) both;
    }
    .uc-text-panel.active .uc-bullets li:nth-child(1) { animation-delay: 0.20s; }
    .uc-text-panel.active .uc-bullets li:nth-child(2) { animation-delay: 0.32s; }
    .uc-text-panel.active .uc-bullets li:nth-child(3) { animation-delay: 0.44s; }

    /* Step counter pop */
    @keyframes ucCounterPop {
      from { opacity: 0; transform: translateY(5px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .uc-step-counter.bump { animation: ucCounterPop 0.3s cubic-bezier(0.16,1,0.3,1) both; }

    /* Progress bar */
    .uc-progress-bar {
      position: absolute;
      bottom: -52px; left: 0;
      display: flex; align-items: center; gap: 14px;
    }
    .uc-dots { display: flex; gap: 6px; align-items: center; }
    .uc-dot {
      width: 6px; height: 6px;
      border-radius: 3px;
      background: var(--border2);
      transition: background 0.35s ease, width 0.35s cubic-bezier(0.16,1,0.3,1);
    }
    .uc-dot.active { background: var(--accent); width: 22px; }
    .uc-step-counter {
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.1em; color: var(--text3);
      font-variant-numeric: tabular-nums;
    }

    /* ─ Image column ─ */
    .uc-img-col { position: relative; height: 480px; }
    .uc-img-panel {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(0.94) translateY(28px);
      filter: blur(8px);
      transition: opacity 0.62s cubic-bezier(0.16,1,0.3,1),
                  transform 0.62s cubic-bezier(0.16,1,0.3,1),
                  filter 0.5s cubic-bezier(0.16,1,0.3,1);
      pointer-events: none;
      will-change: opacity, transform, filter;
    }
    .uc-img-panel.no-transition { transition: none !important; }
    .uc-img-panel.enter-above   { opacity: 0; transform: scale(0.94) translateY(-28px); filter: blur(8px); }
    .uc-img-panel.exit-up       { opacity: 0; transform: scale(0.97) translateY(-18px); filter: blur(6px); pointer-events: none; }
    .uc-img-panel.exit-down     { opacity: 0; transform: scale(0.97) translateY(28px);  filter: blur(6px); pointer-events: none; }
    .uc-img-panel.active        { opacity: 1; transform: scale(1) translateY(0); filter: blur(0px); pointer-events: auto; }

    /* Image card — no frame, screenshot is the focus */
    .uc-img-card {
      width: 100%; height: 100%;
      background: transparent;
      border: none;
      border-radius: var(--r3);
      overflow: visible;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      box-shadow: none;
    }

    /* Illustration fills the panel; subtle drop shadow keeps depth without a heavy frame */
    .uc-img-card img {
      max-width: 100%; max-height: 100%;
      width: auto; height: auto;
      display: block;
      position: relative; z-index: 2;
      border-radius: var(--r2);
      filter: drop-shadow(0 12px 28px rgba(0,0,0,0.12));
    }

    /* Mobile: stacked */
    .uc-mobile-stack { display: none; }
    @media (max-width: 900px) {
      .uc-scroll-outer { display: none; }
      .uc-mobile-stack {
        display: flex; flex-direction: column;
        gap: 52px; margin-top: 52px;
        padding-bottom: clamp(60px,9vw,120px);
      }
      .uc-mob-card { display: flex; flex-direction: column; gap: 20px; }
      .uc-mob-text .uc-panel-desc { max-width: 100%; }
      .uc-mob-img {
        background: transparent;
        border: none;
        border-radius: var(--r2);
        overflow: visible; aspect-ratio: 3/2;
        display: flex; align-items: center; justify-content: center;
        box-shadow: none;
        position: relative;
      }
      .uc-mob-img img {
        max-width: 100%; max-height: 100%;
        width: auto; height: auto;
        display: block;
        position: relative; z-index: 1;
        border-radius: var(--r2);
        filter: drop-shadow(0 8px 20px rgba(0,0,0,0.10));
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .uc-text-panel, .uc-img-panel {
        transition: opacity 0.25s ease !important;
        transform: none !important;
        filter: none !important;
      }
      .uc-text-panel.active .uc-bullets li { animation: none !important; opacity: 1 !important; }
    }

    /* ── Blog preview section ───────────────────────────────── */
    .blog-preview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 48px;
    }
    .bp-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: var(--r2);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
      color: inherit;
    }
    .bp-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
    .bp-card-img {
      aspect-ratio: 16/9;
      background: var(--surface2);
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
    }
    .bp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .bp-card:hover .bp-card-img img { transform: scale(1.05); }
    .bp-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .bp-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
    .bp-card-date { font-size: 11px; color: var(--text3); }
    .bp-card-read { font-size: 10px; font-weight: 700; color: var(--accent); background: var(--glow); border-radius: 100px; padding: 2px 8px; }
    .bp-card-title { font-family: var(--font-h); font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em; }
    .bp-card-excerpt { font-size: 13px; color: var(--text2); line-height: 1.6; flex: 1; }
    .bp-card-link { font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 14px; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
    .bp-card:hover .bp-card-link { gap: 8px; }
    .blog-preview-cta { text-align: center; margin-top: 36px; }
    .blog-preview-cta a { font-size: 14px; font-weight: 600; color: var(--accent); border: 1px solid rgba(79,142,247,.3); border-radius: var(--r); padding: 10px 20px; display: inline-flex; align-items: center; gap: 6px; transition: border-color .2s, gap .2s; }
    .blog-preview-cta a:hover { border-color: var(--accent); gap: 10px; }
    @media (max-width: 700px) { .blog-preview-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .blog-preview-grid { grid-template-columns: 1fr; } }

    /* ── FAQ section ────────────────────────────────────────── */
    .faq-list {
      max-width: 720px;
      margin: 48px auto 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 0;
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      font-family: var(--font-b);
      font-size: 15.5px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-q::after {
      content: '+';
      font-size: 20px;
      font-weight: 300;
      color: var(--accent);
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .faq-item.open .faq-q::after { transform: rotate(45deg); }
    .faq-a {
      font-size: 14.5px;
      color: var(--text2);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
      padding: 0;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
    /* Comparison table answer needs horizontal scroll on phones so the
       5-col table doesn't blow out the viewport or crush text. */
    .faq-a--compare { -webkit-overflow-scrolling: touch; overflow-x: auto; }
    .faq-item.open .faq-a--compare { max-height: 520px; }
    .faq-compare-table { width:100%; border-collapse:collapse; font-size:13px; margin-top:4px; }
    @media(max-width:640px){
      .faq-compare-table { min-width: 520px; }
    }
    .faq-compare-table th { text-align:center; font-weight:700; font-size:12px; padding:6px 10px; color:var(--text2); border-bottom:1px solid var(--border); }
    .faq-compare-table th:first-child { text-align:left; }
    .faq-compare-table td { padding:7px 10px; text-align:center; color:var(--text2); border-bottom:1px solid var(--border); }
    .faq-compare-table td:first-child { text-align:left; font-weight:500; color:var(--text1); }
    .fc-yes { color:var(--green,#34d399); font-weight:700; }
    .fc-no  { color:var(--text3); }

    @keyframes inputRecharge {
      0%   { box-shadow: 0 0 0 2px rgba(79,142,247,0.3), 0 0 12px 4px rgba(79,142,247,0.2); border-color: #4f8ef7; }
      40%  { box-shadow: 0 0 0 8px rgba(79,142,247,0.55), 0 0 32px 12px rgba(79,142,247,0.35); border-color: #7be3ff; }
      100% { box-shadow: 0 0 0 2px rgba(79,142,247,0), 0 0 0 0 rgba(79,142,247,0); border-color: var(--border2); }
    }
    .hero-input-wrap.recharge {
      animation: inputRecharge 0.55s ease-out forwards;
    }
    .cal-img-label {
      position: relative;
      z-index: 1;
      font-size: 7px;
      color: var(--text3);
      text-align: center;
    }
    .cal-type {
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 2px 5px;
      border-radius: 3px;
      width: fit-content;
    }
    .t-e { background: rgba(79,142,247,0.15); color: var(--accent); }
    .t-p { background: rgba(123,94,167,0.15); color: var(--accent2); }
    .t-s { background: rgba(54,214,180,0.15); color: var(--accent3); }
    .t-v { background: rgba(247,193,79,0.15); color: #f7c14f; }
    .cal-status {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .cs-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
    .cs-txt { font-size: 8.5px; color: var(--text3); }
    .s-ok .cs-dot { background: var(--accent3); }
    .s-pend .cs-dot { background: #f7c14f; }
    .s-draft .cs-dot { background: var(--text3); }

    /* ─── FEATURES BENTO ─────────────────────────────────────── */
    #features { padding-top: clamp(50px,6vw,90px); padding-bottom: clamp(50px,6vw,90px); }
    #features .sect-h2 { margin-bottom: 10px; }
    #features .sect-sub { margin-bottom: 0; }
    .bento {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: auto auto;
      gap: 16px;
      margin-top: 32px;
    }
    .bento-card {
      background: linear-gradient(160deg, var(--surface) 0%, var(--surface2) 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px 26px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.22), 0 10px 28px rgba(0,0,0,0.12);
    }
    .bento-card:hover {
      border-color: rgba(79,142,247,0.28);
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 24px 48px rgba(0,0,0,0.18), 0 0 0 1px rgba(79,142,247,0.14);
    }
    .bento-card.wide { grid-column: span 2; }
    .bento-card.wide:hover { transform: translateY(-5px); }
    .bento-card.tall { grid-row: span 2; }
    .bento-glow {
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }
    .bento-card:hover .bento-glow { opacity: 1; }
    .bc-icon {
      width: 46px; height: 46px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
      transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
    }
    .bento-card:hover .bc-icon { transform: scale(1.2) rotate(-6deg) translateY(-2px); }
    .bc-title {
      font-family: var(--font-h);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }
    .bc-desc { font-size: 14px; color: var(--text2); line-height: 1.65; }

    /* Mini visual inside bento cards */
    .bento-visual {
      margin-top: 20px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .platform-chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 18px;
    }
    .plt-chip {
      display: flex;
      align-items: center;
      gap: 7px;
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-radius: 100px;
      padding: 5px 12px 5px 8px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text2);
    }
    .plt-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
    }

    /* ─── PRICING ────────────────────────────────────────────── */
    html { scroll-padding-top: 84px; }
    #pricing {
      scroll-margin-top: 84px;
      padding-top: clamp(50px,6.5vw,90px);
      padding-bottom: clamp(50px,6.5vw,90px);
    }
    .pricing-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 18px;
    }
    .pricing-header .sect-h2 {
      font-size: clamp(26px,2.9vw,40px);
      max-width: 820px;
      margin: 0 auto 10px;
    }
    .pricing-header .pr-urgency-badge { margin: 6px auto 10px; }
    .pricing-header .sect-sub {
      margin: 0 auto;
      max-width: 600px;
      font-size: 14px;
    }

    /* Segmented billing toggle (replaces .tp switch) */
    .billing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      font-size: 14px;
      color: var(--text2);
      font-weight: 500;
    }
    .billing-segmented {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 4px;
      gap: 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      width: min(380px, 100%);
    }
    .bs-btn {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 26px;
      background: transparent;
      border: none;
      border-radius: 100px;
      font: inherit;
      font-weight: 600;
      font-size: 14px;
      color: var(--text2);
      cursor: pointer;
      transition: color 0.25s ease;
      white-space: nowrap;
    }
    .bs-btn.is-active { color: #fff; }
    .bs-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
    .bs-btn:not(.is-active):hover { color: var(--text); }
    .bs-save {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.18);
      color: inherit;
      font-size: 10.5px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 100px;
      letter-spacing: 0.02em;
      line-height: 1;
      margin-left: 2px;
    }
    .bs-btn:not(.is-active) .bs-save {
      background: var(--glow);
      color: var(--accent);
    }
    .bs-pill {
      position: absolute;
      z-index: 1;
      top: 4px; bottom: 4px; left: 4px;
      width: calc(50% - 4px);
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      border-radius: 100px;
      box-shadow: 0 4px 14px rgba(79,142,247,0.35);
      transition: transform 0.32s cubic-bezier(0.2,1,0.3,1);
    }
    .billing-segmented.annual .bs-pill { transform: translateX(100%); }

    /* Credits hint below the toggle */
    .credits-hint {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: center;
      gap: 6px;
      text-align: center;
      margin: 0 auto 36px;
      font-size: 13px;
      color: var(--text3);
      max-width: 720px;
      line-height: 1.45;
    }
    .credits-hint-link {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s, color 0.2s;
    }
    .credits-hint-link:hover { border-color: var(--accent); }
    .credits-hint-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

    .plans {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
      align-items: stretch;
    }
    .plan {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r3);
      padding: 26px 26px 24px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 10px 32px rgba(0,0,0,0.1);
    }
    .plan:hover { transform: translateY(-6px); box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 24px 52px rgba(0,0,0,0.14); }
    .plan.featured {
      border-color: rgba(79,142,247,0.5);
      background: linear-gradient(180deg, rgba(79,142,247,0.08) 0%, var(--surface) 60%);
      box-shadow: 0 0 0 1px rgba(79,142,247,0.28), 0 8px 28px rgba(79,142,247,0.16), 0 24px 64px rgba(79,142,247,0.12);
      transform: scale(1.04);
      z-index: 1;
    }
    .plan.featured:hover { transform: scale(1.04) translateY(-6px); }
    .plan-badge {
      position: absolute;
      top: -13px; left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: 100px;
      white-space: nowrap;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      box-shadow: 0 2px 12px rgba(79,142,247,0.4);
    }
    .plan-head { margin-bottom: 10px; }
    .plan-name {
      font-family: var(--font-h);
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }
    .plan-subtitle {
      font-size: 12.5px;
      color: var(--text3);
      line-height: 1.4;
      margin: 0;
      min-height: 32px;
    }
    .plan.featured .plan-subtitle { color: var(--text2); }
    .plan-price-row { margin-bottom: 10px; }
    .plan-orig {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-h);
      font-size: 17px;
      font-weight: 600;
      color: var(--text3);
      text-decoration: line-through;
      text-decoration-thickness: 1.5px;
      opacity: 0.65;
      line-height: 1;
      margin-top: 6px;
    }
    .plan-orig sup { font-size: 10px; vertical-align: top; }
    .plan-price {
      font-family: var(--font-h);
      font-size: 44px;
      font-weight: 800;
      letter-spacing: -0.05em;
      line-height: 1;
      margin-bottom: 2px;
    }
    .plan-price sup { font-size: 20px; vertical-align: top; margin-top: 8px; }
    .plan-period { font-size: 13px; color: var(--text3); margin-bottom: 4px; }
    .plan-save {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(54,214,180,0.10);
      color: var(--accent3);
      font-size: 11.5px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 100px;
      letter-spacing: -0.005em;
      border: 1px solid rgba(54,214,180,0.22);
    }
    .plan-save-amount { font-variant-numeric: tabular-nums; }
    .plan-credits-highlight {
      font-family: var(--font-h);
      font-size: 14px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: -0.01em;
      margin: 10px 0 12px;
    }
    .plan-credits-highlight strong {
      font-weight: 800;
      font-size: 15.5px;
    }
    .plan-credits-sub { font-size: 11px; font-weight: 500; opacity: 0.7; }
    .plan-line { height: 1px; background: var(--border); margin-bottom: 14px; }
    .plan-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
      margin-bottom: 12px;
    }
    .plan-feats li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--text2);
      line-height: 1.4;
    }
    .feat-check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--glow);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .feat-check::after { content:'✓'; font-size: 10px; color: var(--accent); font-weight: 700; }

    /* Differentiator feature — highlights what makes the plan unique */
    .plan-feats li.feat-diff { color: var(--text); }
    .plan-feats li.feat-diff strong { font-weight: 700; }

    /* Info tooltip button (Ultra Premium hint) */
    .feat-info {
      width: 16px; height: 16px;
      border-radius: 50%;
      background: rgba(255,214,107,0.18);
      color: #FFD66B;
      border: none;
      font-size: 10px;
      font-weight: 700;
      cursor: help;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 4px;
      position: relative;
      flex-shrink: 0;
      line-height: 1;
      padding: 0;
    }
    .feat-info:hover, .feat-info:focus-visible { background: rgba(255,214,107,0.3); outline: none; }
    .feat-info::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--bg);
      color: var(--text);
      font-size: 11.5px;
      font-weight: 500;
      padding: 7px 10px;
      border-radius: 8px;
      border: 1px solid var(--border2);
      box-shadow: 0 8px 24px rgba(0,0,0,0.32);
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
      z-index: 10;
    }
    .feat-info:hover::after, .feat-info:focus-visible::after {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(-2px);
    }

    /* Locked feature (Basic — premium video gated behind upgrade) */
    .plan-feats li.feat-locked {
      color: rgba(255,255,255,0.40);
      font-style: italic;
    }
    .feat-lock {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
      font-size: 10px;
    }

    /* Premium feature (Launch + Scale — premium video included) */
    .plan-feats li.feat-premium {
      color: #FFD66B;
      font-weight: 600;
    }
    .feat-star {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(255,214,107,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
      font-size: 11px;
    }
    .plan-credit-note {
      font-size: 11.5px;
      color: var(--text3);
      text-align: center;
      line-height: 1.45;
      padding: 10px 0 0;
      border-top: 1px solid var(--border);
      margin-bottom: 12px;
    }
    .plan-btn {
      display: block;
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, background 0.22s ease;
      border: none;
      margin-top: auto;
    }
    .plan-btn-outline {
      background: transparent;
      border: 1.5px solid var(--border2);
      color: var(--text);
    }
    .plan-btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
    .plan-btn-fill {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
      color: #fff;
      box-shadow: 0 4px 18px rgba(79,142,247,0.35);
    }
    .plan-btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(79,142,247,0.5); opacity: 0.95; }
    .plan-taglines {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      max-width: 960px;
      margin: 18px auto 0;
      padding: 0;
    }
    .plan-tagline {
      font-family: var(--font-h);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: var(--text2);
      text-align: center;
      line-height: 1.45;
      margin: 0;
      padding: 0 6px;
    }

    /* Credits explained — collapsible */
    .credits-explained {
      max-width: 880px;
      margin: 36px auto 0;
      padding: 20px clamp(20px,3vw,32px);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.08);
      scroll-margin-top: 84px;
      text-align: center;
      cursor: pointer;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .credits-explained:hover { border-color: rgba(79,142,247,0.35); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
    .credits-explained .credits-explained-body,
    .credits-explained .credit-item,
    .credits-explained .credits-extra,
    .credits-explained .credits-extra-opt { cursor: auto; }
    .credits-explained-toggle {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 0;
      cursor: pointer;
      font-family: var(--font-h);
      font-size: clamp(17px, 2vw, 21px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text);
      padding: 4px 8px;
      border-radius: 10px;
      transition: color 0.2s ease;
    }
    .credits-explained-toggle:hover { color: var(--accent); }
    .credits-explained-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
    .ce-q {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--glow);
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      font-family: var(--font-b);
      flex-shrink: 0;
    }
    .ce-caret {
      font-size: 13px;
      color: var(--text3);
      transition: transform 0.25s ease;
    }
    .credits-explained-toggle[aria-expanded="true"] .ce-caret { transform: rotate(180deg); }
    .credits-explained-sub {
      font-size: 13px;
      color: var(--text3);
      line-height: 1.5;
      max-width: 540px;
      margin: 6px auto 0;
    }
    .credits-explained-body {
      display: block;
      margin-top: 22px;
      text-align: left;
    }
    .credits-explained-body[hidden] { display: none; }
    .credits-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 12px;
      margin-bottom: 24px;
    }
    .credit-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px 16px;
      text-align: left;
      transition: border-color 0.2s;
    }
    .credit-item:hover { border-color: var(--border2); }
    .credit-icon { font-size: 20px; flex-shrink: 0; }
    .credit-text { font-size: 13px; color: var(--text2); line-height: 1.4; }
    .credit-text strong { color: var(--text); display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 1px; }
    /* Premium credit items — Ultra Premium video tiers */
    .credit-item.premium {
      background: linear-gradient(180deg, rgba(255,214,107,0.06), rgba(255,214,107,0.02));
      border-color: rgba(255,214,107,0.25);
    }
    .credit-item.premium .credit-text strong { color: #FFD66B; }

    /* Real-world example block */
    .credits-example {
      margin: 0 0 22px;
      padding: 18px clamp(16px,2.4vw,22px);
      background: linear-gradient(180deg, rgba(79,142,247,0.06), rgba(79,142,247,0.02));
      border: 1px solid rgba(79,142,247,0.18);
      border-radius: 14px;
      text-align: left;
    }
    .credits-example-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 4px;
    }
    .credits-example-icon {
      width: 28px; height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--glow);
      border-radius: 50%;
      font-size: 15px;
      flex-shrink: 0;
    }
    .credits-example-title {
      font-family: var(--font-h);
      font-size: 15px;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: var(--text);
    }
    .credits-example-sub {
      font-size: 13px;
      color: var(--text3);
      line-height: 1.5;
      margin: 0 0 12px;
    }
    .credits-example-list {
      list-style: none;
      padding: 0;
      margin: 0 0 4px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .credits-example-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 13px;
      color: var(--text2);
      padding: 7px 0;
      border-bottom: 1px dashed rgba(127,127,127,0.18);
    }
    .credits-example-list li:last-child { border-bottom: none; }
    .credits-example-list li strong {
      font-variant-numeric: tabular-nums;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
    }
    .credits-example-total {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      padding: 10px 0 4px;
      margin-top: 6px;
      border-top: 1.5px solid rgba(79,142,247,0.22);
    }
    .credits-example-total strong {
      font-family: var(--font-h);
      font-size: 19px;
      color: var(--accent);
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.02em;
    }
    .credits-example-note {
      font-size: 12.5px;
      color: var(--text3);
      margin: 8px 0 0;
      line-height: 1.5;
    }
    .credits-example-note strong { color: var(--accent); font-weight: 700; }

    /* Buy extra credits */
    .credits-extra {
      border-top: 1px solid var(--border);
      padding-top: 22px;
    }
    .credits-extra-title {
      font-family: var(--font-h);
      font-size: 16px; font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }
    .credits-extra-sub { font-size: 13px; color: var(--text2); margin-bottom: 16px; }
    .credits-extra-options { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .credits-extra-opt {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 28px;
      cursor: pointer;
      transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
      text-align: center;
      text-decoration: none;
      display: block;
    }
    .credits-extra-opt:hover { border-color: rgba(79,142,247,0.4); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(79,142,247,0.14); }
    .ceo-amount { font-family: var(--font-h); font-size: 20px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); }
    .ceo-price { font-size: 12px; color: var(--text3); margin-top: 3px; }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: clamp(50px,6vw,90px) clamp(20px,5vw,80px) 36px;
    }
    .foot-inner { max-width: 1100px; margin: 0 auto; }
    .foot-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 52px;
    }
    .foot-brand-p {
      font-size: 13.5px;
      color: var(--text2);
      margin-top: 12px;
      max-width: 220px;
      line-height: 1.6;
    }
    .foot-col h4 {
      font-family: var(--font-h);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text3);
      margin-bottom: 16px;
    }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .foot-col ul a {
      font-size: 13.5px;
      color: var(--text2);
      text-decoration: none;
      transition: color 0.15s;
    }
    .foot-col ul a:hover { color: var(--text); }
    .foot-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12.5px;
      color: var(--text3);
    }

    /* ─── DEMO VIDEO (inside app-frame chrome) ─────────────────── */
    .af-video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9.4;
      background: var(--bg3);
      overflow: hidden;
    }
    .af-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      z-index: 2;
    }
    .af-video-fallback {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--bg3), var(--bg2));
      z-index: 1;
    }
    .af-video-fb-inner { text-align: center; color: var(--text2); }
    .af-video-fb-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff; font-size: 24px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
      box-shadow: 0 8px 24px rgba(79,142,247,0.35);
    }
    .af-video-fb-label { font-size: 13px; color: var(--text3); }
    /* Hide fallback when video metadata has loaded successfully */
    .af-video[data-loaded="1"] + .af-video-fallback { display: none; }

    /* ─── POWER FEATURES (tabbed) ──────────────────────────────── */
    .power-features {
      background: linear-gradient(180deg, transparent 0%, var(--bg2) 30%, var(--bg2) 70%, transparent 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding-top: clamp(50px,6vw,90px);
      padding-bottom: clamp(50px,6vw,90px);
    }
    .pf-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 32px;
    }
    .pf-header .sect-h2 { margin-bottom: 10px; }
    .pf-header .sect-sub { margin-bottom: 0; max-width: 620px; }
    .pf-layout {
      display: grid;
      grid-template-columns: minmax(280px, 360px) 1fr;
      gap: clamp(24px, 3vw, 48px);
      align-items: stretch;
    }
    .pf-tabs {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .pf-tab {
      position: relative;
      display: grid;
      grid-template-columns: 36px 1fr 18px;
      gap: 14px;
      align-items: center;
      padding: 16px 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      text-align: left;
      cursor: pointer;
      color: var(--text);
      font: inherit;
      transition: transform 0.25s cubic-bezier(0.2,1,0.3,1), border-color 0.25s, background 0.25s, box-shadow 0.25s;
    }
    .pf-tab:hover {
      border-color: var(--border2);
      transform: translateX(2px);
    }
    .pf-tab.is-active {
      border-color: var(--accent);
      background: linear-gradient(135deg, rgba(79,142,247,0.08), rgba(123,94,167,0.06));
      box-shadow: 0 8px 24px rgba(79,142,247,0.15), 0 0 0 1px rgba(79,142,247,0.3);
    }
    .pf-tab:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }
    .pf-tab-icon {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      background: var(--bg3);
      border-radius: 10px;
      font-size: 18px;
      transition: transform 0.25s;
    }
    .pf-tab.is-active .pf-tab-icon {
      background: linear-gradient(135deg, rgba(79,142,247,0.18), rgba(123,94,167,0.14));
      transform: scale(1.06);
    }
    .pf-tab-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
    .pf-tab-h {
      font-family: var(--font-h);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--text);
    }
    .pf-tab-sub {
      font-size: 12.5px;
      color: var(--text3);
      line-height: 1.35;
    }
    .pf-tab-arrow {
      font-size: 14px;
      color: var(--text3);
      opacity: 0;
      transform: translateX(-4px);
      transition: opacity 0.25s, transform 0.25s, color 0.25s;
    }
    .pf-tab.is-active .pf-tab-arrow {
      opacity: 1;
      transform: translateX(0);
      color: var(--accent);
    }
    .pf-tab:hover .pf-tab-arrow { opacity: 0.6; transform: translateX(0); }

    .pf-panels { position: relative; min-height: 420px; }
    .pf-panel {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: clamp(24px, 3vw, 40px);
      align-items: center;
      padding: clamp(20px, 2.5vw, 32px);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: 0 10px 32px rgba(0,0,0,0.12);
    }
    .pf-panel[hidden] { display: none; }
    .pf-panel.is-active { animation: pf-fade 0.45s cubic-bezier(0.2,1,0.3,1); }
    @keyframes pf-fade {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .pf-panel-eyebrow {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .pf-panel-h {
      font-family: var(--font-h);
      font-size: clamp(22px, 2.4vw, 28px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--text);
      margin: 0 0 12px;
    }
    .pf-panel-d {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text2);
      margin: 0 0 18px;
    }
    .pf-panel-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .pf-panel-bullets li {
      font-size: 13.5px;
      color: var(--text2);
      padding: 8px 12px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 9px;
    }
    .pf-panel-media {
      position: relative;
      aspect-ratio: 16/10;
      border-radius: 14px;
      overflow: hidden;
      background: var(--bg3);
      border: 1px solid var(--border);
      box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    }
    .pf-media-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      z-index: 2;
    }
    .pf-media-fallback {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--bg3), var(--bg2));
      color: var(--text3);
      z-index: 1;
    }
    .pf-media-fallback span {
      width: 52px; height: 52px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff; font-size: 20px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(79,142,247,0.3);
    }
    .pf-media-fallback small { font-size: 12.5px; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 960px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-right .btn-ghost { display: none; }
      .problem-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: repeat(2,1fr); }
      .steps::before { display: none; }
      .bento { grid-template-columns: 1fr 1fr; }
      .bento-card.wide { grid-column: span 2; }
      .demo-layout { grid-template-columns: 1fr; }
      .af-body { grid-template-columns: 1fr; }
      .af-sidebar { display: none; }
      .af-video-wrap { aspect-ratio: 16/10; }
      .pf-layout { grid-template-columns: 1fr; }
      .pf-tabs { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; gap: 8px; }
      .pf-tabs::-webkit-scrollbar { height: 6px; }
      .pf-tab { min-width: 240px; scroll-snap-align: start; flex-shrink: 0; }
      .pf-tab-arrow { display: none; }
      .pf-panel { grid-template-columns: 1fr; }
      .plans { grid-template-columns: 1fr; max-width: 400px; }
      .plan-taglines { grid-template-columns: 1fr; max-width: 400px; gap: 6px; }
      .plan-tagline { padding: 0 12px; }
      .plan.featured { transform: none; }
      .plan.featured:hover { transform: translateY(-6px); }
      .credits-grid { grid-template-columns: 1fr; }
      .foot-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 620px) {
      .steps { grid-template-columns: 1fr; }
      .bento { grid-template-columns: 1fr; }
      .bento-card.wide { grid-column: span 1; }
      .cal-grid { grid-template-columns: repeat(4,1fr); }
      .foot-top { grid-template-columns: 1fr; }
      .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .pf-panel { padding: 18px; }
      .pf-tab { min-width: 220px; padding: 14px; }
    }

    /* Small phones (≤ 400px). Tighten paddings, drop the secondary nav
       chrome (lang chevron text) so the hamburger + CTA still fit, and
       give the urgency bar enough room for its message. */
    @media (max-width: 768px) {
      #urgency-sticky { padding: 8px 40px 8px 14px; font-size: 12.5px; line-height: 1.4; text-align: left; }
      #urgency-sticky button { right: 8px; width: 28px; height: 28px; padding: 0; display: flex; align-items: center; justify-content: center; }
    }
    @media (max-width: 400px) {
      .nav { padding: 0 12px; gap: 6px; }
      .nav-right { gap: 6px; }
      .lang-btn { padding: 6px 8px; font-size: 12px; }
      .lang-chevron { display: none; }
      .btn-cta { padding: 8px 14px; font-size: 13px; }
      #urgency-sticky { padding: 8px 36px 8px 12px; font-size: 12px; }
      .hero-h1 { font-size: clamp(28px, 7.5vw, 38px); }
      .hero-sub { font-size: 14.5px; }
      .auth-card, #auth-card { padding: 28px 22px 24px; }
    }

    /* iOS safe-area: with viewport-fit=cover the nav can slide under the
       notch in landscape and the footer under the home-indicator. */
    @supports (padding: env(safe-area-inset-top)) {
      .nav {
        padding-left:  max(clamp(16px,4vw,64px), env(safe-area-inset-left));
        padding-right: max(clamp(16px,4vw,64px), env(safe-area-inset-right));
      }
      body { padding-bottom: env(safe-area-inset-bottom); }
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 100px; }

    /* ── Auth Modal ─────────────────────────────────────────── */
    #auth-backdrop {
      position: fixed; inset: 0;
      background: rgba(6,8,16,0.82);
      backdrop-filter: blur(6px);
      z-index: 900;
      opacity: 0; animation: backdropIn 0.25s ease forwards;
    }
    @keyframes backdropIn { to { opacity: 1; } }

    #auth-card {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -56%);
      z-index: 901;
      width: min(480px, calc(100vw - 32px));
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 22px;
      padding: 36px 36px 32px;
      box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,142,247,0.08);
      animation: cardIn 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    @keyframes cardIn {
      from { opacity: 0; transform: translate(-50%, -48%); }
      to   { opacity: 1; transform: translate(-50%, -50%); }
    }

    #auth-close {
      position: absolute; top: 16px; right: 16px;
      background: none; border: none; cursor: pointer;
      color: var(--text2); font-size: 22px; line-height: 1;
      width: 32px; height: 32px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s;
    }
    #auth-close:hover { background: var(--surface2); }

    #auth-title {
      font-family: var(--font-h); font-size: 22px; font-weight: 800;
      letter-spacing: -0.03em; color: var(--text); margin-bottom: 6px;
    }
    #auth-subtitle {
      font-size: 13.5px; color: var(--text2); margin-bottom: 24px; line-height: 1.5;
    }
    #auth-subtitle strong { color: var(--accent); font-weight: 600; }

    #auth-url-preview {
      word-break: break-all; max-width: 100%; display: inline;
    }

    #btn-google {
      width: 100%; padding: 11px 16px;
      background: var(--surface2); border: 1px solid var(--border2);
      border-radius: 11px; cursor: pointer; color: var(--text);
      font-family: var(--font-b); font-size: 14px; font-weight: 600;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: border-color 0.15s, background 0.15s;
    }
    #btn-google:hover { border-color: var(--accent); background: var(--bg2); }

    .auth-divider {
      display: flex; align-items: center; gap: 12px;
      color: var(--text3); font-size: 12px; margin: 18px 0;
    }
    .auth-divider::before, .auth-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    #auth-form { display: flex; flex-direction: column; gap: 10px; }
    .auth-input {
      width: 100%; padding: 11px 14px;
      background: var(--bg2); border: 1px solid var(--border2);
      border-radius: 10px; color: var(--text);
      font-family: var(--font-b); font-size: 14px;
      outline: none; transition: border-color 0.15s;
    }
    .auth-input:focus { border-color: var(--accent); }
    .auth-input::placeholder { color: var(--text3); }

    #btn-email-auth {
      width: 100%; padding: 12px;
      background: linear-gradient(135deg, #4f8ef7, #7b5ea7);
      border: none; border-radius: 11px; cursor: pointer;
      color: #fff; font-family: var(--font-b); font-size: 14px; font-weight: 700;
      box-shadow: 0 4px 20px rgba(79,142,247,0.4);
      transition: opacity 0.15s, transform 0.15s;
    }
    #btn-email-auth:hover { opacity: 0.88; transform: translateY(-1px); }
    #btn-email-auth:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

    #auth-switch {
      font-size: 13px; color: var(--text2); text-align: center; margin-top: 14px;
    }
    #auth-switch a { color: var(--accent); text-decoration: none; font-weight: 600; }

    #auth-error {
      font-size: 13px; color: #f87171; background: rgba(248,113,113,0.1);
      border: 1px solid rgba(248,113,113,0.2); border-radius: 8px;
      padding: 8px 12px; margin-top: 10px;
    }

    #auth-loading {
      text-align: center; padding: 16px 0 8px;
    }
    .auth-spinner {
      width: 36px; height: 36px; border-radius: 50%;
      border: 3px solid var(--border2);
      border-top-color: var(--accent);
      animation: spin 0.7s linear infinite;
      margin: 0 auto 14px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    #auth-loading-url  { font-size: 12px; color: var(--text3); margin-top: 4px; word-break: break-all; }

    .scrape-steps { display: flex; flex-direction: column; gap: 10px; padding: 8px 0 16px; }
    .scrape-step { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text3); opacity: 0; transform: translateY(6px); transition: opacity 0.4s, transform 0.4s, color 0.3s; }
    .scrape-step.active { opacity: 1; transform: translateY(0); color: var(--text2); }
    .scrape-step.done { color: var(--accent3); }
    .scrape-step .ss-icon { font-size: 16px; }
    .scrape-step .ss-check { margin-left: auto; opacity: 0; transition: opacity 0.3s; font-size: 14px; color: var(--accent3); }
    .scrape-step.done .ss-check { opacity: 1; }

    #auth-success {
      text-align: center; padding: 16px 0 8px;
    }
    .auth-success-icon { font-size: 40px; margin-bottom: 12px; }
    #auth-success h3 { font-family: var(--font-h); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
    #auth-success p  { font-size: 13px; color: var(--text2); line-height: 1.6; }
    .auth-result-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--bg2); border: 1px solid var(--border2);
      border-radius: 100px; padding: 4px 12px;
      font-size: 12px; color: var(--text2); margin: 4px;
    }
    .auth-result-pill strong { color: var(--text); }

    /* Disabled footer links */
    .ft-link-soon {
      color: var(--text3);
      opacity: 0.45;
      cursor: default;
      pointer-events: none;
      font-size: inherit;
      font-family: inherit;
    }

/* Urgency bar animation */
@keyframes ub-slide { from { transform: translateY(-100%); opacity:0; } to { transform: translateY(0); opacity:1; } }
