    :root {
      --navy: #0A0A23;
      --navy-900: #0A0A23;
      --navy-800: #1a1a3e;
      --blue: #2563EB;
      --blue-600: #2563EB;
      --blue-100: #EFF6FF;
      --gold: #F59E0B;
      --gold-light: #FEF3C7;
      --ink: #000000;
      --muted: #4B5563;
      --line: #E5E7EB;
      --soft: #F3F4F6;
      --white: #ffffff;
      --success: #0A0A23;
      --danger: #d93b52;
      --shadow-sm: 0 4px 20px rgba(10, 10, 35, 0.08);
      --shadow-md: 0 12px 40px rgba(10, 10, 35, 0.12);
      --shadow-lg: 0 24px 60px rgba(10, 10, 35, 0.14);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --container: 1200px;
      --transition: 220ms ease;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; border: none; background: none; }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }

    /* ===================== NAVBAR ===================== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .nav-wrap {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--navy);
      letter-spacing: -0.02em;
    }
    .brand-logo span {
      color: var(--blue);
    }
    .primary-nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .primary-nav a {
      position: relative;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 600;
      transition: color var(--transition);
    }
    .primary-nav a:hover { color: var(--ink); }
    .primary-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -6px;
      height: 2px;
      background: var(--blue);
      transform: scaleX(0);
      transition: transform var(--transition);
      transform-origin: center;
    }
    .primary-nav a:hover::after,
    .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
    .primary-nav a[aria-current="page"] { color: var(--blue); }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--white);
      align-items: center;
      justify-content: center;
    }

    /* ===================== BUTTONS ===================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: -0.01em;
      transition: all var(--transition);
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.25); outline-offset: 3px; }
    .btn-primary {
      color: #ffffff;
      background: #2563eb;
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
      border: 1px solid transparent;
    }
    .btn-primary:hover {
      background: #1d4ed8;
      box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
    }
    .btn-light {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .btn-light:hover { 
      background: rgba(255, 255, 255, 0.15); 
      border-color: rgba(255, 255, 255, 0.3); 
      color: #ffffff; 
    }
    .btn-ghost {
      color: var(--blue);
      background: transparent;
      border: 1px solid rgba(37, 99, 235, 0.3);
    }
    .btn-ghost:hover { background: var(--blue-100); border-color: var(--blue); }
    .btn-arrow {
      width: 18px;
      height: 18px;
      transition: transform var(--transition);
    }
    .btn:hover .btn-arrow { transform: translateX(3px); }

    /* ===================== BADGE ===================== */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 20px;
      background: rgba(37, 99, 235, 0.12);
      border: 1px solid rgba(37, 99, 235, 0.3);
      color: var(--blue);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 24px;
      box-shadow: 0 2px 10px rgba(37, 99, 235, 0.08);
    }
    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
    }
    .hero .badge {
      background: rgba(96, 165, 250, 0.15);
      border-color: rgba(96, 165, 250, 0.3);
      color: #93c5fd;
    }

    /* ===================== SECTIONS ===================== */
    .section { padding: 100px 0; }
    .section-heading {
      max-width: 720px;
      margin-bottom: 56px;
    }
    .section-heading.center {
      margin-inline: auto;
      text-align: center;
    }
    .section-heading p {
      max-width: 600px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-top: 16px;
    }
    .section-heading.center p { margin-inline: auto; }

    /* ===================== TYPOGRAPHY ===================== */
    h1, h2, h3, h4 { margin-top: 0; line-height: 1.15; letter-spacing: -0.03em; color: var(--ink); }
    h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; margin-bottom: 24px; }
    .hero h1 { font-size: clamp(40px, 5vw + 20px, 60px); line-height: 1.1; margin-bottom: 24px; max-width: 580px; padding-right: 20px; }
    h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 20px; }
    h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; margin-bottom: 12px; }
    p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

    .highlight { color: var(--blue); }
    .highlight-gold { color: var(--gold); }

    /* ===================== HERO ===================== */
    .hero {
      position: relative;
      padding: 50px 0 40px;
      overflow: hidden;
      z-index: 0;
      background:
        radial-gradient(circle at 76% 14%, rgba(52, 99, 255, 0.26), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(111, 57, 255, 0.18), transparent 32%),
        linear-gradient(125deg, #050716 0%, #0a1026 53%, #090d20 100%);
    }

    .hero::before,
    .hero::after,
    .results-band::before,
    .results-band::after,
    .cta-shell::before,
    .cta-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    /* Visible more on right, low on left */
    .hero::before,
    .results-band::before,
    .cta-shell::before {
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
      mask-image: linear-gradient(to right, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
    }

    /* Brighter grid for hover effect */
    .hero::after,
    .results-band::after,
    .cta-shell::after {
      z-index: -1;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
      -webkit-mask-image: radial-gradient(350px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), black 0%, transparent 100%);
      mask-image: radial-gradient(350px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), black 0%, transparent 100%);
    }
    @keyframes aurora {
      0% { transform: translate3d(-3%, -1%, 0) rotate(-8deg) scale(1); }
      100% { transform: translate3d(4%, 2%, 0) rotate(7deg) scale(1.08); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero::before { animation: none; }
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      gap: 48px;
      position: relative;
      z-index: 1;
    }
    .hero-copy {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }
    .hero h1 {
      color: #ffffff;
      font-size: clamp(2.5rem, 4.5vw, 50px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.035em;
      margin-bottom: 24px;
    }
    .hero-lead {
      max-width: 560px;
      margin: 0 auto 32px;
      font-size: 16px;
      color: #94a3b8;
      line-height: 1.7;
    }
    .hero-lead-mobile {
      display:none;
    }
    .hero-title-mobile {
      display:none;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 32px;
    }
    .hero-points {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
      max-width: 100%;
    }
    .hero-points li {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #f1f5f9;
      font-size: 0.9rem;
      font-weight: 500;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 10px 16px 10px 12px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .hero-points li:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    .check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--blue);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 900;
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
      line-height: 1;
      padding-top: 1px;
    }

    /* ===================== HERO GLASS CARDS (NEW 3D) ===================== */
    :root {
      --cycle-duration: 15000ms;
      --slot-ease: cubic-bezier(.22, .78, .18, 1);
    }
    .scene-wrap {
      position: relative;
      width: 100%;
      min-height: 700px;
      display: grid;
      place-items: center;
      perspective: 1600px;
      z-index: 3;
    }

    .scene {
      position: relative;
      width: 100%;
      height: 680px;
      transform-style: preserve-3d;
      will-change: transform;
      transition: transform 0.16s ease-out;
    }

    /* Tall portrait cards. Their slot classes are changed by JavaScript. */
    .card {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 255px;
      height: 525px;
      overflow: hidden;
      color: var(--ink);
      border: 1px solid rgba(73, 132, 255, 0.32);
      border-radius: 27px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.57)),
        linear-gradient(135deg, rgba(88, 150, 255, 0.11), rgba(255, 255, 255, 0.04));
      box-shadow:
        0 36px 82px rgba(18, 35, 61, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(83, 139, 255, 0.06);
      backdrop-filter: blur(19px) saturate(1.15);
      -webkit-backdrop-filter: blur(19px) saturate(1.15);
      transform-style: preserve-3d;
      transform-origin: center;
      will-change: transform, filter, opacity;
      transition:
        transform 0.92s var(--slot-ease),
        filter 0.92s var(--slot-ease),
        opacity 0.92s var(--slot-ease),
        box-shadow 0.92s var(--slot-ease);
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      border-radius: inherit;
      pointer-events: none;
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.6), transparent 25% 70%, rgba(71, 130, 255, 0.09)),
        radial-gradient(circle at 88% 8%, rgba(79, 136, 255, 0.18), transparent 29%);
      mix-blend-mode: screen;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: 8px;
      z-index: 0;
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 19px;
      pointer-events: none;
    }

    .card.is-left {
      z-index: 3;
      opacity: 0.9;
      filter: saturate(0.88) brightness(0.97);
      transform: translate3d(-147%, -47%, -55px) rotateY(18deg) rotateZ(-8deg) scale(0.92);
    }

    .card.is-front {
      z-index: 6;
      opacity: 1;
      filter: saturate(1.08) brightness(1.02);
      transform: translate3d(-50%, -52%, 110px) rotateX(-1deg) scale(1.055);
      box-shadow:
        0 46px 100px rgba(18, 35, 61, 0.25),
        0 0 42px rgba(41, 109, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.32);
    }

    .card.is-right {
      z-index: 4;
      opacity: 0.93;
      filter: saturate(0.92) brightness(0.985);
      transform: translate3d(47%, -45%, -28px) rotateY(-18deg) rotateZ(8deg) scale(0.92);
    }

    .card-float {
      width: 100%;
      height: 100%;
      position: relative;
      animation: cardFloat 5.9s ease-in-out infinite;
      animation-delay: var(--float-delay, 0s);
      background: transparent;
      transition: background 0.6s var(--slot-ease);
    }

    .card.is-front .card-float {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 100%);
    }

    @keyframes cardFloat {
      0%, 100% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, -10px, 16px); }
    }

    .card-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      padding: 24px 22px 20px;
      transform: translateZ(31px);
      transition: transform 0.2s ease-out;
    }

    .card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
    }

    .number {
      color: #5380d8;
      font-size: 42px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.05em;
      text-shadow: 0 0 16px rgba(41, 109, 255, 0.22);
    }

    .signal {
      display: grid;
      gap: 5px;
      padding-top: 2px;
    }

    .signal span {
      display: block;
      width: 4px;
      height: 4px;
      border-radius: 20px;
      background: rgba(92, 107, 131, 0.34);
      transition: all 0.3s ease;
    }

    .card[data-card-index="0"] .signal span:nth-child(1),
    .card[data-card-index="1"] .signal span:nth-child(2),
    .card[data-card-index="2"] .signal span:nth-child(3) {
      height: 17px;
      background: var(--blue);
      box-shadow: 0 0 10px rgba(41, 109, 255, 0.65);
    }

    .icon-wrap {
      width: 91px;
      height: 91px;
      margin: 21px auto 15px;
      display: grid;
      place-items: center;
      color: var(--blue);
      filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.2));
    }

    .icon-wrap svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .card h3 {
      margin: 2px 0 10px;
      font-size: 25px;
      font-weight: 760;
      line-height: 1.02;
      letter-spacing: -0.043em;
      color: var(--ink);
    }

    .card p {
      margin: 0;
      color: #111827;
      font-size: 13.2px;
      line-height: 1.48;
    }

    .card-top, .icon-wrap, .card h3, .card p {
      transition: opacity 0.6s var(--slot-ease), transform 0.6s var(--slot-ease);
    }

    .card:not(.is-front) .card-top,
    .card:not(.is-front) .icon-wrap,
    .card:not(.is-front) h3,
    .card:not(.is-front) p {
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
    }

    .mini-panel {
      margin-top: auto;
      padding: 12px;
      border: 1px solid rgba(35, 85, 158, 0.14);
      border-radius: 15px;
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    .metric-row {
      display: grid;
      grid-template-columns: 54px 1fr auto;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      color: #425169;
      font-size: 10px;
    }

    .metric-copy {
      min-width: 0;
    }

    .metric-copy span,
    .metric-side span {
      display: block;
      margin-bottom: 2px;
      color: #546177;
      white-space: nowrap;
    }

    .metric-copy strong,
    .metric-side strong {
      display: block;
      color: var(--ink);
      font-size: 15px;
      line-height: 1.05;
    }

    .metric-side {
      text-align: right;
    }

    .round-motion {
      position: relative;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      filter: drop-shadow(0 0 12px rgba(41, 109, 255, 0.2));
    }

    .round-motion::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        repeating-conic-gradient(
          from 0deg,
          rgba(41, 109, 255, 0.82) 0deg 7deg,
          rgba(41, 109, 255, 0.12) 7deg 14deg
        );
      -webkit-mask: radial-gradient(circle, transparent 0 54%, #000 56% 100%);
      mask: radial-gradient(circle, transparent 0 54%, #000 56% 100%);
      animation: roundSpin var(--ring-speed, 7s) linear infinite;
    }

    .round-motion::after {
      content: "";
      position: absolute;
      inset: 9px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 32% 25%, #ffffff, rgba(255, 255, 255, 0.75) 40%, rgba(225, 235, 255, 0.92));
      border: 1px solid rgba(41, 109, 255, 0.13);
      box-shadow:
        inset 0 1px 0 #fff,
        0 0 13px rgba(41, 109, 255, 0.14);
    }

    .round-motion span {
      position: relative;
      z-index: 2;
      color: var(--blue);
      font-size: 18px;
      font-weight: 900;
      animation: symbolPulse 2.1s ease-in-out infinite;
    }

    @keyframes roundSpin {
      to { transform: rotate(360deg); }
    }

    @keyframes symbolPulse {
      50% {
        transform: scale(1.14);
        text-shadow: 0 0 12px rgba(41, 109, 255, 0.55);
      }
    }

    .chips {
      display: flex;
      justify-content: space-between;
      gap: 7px;
      margin-top: 9px;
      font-size: 9px;
    }

    .chip {
      flex: 1;
      min-width: 0;
      padding: 7px 5px;
      overflow: hidden;
      color: #304159;
      border: 1px solid rgba(42, 109, 255, 0.09);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.59);
      text-align: center;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .cycle-progress {
      position: absolute;
      z-index: 12;
      left: 24px;
      right: 24px;
      height: 4px;
      overflow: hidden;
      pointer-events: none;
      border-radius: 999px;
      opacity: 0;
      background: rgba(29, 70, 139, 0.12);
      transition: opacity 0.35s ease;
    }

    .cycle-progress i {
      display: block;
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #7aa5ff, #276cff 55%, #75c6ff);
      box-shadow: 0 0 13px rgba(39, 108, 255, 0.82);
    }

    .progress-top {
      top: 9px;
    }

    .progress-bottom {
      bottom: 9px;
      transform: rotate(180deg);
    }

    .card.is-front .cycle-progress {
      opacity: 1;
    }

    .scene-hint {
      position: absolute;
      left: 50%;
      bottom: -2px;
      z-index: 10;
      transform: translateX(-50%);
      color: rgba(25, 54, 95, 0.58);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    @media (max-width: 1210px) {
      .scene-wrap {
        min-height: 700px;
      }
    }

    /* ===================== TRUST STRIP ===================== */
    .trust-strip {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--soft);
      padding: 24px 0;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      display: flex;
    }
    .marquee-container {
      display: flex;
      width: max-content;
      animation: marquee 30s linear infinite;
    }
    .marquee-container:hover {
      animation-play-state: paused;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-track {
      display: flex;
      align-items: center;
      gap: 48px;
      padding-right: 48px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      color: var(--ink);
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .trust-item em {
      font-weight: 400;
      font-style: italic;
      text-transform: none;
      letter-spacing: 0;
      margin-right: 8px;
    }
    .trust-item::after {
      content: "";
      display: block;
      width: 6px;
      height: 6px;
      background: var(--blue);
      border-radius: 50%;
      margin-left: 48px;
    }

    /* ===================== AUDIENCE CARDS ===================== */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
    }
    .audience-card-wrapper {
      position: relative;
      transition: transform 300ms ease;
    }
    .audience-card-wrapper::before {
      content: "";
      position: absolute;
      top: 15px;
      right: -24px;
      bottom: -15px;
      left: 15px;
      border-radius: var(--radius-lg);
      z-index: -1;
      background: 
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 90% 50%, rgba(37, 99, 235, 0.25), transparent 70%), 
        linear-gradient(125deg, #050716 0%, #0a1026 53%, #090d20 100%);
      background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      transition: opacity 400ms ease, transform 300ms ease;
      opacity: 0;
    }
    .audience-card-wrapper:has(.audience-card:not(.active))::before {
      opacity: 1;
    }
    /* Hover effect for audience cards to match capability cards */
    .audience-card-wrapper:hover .audience-card {
      transform: translateY(-8px);
    }
    .audience-card {
      position: relative;
      overflow: hidden;
      padding: 48px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--white);
      transition: all 300ms ease;
      height: 100%;
    }
    .audience-card > * {
      position: relative;
      z-index: 1;
    }
    /* Base pseudo-elements for smooth background fading */
    .audience-card::before,
    .audience-card::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      transition: opacity 400ms ease;
    }
    
    /* Inactive Grid */
    .audience-card::before {
      background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 1;
    }
    
    /* Active Dark Background + Light Grid */
    .audience-card::after {
      background: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 88% 80%, rgba(111, 57, 255, 0.18), transparent 32%), 
        linear-gradient(125deg, #050716 0%, #0a1026 53%, #090d20 100%);
      background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
      opacity: 0;
    }

    /* Active State Toggles */
    .audience-card.active {
      border-color: #1f2937;
      color: #ffffff;
    }
    .audience-card.active::before {
      opacity: 0;
    }
    .audience-card.active::after {
      opacity: 1;
    }

    /* Removed .audience-card:hover effect */
    .audience-card.active > * {
      position: relative;
      z-index: 1;
    }
    .audience-card.active h3 {
      color: #ffffff;
    }
    .audience-card.active p,
    .audience-card.active .feature-list li {
      color: #94a3b8;
    }
    .audience-card:not(.active) .btn-ghost {
      background: #ffffff;
    }
    .audience-card:not(.active):hover .btn-ghost {
      background: var(--ink);
      color: #ffffff;
      border-color: var(--ink);
    }
    .audience-card.active .btn-ghost {
      color: #ffffff;
      background: #0f172a;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .audience-card.active:hover .btn-ghost {
      background: var(--blue);
      color: #ffffff;
      border-color: var(--blue);
    }

    .audience-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      margin-bottom: 28px;
      border-radius: var(--radius-md);
      background: #1f2937;
      color: #ffffff;
      transition: all 300ms ease;
    }
    .audience-card.active .audience-icon {
      background: var(--blue);
      color: #ffffff;
    }
    .audience-card:hover .audience-icon {
      transform: scale(1.05);
    }
    .audience-card h3 {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 14px;
      line-height: 1.3;
      transition: color 300ms ease;
    }
    .audience-card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 24px;
      transition: color 300ms ease;
    }
    .feature-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0 0 28px;
      list-style: none;
    }
    .feature-list li {
      display: flex;
      gap: 12px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 500;
      align-items: flex-start;
      transition: color 300ms ease;
    }
    .feature-list li .check {
      margin-top: 2px;
      transition: background 300ms ease, color 300ms ease;
    }
    .audience-card:not(.active) .check {
      background: #1f2937;
      color: #ffffff;
    }
    .audience-card.active .check {
      background: var(--blue);
      color: #ffffff;
    }

    /* ===================== PROCESS ===================== */
    .process-wrap {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 60px;
    }
    .process-wrap::before {
      content: "";
      position: absolute;
      top: 24px;
      left: 16%;
      right: 16%;
      height: 24px;
      background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' preserveAspectRatio='none' viewBox='0 0 100 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,12 Q25,24 50,12 T100,12' fill='none' stroke='%232563eb' stroke-width='1.5' stroke-dasharray='4 4' /%3E%3C/svg%3E") no-repeat center;
      background-size: 100% 100%;
      opacity: 0.5;
      z-index: 0;
    }


    .process-step {
      position: relative;
      text-align: center;
      padding: 0 16px;
    }
    .step-number {
      position: relative;
      z-index: 2;
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--navy);
      border: 6px solid var(--white);
      box-shadow: 0 0 0 1px var(--line), var(--shadow-sm);
      font-size: 1.35rem;
      font-weight: 700;
      transition: all 300ms ease;
    }
    .process-step:hover .step-number {
      transform: scale(1.1);
      background: var(--blue);
      box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
    }
    .process-step h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .process-step p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    /* ===================== OUTCOMES ===================== */
    .outcomes {
      background: var(--soft);
    }
    .outcomes-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 64px;
    }
    .outcome-visual {
      position: relative;
    }
    .outcome-visual::before {
      content: "";
      position: absolute;
      top: 15px;
      right: -24px;
      bottom: -15px;
      left: 15px;
      border-radius: var(--radius-xl);
      z-index: -1;
      background: 
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 90% 50%, rgba(37, 99, 235, 0.25), transparent 70%), 
        linear-gradient(125deg, #050716 0%, #0a1026 53%, #090d20 100%);
      background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .outcome-img-wrapper {
      position: relative;
      z-index: 1;
      transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .outcome-visual:hover .outcome-img-wrapper {
      transform: translateY(-8px);
    }
    .outcome-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .dashboard-panel {
      position: absolute;
      left: 40px;
      right: 40px;
      top: 56px;
      bottom: 56px;
      border-radius: var(--radius-lg);
      background: var(--white);
      box-shadow: 0 20px 40px rgba(0,0,0,.25);
      overflow: hidden;
    }
    .dashboard-top {
      height: 52px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 20px;
      border-bottom: 1px solid var(--line);
      background: var(--soft);
    }
    .mini-search {
      flex: 1;
      height: 28px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--white);
    }
    .mini-pill { width: 56px; height: 26px; border-radius: 6px; background: var(--soft); }
    .dashboard-body {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 16px;
      padding: 20px;
    }
    .dashboard-table {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .table-row {
      display: grid;
      grid-template-columns: 1.1fr .7fr .8fr;
      gap: 8px;
      align-items: center;
      min-height: 40px;
      padding: 0 12px;
      border-bottom: 1px solid var(--line);
      font-size: 0.62rem;
      color: var(--muted);
    }
    .table-row:last-child { border-bottom: 0; }
    .table-row.head { background: var(--soft); color: var(--ink); font-weight: 700; }
    .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); display: inline-block; margin-right: 4px; }
    .dashboard-side { display: grid; gap: 14px; }
    .chart-card, .metric-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 14px;
    }
    .donut {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 8px auto;
      background: conic-gradient(var(--blue) 0 68%, var(--line) 68% 100%);
      position: relative;
    }
    .donut::after {
      content: "68%";
      position: absolute;
      inset: 14px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--white);
      color: var(--ink);
      font-size: 0.72rem;
      font-weight: 800;
    }
    .metric-card strong { display: block; font-size: 1.4rem; color: var(--blue); }
    .metric-card span { color: var(--muted); font-size: 0.68rem; }
    /* Slide Left Animation */
    .reveal-slide-left {
      opacity: 0;
      transform: translateX(40px) scale(0.98);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-slide-left.visible {
      opacity: 1;
      transform: translateX(0) scale(1);
    }

    /* Removed unused single-line-desktop styles */

    /* Hotspot Tags Overlay */
    .hotspot-tag {
      position: absolute;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(4px);
      padding: 6px 14px;
      border-radius: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.6);
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-slide-left.visible .hotspot-tag {
      opacity: 1;
      transform: translateY(0);
    }
    .hotspot-tag.pill-right {
      left: 50%;
      margin-left: -19px;
    }
    .hotspot-tag.pill-left {
      right: 50%;
      margin-right: -19px;
      flex-direction: row-reverse;
    }
    .hotspot-tag.delay-1 { transition-delay: 0.6s; }
    .hotspot-tag.delay-2 { transition-delay: 0.8s; }
    .hotspot-tag.delay-3 { transition-delay: 1.0s; }
    .hotspot-tag.delay-4 { transition-delay: 1.2s; }
    .hotspot-tag.delay-5 { transition-delay: 1.4s; }

    .hotspot-tag span {
      font-size: 11px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.02em;
      white-space: nowrap;
    }
    .hotspot-dot {
      width: 10px;
      height: 10px;
      background: var(--blue);
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
      animation: hotspot-pulse 2s infinite;
      flex-shrink: 0;
    }

    @keyframes hotspot-pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); }
      70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
    }

    .outcome-copy .feature-list { margin: 24px 0; }
    .outcome-copy .feature-list strong { color: var(--ink); }

    /* ===================== CAPABILITIES ===================== */
    .capabilities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .capability-card-wrapper {
      position: relative;
      z-index: 1;
    }
    .capability-card-wrapper::before {
      content: "";
      position: absolute;
      top: 10px;
      right: -15px;
      bottom: -10px;
      left: 10px;
      border-radius: var(--radius-xl);
      z-index: -1;
      background: 
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 90% 50%, rgba(37, 99, 235, 0.25), transparent 70%), 
        linear-gradient(125deg, #050716 0%, #0a1026 53%, #090d20 100%);
      background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 1;
    }
    .capability-card {
      position: relative;
      overflow: hidden;
      padding: 32px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--white);
      transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
      height: 100%;
    }
    .capability-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
      background-size: 32px 32px;
    }
    .capability-card > * {
      position: relative;
      z-index: 1;
    }
    .capability-card-wrapper:hover .capability-card {
      transform: translateY(-8px);
      border-color: var(--blue);
    }
    /* Removed capability-card-wrapper:hover::before */
    .capability-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 24px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      background: #1e293b;
      color: #ffffff;
      border: none;
      transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .capability-card-wrapper:hover .capability-icon {
      color: #ffffff;
      background: var(--blue);
      transform: scale(1.05);
    }
    .capability-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .capability-card p {
      margin-bottom: 0;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ===================== RESULTS BAND ===================== */
    .results-band {
      position: relative;
      z-index: 0;
      overflow: hidden;
      padding: 80px 0;
      color: var(--white);
      background: var(--navy);
      background-image: 
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(10, 10, 35, 0.9) 0%, transparent 50%);
    }
    .results-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: center;
      gap: 56px;
    }
    .results-copy p { color: rgba(255,255,255,.7); }
    .results-copy h2 { color: var(--white); margin-bottom: 20px; }
    .results-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 28px 0 22px;
    }
    .results-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 24px;
      color: rgba(255,255,255,.8);
      font-size: 0.82rem;
      font-weight: 600;
    }
    .results-proof span { display: inline-flex; align-items: center; gap: 8px; }
    .results-proof .check {
      background: rgba(255,255,255,0.15);
      color: var(--white);
    }
    .results-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .result-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--white);
      transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .result-card.big-card {
      text-align: left;
      padding: 40px;
      z-index: 1;
    }
    .result-card.big-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
      background-size: 32px 32px;
    }
    .result-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    /* ===================== COMPARISON ===================== */
    .comparison-wrap {
      overflow-x: auto;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 300ms ease;
    }
    .comparison-wrap:hover {
      box-shadow: var(--shadow-md);
    }
    .comparison-table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
      background: var(--white);
    }
    .comparison-table th,
    .comparison-table td {
      padding: 18px 20px;
      text-align: left;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }
    .comparison-table th {
      color: var(--white);
      background: var(--navy);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }
    .comparison-table tr:last-child td { border-bottom: 0; }
    .comparison-table td:first-child {
      width: 28%;
      color: var(--ink);
      font-weight: 700;
      font-size: 0.9rem;
    }
    .comparison-table td:nth-child(2) { width: 36%; background: var(--soft); }
    .comparison-table td {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }
    .table-check { color: var(--navy); font-weight: 900; margin-right: 8px; }
    .table-minus { color: #9a6970; font-weight: 900; margin-right: 8px; }
    .comparison-table tbody tr {
      transition: background 200ms ease;
    }
    .comparison-table tbody tr:hover {
      background: var(--blue-100);
    }

    /* ===================== FAQ ===================== */
    .faq-layout {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 64px;
      align-items: start;
    }
    .faq-intro {
      position: sticky;
      top: 100px;
    }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-question {
      width: 100%;
      min-height: 72px;
      padding: 18px 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border: 0;
      background: transparent;
      color: var(--ink);
      text-align: left;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: color 200ms ease;
    }
    .faq-question:hover { color: var(--blue); }
    .faq-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--soft);
      color: var(--blue);
      font-size: 1.1rem;
      font-weight: 700;
      transition: all 260ms ease;
    }
    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 260ms ease;
    }
    .faq-answer > div { overflow: hidden; }
    .faq-answer p {
      padding: 0 48px 20px 4px;
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-100); }

    /* ===================== FINAL CTA ===================== */
    .final-cta { padding: 40px 0 100px; }
    .cta-shell {
      position: relative;
      z-index: 0;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 48px;
      padding: 56px 64px;
      border-radius: var(--radius-xl);
      color: var(--white);
      background: var(--navy);
      background-image: 
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(10, 10, 35, 0.9) 0%, transparent 50%);
      box-shadow: var(--shadow-lg);
      transition: transform 300ms ease, box-shadow 300ms ease;
    }
    .cta-shell:hover {
      transform: translateY(-4px);
      box-shadow: 0 32px 64px rgba(10, 10, 35, 0.2);
    }
    .cta-shell h2 {
      max-width: 700px;
      margin-bottom: 12px;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      color: var(--white);
    }

    /* Mobile hero: content only. Desktop hero remains unchanged. */
    @media (max-width: 760px) {
      .hero {
        min-height:0;
        padding:42px 0 48px !important;
      }
      .hero .hero-grid {
        grid-template-columns:minmax(0,1fr) !important;
        min-height:0;
        gap:0;
      }
      .hero .scene-wrap {
        display:none !important;
      }
      .hero .hero-copy {
        width:100%;
        max-width:none !important;
        margin:0 !important;
        text-align:left !important;
      }
      .hero .badge {
        margin-bottom:18px;
        padding:7px 12px;
        font-size:.68rem;
        line-height:1.35;
      }
      .hero h1 {
        max-width:none !important;
        margin-bottom:18px;
        font-size:clamp(2.15rem,10.5vw,2.85rem) !important;
        line-height:1.08;
        letter-spacing:-.035em;
        text-align:left !important;
      }
      .hero .hero-lead {
        max-width:none;
        margin:0 0 26px !important;
        font-size:.94rem;
        line-height:1.65;
      }
      .hero .hero-actions {
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
        margin:0;
      }
      .hero .hero-actions .btn {
        width:100%;
        min-height:50px;
        padding:12px 16px;
        font-size:.84rem;
      }
      .hero .hero-points {
        display:none !important;
      }
    }
    .cta-shell h2 .highlight { color:var(--blue); }
    .cta-shell p {
      max-width: 600px;
      margin-bottom: 0;
      color: rgba(255,255,255,.75);
      font-size: 1rem;
    }
    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .cta-shell .btn {
      position: relative;
      z-index: 2;
      justify-content: center;
      white-space: nowrap;
    }

    /* Match supporting Home actions to the wider hero button. */
    #faq .faq-intro .btn,
    .final-cta .cta-buttons .btn {
      width: 225px;
    }

    /* ===================== FOOTER ===================== */
    .site-footer {
      color: rgba(255,255,255,.7);
      background: var(--navy);
      padding: 64px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr repeat(3, .7fr);
      gap: 48px;
      padding-bottom: 40px;
    }
    .footer-brand p {
      max-width: 360px;
      margin: 20px 0 0;
      color: rgba(255,255,255,.55);
      font-size: 0.9rem;
      line-height: 1.7;
    }
    .footer-title {
      margin-bottom: 16px;
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .footer-links { display: grid; gap: 10px; }
    .footer-links a {
      color: rgba(255,255,255,.65);
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 200ms ease;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.1);
      font-size: 0.78rem;
      color: rgba(255,255,255,.5);
    }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a {
      color: rgba(255,255,255,.5);
      transition: color 200ms ease;
    }
    .footer-bottom-links a:hover { color: var(--white); }

    /* ===================== ANIMATIONS ===================== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 600ms ease, transform 600ms ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-delay-1 { transition-delay: 100ms; }
    .reveal-delay-2 { transition-delay: 200ms; }
    .reveal-delay-3 { transition-delay: 300ms; }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .primary-nav { gap: 20px; }
      .outcomes-grid { gap: 48px; }
      .results-grid { gap: 40px; }
      .faq-layout { gap: 40px; }
    }

    @media (max-width: 900px) {
      .nav-wrap { min-height: 68px; }
      .primary-nav,
      .nav-actions .btn { display: none; }
      .menu-toggle { display: inline-flex; }
      .primary-nav.open {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 16px 24px 24px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
      }
      .primary-nav.open a { padding: 14px 0; width: 100%; }
      .primary-nav a::after { display: none; }

      .hero { padding: 60px 0 48px; }
      .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }

      .audience-grid { grid-template-columns: 1fr; }
      .process-wrap { grid-template-columns: 1fr; gap: 40px; }
      .process-wrap::before { display: none; }
      .outcomes-grid { grid-template-columns: 1fr; }
      .outcome-copy { order: -1; }
      .capabilities-grid { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: 1fr; }
      .results-cards { grid-template-columns: 1fr; }
      .faq-layout { grid-template-columns: 1fr; }
      .faq-intro { position: static; }
      .cta-shell { grid-template-columns: 1fr; padding: 40px 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 32px), var(--container)); }
      .section { padding: 64px 0; }
      h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
      h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { width: 100%; }
      .hero-points { flex-direction: column; align-items: center; gap: 10px; }

      .audience-card { padding: 32px; }
      .capability-card { padding: 24px; }

      .outcome-visual { min-height: 380px; }
      .dashboard-panel { left: 20px; right: 20px; top: 40px; bottom: 40px; }
      .dashboard-body { grid-template-columns: 1fr; }
      .dashboard-side { display: none; }

      .results-actions { flex-direction: column; }
      .results-actions .btn { width: 100%; }

      .cta-shell { padding: 32px 24px; }
      .cta-shell .btn { width: 100%; }

      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* Final Home mobile polish — scoped so desktop remains unchanged. */
    @media (max-width: 760px) {
      html,
      body {
        width:100%;
        max-width:100%;
        overflow-x:hidden;
      }
      main,
      .hero,
      .section,
      .final-cta {
        width:100%;
        max-width:100%;
        overflow-x:clip;
      }
      .container,
      .hero .hero-grid,
      .section > .container,
      .final-cta > .container {
        width:100% !important;
        max-width:100% !important;
        margin-inline:0 !important;
        padding-inline:16px;
      }
      .hero-grid > *,
      .audience-grid > *,
      .process-wrap > *,
      .outcomes-grid > *,
      .capabilities-grid > *,
      .faq-layout > *,
      .cta-shell > * {
        min-width:0;
        max-width:100%;
      }

      .hero {
        padding:38px 0 44px !important;
      }
      .hero .hero-grid {
        width:100% !important;
        margin-inline:0 !important;
      }
      .hero .hero-copy {
        min-width:0;
      }
      .hero .badge {
        display:flex;
        width:max-content;
        max-width:100%;
        margin:0 auto 18px;
        padding:7px 12px;
        font-size:.67rem;
        line-height:1.35;
        font-weight:500;
        letter-spacing:.035em;
        text-align:center;
      }
      .hero h1 {
        max-width:23ch !important;
        margin:0 auto 16px !important;
        padding-right:0;
        font-size:clamp(1.72rem,7.5vw,2.08rem) !important;
        line-height:1.13;
        text-align:center !important;
        overflow-wrap:normal;
        word-break:normal;
      }
      .hero-title-desktop {
        display:none;
      }
      .hero-title-mobile {
        display:inline;
      }
      .hero .hero-lead {
        max-width:31rem;
        margin:0 auto 22px !important;
        font-size:.89rem;
        line-height:1.6;
        text-align:center;
      }
      .hero-lead-desktop {
        display:none;
      }
      .hero-lead-mobile {
        display:inline;
      }
      .hero .hero-actions {
        width:min(78%,300px);
        margin:0 auto;
      }
      .hero .hero-actions .btn {
        width:100%;
        min-height:46px;
        padding:11px 16px;
        font-size:.8rem;
        justify-content:center;
        white-space:normal;
        text-align:center;
      }

      .trust-strip {
        padding:17px 0;
      }
      .marquee-track {
        gap:28px;
        padding-right:28px;
      }
      .trust-item {
        font-size:.76rem;
        letter-spacing:.035em;
      }
      .trust-item::after {
        margin-left:28px;
      }

      .section-heading {
        margin-bottom:38px;
      }
      .section-heading h2 {
        font-size:clamp(1.85rem,8vw,2.25rem);
        line-height:1.12;
      }
      .section-heading p {
        font-size:.94rem;
        line-height:1.65;
      }
      .section-heading h2 br,
      .section-heading p br {
        display:none;
      }

      .audience-grid {
        gap:24px;
      }
      .audience-card-wrapper::before {
        display:none;
      }
      .audience-card {
        padding:26px;
      }
      .audience-card h3 {
        font-size:1.2rem;
      }
      .audience-card p,
      .feature-list li {
        font-size:.88rem;
      }
      .audience-card .btn {
        width:100%;
        justify-content:center;
        white-space:normal;
        text-align:center;
      }

      /* Keep every Home section proportionate to a phone viewport. */
      .section {
        padding:50px 0;
      }
      .section > .container,
      .final-cta > .container {
        width:100%;
      }
      .badge {
        max-width:100%;
        margin-bottom:18px;
        padding:7px 12px;
        font-size:.67rem;
        line-height:1.35;
      }
      .section-heading {
        margin-bottom:30px;
      }
      .section-heading h2,
      .outcome-copy h2,
      .faq-intro h2 {
        max-width:100%;
        font-size:clamp(1.72rem,7.5vw,2.08rem);
        line-height:1.13;
        overflow-wrap:break-word;
      }
      .section-heading p,
      .outcome-copy > p,
      .faq-intro > p {
        font-size:.89rem;
        line-height:1.6;
      }

      .audience-grid {
        gap:18px;
      }
      .audience-card {
        padding:22px;
        border-radius:18px;
      }
      .audience-icon {
        width:48px;
        height:48px;
        margin-bottom:18px;
      }
      .audience-icon svg {
        width:23px;
        height:23px;
      }
      .audience-card h3 {
        margin-bottom:9px;
        font-size:1.08rem;
        line-height:1.3;
      }
      .audience-card p {
        margin-bottom:18px;
        line-height:1.58;
      }
      .feature-list {
        gap:10px;
        margin:0 0 20px;
      }
      .feature-list li {
        line-height:1.48;
      }
      .feature-list li .check {
        width:19px;
        height:19px;
        font-size:.68rem;
      }
      .audience-card .btn {
        min-height:46px;
        padding:11px 14px;
        font-size:.8rem;
      }

      .process-wrap {
        gap:26px;
        margin-top:0;
      }
      .process-step {
        padding:0 8px;
      }
      .step-number {
        width:52px;
        height:52px;
        margin-bottom:15px;
        border-width:4px;
        font-size:1.05rem;
      }
      .process-step h3 {
        margin-bottom:7px;
        font-size:.98rem;
        line-height:1.3;
      }
      .process-step p {
        font-size:.86rem;
        line-height:1.58;
      }

      .outcomes-grid {
        gap:30px;
        min-width:0;
      }
      .outcome-copy .feature-list {
        margin:18px 0 0;
      }
      .outcome-visual {
        width:100%;
        max-width:100%;
        min-height:0;
        margin:0 0 12px;
      }
      .reveal-slide-left {
        transform:translateY(18px) scale(.99);
      }
      .reveal-slide-left.visible {
        transform:translateY(0) scale(1);
      }
      .outcome-visual::before {
        top:9px;
        right:0;
        bottom:-10px;
        left:8px;
        border-radius:18px;
        background-size:24px 24px,24px 24px,100% 100%,100% 100%;
        box-shadow:0 12px 26px rgba(0,0,0,.24);
      }
      .outcome-img {
        max-width:100%;
        aspect-ratio:1.24 / 1;
        object-fit:cover;
        border-radius:18px;
      }
      .hotspot-tag {
        gap:5px;
        padding:5px 9px;
        box-shadow:0 5px 12px rgba(0,0,0,.12);
      }
      .hotspot-tag span {
        font-size:.58rem;
        letter-spacing:0;
      }
      .hotspot-dot {
        width:7px;
        height:7px;
      }
      .hotspot-tag.pill-right {
        margin-left:-12px;
      }
      .hotspot-tag.pill-left {
        margin-right:-12px;
      }

      .capabilities-grid {
        gap:18px;
      }
      .capability-card-wrapper {
        margin-right:7px;
        margin-bottom:7px;
      }
      .capability-card-wrapper::before {
        top:7px;
        right:-7px;
        bottom:-7px;
        left:7px;
        border-radius:18px;
        background-size:24px 24px,24px 24px,100% 100%,100% 100%;
        box-shadow:0 8px 16px rgba(0,0,0,.16);
      }
      .capability-card {
        min-height:0;
        padding:21px;
        border-radius:18px;
      }
      .capability-card::before {
        background-size:24px 24px;
      }
      .capability-icon {
        width:46px;
        height:46px;
        margin-bottom:16px;
      }
      .capability-icon svg {
        width:22px;
        height:22px;
      }
      .capability-card h3 {
        margin-bottom:7px;
        font-size:1rem;
        line-height:1.3;
      }
      .capability-card p {
        font-size:.85rem;
        line-height:1.56;
      }

      .comparison-wrap {
        width:100%;
        max-width:100%;
        border-radius:16px;
      }
      .comparison-table {
        min-width:620px;
      }
      .comparison-table th,
      .comparison-table td {
        padding:13px 14px;
      }
      .comparison-table th {
        font-size:.74rem;
      }
      .comparison-table td,
      .comparison-table td:first-child {
        font-size:.8rem;
        line-height:1.5;
      }

      .faq-layout {
        gap:28px;
      }
      .faq-intro h2 {
        margin-top:14px !important;
        margin-bottom:14px;
      }
      .faq-intro .btn {
        width:100%;
        min-height:46px;
        margin-top:18px !important;
        justify-content:center;
        font-size:.8rem;
      }
      .faq-question {
        min-height:58px;
        gap:12px;
        padding:14px 2px;
        font-size:.9rem;
        line-height:1.35;
      }
      .faq-icon {
        width:28px;
        height:28px;
        font-size:.95rem;
      }
      .faq-answer p {
        padding:0 38px 15px 2px;
        font-size:.84rem;
        line-height:1.58;
      }

      .final-cta {
        padding:18px 0 54px;
      }
      .cta-shell {
        gap:24px;
        padding:26px 21px;
        border-radius:18px;
      }
      .cta-shell h2 {
        margin-bottom:10px;
        font-size:clamp(1.55rem,7vw,1.9rem);
        line-height:1.15;
      }
      .cta-shell p {
        font-size:.86rem;
        line-height:1.58;
      }
      .cta-buttons {
        gap:10px;
      }
      .cta-shell .btn {
        min-height:46px;
        padding:11px 14px;
        font-size:.8rem;
        white-space:normal;
        text-align:center;
      }
      #faq .faq-intro .btn,
      .final-cta .cta-buttons .btn {
        width:min(calc((100vw - 32px) * .78),300px);
        min-height:46px;
        padding:11px 16px;
      }
      .final-cta .cta-buttons {
        align-items:center;
      }
    }
