
    /* ============================================================
   RESET & BASE
   ============================================================ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Geist', sans-serif;
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      transition: background 0.6s ease, color 0.6s ease;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    :focus-visible {
      outline: 1.5px solid var(--lilac);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ============================================================
   TOKENS — DARK (default)
   ============================================================ */
    :root[data-theme="dark"] {
      --bg: #06030F;
      --bg-2: #0B0820;
      --panel: rgba(255, 255, 255, 0.03);
      --panel-2: rgba(157, 124, 255, 0.04);
      --border: rgba(237, 234, 251, 0.10);
      --border-2: rgba(237, 234, 251, 0.18);
      --text: #EDEAFB;
      --text-2: rgba(237, 234, 251, 0.72);
      --text-3: rgba(237, 234, 251, 0.50);
      --indigo: #1A1144;
      --violet: #4A1FB8;
      --bright: #6D3CFF;
      --lilac: #9D7CFF;
      --mist: #C9BBFF;
      --green: #5EE7B0;
      --grad-orb: radial-gradient(circle at 32% 28%, #B59BFF 0%, #6D3CFF 35%, #4A1FB8 65%, #1A1144 100%);
      --shadow-lg: 0 30px 80px rgba(6, 3, 15, 0.60);
      --ambient:
        radial-gradient(ellipse 60% 50% at 20% 0%, rgba(109, 60, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(74, 31, 184, 0.20), transparent 65%),
        radial-gradient(ellipse 70% 60% at 50% 110%, rgba(157, 124, 255, 0.10), transparent 60%),
        #06030F;
    }

    /* ============================================================
   TOKENS — LIGHT
   ============================================================ */
    :root[data-theme="light"] {
      --bg: #FBFAFF;
      --bg-2: #F2EEFF;
      --panel: rgba(74, 31, 184, 0.025);
      --panel-2: rgba(74, 31, 184, 0.04);
      --border: rgba(26, 17, 68, 0.08);
      --border-2: rgba(26, 17, 68, 0.16);
      --text: #0F0726;
      --text-2: rgba(15, 7, 38, 0.70);
      --text-3: rgba(15, 7, 38, 0.45);
      --indigo: #1A1144;
      --violet: #4A1FB8;
      --bright: #6D3CFF;
      --lilac: #6D3CFF;
      --mist: #4A1FB8;
      --green: #1B9F71;
      --grad-orb: radial-gradient(circle at 32% 28%, #B59BFF 0%, #6D3CFF 35%, #4A1FB8 65%, #1A1144 100%);
      --shadow-lg: 0 30px 80px rgba(74, 31, 184, 0.18);
      --ambient:
        radial-gradient(ellipse 60% 50% at 20% 0%, rgba(157, 124, 255, 0.30), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(109, 60, 255, 0.18), transparent 65%),
        radial-gradient(ellipse 70% 60% at 50% 110%, rgba(74, 31, 184, 0.10), transparent 60%),
        #FBFAFF;
    }

    .container {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 32px;
    }

    @media (max-width: 768px) {
      .container {
               padding: 0 35px;
      }
    }

    /* ============================================================
   TYPOGRAPHY — Unified (no italic clumpiness, consistent weight)
   ============================================================ */
    .eyebrow {
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--lilac);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: currentColor;
      opacity: 0.6;
    }

    .section-title {
      font-family: 'Geist', sans-serif;
      font-weight: 600;
      font-size: clamp(36px, 5vw, 68px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--text);
      margin: 0 0 24px 0;
    }

    .section-title .accent {
      background: linear-gradient(135deg, #C9BBFF 0%, #9D7CFF 50%, #6D3CFF 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    :root[data-theme="light"] .section-title .accent {
      background: linear-gradient(135deg, #6D3CFF 0%, #4A1FB8 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-sub {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: clamp(15px, 1.2vw, 18px);
      line-height: 1.65;
      color: var(--text-2);
      max-width: 600px;
      margin: 0;
    }

    section {
      padding: 60px 0;
      position: relative;
    }

    @media (max-width: 768px) {
      section {
        padding: 72px 0;
      }
    }

    /* ============================================================
   REVEAL ANIMATIONS — Staggered slow loading per feedback
   ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 1.1s cubic-bezier(0.16, 1, 0.32, 1), transform 1.1s cubic-bezier(0.16, 1, 0.32, 1);
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* Pointer/scroll stagger — each item gets increasing delay */
    .reveal-stagger {
      opacity: 0;
      transform: translateY(20px);
    }

    .reveal-stagger.in {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.001s !important;
        transition-duration: 0.001s !important;
      }
    }

    /* ============================================================
   AMBIENT
   ============================================================ */
    .ambient {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: var(--ambient);
      transition: background 0.6s ease;
    }

    main,
    footer,
    nav {
      position: relative;
      z-index: 2;
    }

    /* ============================================================
   NAV
   ============================================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: transparent;
      transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
      border-bottom: 1px solid transparent;
    }

    :root[data-theme="dark"] .nav.scrolled {
      background: rgba(6, 3, 15, 0.70);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border-bottom-color: rgba(157, 124, 255, 0.14);
    }

    :root[data-theme="light"] .nav.scrolled {
      background: rgba(251, 250, 255, 0.80);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border-bottom-color: rgba(74, 31, 184, 0.10);
    }

    .nav .nav-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 16px 32px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    @media (max-width: 768px) {
      .nav .nav-inner {
        padding: 12px 20px;
      }
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: linear-gradient(135deg, #1A1144 0%, #4A1FB8 60%, #6D3CFF 100%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(109, 60, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    .logo-text {
      font-family: 'Geist', sans-serif;
      font-weight: 600;
      font-size: 20px;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-left: 24px;
    }

    .nav-link {
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--text-2);
      transition: color 0.2s ease;
    }

    .nav-link:hover {
      color: var(--text);
    }

    .nav-right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .theme-toggle {
      width: 40px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid var(--border-2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--text-2);
      transition: all 0.2s ease;
    }

    .theme-toggle:hover {
      color: var(--text);
      border-color: var(--lilac);
    }

    .theme-toggle svg {
      width: 16px;
      height: 16px;
    }

    .theme-toggle .icon-sun {
      display: none;
    }

    .theme-toggle .icon-moon {
      display: block;
    }

    :root[data-theme="light"] .theme-toggle .icon-sun {
      display: block;
    }

    :root[data-theme="light"] .theme-toggle .icon-moon {
      display: none;
    }

    /* ===================== LANGUAGE TOGGLE ===================== */
    .language-toggle {
      width: 40px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid var(--border-2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--text-2);
      transition: all 0.2s ease;
      position: relative;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
    }

    .language-toggle:hover {
      color: var(--text);
      border-color: var(--lilac);
    }

    .language-toggle svg {
      width: 16px;
      height: 16px;
      position: absolute;
      opacity: 0.8;
    }

    .language-toggle .lang-code {
      position: relative;
      z-index: 1;
    }

    /* ===================== LANGUAGE DROPDOWN ===================== */
    .language-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      margin-top: 8px;
      background: var(--bg-2);
      border: 1px solid var(--border-2);
      border-radius: 12px;
      min-width: 200px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.3s ease;
      pointer-events: none;
      z-index: 1000;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .language-dropdown.active {
      max-height: 400px;
      opacity: 1;
      pointer-events: all;
      overflow-y: auto;
    }

    .lang-option {
      display: block;
      width: 100%;
      padding: 12px 16px;
      text-align: left;
      background: none;
      border: none;
      color: var(--text-2);
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .lang-option:hover {
      background: var(--bg-3);
      color: var(--text);
    }

    .lang-option.active {
      background: var(--bg-3);
      color: var(--lilac);
      font-weight: 600;
    }

    .lang-option:first-child {
      border-radius: 12px 12px 0 0;
    }

    .lang-option:last-child {
      border-radius: 0 0 12px 12px;
    }

    .btn-violet {
      background: linear-gradient(135deg, #6D3CFF 0%, #4A1FB8 100%);
      color: #FFFFFF;
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 14px;
      padding: 10px 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
      box-shadow: 0 4px 16px rgba(109, 60, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    .btn-violet:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(109, 60, 255, 0.50);
    }

    .btn-ghost {
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--text-2);
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid var(--border);
      transition: all 0.2s ease;
    }

    .btn-ghost:hover {
      color: var(--text);
      border-color: var(--border-2);
    }

    .hamburger {
      display: none;
      width: 40px;
      height: 36px;
      align-items: center;
      justify-content: center;
      color: var(--text);
      border: 1px solid var(--border-2);
      border-radius: 999px;
    }

    @media (max-width: 1100px) {
      .nav-links {
        display: none;
      }
    }

    @media (max-width: 720px) {
      .nav-right .btn-ghost {
        display: none;
      }

      .hamburger {
        display: inline-flex;
      }
    }

    /* Mobile overlay */
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: var(--bg);
      backdrop-filter: blur(20px);
      z-index: 200;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      display: flex;
      flex-direction: column;
      padding: 24px;
    }

    .mobile-overlay.open {
      transform: translateX(0);
    }

    .mobile-overlay .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mobile-overlay .close {
      width: 40px;
      height: 40px;
      font-size: 28px;
      color: var(--text);
    }

    .mobile-overlay .links {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 40px;
    }

    .mobile-overlay .links a {
      font-family: 'Geist', sans-serif;
      font-weight: 600;
      font-size: 26px;
      color: var(--text);
    }

    .mobile-overlay .links a .num {
      font-family: 'Geist', sans-serif;
      font-size: 11px;
      color: var(--lilac);
      margin-right: 12px;
      vertical-align: middle;
    }

    .mobile-overlay .download-wrap {
      margin-top: auto;
    }

    /* ============================================================
   HERO — ORBITAL FIRST, THEN HEADLINE (feedback: animation before header)
   ============================================================ */
    .hero {
      min-height: 100vh;
      padding: 100px 0 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      text-align: center;
      overflow: hidden;
    }

    .hero-stage {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    /* 1. Audience toggle */
    .audience-toggle {
      display: inline-flex;
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 4px;
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.32, 1) 0.1s forwards;
    }

    .audience-toggle button {
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 13px;
      padding: 9px 18px;
      border-radius: 999px;
      color: var(--text-3);
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .audience-toggle button.active {
      background: linear-gradient(135deg, rgba(109, 60, 255, 0.15) 0%, rgba(74, 31, 184, 0.15) 100%);
      border: 1px solid rgba(157, 124, 255, 0.30);
      color: var(--text);
      box-shadow: 0 4px 12px rgba(109, 60, 255, 0.18);
    }

    .audience-toggle button .led {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.4;
    }

    .audience-toggle button.active .led {
      background: var(--lilac);
      opacity: 1;
      box-shadow: 0 0 8px var(--lilac);
    }

    /* 2. ORBITAL — comes FIRST before headline (key feedback change) */
    .orbital-stage {
      position: relative;
      width: 100%;
      max-width: 700px;
      margin: 0 auto 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
      z-index: 1;
      opacity: 0;
      animation: fadeIn 1.2s ease 0.3s forwards;
    }

    .orbital-stage .node {
      pointer-events: auto;
    }

    .orbital {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      max-height: 360px;
      overflow: visible;
    }

    @media (max-width: 600px) {
      .orbital {
        aspect-ratio: 1.6/1;
        max-height: 260px;
      }
    }

    .orbital-rings {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .orbital-rings circle {
      fill: none;
      transform-origin: center;
      transform-box: fill-box;
    }

    .ring-1 {
      stroke: rgba(157, 124, 255, 0.45);
      stroke-width: 1;
      stroke-dasharray: 2 8;
      animation: spin 50s linear infinite;
    }

    .ring-2 {
      stroke: rgba(109, 60, 255, 0.30);
      stroke-width: 1;
      stroke-dasharray: 6 12;
      animation: spinReverse 80s linear infinite;
    }

    .ring-3 {
      stroke: rgba(201, 187, 255, 0.18);
      stroke-width: 1;
      stroke-dasharray: 2 16;
      animation: spin 110s linear infinite;
    }

    :root[data-theme="light"] .ring-1 {
      stroke: rgba(74, 31, 184, 0.40);
    }

    :root[data-theme="light"] .ring-2 {
      stroke: rgba(74, 31, 184, 0.26);
    }

    :root[data-theme="light"] .ring-3 {
      stroke: rgba(74, 31, 184, 0.16);
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes spinReverse {
      to {
        transform: rotate(-360deg);
      }
    }

    .orbital::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 45%;
      height: 65%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(109, 60, 255, 0.50) 0%, rgba(109, 60, 255, 0.08) 40%, transparent 70%);
      filter: blur(48px);
      animation: pulseGlow 4s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes pulseGlow {

      0%,
      100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
      }

      50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
      }
    }

    /* Orb — center sphere */
    .orb {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120px;
      height: 120px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, #C9BBFF 0%, #9D7CFF 25%, #6D3CFF 60%, #4A1FB8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulseOrb 4s ease-in-out infinite;
      z-index: 3;
      box-shadow:
        inset 0 4px 20px rgba(255, 255, 255, 0.30),
        inset 0 -16px 40px rgba(20, 0, 60, 0.50),
        0 0 0 1px rgba(201, 187, 255, 0.40),
        0 0 80px rgba(109, 60, 255, 0.55),
        0 16px 60px rgba(109, 60, 255, 0.45);
    }

    .orb::after {
      content: '';
      position: absolute;
      top: 12%;
      left: 18%;
      width: 28%;
      height: 22%;
      background: rgba(255, 255, 255, 0.35);
      border-radius: 50%;
      filter: blur(8px);
    }

    @media (max-width: 600px) {
      .orb {
        width: 90px;
        height: 90px;
      }
    }

    @keyframes pulseOrb {

      0%,
      100% {
        transform: translate(-50%, -50%) scale(1.0);
      }

      50% {
        transform: translate(-50%, -50%) scale(1.06);
      }
    }

    .orb-bars {
      display: flex;
      gap: 5px;
      align-items: center;
      height: 28%;
      position: relative;
      z-index: 2;
    }

    .orb-bars span {
      display: block;
      width: 4px;
      background: #FFFFFF;
      border-radius: 3px;
      animation: barWave 1.4s ease-in-out infinite;
      box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    }

    .orb-bars span:nth-child(1) {
      animation-delay: 0s;
    }

    .orb-bars span:nth-child(2) {
      animation-delay: 0.18s;
    }

    .orb-bars span:nth-child(3) {
      animation-delay: 0.36s;
    }

    .orb-bars span:nth-child(4) {
      animation-delay: 0.18s;
    }

    .orb-bars span:nth-child(5) {
      animation-delay: 0s;
    }

    @keyframes barWave {

      0%,
      100% {
        height: 30%;
      }

      50% {
        height: 90%;
      }
    }

    /* Node pills — uniform font/size (feedback: uniform revolving text) */
    .node {
      position: absolute;
      top: 0;
      left: 0;
      background: var(--panel);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid var(--border-2);
      border-radius: 999px;
      padding: 7px 13px 7px 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 12px;
      color: var(--text);
      white-space: nowrap;
      will-change: transform;
      z-index: 2;
      cursor: pointer;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 6px 20px rgba(6, 3, 15, 0.40), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
      /* Uniform sizing — same padding for all nodes */
      min-width: 130px;
      justify-content: flex-start;
    }

    :root[data-theme="light"] .node {
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 6px 20px rgba(74, 31, 184, 0.10);
    }

    .node:hover {
      border-color: var(--lilac);
      box-shadow: 0 10px 28px rgba(109, 60, 255, 0.35);
    }

    .node .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 8px currentColor;
    }

    .node-tooltip {
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      background: var(--bg);
      border: 1px solid var(--border-2);
      border-radius: 8px;
      padding: 7px 10px;
      font-family: 'Geist', sans-serif;
      font-size: 11px;
      color: var(--mist);
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      box-shadow: var(--shadow-lg);
    }

    .node:hover .node-tooltip {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    @media (max-width: 600px) {
      .node {
        font-size: 10px;
        padding: 5px 9px 5px 7px;
        min-width: 100px;
      }
    }

    /* 3. HEADLINE — after orbital */
    .hero-headline {
      font-family: 'Geist', sans-serif;
      font-weight: 700;
      font-size: clamp(44px, 7vw, 100px);
      line-height: 1.0;
      letter-spacing: -0.04em;
      color: var(--text);
      margin: 0 0 20px;
      max-width: 1000px;
      text-align: center;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.32, 1) 0.5s forwards;
      font-size: 44px;
    }

    .hero-headline .word {
      display: inline-block;
    }

    .hero-headline .accent {
      background: linear-gradient(135deg, #C9BBFF 0%, #9D7CFF 50%, #6D3CFF 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    :root[data-theme="light"] .hero-headline .accent {
      background: linear-gradient(135deg, #6D3CFF 0%, #4A1FB8 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* 4. Subtext — aligned center */
    .hero-sub {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: clamp(16px, 1.2vw, 19px);
      line-height: 1.65;
      color: var(--text-2);
      max-width: 540px;
      margin: 0 auto 32px;
      text-align: center;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.32, 1) 0.65s forwards;
    }

    /* Voice pill */
    .voice-pill {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--panel);
      border: 1px solid var(--border-2);
      border-radius: 999px;
      padding: 10px 18px 10px 14px;
      font-family: 'Geist', sans-serif;
      font-size: 13px;
      color: var(--text);
      min-height: 44px;
      max-width: 100%;
      backdrop-filter: blur(8px);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.32, 1) 0.8s forwards;
    }

    .voice-pill .mic {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #6D3CFF, #4A1FB8);
      color: #FFF;
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(109, 60, 255, 0.50);
    }

    .voice-pill .mic svg {
      width: 11px;
      height: 11px;
    }

    .voice-pill .text {
      white-space: nowrap;
      overflow: hidden;
    }

    .voice-pill .cursor {
      display: inline-block;
      width: 2px;
      height: 13px;
      background: var(--lilac);
      margin-left: 2px;
      vertical-align: middle;
      animation: blink 1s steps(2) infinite;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }

    /* CTAs */
    .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.32, 1) 0.95s forwards;
    }

    .cta-primary {
      background: linear-gradient(135deg, #6D3CFF 0%, #4A1FB8 100%);
      color: #FFFFFF;
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 15px;
      padding: 16px 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 8px 24px rgba(109, 60, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
      position: relative;
      overflow: hidden;
    }

    .cta-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.20) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
    }

    .cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(109, 60, 255, 0.50);
    }

    .cta-primary:hover::after {
      transform: translateX(100%);
    }

    .cta-primary .wave {
      display: inline-flex;
      gap: 2px;
      align-items: center;
      height: 14px;
    }

    .cta-primary .wave span {
      display: block;
      width: 2px;
      background: #FFF;
      border-radius: 1px;
      animation: bar 1.2s ease-in-out infinite;
    }

    .cta-primary .wave span:nth-child(1) {
      animation-delay: 0s;
      height: 6px;
    }

    .cta-primary .wave span:nth-child(2) {
      animation-delay: .15s;
      height: 10px;
    }

    .cta-primary .wave span:nth-child(3) {
      animation-delay: .3s;
      height: 14px;
    }

    .cta-primary .wave span:nth-child(4) {
      animation-delay: .15s;
      height: 8px;
    }

    @keyframes bar {

      0%,
      100% {
        transform: scaleY(0.6);
      }

      50% {
        transform: scaleY(1.4);
      }
    }

    .cta-secondary {
      background: transparent;
      color: var(--text);
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 15px;
      padding: 15px 26px;
      border-radius: 999px;
      border: 1px solid var(--border-2);
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .cta-secondary:hover {
      background: var(--panel);
      border-color: var(--lilac);
    }

    .hero-meta {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.32, 1) 1.1s forwards;
    }

    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Geist', sans-serif;
      font-size: 13px;
      color: var(--text-3);
    }

    .hero-meta-item svg {
      color: var(--lilac);
    }

    .hero-meta-divider {
      width: 1px;
      height: 14px;
      background: var(--border-2);
    }

    /* Keyframes */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* ============================================================
   STATUS STRIP
   ============================================================ */
    .status-strip {
      padding: 20px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--panel);
      overflow: hidden;
    }

    .status-track {
      display: flex;
      gap: 48px;
      align-items: center;
      white-space: nowrap;
      animation: marquee 40s linear infinite;
    }

    .status-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Geist', sans-serif;
      font-size: 11px;
      letter-spacing: 0.05em;
      color: var(--text-3);
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .status-item .pulse {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 8px var(--green);
      animation: livePulse 2s ease-in-out infinite;
    }

    @keyframes livePulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.4;
      }
    }

    @keyframes marquee {
      to {
        transform: translateX(-50%);
      }
    }

    /* ============================================================
   SECTION HEAD
   ============================================================ */
    .section-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
         align-items: center; 
      margin-bottom: 56px;
    }

    @media (max-width: 768px) {
      .section-head {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    /* ============================================================
   HOW IT WORKS — 3 STEPS with scroll/pointer animation
   ============================================================ */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-top: 64px;
    }

    @media (max-width: 768px) {
      .steps {
        grid-template-columns: 1fr;
      }
    }

    .step {
      padding: 48px 36px 44px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: background 0.3s ease;
      min-height: 320px;
      opacity: 0;
      transform: translateY(30px);
      transition: background 0.3s ease, opacity 0.8s cubic-bezier(0.16, 1, 0.32, 1), transform 0.8s cubic-bezier(0.16, 1, 0.32, 1);
    }

    .step.in {
      opacity: 1;
      transform: translateY(0);
    }

    .step:nth-child(1) {
      transition-delay: 0s;
    }

    .step:nth-child(2) {
      transition-delay: 0.18s;
    }

    .step:nth-child(3) {
      transition-delay: 0.36s;
    }

    .step:last-child {
      border-right: none;
    }

    @media (max-width: 768px) {
      .step {
        border-right: none;
        border-bottom: 1px solid var(--border);
        min-height: 0;
      }

      .step:last-child {
        border-bottom: none;
      }
    }

    .step:hover {
      background: var(--panel);
    }

    .step-num {
      font-family: 'Geist', sans-serif;
      font-size: 11px;
      color: var(--lilac);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .step h3 {
      font-family: 'Geist', sans-serif;
      font-weight: 700;
      font-size: clamp(34px, 3vw, 48px);
      line-height: 1.05;
      color: var(--text);
      letter-spacing: -0.03em;
      margin: 0;
    }

    .step h3 .em {
      color: var(--lilac);
    }

    .step p {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 15px;
      line-height: 1.65;
      color: var(--text-2);
      margin: 0;
      max-width: 32ch;
    }

    .step .demo {
      margin-top: auto;
      padding-top: 16px;
      font-family: 'Geist', sans-serif;
      font-size: 11.5px;
      color: var(--text-2);
      border-top: 1px dashed var(--border-2);
      letter-spacing: 0.01em;
    }

    .step .demo .arrow {
      color: var(--lilac);
      margin: 0 8px;
    }

    /* ============================================================
   CAPABILITY — bento
   ============================================================ */
    .capability-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }

    @media (max-width: 980px) {
      .capability-grid {
        grid-template-columns: repeat(6, 1fr);
      }
    }

    @media (max-width: 600px) {
      .capability-grid {
        grid-template-columns: 1fr;
      }
    }

    .cap-card {
      position: relative;
      background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      overflow: hidden;
      transition: border-color 0.3s ease, transform 0.3s ease, opacity 0.9s ease;
    }

    .cap-card:hover {
      border-color: var(--border-2);
      transform: translateY(-3px);
    }

    .cap-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--lilac), transparent);
      opacity: 0.5;
    }

    .cap-card.large {
      grid-column: span 7;
      min-height: 340px;
    }

    .cap-card.med {
      grid-column: span 5;
      min-height: 340px;
    }

    .cap-card.third {
      grid-column: span 4;
      min-height: 260px;
    }

    @media (max-width: 980px) {

      .cap-card.large,
      .cap-card.med,
      .cap-card.third {
        grid-column: span 6;
      }
    }

    @media (max-width: 600px) {
      .cap-card {
        grid-column: 1 / -1 !important;
        min-height: 220px !important;
      }
    }

    .cap-tag {
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--lilac);
    }

    .cap-card h3 {
      font-family: 'Geist', sans-serif;
      font-weight: 600;
      font-size: 26px;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--text);
      margin: 14px 0 10px;
    }

    .cap-card .cap-desc {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-2);
    }

    .cap-card .cap-visual {
      margin-top: 22px;
    }

    .cap-waveform {
      display: flex;
      align-items: center;
      gap: 3px;
      height: 72px;
      padding: 12px 0;
    }

    .cap-waveform span {
      flex: 1;
      background: linear-gradient(180deg, var(--lilac), var(--bright));
      border-radius: 2px;
      animation: bar 1.6s ease-in-out infinite;
      opacity: 0.85;
    }

    .chain {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: nowrap;
      font-family: 'Geist', sans-serif;
      font-size: 11px;
      color: var(--text);
      margin-top: 18px;
      overflow: hidden;
    }

    .chain-pill {
      background: rgba(157, 124, 255, 0.10);
      border: 1px solid rgba(157, 124, 255, 0.25);
      padding: 6px 10px;
      border-radius: 6px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .chain-arrow {
      color: var(--lilac);
      flex-shrink: 0;
    }

    .cap-lock {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: rgba(94, 231, 176, 0.06);
      border: 1px solid rgba(94, 231, 176, 0.20);
      border-radius: 12px;
      font-family: 'Geist', sans-serif;
      font-size: 12px;
      color: var(--green);
      letter-spacing: 0.05em;
    }

    .counter-row {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .counter {
      flex: 1;
      min-width: 90px;
    }

    .counter .num {
      font-family: 'Geist', sans-serif;
      font-weight: 700;
      font-size: 28px;
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .counter .lab {
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-top: 6px;
    }

    /* ============================================================
   VOICE DEMO
   ============================================================ */
    .demo-card {
      max-width: 820px;
      margin: 56px auto 0;
      background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 44px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-lg);
    }

    .demo-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--lilac), transparent);
    }

    @media (max-width: 600px) {
      .demo-card {
        padding: 24px 18px;
      }
    }

    .demo-orb-wrap {
      display: flex;
      justify-content: center;
      padding-bottom: 12px;
    }

    .demo-orb {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--grad-orb);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: none;
      box-shadow: 0 0 0 8px rgba(109, 60, 255, 0.10), 0 0 0 18px rgba(109, 60, 255, 0.05), 0 12px 32px rgba(109, 60, 255, 0.40);
    }

    .demo-orb.processing {
      animation: pulseOrbFast 0.8s ease-in-out infinite;
    }

    @keyframes pulseOrbFast {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.10);
      }
    }

    .demo-orb .orb-bars {
      height: 22px;
      gap: 3px;
    }

    .demo-orb .orb-bars span {
      width: 3px;
    }

    .demo-status {
      font-family: 'Geist', sans-serif;
      font-size: 12px;
      color: var(--text-3);
      letter-spacing: 0.10em;
      text-transform: uppercase;
      min-height: 16px;
      margin-top: 18px;
      text-align: center;
      padding: 10px 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .demo-status.done {
      color: var(--green);
    }

    .demo-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin: 26px 0 22px;
    }

    .demo-chip {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 9px 16px;
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: var(--text-2);
      transition: all 0.2s ease;
    }

    .demo-chip:hover {
      color: var(--text);
      border-color: var(--border-2);
    }

    .demo-chip.active {
      border-color: var(--lilac);
      background: rgba(109, 60, 255, 0.12);
      color: var(--text);
      box-shadow: 0 0 0 4px rgba(109, 60, 255, 0.08);
    }

    .convo {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-height: 280px;
      overflow-y: auto;
      padding: 8px 4px;
    }

    .bubble {
      max-width: 80%;
      padding: 12px 18px;
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.5;
      animation: bubbleIn 0.5s cubic-bezier(0.16, 1, 0.32, 1);
    }

    @keyframes bubbleIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .bubble.user {
      align-self: flex-end;
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 18px 18px 4px 18px;
      color: var(--text);
    }

    .bubble.buddy {
      align-self: flex-start;
      background: linear-gradient(135deg, rgba(109, 60, 255, 0.18) 0%, rgba(74, 31, 184, 0.18) 100%);
      border: 1px solid rgba(157, 124, 255, 0.30);
      border-radius: 18px 18px 18px 4px;
      color: var(--text);
    }

    /* ============================================================
   MOMENTS
   ============================================================ */
    .moments-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 64px;
    }

    @media (max-width: 768px) {
      .moments-grid {
        grid-template-columns: 1fr;
      }
    }

    .moment-card {
      background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
      border-radius: 24px;
      border: 1px solid var(--border);
      padding: 36px 36px 32px;
      position: relative;
      overflow: hidden;
      min-height: 240px;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.32, 1), transform 0.9s cubic-bezier(0.16, 1, 0.32, 1), border-color 0.3s ease;
    }

    .moment-card.in {
      opacity: 1;
      transform: translateY(0);
    }

    .moment-card:nth-child(1) {
      transition-delay: 0s;
    }

    .moment-card:nth-child(2) {
      transition-delay: 0.12s;
    }

    .moment-card:nth-child(3) {
      transition-delay: 0.24s;
    }

    .moment-card:nth-child(4) {
      transition-delay: 0.36s;
    }

    .moment-card:hover {
      border-color: var(--border-2);
    }

    .moment-card .ink-bg {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.28;
      top: -50px;
      right: -50px;
      pointer-events: none;
    }

    .moment-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .moment-card h3 {
      font-family: 'Geist', sans-serif;
      font-weight: 700;
      font-size: 32px;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--text);
      margin: 0 0 10px;
    }

    .moment-desc {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.65;
      margin-bottom: 20px;
      max-width: 40ch;
    }

    .moment-cmd {
      font-family: 'Geist', sans-serif;
      font-size: 12px;
      color: var(--text-2);
      line-height: 1.9;
      display: block;
      padding-left: 18px;
      position: relative;
    }

    .moment-cmd::before {
      content: '›';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--lilac);
    }

    /* ============================================================
   JOURNEY — Animated (feedback: five services animated)
   ============================================================ */
    .journey-frame {
      margin-top: 56px;
      background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
    }

    .journey-frame::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--lilac), transparent);
    }

    .journey-cmd {
      font-family: 'Geist', sans-serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .journey-cmd .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--lilac);
      box-shadow: 0 0 12px var(--lilac);
      animation: livePulse 2s ease-in-out infinite;
      flex-shrink: 0;
    }

    .journey {
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      padding: 4px;
    }

    @media (max-width: 768px) {
      .journey {
        flex-direction: column;
        align-items: stretch;
      }
    }

    .journey-card {
      flex: 0 0 auto;
      width: 165px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
      opacity: 0;
      transform: translateY(20px) scale(0.97);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.32, 1), transform 0.7s cubic-bezier(0.16, 1, 0.32, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .journey-card.revealed {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .journey-card.active {
      border-color: var(--lilac);
      box-shadow: 0 0 30px rgba(109, 60, 255, 0.14);
    }

    .journey-card.complete {
      border-color: rgba(109, 60, 255, 0.18);
    }

    .journey-arrow {
      flex: 0 0 auto;
      width: 28px;
      height: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lilac);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .journey-arrow.visible {
      opacity: 0.6;
    }

    .journey-arrow.hidden {
      opacity: 0.1;
    }

    .journey-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .journey-step-num {
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      color: var(--text-3);
      letter-spacing: 0.15em;
    }

    .journey-label {
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 13px;
      color: var(--text);
    }

    .journey-meta {
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      color: var(--text-3);
      margin-top: 2px;
    }

    @media (max-width: 768px) {
      .journey-arrow {
        transform: rotate(90deg);
        height: 24px;
      }

      .journey-card {
        width: 100%;
      }
    }

    .assembling {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
      font-family: 'Geist', sans-serif;
      font-size: 11px;
      color: var(--text-3);
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    .spinner {
      width: 14px;
      height: 14px;
      border: 1.5px solid rgba(157, 124, 255, 0.20);
      border-top-color: var(--lilac);
      border-radius: 50%;
      animation: spin 0.9s linear infinite;
    }

    /* ============================================================
   BENEFITS — split panel
   ============================================================ */
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 56px;
    }

    @media (max-width: 980px) {
      .benefits-grid {
        grid-template-columns: 1fr;
      }
    }

    .benefit-panel {
      background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 36px;
      display: flex;
      flex-direction: column;
    }

    .benefit-panel h3 {
      font-family: 'Geist', sans-serif;
      font-weight: 700;
      font-size: 32px;
      letter-spacing: -0.03em;
      color: var(--text);
      margin: 12px 0 10px;
    }

    .benefit-panel .lead {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.65;
      margin-bottom: 28px;
    }

    .benefit-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .benefit-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px 0;
      border-top: 1px solid var(--border);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1.2s ease, transform 1.2s ease;
    }

    .benefit-list li.in {
      opacity: 1;
      transform: translateY(0);
    }

    .benefit-list li:first-child {
      border-top: none;
    }

    .benefit-list .ic {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(109, 60, 255, 0.14);
      color: var(--lilac);
      flex-shrink: 0;
    }

    .benefit-list .ic svg {
      width: 14px;
      height: 14px;
    }

    .benefit-list .head {
      font-family: 'Geist', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: var(--text);
    }

    .benefit-list .desc {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: var(--text-2);
      margin-top: 3px;
      line-height: 1.55;
    }

    /* ============================================================
   VOICES (Testimonials) — Slider (feedback: slider animation)
   ============================================================ */
    .voices-slider-wrap {
      margin-top: 56px;
      position: relative;
      overflow: hidden;
    }

    .voices-slider {
      display: flex;
      gap: 20px;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.32, 1);
    }

    .quote-card {
      background: linear-gradient(180deg, var(--panel-2) 0%, transparent 100%);
      border-radius: 20px;
      border: 1px solid var(--border);
      padding: 30px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      flex: 0 0 calc(50% - 10px);
      min-width: calc(50% - 10px);
      transition: border-color 0.3s ease;
    }

    @media (max-width: 768px) {
      .quote-card {
        flex: 0 0 90%;
        min-width: 90%;
      }
    }

    .quote-card:hover {
      border-color: var(--border-2);
    }

    .quote-card::before {
      content: '"';
      position: absolute;
      top: 12px;
      right: 24px;
      font-family: 'Geist', sans-serif;
      font-size: 80px;
      font-weight: 700;
      color: rgba(157, 124, 255, 0.12);
      line-height: 1;
    }

    .quote-tag {
      align-self: flex-start;
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--lilac);
    }

    .quote-line {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 1.65;
      color: var(--text);
      margin: 0;
    }

    .quote-line.highlight {
      font-family: 'Geist', sans-serif;
      font-weight: 600;
      font-size: 20px;
      line-height: 1.35;
      color: var(--mist);
      margin-top: 4px;
    }

    /* Slider controls */
    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border-2);
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .slider-dot.active {
      background: var(--lilac);
      box-shadow: 0 0 8px var(--lilac);
      width: 24px;
      border-radius: 4px;
    }

    .slider-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border-2);
      color: var(--text-2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .slider-btn:hover {
      color: var(--text);
      border-color: var(--lilac);
    }

    .alpha-badge {
      margin: 48px auto 0;
      max-width: 720px;
      background: linear-gradient(135deg, rgba(109, 60, 255, 0.10) 0%, rgba(74, 31, 184, 0.06) 100%);
      border: 1px solid rgba(157, 124, 255, 0.25);
      border-radius: 16px;
      padding: 22px 28px;
      text-align: center;
    }

    .alpha-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      color: var(--lilac);
      margin-bottom: 8px;
    }

    .alpha-desc {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.6;
      margin: 0;
    }

    /* ============================================================
   BLOG — improved (feedback: link to blog page, improved design)
   ============================================================ */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 56px;
    }

    @media (max-width: 980px) {
      .blog-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .blog-grid {
        grid-template-columns: 1fr;
      }
    }

    .blog-card {
      background: var(--panel-2);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.3s ease, transform 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease;
    }

    .blog-card.in {
      opacity: 1;
      transform: translateY(0);
    }

    .blog-card:nth-child(1) {
      transition-delay: 0s;
    }

    .blog-card:nth-child(2) {
      transition-delay: 0.12s;
    }

    .blog-card:nth-child(3) {
      transition-delay: 0.24s;
    }

    .blog-card:hover {
      transform: translateY(-3px);
      border-color: var(--border-2);
    }

    .blog-cover {
      aspect-ratio: 16/10;
      position: relative;
      overflow: hidden;
    }

    .blog-cover svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .blog-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    .blog-meta {
      display: flex;
      gap: 8px;
      align-items: center;
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-3);
    }

    .blog-meta .tag {
      color: var(--lilac);
    }

    .blog-card h3 {
      font-family: 'Geist', sans-serif;
      font-weight: 600;
      font-size: 20px;
      line-height: 1.25;
      letter-spacing: -0.02em;
      color: var(--text);
      margin: 0;
    }

    .blog-card .excerpt {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 13px;
      color: var(--text-2);
      line-height: 1.6;
      margin: 0;
    }

    .blog-card .read {
      margin-top: auto;
      padding-top: 8px;
      font-family: 'Geist', sans-serif;
      font-size: 11px;
      color: var(--lilac);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* ============================================================
   DOWNLOAD
   ============================================================ */
    .download-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 56px;
    }

    @media (max-width: 768px) {
      .download-grid {
        grid-template-columns: 1fr;
      }
    }

    .download-card {
      background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 34px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: transform 0.3s ease, border-color 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .download-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-2);
    }

    .download-card::before {
      content: '';
      position: absolute;
      top: -120px;
      left: -60px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(109, 60, 255, 0.18), transparent 70%);
      filter: blur(40px);
      pointer-events: none;
    }

    .download-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .download-tag .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 8px currentColor;
      animation: livePulse 2s ease-in-out infinite;
    }

    .download-tag.live {
      color: var(--green);
    }

    .download-tag.partner {
      color: var(--lilac);
    }

    .download-card h3 {
      font-family: 'Geist', sans-serif;
      font-weight: 700;
      font-size: 30px;
      letter-spacing: -0.03em;
      color: var(--text);
      margin: 6px 0 0;
    }

    .download-desc {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.65;
      margin: 0;
    }

    .store-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .store-btn {
      background: var(--panel);
      border: 1px solid var(--border);
      color: var(--text);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 18px;
      border-radius: 12px;
      transition: all 0.2s ease;
    }

    .store-btn:hover {
      background: var(--panel-2);
      border-color: var(--lilac);
      transform: translateY(-1px);
    }

    .store-btn .label-small {
      font-family: 'Geist', sans-serif;
      font-size: 9px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-3);
      display: block;
    }

    .store-btn .label-big {
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 14px;
      color: var(--text);
    }

    .download-trust {
      margin-top: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 13px;
      color: var(--text-3);
    }

    .download-trust svg {
      color: var(--lilac);
    }

    /* ============================================================
   FAQ
   ============================================================ */
    .faq .heading-wrap {
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
    }

    .faq .section-sub {
      margin: 0 auto;
    }

    .faq-tabs-wrap {
      display: flex;
      justify-content: center;
    }

    .faq-tabs {
      display: inline-flex;
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 4px;
      margin: 28px auto 32px;
    }

    .faq-tab {
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 13px;
      padding: 9px 22px;
      border-radius: 999px;
      color: var(--text-3);
      transition: all 0.3s ease;
    }

    .faq-tab.active {
      background: linear-gradient(135deg, rgba(109, 60, 255, 0.20), rgba(74, 31, 184, 0.20));
      border: 1px solid rgba(157, 124, 255, 0.30);
      color: var(--text);
    }

    .faq-list {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
      text-align: left;
      padding: 22px 0;
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 18px;
      color: var(--text);
      letter-spacing: -0.01em;
      transition: color 0.2s ease;
    }

    .faq-question:hover {
      color: var(--lilac);
    }

    .faq-toggle {
      width: 28px;
      height: 28px;
      border: 1px solid var(--border-2);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--lilac);
      font-size: 16px;
      line-height: 1;
      transition: transform 0.3s ease, background 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
      background: rgba(109, 60, 255, 0.15);
      border-color: var(--lilac);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(0.16, 1, 0.32, 1);
    }

    .faq-answer-inner {
      padding: 0 0 22px 0;
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.7;
      max-width: 720px;
    }

    /* ============================================================
   FOOTER — with Facebook icon + email subscribe (per feedback)
   ============================================================ */
    footer {
      border-top: 1px solid var(--border);
      padding: 72px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
      gap: 48px;
    }

    @media (max-width: 980px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 560px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    .footer-tag {
      font-family: 'Geist', sans-serif;
      font-weight: 300;
      font-size: 15px;
      color: var(--text-2);
      margin-top: 16px;
      margin-bottom: 22px;
      line-height: 1.6;
    }

    .socials {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .socials a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      color: var(--text-3);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .socials a:hover {
      color: var(--lilac);
      border-color: var(--lilac);
    }

    .socials svg {
      width: 16px;
      height: 16px;
    }

    /* Email subscribe — footer */
    .footer-subscribe {
      margin-top: 24px;
    }

    .footer-subscribe label {
      font-family: 'Geist', sans-serif;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-3);
      display: block;
      margin-bottom: 10px;
    }

    .subscribe-row {
      display: flex;
      gap: 0;
    }

    .subscribe-input {
      flex: 1;
      background: var(--panel);
      border: 1px solid var(--border);
      border-right: none;
      color: var(--text);
      font-family: 'Geist', sans-serif;
      font-size: 13px;
      padding: 10px 14px;
      border-radius: 8px 0 0 8px;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .subscribe-input:focus {
      border-color: var(--lilac);
    }

    .subscribe-input::placeholder {
      color: var(--text-3);
    }

    .subscribe-btn {
      background: linear-gradient(135deg, #6D3CFF, #4A1FB8);
      color: #fff;
      font-family: 'Geist', sans-serif;
      font-weight: 500;
      font-size: 13px;
      padding: 10px 16px;
      border-radius: 0 8px 8px 0;
      border: none;
      cursor: pointer;
      transition: filter 0.2s ease;
      white-space: nowrap;
    }

    .subscribe-btn:hover {
      filter: brightness(1.1);
    }

    .footer-col h4 {
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-3);
      margin: 0 0 16px 0;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a {
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--text-2);
      transition: color 0.15s ease;
    }

    .footer-col a:hover {
      color: var(--text);
    }

    .footer-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 44px 0 24px;
    }

    .footer-watermark {
      position: relative;
      width: 100%;
      margin: 48px 0 24px;
      text-align: center;
      pointer-events: none;
      user-select: none;
    }

    .footer-watermark svg {
      width: 100%;
      max-width: 1200px;
      height: auto;
      opacity: 0.12;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-family: 'Geist', sans-serif;
      font-weight: 400;
      font-size: 11px;
      color: var(--text-3);
      border-top: 1px solid var(--border);
      padding-top: 22px;
      letter-spacing: 0.05em;
    }

    .footer-bottom a {
      color: var(--text-3);
      transition: color 0.15s ease;
    }

    .footer-bottom a:hover {
      color: var(--text);
    }
