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

    :root {
      --bg-deep: #050810;
      --bg-navy: #0a0f1e;
      --bg-card: #0d1326;
      --bg-card-hover: #101730;
      --gold: #c9a84c;
      --gold-light: #f0d080;
      --gold-dim: rgba(201,168,76,0.15);
      --gold-glow: rgba(201,168,76,0.08);
      --gold-border: rgba(201,168,76,0.12);
      --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
      --white: #f0ece4;
      --white-dim: rgba(240,236,228,0.75);
      --white-muted: rgba(240,236,228,0.38);
      --font-display: 'Clash Display', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
      --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --radius-card: 1.5rem;
      --radius-btn: 100px;
    }

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

    /* Respect reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .ticker-track { animation: none; }
      .reveal { opacity: 1; transform: none; filter: none; }
    }

    body {
      font-family: var(--font-body);
      background: var(--bg-deep);
      color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

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

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

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* ══════════════════════════════════════
       NAVIGATION
       ══════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.125rem 2rem;
      transition: all 0.6s var(--ease-spring);
    }

    .nav.scrolled {
      background: rgba(5,8,16,0.88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--gold-border);
    }

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

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.25rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--white-muted);
      letter-spacing: 0.02em;
      transition: color 0.4s var(--ease-spring);
    }

    .nav-links a:hover { color: var(--gold); }
    .nav-links a.btn-gold { color: var(--bg-deep); }
    .nav-links a.btn-gold:hover { color: var(--bg-deep); }

    /* CTA Buttons */
    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.75rem 1.75rem;
      background: var(--gold-gradient);
      background-size: 200% 200%;
      color: var(--bg-deep);
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      border-radius: var(--radius-btn);
      border: none;
      cursor: pointer;
      transition: all 0.5s var(--ease-spring);
      box-shadow: 0 4px 24px rgba(201,168,76,0.18);
      text-decoration: none;
    }

    .btn-gold:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 36px rgba(201,168,76,0.32);
      background-position: 100% 50%;
    }

    .btn-gold:active { transform: scale(0.97); }

    .btn-gold .btn-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.625rem;
      height: 1.625rem;
      border-radius: 50%;
      background: rgba(5,8,16,0.12);
      font-size: 0.7rem;
      transition: transform 0.5s var(--ease-spring);
    }

    .btn-gold:hover .btn-arrow { transform: translate(2px, -1px) scale(1.08); }

    .btn-gold-lg {
      padding: 1rem 2.5rem;
      font-size: 0.95rem;
    }

    .btn-gold-xl {
      padding: 1.35rem 3.6rem;
      font-size: 1.05rem;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 101;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--white);
      transition: all 0.4s var(--ease-spring);
      transform-origin: center;
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99;
      background: rgba(5,8,16,0.96);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }

    .mobile-menu.active { display: flex; }

    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 500;
      color: var(--white);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s var(--ease-spring);
    }

    .mobile-menu.active a { opacity: 1; transform: translateY(0); }
    .mobile-menu.active a:nth-child(1) { transition-delay: 0.08s; }
    .mobile-menu.active a:nth-child(2) { transition-delay: 0.13s; }
    .mobile-menu.active a:nth-child(3) { transition-delay: 0.18s; }
    .mobile-menu.active a:nth-child(4) { transition-delay: 0.23s; }
    .mobile-menu.active a:nth-child(5) { transition-delay: 0.28s; }
    .mobile-menu.active a:nth-child(6) { transition-delay: 0.33s; }

    /* ══════════════════════════════════════
       SHARED ELEMENTS
       ══════════════════════════════════════ */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 1rem;
      border-radius: var(--radius-btn);
      border: 1px solid var(--gold-border);
      background: var(--gold-glow);
      font-size: 0.625rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .eyebrow .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    .section-head {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 3.25rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.08;
      margin-bottom: 1.25rem;
    }

    .section-head .gold { color: var(--gold); }

    .section-sub {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: var(--white);
      opacity: 0.85;
      line-height: 1.7;
      max-width: 620px;
      font-weight: 400;
    }

    .section-pad { padding: 7rem 0; }
    .section-pad-lg { padding: 8rem 0; }

    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold-border) 50%, transparent 100%);
    }

    /* Glass card */
    .glass-card-outer {
      background: rgba(201,168,76,0.03);
      border: 1px solid var(--gold-border);
      border-radius: calc(var(--radius-card) + 0.375rem);
      padding: 0.375rem;
      transition: all 0.6s var(--ease-spring);
    }

    .glass-card-outer:hover {
      border-color: rgba(201,168,76,0.22);
      box-shadow: 0 8px 40px rgba(201,168,76,0.06);
    }

    .glass-card {
      background: var(--bg-card);
      border-radius: var(--radius-card);
      padding: 2.25rem;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
      height: 100%;
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      filter: blur(5px);
      transition: all 0.85s var(--ease-spring);
      animation: revealFallback 0s 1.5s forwards;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
      animation: none;
    }

    /* Fallback: if JS observer never fires, content appears after 1.5s */
    @keyframes revealFallback {
      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    .rd1 { transition-delay: 0.08s; animation-delay: 1.5s; }
    .rd2 { transition-delay: 0.16s; animation-delay: 1.6s; }
    .rd3 { transition-delay: 0.24s; animation-delay: 1.7s; }
    .rd4 { transition-delay: 0.32s; animation-delay: 1.8s; }
    .rd5 { transition-delay: 0.4s; animation-delay: 1.9s; }
    .rd6 { transition-delay: 0.48s; animation-delay: 2.0s; }

    /* ══════════════════════════════════════
       1. HERO
       ══════════════════════════════════════ */
    .hero {
      position: relative;
      z-index: 0;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 5rem;
      overflow: hidden;
    }

    #hero-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    #hero-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Dark navy-to-black gradient overlay for text readability */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        /* Strong center darken — heavy where text sits, transparent at edges so network nodes show */
        radial-gradient(ellipse 55% 50% at 50% 48%, rgba(5,8,16,0.75) 0%, rgba(5,8,16,0.5) 45%, rgba(5,8,16,0.15) 75%, transparent 100%),
        /* Bottom edge — strong fade to page bg */
        linear-gradient(to top, var(--bg-deep) 0%, rgba(5,8,16,0.9) 8%, rgba(5,8,16,0.35) 28%, transparent 50%),
        /* Top edge */
        linear-gradient(to bottom, var(--bg-deep) 0%, rgba(5,8,16,0.65) 5%, transparent 22%),
        /* Left edge */
        linear-gradient(to right, var(--bg-deep) 0%, rgba(10,15,30,0.7) 4%, transparent 18%),
        /* Right edge */
        linear-gradient(to left, var(--bg-deep) 0%, rgba(10,15,30,0.7) 4%, transparent 18%);
      pointer-events: none;
    }

    .hero-glow {
      position: absolute;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 820px;
      padding: 3rem 2.5rem;
      background: radial-gradient(ellipse at 50% 45%, rgba(5,8,16,0.55) 0%, rgba(5,8,16,0.35) 40%, transparent 70%);
      border-radius: 2rem;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 6vw, 5rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1.05;
      margin-bottom: 1.75rem;
    }

    .hero h1 .gold { color: var(--gold); }

    .hero-sub {
      font-size: 1.375rem;
      line-height: 1.7;
      color: var(--white);
      opacity: 0.8;
      max-width: 640px;
      margin: 0 auto 2.5rem;
      font-weight: 400;
    }

    .hero-note {
      margin-top: 1rem;
      font-size: 0.775rem;
      color: var(--white-muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500;
    }

    /* ══════════════════════════════════════
       WE WORK WITH BAR
       ══════════════════════════════════════ */
    .work-with {
      background: rgba(10,15,30,0.6);
      border-top: 1px solid rgba(201,168,76,0.08);
      border-bottom: 1px solid rgba(201,168,76,0.08);
      padding: 2.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }

    .work-with-item {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 500;
      color: #ffffff;
      letter-spacing: 0.08em;
      white-space: nowrap;
      padding: 0.375rem 0;
    }

    .work-with-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.6;
      margin: 0 1.5rem;
      flex-shrink: 0;
    }

    /* ══════════════════════════════════════
       2. SOCIAL PROOF TICKER
       ══════════════════════════════════════ */
    .ticker-section {
      background: var(--bg-navy);
      border-top: 1px solid var(--gold-border);
      border-bottom: 1px solid var(--gold-border);
      overflow: hidden;
      position: relative;
      padding: 1rem 0;
    }

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

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

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
      padding: 0 2.5rem;
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.01em;
    }

    .ticker-item .sep {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.4;
      flex-shrink: 0;
    }

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

    /* ══════════════════════════════════════
       3. PROBLEM SECTION
       ══════════════════════════════════════ */
    .problem-section { background: var(--bg-deep); }
    .problem-section > .container { text-align: center; }
    .problem-section .problem-grid { text-align: left; }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .problem-card .glass-card h3 {
      font-family: var(--font-display);
      font-size: 1.375rem;
      font-weight: 600;
      margin-bottom: 0.875rem;
      letter-spacing: -0.01em;
      color: var(--white);
    }

    .problem-card .glass-card p {
      font-size: 1rem;
      color: var(--white);
      opacity: 0.8;
      line-height: 1.7;
      font-weight: 400;
    }

    .problem-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.875rem;
      background: rgba(201,168,76,0.08);
      border: 1px solid var(--gold-border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.25rem;
    }

    /* ══════════════════════════════════════
       4. SOLUTION SECTION
       ══════════════════════════════════════ */
    .solution-section { background: var(--bg-navy); }

    .solution-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .solution-header .section-sub {
      margin: 0 auto;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .solution-card .glass-card-outer {
      position: relative;
      overflow: hidden;
    }

    /* Gold gradient top border */
    .solution-card .glass-card-outer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
      z-index: 1;
    }

    .solution-card .glass-card-outer:hover {
      border-color: rgba(201,168,76,0.28);
      box-shadow: 0 8px 48px rgba(201,168,76,0.1);
    }

    .solution-card .glass-card {
      text-align: center;
      padding: 3rem;
    }

    .solution-icon {
      width: 4.5rem;
      height: 4.5rem;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, rgba(13,19,38,0.95), var(--bg-card));
      border: 1px solid rgba(201,168,76,0.15);
      box-shadow: 0 0 24px rgba(201,168,76,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
    }

    .solution-icon svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .solution-card h3 {
      font-family: var(--font-display);
      font-size: 1.375rem;
      font-weight: 600;
      margin-bottom: 1.125rem;
      letter-spacing: -0.01em;
    }

    .solution-card p {
      font-size: 1rem;
      color: var(--white);
      opacity: 0.8;
      line-height: 1.7;
      font-weight: 400;
    }

    /* ══════════════════════════════════════
       5. HOW IT WORKS
       ══════════════════════════════════════ */
    .how-section { background: var(--bg-deep); }

    .how-header { text-align: center; margin-bottom: 3.5rem; }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .step-card-outer {
      background: rgba(201,168,76,0.03);
      border: 1px solid var(--gold-border);
      border-radius: calc(var(--radius-card) + 0.375rem);
      padding: 0.375rem;
      transition: all 0.6s var(--ease-spring);
    }

    .step-card-outer:hover {
      border-color: rgba(201,168,76,0.22);
      box-shadow: 0 8px 40px rgba(201,168,76,0.06);
    }

    .step-card {
      background: var(--bg-card);
      border-radius: var(--radius-card);
      padding: 2.5rem 2rem;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
      height: 100%;
    }

    .step-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 1.25rem;
      opacity: 0.6;
      transition: opacity 0.4s var(--ease-spring);
    }

    .step-card:hover .step-num { opacity: 1; }

    .step-card h3 {
      font-family: var(--font-display);
      font-size: 1.375rem;
      font-weight: 600;
      margin-bottom: 0.875rem;
      letter-spacing: -0.01em;
      color: var(--white);
    }

    .step-card p {
      font-size: 1rem;
      color: var(--white);
      opacity: 0.8;
      line-height: 1.7;
      font-weight: 400;
    }

    /* ══════════════════════════════════════
       6. CASE STUDIES
       ══════════════════════════════════════ */
    .cases-section { background: var(--bg-navy); }

    .cases-header { text-align: center; margin-bottom: 3.5rem; }
    .cases-header .section-sub { margin: 0 auto; }

    .cases-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .case-card .glass-card {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .case-top {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .case-avatar {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      flex-shrink: 0;
      border: 2px solid rgba(201,168,76,0.6);
      object-fit: cover;
    }

    .case-name {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.125rem;
    }

    .case-badge {
      display: inline-flex;
      padding: 0.3rem 0.75rem;
      border-radius: var(--radius-btn);
      background: var(--gold-dim);
      border: 1px solid var(--gold-border);
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.02em;
      margin-top: 0.25rem;
    }

    .case-industry {
      display: inline-flex;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-btn);
      background: rgba(240,236,228,0.05);
      border: 1px solid rgba(240,236,228,0.1);
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--white-muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 0.35rem;
    }

    .case-quote {
      font-size: 1rem;
      color: var(--white);
      opacity: 0.8;
      line-height: 1.7;
      font-weight: 400;
      font-style: italic;
    }

    .case-stat {
      background: #0d1425;
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 12px;
      padding: 1.75rem 1.5rem;
      text-align: center;
      box-shadow: inset 0 0 30px rgba(201,168,76,0.04), 0 0 20px rgba(201,168,76,0.06);
    }

    .case-stat-number {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 700;
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    .case-stat-label {
      font-family: var(--font-body);
      font-size: 0.875rem;
      color: var(--white);
      opacity: 0.55;
      font-weight: 400;
      letter-spacing: 0.03em;
    }

    .case-study-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-display);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--gold);
      transition: all 0.4s var(--ease-spring);
    }

    .case-study-link:hover { gap: 0.75rem; }

    .case-result-line {
      font-size: 0.95rem;
      color: var(--white);
      opacity: 0.7;
      margin-bottom: 1rem;
      font-weight: 400;
    }

    /* ══════════════════════════════════════
       7. WHAT'S INCLUDED
       ══════════════════════════════════════ */
    /* ═══ COMPARISON TABLE ═══ */
    .compare-section { background: var(--bg-navy); content-visibility: auto; contain-intrinsic-size: auto 800px; }
    .compare-header { text-align: center; margin-bottom: 3.5rem; }
    .compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .compare-table {
      width: 100%; min-width: 700px; border-collapse: collapse;
    }
    .compare-table thead th {
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
      letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
      padding: 1.75rem 1.5rem 1.5rem; text-align: center;
      border-bottom: 1px solid var(--gold-border); vertical-align: bottom;
    }
    .compare-table thead th:first-child { text-align: left; font-size: 1.1rem; letter-spacing: 0.04em; }
    .compare-table thead th.col-us {
      color: var(--gold); background: rgba(201,168,76,0.06);
      border-top: 3px solid var(--gold); border-radius: 0;
      position: relative;
    }
    .compare-table tbody td {
      padding: 1.25rem 1.5rem; font-size: 1.2rem; color: var(--white); opacity: 0.85;
      border-bottom: 1px solid rgba(201,168,76,0.06); text-align: center; line-height: 1.6;
    }
    .compare-table tbody td:first-child { text-align: left; font-weight: 600; opacity: 1; font-size: 1.2rem; }
    .compare-table tbody td.col-us { background: rgba(201,168,76,0.04); }
    .compare-table .cmp-check { color: #34c759; font-weight: 700; font-size: 1.1rem; }
    .compare-table .cmp-cross { color: rgba(240,236,228,0.2); font-size: 1.1rem; }
    .compare-table .cmp-partial { color: var(--white-muted); font-size: 0.85rem; font-style: italic; }
    .compare-table .cmp-yes { color: var(--white-muted); font-size: 0.85rem; }
    .compare-table .cmp-no { color: #34c759; font-weight: 700; font-size: 0.95rem; }
    .compare-table .kill-row td {
      border-top: 1px solid var(--gold-border); padding-top: 1.1rem; padding-bottom: 1.1rem;
      background: rgba(201,168,76,0.05); font-weight: 600;
    }
    .compare-table .kill-row td:first-child { font-weight: 800; color: var(--white); font-size: 1.1rem; }
    .compare-table .kill-row td.col-us { background: rgba(201,168,76,0.09); }

    /* ═══ PRICING CARDS ═══ */
    .pricing-section { background: var(--bg-deep); content-visibility: auto; contain-intrinsic-size: auto 600px; }
    .pricing-header { text-align: center; margin-bottom: 3.5rem; }
    .pricing-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    }
    .pricing-card .glass-card-outer { position: relative; overflow: hidden; }
    .pricing-card .glass-card-outer::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); z-index: 1;
    }
    .pricing-card .glass-card-outer::after {
      content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.04), transparent);
      z-index: 1; pointer-events: none; transition: none;
    }
    .pricing-card .glass-card-outer:hover::after { animation: shimmer-sweep 0.8s ease-out forwards; }
    .pricing-card .glass-card-outer:hover { border-color: rgba(201,168,76,0.25); box-shadow: 0 8px 48px rgba(201,168,76,0.08); }
    .pricing-card .glass-card { padding: 3rem; }
    .pricing-card .glass-card h3 {
      font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
      margin-bottom: 2rem; letter-spacing: -0.01em; color: var(--white);
    }
    .pricing-list {
      list-style: none; display: flex; flex-direction: column; gap: 0.875rem;
    }
    .pricing-list li {
      display: flex; align-items: flex-start; gap: 0.75rem;
      font-size: 1rem; color: var(--white); opacity: 0.8; line-height: 1.7; font-weight: 400;
    }
    .pricing-list li .check {
      flex-shrink: 0; width: 1.25rem; height: 1.25rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: rgba(52,199,89,0.12); margin-top: 0.25rem;
    }
    .pricing-list li .check svg { width: 0.65rem; height: 0.65rem; stroke: #34c759; stroke-width: 2.5; fill: none; }
    .pricing-cta {
      display: flex; justify-content: center; margin-top: 2.5rem;
    }
    .pricing-card-desc {
      font-size: 0.95rem; color: var(--white-muted); line-height: 1.6; margin-bottom: 2rem;
    }
    .pricing-card .glass-card h3 { margin-bottom: 0.75rem; }
    .pricing-card .glass-card-outer { display: flex; }
    .pricing-card .glass-card { display: flex; flex-direction: column; flex: 1; }
    .pricing-list { flex: 1; }

    /* ══════════════════════════════════════
       9. FAQ
       ══════════════════════════════════════ */
    .faq-section { background: var(--bg-deep); content-visibility: auto; contain-intrinsic-size: auto 500px; }

    .faq-header { text-align: center; margin-bottom: 3.5rem; }

    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid rgba(201,168,76,0.08);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 1.125rem;
      font-weight: 600;
      text-align: left;
      padding: 1.5rem 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: color 0.3s var(--ease-spring);
    }

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

    .faq-icon {
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background: var(--gold-dim);
      border: 1px solid var(--gold-border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.4s var(--ease-spring);
    }

    .faq-icon svg {
      width: 0.75rem;
      height: 0.75rem;
      stroke: var(--gold);
      stroke-width: 2;
      fill: none;
      transition: transform 0.4s var(--ease-spring);
    }

    .faq-item.active .faq-icon { background: var(--gold); }
    .faq-item.active .faq-icon svg { stroke: var(--bg-deep); transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s var(--ease-spring), padding 0.5s var(--ease-spring);
    }

    .faq-answer-inner {
      padding-bottom: 1.5rem;
      font-size: 1rem;
      color: var(--white);
      opacity: 0.8;
      line-height: 1.7;
      font-weight: 400;
    }

    /* ══════════════════════════════════════
       10. FINAL CTA
       ══════════════════════════════════════ */
    .final-cta {
      position: relative;
      text-align: center;
      padding: 6rem 2rem;
      overflow: hidden;
      background: var(--bg-navy);
    }

    /* Gold radial glow behind headline */
    .final-cta-glow {
      position: absolute;
      top: 42%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(201,168,76,0.09) 0%, rgba(201,168,76,0.03) 45%, transparent 70%);
      pointer-events: none;
    }

    .final-cta-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .final-cta h2 {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 5.5vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.08;
      margin-bottom: 1.25rem;
    }

    .final-cta h2 .gold { color: var(--gold); }

    /* Pulsing glow on CTA button */
    .btn-gold-pulse {
      animation: btn-pulse-glow 2.5s ease-in-out infinite;
    }

    @keyframes btn-pulse-glow {
      0%, 100% { box-shadow: 0 4px 24px rgba(201,168,76,0.2); }
      50% { box-shadow: 0 6px 40px rgba(201,168,76,0.4), 0 0 60px rgba(201,168,76,0.12); }
    }

    /* ══════════════════════════════════════
       EMAIL COMPARISON
       ══════════════════════════════════════ */
    .email-compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2.5rem;
    }

    .pill-badge {
      display: inline-flex;
      padding: 0.4rem 1rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }
    .pill-badge-red {
      background: rgba(255,59,48,0.1);
      color: #ff6b6b;
      border: 1px solid rgba(255,59,48,0.2);
    }
    .pill-badge-gold {
      background: var(--gold-dim);
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.25);
    }

    .email-mockup {
      background: rgba(5,8,16,0.5);
      border: 1px solid rgba(240,236,228,0.06);
      border-radius: 12px;
      padding: 1.75rem;
      font-size: 0.9rem;
      line-height: 1.7;
    }
    .email-mockup-header {
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(240,236,228,0.06);
    }
    .email-mockup-line {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 0.25rem;
    }
    .email-mockup-label {
      color: var(--white-muted);
      font-size: 0.8rem;
      min-width: 60px;
    }
    .email-mockup-value {
      color: var(--white);
      font-size: 0.8rem;
    }
    .email-mockup-body {
      color: rgba(240,236,228,0.6);
    }
    .email-mockup-body p {
      margin-bottom: 0.75rem;
    }
    .email-mockup-body p:last-child {
      margin-bottom: 0;
    }

    .email-stat {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 800;
      text-align: center;
      margin-top: 1.5rem;
    }
    .email-stat-red {
      color: #ff6b6b;
    }
    .email-stat-gold {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .comparison-verdict {
      color: var(--white-muted);
      font-size: 1.05rem;
      margin-top: 2.5rem;
      text-align: center;
      font-style: italic;
    }

    @media (max-width: 768px) {
      .email-compare-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .email-mockup { padding: 1.25rem; font-size: 0.85rem; }
    }

    /* ══════════════════════════════════════
       BLOG GRID
       ══════════════════════════════════════ */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .blog-grid .glass-card-outer {
      position: relative;
      overflow: hidden;
      display: flex;
    }
    .blog-grid .glass-card-outer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
      z-index: 1;
    }
    .blog-grid .glass-card-outer::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.04), transparent);
      z-index: 1;
      pointer-events: none;
      transition: none;
    }
    .blog-grid .glass-card-outer:hover::after {
      animation: shimmer-sweep 0.8s ease-out forwards;
    }
    .blog-grid .glass-card-outer:hover {
      border-color: rgba(201,168,76,0.25);
      box-shadow: 0 8px 48px rgba(201,168,76,0.08);
    }
    .blog-grid .glass-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      flex: 1;
    }
    .blog-card-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }
    .blog-card-desc {
      font-size: 0.9rem;
      color: var(--white-dim);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 1.25rem;
    }
    .blog-card-link {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: color 0.3s;
    }
    .blog-grid .glass-card-outer:hover .blog-card-link {
      color: var(--gold-light);
    }
    @media (max-width: 768px) {
      .blog-grid { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════════
       EXIT INTENT POPUP
       ══════════════════════════════════════ */
    .exit-overlay {
      position: fixed;
      inset: 0;
      z-index: 9998;
      background: rgba(5,8,16,0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s var(--ease-spring);
    }
    .exit-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .exit-modal {
      background: var(--bg-card);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: var(--radius-card);
      padding: 3rem;
      max-width: 480px;
      width: 90%;
      text-align: center;
      position: relative;
      transform: translateY(20px) scale(0.97);
      transition: transform 0.4s var(--ease-spring);
    }
    .exit-overlay.active .exit-modal {
      transform: translateY(0) scale(1);
    }
    .exit-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 32px;
      height: 32px;
      border: none;
      background: none;
      color: var(--white-muted);
      cursor: pointer;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s;
    }
    .exit-close:hover { color: var(--white); }
    .exit-modal h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .exit-modal p {
      font-size: 1rem;
      color: var(--white-dim);
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    /* ══════════════════════════════════════
       NAV DROPDOWN
       ══════════════════════════════════════ */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      cursor: pointer;
    }
    .nav-dropdown-trigger svg {
      width: 10px;
      height: 10px;
      fill: currentColor;
      transition: transform 0.2s;
    }
    .nav-dropdown:hover .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }
    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(5,8,16,0.95);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 12px;
      padding: 0.75rem 0;
      min-width: 220px;
      margin-top: 0.75rem;
      box-shadow: 0 12px 48px rgba(0,0,0,0.4);
      z-index: 100;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      display: block;
    }
    .nav-dropdown-menu a {
      display: block;
      padding: 0.5rem 1.25rem;
      font-size: 0.8rem;
      color: rgba(240,236,228,0.55);
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
    }
    .nav-dropdown-menu a:hover {
      color: var(--gold);
      background: rgba(201,168,76,0.05);
    }

    /* ══════════════════════════════════════
       FOOTER EMAIL SIGNUP
       ══════════════════════════════════════ */
    .footer-signup {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .footer-signup h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.25rem;
    }
    .footer-signup p {
      font-size: 0.8rem;
      color: rgba(240,236,228,0.55);
    }
    .footer-signup-form {
      display: flex;
      gap: 0.5rem;
    }
    .footer-signup-form input {
      padding: 0.6rem 1.25rem;
      border-radius: 100px;
      border: 1px solid rgba(201,168,76,0.15);
      background: var(--bg-deep);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.85rem;
      outline: none;
      min-width: 260px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .footer-signup-form input:focus {
      border-color: rgba(201,168,76,0.4);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
    }
    .footer-signup-form input::placeholder {
      color: rgba(240,236,228,0.3);
    }
    .footer-signup-success {
      font-size: 0.85rem;
      color: var(--gold);
      font-weight: 500;
    }
    .footer-signup-error {
      font-size: 0.85rem;
      color: #e07c5a;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .footer-signup { flex-direction: column; text-align: center; gap: 1rem; }
      .footer-signup-form { flex-direction: column; width: 100%; }
      .footer-signup-form input { min-width: auto; width: 100%; }
      .footer-signup-form .btn-gold { width: 100%; justify-content: center; }
    }

    .final-cta .section-sub {
      margin: 0 auto 2.75rem;
    }

    .final-note {
      margin-top: 1.25rem;
      font-size: 0.775rem;
      color: var(--white-muted);
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    /* ══════════════════════════════════════
       11. FOOTER
       ══════════════════════════════════════ */
    .footer {
      background: var(--bg-deep);
      border-top: 1px solid var(--gold-border);
      padding: 4rem 2rem 2rem;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr 1fr;
      gap: 1.75rem;
      margin-bottom: 2.5rem;
    }

    .footer-brand .footer-logo {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
    }

    .footer-brand .footer-logo span { color: var(--gold); }

    .footer-tagline {
      font-size: 0.8rem;
      color: rgba(240,236,228,0.55);
      margin-top: 0.4rem;
      line-height: 1.5;
    }

    .footer-trust {
      font-size: 0.75rem;
      color: var(--gold);
      margin-top: 0.75rem;
      font-weight: 500;
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.25rem;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(201,168,76,0.15);
      color: var(--white-muted);
      transition: color 0.3s, border-color 0.3s, background 0.3s;
    }

    .footer-social a:hover {
      color: var(--gold);
      border-color: rgba(201,168,76,0.4);
      background: rgba(201,168,76,0.05);
    }

    .footer-col-head {
      font-family: var(--font-display);
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col li {
      margin-bottom: 0.6rem;
    }

    .footer-col a {
      font-size: 0.8rem;
      color: rgba(240,236,228,0.55);
      text-decoration: none;
      transition: color 0.3s;
    }

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

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(201,168,76,0.08);
      font-size: 0.7rem;
      color: rgba(240,236,228,0.45);
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-bottom-links a {
      color: rgba(240,236,228,0.55);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-bottom-links a:hover { color: var(--gold); }

    /* Email capture pills */
    .cap-pill {
      padding: 0.4rem 1rem; border-radius: 100px; border: 1px solid rgba(201,168,76,0.12);
      background: rgba(201,168,76,0.08); color: rgba(240,236,228,0.5);
      font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
      cursor: pointer; transition: all 0.3s ease;
    }
    .cap-pill:hover { border-color: rgba(201,168,76,0.3); color: var(--gold); }
    .cap-pill.active { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); color: var(--gold); }

    /* ── Multi-step Survey Form ── */
    .survey-card {
      background: var(--bg-card);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: var(--radius-card);
      padding: 0;
      overflow: hidden;
      position: relative;
    }
    .survey-progress {
      height: 3px;
      background: rgba(201,168,76,0.08);
      width: 100%;
    }
    .survey-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transition: width 0.4s ease;
      border-radius: 0 2px 2px 0;
    }
    .survey-viewport {
      overflow: hidden;
      position: relative;
    }
    .survey-track {
      display: flex;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .survey-step {
      min-width: 100%;
      padding: 3rem 2.5rem 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }
    .survey-counter {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(201,168,76,0.5);
      margin-bottom: 0.75rem;
      font-family: var(--font-body);
    }
    .survey-question {
      font-family: var(--font-head);
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 1.75rem;
      line-height: 1.3;
    }
    .survey-input {
      width: 100%;
      padding: 1rem 1.5rem;
      border-radius: var(--radius-btn);
      border: 1px solid rgba(201,168,76,0.12);
      background: var(--bg-deep);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
      box-sizing: border-box;
      display: block;
    }
    .survey-input:focus {
      border-color: rgba(201,168,76,0.4);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
    }
    .survey-input::placeholder { color: rgba(240,236,228,0.3); }
    .survey-hint {
      font-size: 0.75rem;
      color: rgba(240,236,228,0.4);
      margin-top: 0.6rem;
    }
    .survey-next {
      margin-top: 1.75rem;
      min-width: 160px;
    }
    .survey-back {
      position: absolute;
      top: 1.25rem;
      left: 1.5rem;
      background: none;
      border: none;
      color: rgba(240,236,228,0.4);
      font-size: 0.85rem;
      cursor: pointer;
      font-family: var(--font-body);
      transition: color 0.2s;
      padding: 0.25rem 0.5rem;
    }
    .survey-back:hover { color: var(--gold); }
    .survey-pills {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      max-width: 380px;
      width: 100%;
    }
    .survey-pill {
      padding: 1.1rem 1.5rem;
      border-radius: 12px;
      border: 1px solid rgba(201,168,76,0.12);
      background: rgba(201,168,76,0.04);
      color: rgba(240,236,228,0.6);
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .survey-pill:hover {
      border-color: rgba(201,168,76,0.35);
      color: var(--gold);
      background: rgba(201,168,76,0.08);
      transform: translateY(-1px);
    }
    .survey-pill.active {
      background: rgba(201,168,76,0.15);
      border-color: rgba(201,168,76,0.5);
      color: var(--gold);
    }
    .survey-error {
      font-size: 0.8rem;
      color: #e85555;
      text-align: center;
      padding: 0 2rem 1rem;
      display: none;
    }

    /* Loading spinner */
    .gen-loader-ring {
      width: 48px; height: 48px;
      border: 3px solid rgba(201,168,76,0.15);
      border-top-color: var(--gold);
      border-radius: 50%;
      margin: 0 auto;
      animation: genSpin 1s linear infinite;
    }
    @keyframes genSpin { to { transform: rotate(360deg); } }

    /* Email result cards */
    .gen-email-card {
      background: var(--bg-card);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: var(--radius-card);
      padding: 2rem;
      margin-bottom: 1rem;
      text-align: left;
    }
    .gen-email-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.3rem 0.8rem;
      border-radius: 100px;
      margin-bottom: 1.25rem;
      font-family: var(--font-body);
    }
    .gen-email-body p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--white-muted);
      margin: 0 0 0.75rem 0;
      font-family: var(--font-body);
    }
    .gen-email-body p:last-child { margin-bottom: 0; }


    /* ══════════════════════════════════════
       RESPONSIVE
       ══════════════════════════════════════ */

    /* ── Tablet (1024px) ── */
    @media (max-width: 1024px) {
      .problem-grid,
      .solution-grid,
      .steps-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
      .cases-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
      .compare-header { margin-bottom: 2.5rem; }
      .compare-scroll { margin: 0 -1.25rem; padding: 0 1.25rem; }
    }

    /* ── Mobile (768px) ── */
    /* Sticky mobile CTA */
    .sticky-cta {
      display: none; position: fixed; bottom: 0; left: 0; right: 0;
      z-index: 98; padding: 0.75rem 1.25rem;
      background: rgba(5,8,16,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-top: 1px solid var(--gold-border);
      transform: translateY(100%); transition: transform 0.4s var(--ease-spring);
    }
    .sticky-cta.visible { transform: translateY(0); }

    @media (max-width: 768px) {
      .sticky-cta { display: block; }
      #calc-results-grid { grid-template-columns: repeat(2, 1fr) !important; }
      .zz-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
      .zz-grid .tl-card { align-self: auto !important; }
      .zz-path-svg { display: none; }
      /* Nav */
      .nav { padding: 0.875rem 1.25rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-logo { font-size: 1rem; }

      /* Container & section spacing */
      .container { padding: 0 1.25rem; }
      .section-pad { padding: 3.5rem 0; }
      .section-pad-lg { padding: 4.5rem 0; }

      /* Hero */
      .hero {
        padding: 6.5rem 1.25rem 3.5rem;
        min-height: calc(100dvh - 0px);
      }
      .hero h1 { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 1.25rem; }
      .hero-sub { font-size: 1.19rem; line-height: 1.7; margin-bottom: 2rem; }
      .hero-content { padding: 2rem 1.5rem; }
      .hero-note { font-size: 0.7rem; }
      .hero-glow { width: 400px; height: 400px; }
      /* Stronger overlay on mobile for text readability over video */
      .hero-overlay {
        background:
          radial-gradient(ellipse 60% 55% at 50% 48%, rgba(5,8,16,0.82) 0%, rgba(5,8,16,0.55) 50%, rgba(5,8,16,0.2) 80%, transparent 100%),
          linear-gradient(to top, var(--bg-deep) 0%, rgba(5,8,16,0.95) 10%, rgba(5,8,16,0.45) 35%, transparent 55%),
          linear-gradient(to bottom, var(--bg-deep) 0%, rgba(5,8,16,0.8) 8%, transparent 30%),
          linear-gradient(to right, var(--bg-deep) 0%, rgba(10,15,30,0.8) 5%, transparent 22%),
          linear-gradient(to left, var(--bg-deep) 0%, rgba(10,15,30,0.8) 5%, transparent 22%);
      }

      /* Shared typography */
      .section-head { font-size: clamp(1.75rem, 7vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
      .section-sub { font-size: 1.05rem; line-height: 1.65; }
      .eyebrow { font-size: 0.575rem; padding: 0.3rem 0.75rem; margin-bottom: 1rem; }

      /* CTA buttons — full width on mobile, 48px min touch target */
      .btn-gold {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        min-height: 48px;
      }
      .btn-gold-lg,
      .btn-gold-xl {
        padding: 0.95rem 1.75rem;
        font-size: 0.925rem;
      }

      /* Glass cards — tighter padding */
      .glass-card { padding: 1.5rem; }
      .glass-card-outer { padding: 0.25rem; }

      /* We Work With */
      .work-with { padding: 1.75rem 1.25rem; }
      .work-with-item { font-size: 1rem; letter-spacing: 0.06em; }
      .work-with-dot { margin: 0 0.75rem; width: 4px; height: 4px; }

      /* Ticker */
      .ticker-item { font-size: 0.875rem; padding: 0 1.5rem; }

      /* Problem cards */
      .problem-grid { margin-top: 2.5rem; gap: 1rem; }
      .problem-card .glass-card h3 { font-size: 1.25rem; }
      .problem-card .glass-card p { font-size: 1rem; }
      .problem-icon { width: 2.5rem; height: 2.5rem; margin-bottom: 1rem; }

      /* Solution cards */
      .solution-header { margin-bottom: 2.5rem; }
      .solution-grid { gap: 1rem; }
      .solution-card .glass-card { padding: 2.5rem 1.5rem; }
      .solution-card h3 { font-size: 1.25rem; }
      .solution-card p { font-size: 1rem; }
      .solution-icon { width: 3.75rem; height: 3.75rem; margin-bottom: 1.5rem; }

      /* How It Works — stacked on mobile */
      .how-header { margin-bottom: 2rem; }
      .steps-grid { gap: 1rem; }
      .step-card { padding: 2rem 1.5rem; }
      .step-num { font-size: 2.75rem; margin-bottom: 0.875rem; }
      .step-card h3 { font-size: 1.25rem; }
      .step-card p { font-size: 1rem; line-height: 1.7; }

      /* Case studies */
      .cases-header { margin-bottom: 2.5rem; }
      .cases-grid { gap: 1rem; }
      .case-avatar { width: 2.75rem; height: 2.75rem; }
      .case-name { font-size: 1rem; }
      .case-badge { font-size: 0.75rem; padding: 0.25rem 0.625rem; }
      .case-quote { font-size: 1rem; }

      /* Pricing */
      .pricing-header { margin-bottom: 2.5rem; }
      .pricing-card .glass-card { padding: 2rem 1.5rem; }
      .pricing-card .glass-card h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
      .pricing-list { gap: 0.75rem; }
      .pricing-list li { font-size: 1rem; gap: 0.625rem; }
      .pricing-list li .check { width: 1.125rem; height: 1.125rem; }
      .pricing-cta .btn-gold { width: 100%; justify-content: center; min-height: 48px; }

      /* FAQ — bigger touch targets */
      .faq-header { margin-bottom: 2.5rem; }
      .faq-question {
        font-size: 1rem;
        padding: 1.25rem 0.75rem;
        min-height: 48px;
      }
      .faq-answer-inner { font-size: 1rem; padding: 0 0.75rem 1.25rem; }

      /* Final CTA */
      .final-cta { padding: 3.5rem 1.25rem; }
      .final-cta h2 { font-size: clamp(2rem, 8vw, 2.75rem); font-weight: 800; }
      .final-cta-glow { width: 400px; height: 300px; }
      .final-cta .section-sub { margin-bottom: 2rem; }
      .final-note { font-size: 0.725rem; }
      .final-cta-glow { width: 500px; height: 500px; }

      /* Footer */
      .footer { padding: 2.5rem 1.25rem 1.5rem; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
      .footer-brand { grid-column: 1 / -1; text-align: center; margin-bottom: 0.5rem; }
      .footer-social { justify-content: center; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

      /* Mobile menu refinements */
      .mobile-menu a { font-size: 1.5rem; }
      .mobile-menu .btn-gold { width: auto; max-width: 280px; }

      /* Comparison table — sticky Feature + Us columns */
      .compare-table { min-width: 580px; }
      .compare-table thead th { font-size: 0.75rem; padding: 1.1rem 0.75rem; }
      .compare-table tbody td { font-size: 0.9rem; padding: 0.85rem 0.75rem; }
      .compare-table tbody td:first-child { font-size: 0.9rem; }

      .compare-table thead th:first-child,
      .compare-table tbody td:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        background: var(--bg-card);
        box-shadow: 4px 0 8px rgba(0,0,0,0.3);
      }

      .compare-table thead th.col-us {
        position: sticky;
        right: 0;
        z-index: 2;
        background: #161e30;
        box-shadow: -4px 0 8px rgba(0,0,0,0.3);
      }
      .compare-table tbody td.col-us {
        position: sticky;
        right: 0;
        z-index: 2;
        background: #111a2e;
        box-shadow: -4px 0 8px rgba(0,0,0,0.3);
      }

      .compare-table .kill-row td:first-child {
        background: #171f2f;
      }
      .compare-table .kill-row td.col-us {
        background: #1a2234;
      }
    }

    /* ── Small phones (390px and below) ── */
    @media (max-width: 420px) {
      .hero {
        padding: 6rem 1rem 3rem;
      }
      .hero h1 { font-size: 2rem; letter-spacing: -0.03em; }
      .hero-sub { font-size: 1.125rem; }
      .hero-content { padding: 1.75rem 1.25rem; }

      .container { padding: 0 1rem; }

      .section-head { font-size: 1.625rem; font-weight: 800; }
      .section-sub { font-size: 1rem; }

      .btn-gold { font-size: 0.875rem; padding: 0.85rem 1.25rem; }

      .glass-card { padding: 1.25rem; }

      .ticker-item { font-size: 0.8rem; padding: 0 1.25rem; }

      .step-num { font-size: 2.5rem; }

      .faq-question { font-size: 0.875rem; gap: 0.75rem; }
      .faq-icon { width: 1.5rem; height: 1.5rem; }
      .faq-icon svg { width: 0.625rem; height: 0.625rem; }

      .footer-top { grid-template-columns: 1fr; text-align: center; }
      .footer-col ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem 1rem; }
    }
  /* ── Section wrapper ── */
  .sia-section {
    width: 100%;
    max-width: 1600px;
  }

  /* ── Section header ── */
  .sia-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .sia-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid var(--gold-border);
    background: var(--gold-glow);
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .eyebrow-line {
    display: none;
  }

  .sia-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
  }

  .sia-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 1.25rem;
  }

  .sia-title em {
    font-style: normal;
    color: var(--gold);
  }

  .sia-sub {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
  }

  /* ── Tab nav ── */
  .sia-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid #1e2d45;
    border-radius: 12px;
    padding: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .sia-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4a5a78;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.18s ease;
    white-space: nowrap;
  }

  .sia-tab:hover {
    color: #9aaac4;
    background: rgba(255,255,255,0.04);
  }

  .sia-tab.active {
    background: #111c2e;
    color: #e8edf8;
    border: 1px solid #1e2d45;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }

  .tab-icon {
    font-size: 14px;
    line-height: 1;
  }

  /* ── Browser frame ── */
  .browser-frame {
    background: #0a0f1e;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.06);
  }

  .browser-chrome {
    background: #080e1a;
    border-bottom: 1px solid #1e2d45;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .b-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
  }

  .b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  .b-dot-r { background: #ff5f57; }
  .b-dot-y { background: #febc2e; }
  .b-dot-g { background: #28c840; }

  .b-urlbar {
    flex: 1;
    background: #0e1628;
    border: 1px solid #1e2d45;
    border-radius: 6px;
    padding: 5px 12px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #4a5a78;
    text-align: center;
  }

  .b-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }

  .b-action-btn {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: #111c2e;
    border: 1px solid #1e2d45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #4a5a78;
    cursor: pointer;
  }

  /* ── Panel content ── */
  .panel {
    display: none;
  }

  .panel.active {
    display: block;
  }

  /* iframe wrapper */
  .iframe-wrap {
    width: 100%;
    height: 860px;
    overflow: hidden;
    position: relative;
  }

  .iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* ── Email & LinkedIn panels (inline, no iframe) ── */
  .inline-panel {
    padding: 36px;
    max-height: 860px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #1e2d45 transparent;
  }

  .inline-panel::-webkit-scrollbar { width: 4px; }
  .inline-panel::-webkit-scrollbar-track { background: transparent; }
  .inline-panel::-webkit-scrollbar-thumb { background: #1e2d45; border-radius: 2px; }

  /* Email cards inside panel */
  .email-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .email-card {
    background: #0d1326;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  .email-card:hover {
    box-shadow: 0 0 20px rgba(201,168,76,0.08);
  }

  .email-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0a0f1e;
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }

  .email-lead {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    flex-shrink: 0;
  }

  .av-b { background: #0e2040; color: #7ab4fc; }
  .av-g { background: #1a1508; color: #c9a84c; }
  .av-p { background: #1a1040; color: #9a84fc; }
  .av-o { background: #201408; color: #f5a030; }

  .lead-name { font-size: 17px; font-weight: 500; color: #e8edf8; font-family: 'DM Sans', sans-serif; }
  .lead-co { font-size: 11px; color: #4a5a78; font-family: 'DM Sans', sans-serif; margin-top: 1px; }

  .angle-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
  }

  .at-pain   { background: rgba(201,168,76,0.1); color: #c9a84c; border: 1px solid rgba(201,168,76,0.2); }
  .at-result { background: rgba(201,168,76,0.1); color: #c9a84c; border: 1px solid rgba(201,168,76,0.2); }
  .at-curio  { background: rgba(201,168,76,0.1); color: #c9a84c; border: 1px solid rgba(201,168,76,0.2); }
  .at-follow { background: rgba(201,168,76,0.1); color: #c9a84c; border: 1px solid rgba(201,168,76,0.2); }

  .email-body-inner {
    padding: 24px 28px 24px;
  }

  .subj-label { font-family: 'DM Mono', monospace; font-size: 9px; color: #4a5a78; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
  .subj-val { font-size: 19px; font-weight: 500; color: #e8edf8; font-family: 'DM Sans', sans-serif; margin-bottom: 16px; }

  .e-divider { height: 1px; background: rgba(201,168,76,0.12); margin-bottom: 14px; }

  .email-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1.75;
    color: #7a8aa4;
    white-space: pre-line;
  }

  .email-text .hl { color: #c9a84c; font-weight: 500; }

  .email-metrics {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(201,168,76,0.12);
  }

  .em-stat {
    flex: 1;
    padding: 14px 18px;
    border-right: 1px solid rgba(201,168,76,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .em-stat:last-child { border-right: none; }

  .em-val {
    font-family: 'DM Mono', monospace;
    font-size: 26px;
    font-weight: 600;
    color: #c9a84c;
  }

  .em-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4a5a78;
    font-family: 'DM Sans', sans-serif;
  }

  /* LinkedIn panel */
  .li-threads {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .li-thread-card {
    background: #0d1326;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: box-shadow 0.3s ease;
  }
  .li-thread-card:hover {
    box-shadow: 0 0 20px rgba(201,168,76,0.08);
  }

  .li-thread-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }

  .li-chrome-mini {
    background: #0a0f1e;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 7px 12px;
    display: flex; align-items: center; gap: 8px;
  }

  .li-dot-row { display: flex; gap: 4px; }
  .li-dot { width: 7px; height: 7px; border-radius: 50%; }
  .li-dot-r { background: #ff5f57; }
  .li-dot-y { background: #febc2e; }
  .li-dot-g { background: #28c840; }

  .li-url-mini {
    flex: 1; background: #0d1525; border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px; padding: 3px 8px;
    font-family: 'DM Mono', monospace; font-size: 9px; color: #4a5a78;
  }

  .li-in-badge {
    background: #0a66c2; color: white; font-size: 9px; font-weight: 700;
    padding: 2px 5px; border-radius: 2px; font-family: 'DM Sans', sans-serif;
  }

  /* Channel strip */
  .li-channel-strip {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 7px 12px; border-bottom: 1px solid rgba(201,168,76,0.12);
  }
  .channel-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
  .cd-email { background: #c9a84c; }
  .cd-cold  { background: #f5c45a; }
  .channel-label { font-family: 'DM Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
  .cl-email { color: #c9a84c; }
  .cl-cold  { color: #f5c45a; }

  /* Contact header */
  .li-contact-header {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-bottom: 1px solid rgba(201,168,76,0.12);
  }
  .li-av {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500; flex-shrink: 0;
  }
  .li-av-blue   { background: #0d2a4a; color: #5ab4f5; }
  .li-av-green  { background: #0a2015; color: #3ecf8e; }
  .li-av-purple { background: #1a1508; color: #d4b65c; }
  .li-av-teal   { background: #1a1508; color: #c9a84c; }
  .li-cname { font-size: 17px; font-weight: 500; color: #e8edf8; font-family: 'DM Sans', sans-serif; }
  .li-crole { font-size: 14px; color: #4a5a78; font-family: 'DM Sans', sans-serif; }
  .li-online { width: 7px; height: 7px; background: #28c840; border-radius: 50%; margin-left: auto; }

  /* Email context banner */
  .li-email-ctx {
    margin: 8px 12px 2px; padding: 7px 10px;
    background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15);
    border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: #c9a84c; font-weight: 500; text-align: center;
  }

  /* Messages */
  .li-msgs { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 10px; }

  .li-row-in  { display: flex; align-items: flex-start; gap: 6px; }
  .li-row-out { display: flex; align-items: flex-start; flex-direction: row-reverse; gap: 6px; }

  .li-jl {
    width: 26px; height: 26px; border-radius: 50%;
    background: url('data:image/png;base64,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') center/cover no-repeat;
    flex-shrink: 0; overflow: hidden;
  }
  .li-sm {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 500; flex-shrink: 0;
  }

  /* Photo avatars — lead profile pictures */
  .li-av-photo {
    width: 38px; height: 38px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .li-sm-photo {
    width: 26px; height: 26px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .li-bwrap     { display: flex; flex-direction: column; gap: 2px; max-width: 75%; }
  .li-bwrap-out { display: flex; flex-direction: column; gap: 2px; max-width: 75%; align-items: flex-end; }

  .li-b { padding: 10px 14px; border-radius: 9px; font-size: 17px; line-height: 1.65; font-family: 'DM Sans', sans-serif; }
  .li-b-in  { background: #141e30; color: #b0b8cc; border-bottom-left-radius: 2px; border: 1px solid rgba(201,168,76,0.1); }
  .li-b-out { background: rgba(201,168,76,0.06); color: #f0d080; border: 1px solid rgba(201,168,76,0.15); border-bottom-right-radius: 2px; }
  .li-b-link {
    padding: 6px 10px; border-radius: 8px; border-bottom-right-radius: 2px;
    font-family: 'DM Mono', monospace; font-size: 10px;
    background: #1a1508; border: 1px solid #2a2010; color: #c9a84c;
    display: inline-flex; align-items: center; gap: 5px;
  }

  .li-ts { font-family: 'DM Mono', monospace; font-size: 9px; color: rgba(201,168,76,0.3); }

  .li-day-divider { display: flex; align-items: center; gap: 6px; padding: 3px 0; }
  .li-day-line { flex: 1; height: 1px; background: rgba(201,168,76,0.12); }
  .li-day-label { font-family: 'DM Mono', monospace; font-size: 9px; color: rgba(201,168,76,0.3); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }

  .li-footer {
    display: flex; justify-content: flex-end;
    padding: 8px 12px; border-top: 1px solid rgba(201,168,76,0.12); background: #0a0f1e;
  }

  .li-footer.li-visible { opacity: 1 !important; }


  .li-tag {
    font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 5px 11px; border-radius: 100px; font-weight: 600;
  }
  .li-tag-gift { background: rgba(201,168,76,0.1); color: #f0d080; border: 1px solid rgba(201,168,76,0.2); }
  .li-tag-bkd  { background: rgba(201,168,76,0.15); color: #c9a84c; border: 1px solid rgba(201,168,76,0.25); }
  .li-tag-slow { background: rgba(201,168,76,0.08); color: #c9a84c; border: 1px solid rgba(201,168,76,0.15); }

  /* Sidebar */
  .li-sidebar {
    width: 140px; flex-shrink: 0;
    padding: 16px 14px; border-left: 1px solid rgba(201,168,76,0.12);
    background: #0a0f1e;
    display: flex; flex-direction: column; gap: 12px;
  }
  .li-side-stat { display: flex; flex-direction: column; gap: 3px; }
  .li-side-val  { font-family: 'DM Mono', monospace; font-size: 28px; font-weight: 600; color: #c9a84c; line-height: 1.1; }
  .li-side-lbl  { font-family: 'DM Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #6a7a98; }
  .li-side-div  { height: 1px; background: rgba(201,168,76,0.12); }
  .li-side-note { font-size: 14px; color: #8a9aae; line-height: 1.6; font-family: 'DM Sans', sans-serif; }

  /* Email context — fills remaining header space, starts center, goes right */
  .li-email-ctx {
    flex: 1;
    margin-left: 10px;
    padding: 7px 12px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #c9a84c;
    line-height: 1.5;
    text-align: center;
    font-weight: 500;
  }

  /* ── LinkedIn animation ── */

  /* Typing indicator inside thread */
  .li-typing-indicator {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: #141e30;
    border-radius: 9px;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(201,168,76,0.1);
    width: fit-content;
    margin-left: 32px;
  }
  .li-typing-indicator.active {
    display: inline-flex;
  }
  .li-typing-indicator span {
    width: 4px; height: 4px; border-radius: 50%;
    background: #4a5a78;
    animation: typingBounce 1.1s ease-in-out infinite;
  }
  .li-typing-indicator span:nth-child(2) { animation-delay: 0.18s; }
  .li-typing-indicator span:nth-child(3) { animation-delay: 0.36s; }

  /* ── Stats strip ── */
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .strip-stat {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .ss-val {
    font-family: 'DM Mono', monospace;
    font-size: 28px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    font-weight: 800;
  }

  .ss-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #4a5a78;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ── Email typing animation ── */
  .email-text-animated {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.85;
    color: #7a8aa4;
    white-space: pre-line;
    min-height: 120px;
  }

  .email-text-animated .hl { color: #c9a84c; font-weight: 500; }

  .typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    height: 20px;
  }

  .typing-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4a5a78;
    animation: typingBounce 1.1s ease-in-out infinite;
  }

  .typing-dots span:nth-child(2) { animation-delay: 0.18s; }
  .typing-dots span:nth-child(3) { animation-delay: 0.36s; }

  @keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
  }

  .email-cursor {
    display: inline-block;
    width: 1.5px;
    height: 13px;
    background: #c9a84c;
    margin-left: 1px;
    vertical-align: text-bottom;
    animation: cursorBlink 0.7s ease-in-out infinite;
  }

  @keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }


  /* ── Reply preview strip ── */
  .reply-preview {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px 12px;
    border-top: 1px solid rgba(201,168,76,0.12);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .reply-preview.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reply-av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .reply-body {
    flex: 1;
    min-width: 0;
  }

  .reply-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
  }

  .reply-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6a7a98;
  }

  .reply-time {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: rgba(201,168,76,0.3);
  }

  .reply-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(201,168,76,0.3);
  }

  .reply-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: #4a5a78;
    font-weight: 400;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .reply-badge {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .rb-booked  { background: rgba(201,168,76,0.15); color: #f0d080; border: 1px solid rgba(201,168,76,0.3); }
  .rb-replied { background: rgba(201,168,76,0.1); color: #c9a84c; border: 1px solid rgba(201,168,76,0.2); }
  .rb-gift    { background: rgba(201,168,76,0.1); color: #f0d080; border: 1px solid rgba(201,168,76,0.2); }


  /* ── AI Research reveal — Before/After ── */
  .email-body-inner {
    position: relative;
  }

  .research-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    cursor: pointer;
    user-select: none;
    padding: 5px 10px 5px 8px;
    border-radius: 6px;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.05);
    transition: background 0.2s, border-color 0.2s;
  }

  .research-trigger:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.4);
  }

  .research-trigger.open {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.5);
  }

  .research-trigger-label {
    font-family: 'DM Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9a84c;
    transition: opacity 0.2s;
    opacity: 0.85;
  }

  .research-trigger:hover .research-trigger-label { opacity: 1; }
  .research-trigger.open .research-trigger-label { opacity: 1; }

  .research-trigger-icon {
    font-size: 12px;
    color: #c9a84c;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.2s;
    line-height: 1;
  }

  .research-trigger:hover .research-trigger-icon { opacity: 1; }
  .research-trigger.open .research-trigger-icon { transform: rotate(180deg); opacity: 1; }

  /* The expandable before/after panel */
  .research-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    opacity: 0;
  }

  .research-panel.open {
    max-height: 480px;
    opacity: 1;
  }

  .research-panel-inner {
    margin-top: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.12);
  }

  /* Signal source header row */
  .rp-head {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    background: #0a0f1e;
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }

  .rp-head-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9a84c;
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
  }

  @keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .rp-head-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a84c;
  }

  .rp-source-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #6a7a98;
    background: #0a0f1e;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px;
    padding: 3px 8px;
  }

  .rp-source-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c8f542;
    flex-shrink: 0;
  }

  /* Signal quote — the raw intel */
  .rp-signal-row {
    padding: 10px 14px;
    background: #080e1a;
    border-bottom: 1px solid #111c2e;
  }

  .rp-signal-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #8a9aae;
    font-weight: 400;
    line-height: 1.65;
    font-style: italic;
    border-left: 2px solid rgba(201,168,76,0.2);
    padding-left: 10px;
    margin-bottom: 8px;
  }

  .rp-signal-quote strong {
    color: #c8f542;
    font-style: normal;
    font-weight: 500;
  }

  .rp-angle-line {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #3a4a65;
    letter-spacing: 0.06em;
  }

  /* Before / After split */
  .rp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .rp-col {
    padding: 13px 16px 15px;
  }

  .rp-col-before {
    background: #0a0f1a;
    border-right: 1px solid #111c2e;
  }

  .rp-col-after {
    background: #080e18;
  }

  .rp-col-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .rp-col-before .rp-col-label { color: #3a4a65; }
  .rp-col-after  .rp-col-label { color: #6a9a40; }

  .rp-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .rp-col-before .rp-label-dot { background: rgba(201,168,76,0.2); }
  .rp-col-after  .rp-label-dot { background: #c8f542; }

  .rp-col-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
  }

  .rp-col-before .rp-col-text { color: #5a6a85; }
  .rp-col-after  .rp-col-text { color: #b0bcc8; }

  .rp-col-text .rp-hl {
    color: #c8f542;
    font-weight: 500;
    background: rgba(200,245,66,0.07);
    border-radius: 3px;
    padding: 0 2px;
  }


  /* ── Sequence view ── */
  .seq-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 5px 11px;
    border-radius: 6px;
    border: 1px solid rgba(201,168,76,0.2);
    background: #0a0f1e;
    transition: background 0.2s, border-color 0.2s;
    margin-left: auto;
    margin-right: 10px;
  }

  .seq-toggle:hover { background: rgba(201,168,76,0.08); border-color: #c9a84c; }
  .seq-toggle.active { background: rgba(201,168,76,0.1); border-color: #c9a84c; }

  .seq-toggle-icon {
    font-size: 12px;
    color: #8a9ab8;
  }

  .seq-toggle.active .seq-toggle-icon { color: #c9a84c; }

  .seq-toggle-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a9ab8;
    font-weight: 500;
    transition: color 0.2s;
  }

  .seq-toggle.active .seq-toggle-label { color: #c9a84c; }
  .seq-toggle:hover .seq-toggle-label  { color: #c0c8dc; }

  /* The sequence panel itself */
  .sequence-view {
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .sequence-view.open { display: flex; }

  .seq-step {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid #111c2e;
    position: relative;
  }

  .seq-step:last-child { border-bottom: none; }

  /* Left step indicator column */
  .seq-step-indicator {
    width: 52px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0 14px;
    gap: 0;
  }

  .seq-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    flex-shrink: 0;
    z-index: 1;
  }

  .sn-pain    { background: rgba(201,168,76,0.15); color: #c9a84c; border: 1px solid rgba(201,168,76,0.25); }
  .sn-result  { background: rgba(201,168,76,0.1); color: #c9a84c; border: 1px solid rgba(201,168,76,0.2); }
  .sn-curio   { background: rgba(201,168,76,0.1); color: #c9a84c; border: 1px solid rgba(201,168,76,0.2); }

  .seq-step-line {
    width: 1px;
    flex: 1;
    background: rgba(201,168,76,0.12);
    margin-top: 4px;
  }

  .seq-step:last-child .seq-step-line { display: none; }

  /* Step content */
  .seq-step-content {
    flex: 1;
    padding: 14px 16px 14px 0;
    min-width: 0;
  }

  .seq-step-angle {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .sa-pain   { color: #f57a7a; }
  .sa-result { color: #c9a84c; }
  .sa-curio  { color: #7a8af5; }

  .seq-step-subj {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #e8edf8;
    margin-bottom: 6px;
  }

  .seq-step-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #7a8aa4;
    font-weight: 300;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .seq-step-body .hl { color: #c9a84c; font-weight: 500; }

  .seq-step-delay {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 7px;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: #3a4a65;
  }

  /* ── Sent timestamp strip ── */
  .email-timestamp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-top: 1px solid #0d1525;
    background: #0b1220;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .email-timestamp.visible { opacity: 1; }

  .ts-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2a3a55;
    flex-shrink: 0;
  }

  .ts-text {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: #2a3a55;
    letter-spacing: 0.06em;
  }

  .ts-text .ts-sent  { color: #3a4a65; }
  .ts-text .ts-reply { color: #c9a84c; }

  /* ── Lead Magnets panel ── */

  /* Panel layout */
  #panel-leadmagnets.active {
    display: flex;
    flex-direction: column;
    height: 680px;
  }

  /* Selector strip */
  .lm-selector-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #080e1a;
    border-bottom: 1px solid #1e2d45;
    flex-shrink: 0;
  }

  .lm-selector-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4a5a78;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .lm-pills {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .lm-pills::-webkit-scrollbar { display: none; }

  .lm-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #4a5a78;
    background: transparent;
    border: 1px solid #1e2d45;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s ease;
  }

  .lm-pill:hover {
    color: #9aaac4;
    border-color: #2e3d55;
    background: rgba(255,255,255,0.03);
  }

  .lm-pill-active {
    background: #111c2e;
    color: #e8edf8;
    border-color: #1e2d45;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }

  /* Panes container */
  .lm-panes-container {
    flex: 1;
    min-height: 0;
    position: relative;
  }

  .lm-gift-pane {
    height: 100%;
  }

  /* Column */
  .lm-col {
    height: 100%;
    min-height: 0;
  }

  /* Label bar */
  .lm-label-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 16px;
    background: #080e1a;
    border-bottom: 1px solid #1e2d45;
    flex-shrink: 0;
  }

  .lm-label-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .lm-label-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #e8edf8;
  }

  .lm-label-type {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c9a84c;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 2px 8px;
    border-radius: 100px;
  }

  .lm-label-right {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: #4a5a78;
    letter-spacing: 0.04em;
    text-align: right;
  }

  /* Build overlay */
  .lm-build-overlay {
    position: absolute;
    inset: 0;
    background: #0b1120;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .lm-build-overlay.active {
    opacity: 1;
    pointer-events: all;
    position: relative;
    flex: 1;
  }

  .lm-build-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
  }

  .lm-build-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: #4a5a78;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }

  .lm-build-step.visible { opacity: 1; transform: translateY(0); }
  .lm-build-step.done { color: #c9a84c; }
  .lm-build-step.active { color: #e8edf8; }

  .lm-step-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #1e2d45;
    flex-shrink: 0;
    transition: background 0.3s;
  }

  .lm-build-step.done .lm-step-dot { background: #c9a84c; }
  .lm-build-step.active .lm-step-dot {
    background: #c9a84c;
    box-shadow: 0 0 6px rgba(201,168,76,0.5);
    animation: stepPulse 0.8s ease-in-out infinite;
  }

  @keyframes stepPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .lm-build-bar-wrap {
    width: 220px;
    height: 2px;
    background: #1e2d45;
    border-radius: 1px;
    overflow: hidden;
  }

  .lm-build-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c9a84c, #e8c97e);
    border-radius: 1px;
    transition: width 0.4s ease;
  }

  /* Content wrap */
  .lm-content-wrap {
    position: relative;
  }

  .lm-content-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* Placeholder state */
  .lm-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    padding: 32px 24px;
    text-align: center;
    background: #0b1120;
  }

  .lm-ph-icon {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .lm-ph-title {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c9a84c;
  }

  .lm-ph-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #4a5a78;
    line-height: 1.6;
    max-width: 260px;
  }

  .lm-ph-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
  }

  .lm-ph-for {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #2a3a55;
  }

  /* ── SIA: Hidden on desktop ── */
  .dash-mobile-fallback { display: none; }
  .lm-dots { display: none; }

  /* ── SIA Mobile ── */
  @media (max-width: 768px) {
    .sia-section { max-width: 100%; }

    .sia-header { margin-bottom: 32px; }

    .sia-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }

    .sia-sub { font-size: 1rem; max-width: 100%; }

    .sia-tabs {
      justify-content: flex-start;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      width: 100%;
    }
    .sia-tabs::-webkit-scrollbar { display: none; }
    .sia-tab { flex-shrink: 0; padding: 8px 14px; font-size: 12px; }

    .browser-frame { border-radius: 10px; }

    /* Dashboard: hide iframe, show stat cards */
    #panel-dashboard .iframe-wrap { display: none; }
    .dash-mobile-fallback {
      display: block;
      padding: 24px 16px;
    }
    .dash-mobile-sub {
      font-family: var(--font-body);
      font-size: 0.8rem;
      color: var(--white-muted);
      text-align: center;
      margin-bottom: 16px;
    }
    .dash-mobile-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .dash-mobile-card {
      background: var(--bg-card);
      border: 1px solid var(--gold-border);
      border-radius: 12px;
      padding: 18px 14px;
      text-align: center;
    }
    .dash-mobile-val {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }
    .dash-mobile-label {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--white-muted);
    }

    /* Panels: remove fixed heights */
    .inline-panel { padding: 16px; max-height: none; }

    .email-card .email-meta-bar { flex-wrap: wrap; gap: 8px; }
    .email-card .seq-toggle { display: none; }

    .li-thread-card { flex-direction: column; }
    .li-sidebar { width: 100%; border-left: none; border-top: 1px solid rgba(201,168,76,0.12); flex-direction: row; flex-wrap: wrap; gap: 8px; padding: 12px; }
    .li-sidebar .li-side-div { display: none; }
    .li-sidebar .li-side-stat { min-width: 80px; }
    .li-sidebar .li-side-note { width: 100%; }

    /* Bottom stats strip */
    .stats-strip {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    .strip-stat { padding: 14px 12px; }
    .ss-val { font-size: 22px; }

    /* Lead Magnets: hide on mobile */
    .sia-tab-lm { display: none !important; }
    #panel-leadmagnets { display: none !important; }

    /* Lead Magnets: horizontal swipe carousel (kept for reference) */
    #panel-leadmagnets.active { display: flex !important; flex-direction: column !important; height: auto !important; }
    .lm-gift-pane {
      display: flex !important;
      grid-template-columns: unset !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 0 !important;
    }
    .lm-gift-pane::-webkit-scrollbar { display: none; }
    .lm-gift-pane .lm-col {
      min-width: 100% !important;
      flex-shrink: 0 !important;
      scroll-snap-align: start;
      border-right: none !important;
      border-bottom: none !important;
    }
    .lm-content-wrap iframe { min-height: 480px; }
    .lm-label-bar { flex-direction: column; align-items: flex-start; gap: 4px; }
    .lm-label-left { flex-wrap: wrap; }
    .lm-selector-strip { flex-wrap: wrap; gap: 8px; }
    .lm-pills { flex-wrap: wrap; }
    /* Carousel dots */
    .lm-dots { display: flex; justify-content: center; gap: 8px; padding: 12px 0 4px; }
    .lm-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-border); transition: background 0.3s, transform 0.3s; }
    .lm-dot.active { background: var(--gold); transform: scale(1.25); }
  }

  @media (max-width: 420px) {
    .sia-title { font-size: 1.625rem; }
    .sia-sub { font-size: 0.9rem; }
    .sia-tab { padding: 7px 10px; font-size: 11px; }
    .inline-panel { max-height: none; }
    .ss-val { font-size: 20px; }
    .dash-mobile-val { font-size: 1.5rem; }
    .dash-mobile-card { padding: 14px 10px; }
    .lm-content-wrap iframe { min-height: 380px; }
  }

  .video-unmute-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.25);
    background: rgba(10,15,30,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    transition: background 0.2s, border-color 0.2s;
    z-index: 10;
  }
  .video-unmute-btn:hover {
    background: rgba(10,15,30,0.9);
    border-color: var(--gold);
  }

/* ── Video Testimonials (ready for Jordan's recordings) ── */
.video-testimonials {
  padding: 5rem 0;
}
.video-testimonials .section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.video-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.video-testimonial-card {
  background: var(--bg-card, #0d1326);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 1.5rem;
  overflow: hidden;
}
.video-testimonial-card .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-testimonial-card .video-wrap iframe,
.video-testimonial-card .video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-testimonial-card .video-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-testimonial-card .video-name {
  font-weight: 600;
  color: var(--white, #f0ece4);
  font-size: 1rem;
}
.video-testimonial-card .video-result {
  color: var(--gold, #c9a84c);
  font-weight: 700;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .video-testimonial-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

