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

    :root {
      --bg: #0E1419;
      --primary: #6CD4F4;
      --primary-container: #45B2D1;
      --secondary: #F2BE6B;
      --error: #FFB4AB;
      --error-dark: #FF6B6B;
      --on-surface: #DDE3EA;
      --on-surface-variant: #BDC8CD;
      --outline: #879297;
      --outline-variant: #3E484D;
      --surface-lowest: #090F14;
      --surface: #0E1419;
      --surface-low: #161C21;
      --surface-container: #1A2025;
      --surface-high: #252B30;
      --surface-highest: #2F353B;
      --surface-bright: #343A3F;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--on-surface);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(108,212,244,0.04) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
      transform: translateZ(0);
      will-change: transform;
    }

    section { position: relative; z-index: 1; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== Typography ===== */
    .label {
      font-family: 'Inter Tight', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 16px;
    }

    .headline {
      font-family: 'Inter Tight', sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.05;
      color: var(--on-surface);
    }

    .headline-xl { font-size: clamp(42px, 6vw, 72px); }
    .headline-lg { font-size: clamp(32px, 4vw, 52px); }
    .headline-md { font-size: clamp(24px, 3vw, 38px); }

    /* ── Headline highlight utilities ── */
    .hl-cyan  { color: var(--primary); }
    .hl-gold  { color: var(--secondary); }
    .hl-dim   { color: rgba(255,255,255,0.38); }
    .hl-glow-cyan {
      color: var(--primary);
      text-shadow: 0 0 28px rgba(108,212,244,0.55);
    }
    .hl-glow-gold {
      color: var(--secondary);
      text-shadow: 0 0 28px rgba(242,190,107,0.55);
    }
    .hl-glow-red {
      color: var(--error-dark);
      text-shadow: 0 0 28px rgba(255,107,107,0.55);
    }
    .hl-grad-cyan {
      background: linear-gradient(to right, #6CD4F4 0%, #a8e8f8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hl-grad-gold {
      background: linear-gradient(to right, #F2BE6B 0%, #f7d898 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hl-grad-mixed {
      background: linear-gradient(to right, #6CD4F4 0%, #F2BE6B 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .body-text {
      font-size: 15px;
      color: var(--on-surface-variant);
      line-height: 1.7;
      max-width: 540px;
    }

    /* ===== Buttons ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 9999px;
      border: none;
      font-family: 'Inter Tight', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #0A0F14;
      background: radial-gradient(ellipse at 50% 0%, #b8eeff 0%, #6CD4F4 45%, #4db8da 100%);
      box-shadow: 0 0 28px rgba(108,212,244,0.35), 0 4px 16px rgba(0,0,0,0.3);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.32) 50%, transparent 70%);
      transform: translateX(-110%);
      pointer-events: none;
      border-radius: inherit;
    }
    .btn-primary:hover {
      transform: scale(1.04) translateY(-1px);
      box-shadow: 0 0 48px rgba(108,212,244,0.6), 0 0 90px rgba(108,212,244,0.2), 0 6px 20px rgba(0,0,0,0.35);
    }
    .btn-primary:hover::before {
      transform: translateX(110%);
      transition: transform 0.55s ease;
    }
    .btn-primary:active {
      transform: scale(0.97) translateY(1px) !important;
      box-shadow: 0 0 18px rgba(108,212,244,0.3), 0 2px 8px rgba(0,0,0,0.3) !important;
      transition-duration: 0.08s !important;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 9999px;
      border: 1.5px solid rgba(108,212,244,0.55);
      font-family: 'Inter Tight', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--primary);
      background: rgba(108,212,244,0.06);
      backdrop-filter: blur(12px);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .btn-ghost:hover {
      transform: scale(1.04) translateY(-1px);
      background: rgba(108,212,244,0.12);
      box-shadow: 0 0 32px rgba(108,212,244,0.3), 0 4px 16px rgba(0,0,0,0.25);
    }

    .btn-error {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 9999px;
      border: 1px solid rgba(255,180,171,0.3);
      font-family: 'Inter Tight', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--error);
      background: rgba(255,180,171,0.05);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    /* ===== Glass Card ===== */
    .glass-card {
      background: rgba(22,28,33,0.6);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(62,72,77,0.2);
      border-radius: 20px;
      overflow: hidden;
    }

    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 1100px;
      z-index: 100;
      padding: 8px 20px;
      background: rgba(10,15,20,0.65);
      backdrop-filter: blur(28px) saturate(1.5);
      -webkit-backdrop-filter: blur(28px) saturate(1.5);
      border: 1px solid rgba(108,212,244,0.1);
      border-radius: 50px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 8px;
    }
    .nav-hamburger {
      width: 36px;
      height: 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--on-surface);
      border-radius: 2px;
    }
    .nav-brand {
      font-family: 'Inter Tight', sans-serif;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--on-surface);
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      border-radius: 9999px;
      border: none;
      font-family: 'Inter Tight', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #0A0F14;
      background: radial-gradient(ellipse at 50% 0%, #b8eeff 0%, #6CD4F4 45%, #4db8da 100%);
      box-shadow: 0 0 18px rgba(108,212,244,0.35), 0 2px 8px rgba(0,0,0,0.25);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .nav-cta:hover {
      transform: scale(1.04);
      box-shadow: 0 0 32px rgba(108,212,244,0.55), 0 4px 12px rgba(0,0,0,0.3);
    }

    /* ===== HERO ===== */
    .hero {
      padding: 110px 0 48px;
      text-align: center;
      position: relative;
      overflow: clip;
    }
    .hero-fade-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to bottom, #0E1419 0%, transparent 100%);
      pointer-events: none;
      z-index: 2;
    }
    .hero-fade-bottom {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to top, #0E1419 0%, transparent 100%);
      pointer-events: none;
      z-index: 2;
    }
    .hero .label { margin-bottom: 16px; }
    .hero-headline {
      font-family: 'Inter Tight', sans-serif;
      font-weight: 900;
      font-size: clamp(36px, 5vw, 62px);
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 24px;
    }
    .hero-headline .line1 {
      display: block;
      background: linear-gradient(to bottom, #ffffff 60%, rgba(255,255,255,0.72));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-headline .line2 {
      display: block;
      background: linear-gradient(to right, #6CD4F4 0%, rgba(255,255,255,0.92) 50%, #F2BE6B 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    /* Subtitle */
    .hero-sub {
      font-family: 'Inter Tight', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.3px;
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-sub strong { color: rgba(255,255,255,0.75); font-weight: 600; }
    /* Floating background shapes */
    .hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
    .hero .container { position: relative; z-index: 3; }
    @keyframes shapeEnter {
      from { opacity: 0; transform: translateY(-130px) rotate(var(--rot, 0deg)); }
      to   { opacity: 1; transform: translateY(0) rotate(var(--rot, 0deg)); }
    }
    @keyframes shapeFloat {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(15px); }
    }
    .hero-shape-wrap {
      position: absolute;
      animation: shapeEnter 2.4s cubic-bezier(0.23,0.86,0.39,0.96) forwards;
      opacity: 0;
      will-change: transform, opacity;
    }
    .hero-shape {
      border-radius: 9999px;
      border: 2px solid rgba(255,255,255,0.12);
      box-shadow: 0 8px 32px 0 rgba(255,255,255,0.05);
      position: relative;
      animation: shapeFloat 12s ease-in-out infinite;
      will-change: transform;
    }
    .hero-shape::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: 9999px;
      background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.14), transparent 70%);
    }

    /* ===== Custom Video Player ===== */
    .video-thumbnail {
      position: relative;
      width: 100%;
      max-width: 720px;
      margin: 0 auto 24px;
      aspect-ratio: 16/9;
      border-radius: 20px;
      overflow: hidden;
      background: #000;
      cursor: default;
      box-shadow:
        0 0 0 1px rgba(108,212,244,0.35),
        0 12px 56px rgba(0,0,0,0.7),
        0 0 60px rgba(108,212,244,0.12),
        -12px 0 40px rgba(108,212,244,0.08),
        12px 0 40px rgba(108,212,244,0.08);
    }
    /* Top glow line */
    .video-thumbnail::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, rgba(108,212,244,0.15) 0%, rgba(108,212,244,0.9) 25%, rgba(108,212,244,0.9) 75%, rgba(108,212,244,0.15) 100%);
      z-index: 10; pointer-events: none;
      filter: blur(0.5px);
    }
    /* Bottom glow line */
    .video-thumbnail::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, rgba(108,212,244,0.1) 0%, rgba(108,212,244,0.55) 25%, rgba(108,212,244,0.55) 75%, rgba(108,212,244,0.1) 100%);
      z-index: 10; pointer-events: none;
    }
    .vp-video {
      width: 100%; height: 100%;
      display: block; object-fit: cover;
    }
    /* Big center play overlay */
    .vp-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,0.28);
      transition: opacity 0.25s;
      z-index: 3; cursor: pointer;
    }
    .vp-overlay.hidden { opacity: 0; pointer-events: none; }
    .vp-center-play {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: rgba(14,20,25,0.55);
      border: 2px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }
    .vp-center-play:hover {
      background: rgba(108,212,244,0.2);
      border-color: rgba(108,212,244,0.6);
      transform: scale(1.1);
      box-shadow: 0 0 24px rgba(108,212,244,0.3);
    }
    .vp-center-play svg { width: 30px; height: 30px; fill: #fff; margin-left: 5px; }
    /* Loading spinner */
    .vp-spinner {
      position: absolute;
      inset: 0;
      z-index: 6;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .vp-spinner.active { opacity: 1; }
    .vp-spinner::after {
      content: '';
      width: 48px;
      height: 48px;
      border: 3px solid rgba(255,255,255,0.15);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: vpSpin 0.75s linear infinite;
    }
    @keyframes vpSpin {
      to { transform: rotate(360deg); }
    }
    /* Bottom controls */
    .vp-controls {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 52px 16px 14px;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.25s;
      z-index: 4;
    }
    .video-thumbnail.vp-watching.vp-show-ctrl .vp-controls,
    .video-thumbnail.vp-watching:hover .vp-controls { opacity: 1; }
    /* Hide native iOS/browser video controls */
    video::-webkit-media-controls,
    video::-webkit-media-controls-panel,
    video::-webkit-media-controls-play-button,
    video::-webkit-media-controls-start-playback-button { display: none !important; }
    /* Progress bar */
    .vp-progress {
      width: 100%; height: 4px;
      background: rgba(255,255,255,0.18);
      border-radius: 3px;
      margin-bottom: 12px;
      cursor: pointer;
      position: relative;
      transition: height 0.15s;
    }
    .vp-progress:hover { height: 7px; }
    .vp-progress-fill {
      height: 100%; width: 0%;
      background: var(--primary);
      border-radius: 3px;
      pointer-events: none;
      transition: width 0.1s linear;
      box-shadow: 0 0 8px rgba(108,212,244,0.5);
    }
    /* Scrub thumb dot */
    .vp-progress::after {
      content: '';
      position: absolute; top: 50%; right: calc(100% - var(--vp-pct, 0%) - 6px);
      width: 12px; height: 12px;
      background: #fff;
      border-radius: 50%;
      transform: translateY(-50%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.15s;
    }
    .vp-progress:hover::after { opacity: 1; }
    /* Bottom row */
    .vp-bottom {
      display: flex; align-items: center; gap: 8px;
    }
    .vp-btn {
      background: none; border: none; color: #fff;
      padding: 6px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0.8; transition: opacity 0.2s, transform 0.15s;
      flex-shrink: 0; border-radius: 6px;
    }
    .vp-btn:hover { opacity: 1; transform: scale(1.12); }
    .vp-btn svg { width: 20px; height: 20px; }
    .vp-time {
      font-family: 'Inter Tight', sans-serif;
      font-size: 12px; color: rgba(255,255,255,0.7);
      flex: 1; text-align: left; white-space: nowrap; letter-spacing: 0.3px;
    }
    .vp-vol-wrap { display: flex; align-items: center; gap: 6px; }
    .vp-volume {
      width: 70px; height: 4px;
      accent-color: var(--primary);
      cursor: pointer;
    }
    /* Settings menu */
    .vp-settings-wrap { position: relative; }
    .vp-settings-menu {
      position: absolute; bottom: calc(100% + 8px); right: 0;
      background: rgba(14,20,25,0.96);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(108,212,244,0.15);
      border-radius: 10px;
      min-width: 160px;
      padding: 8px 0;
      display: none;
      z-index: 20;
    }
    .vp-settings-menu.open { display: block; }
    .vp-settings-section {
      padding: 6px 14px 4px;
      font-family: 'Inter Tight', sans-serif;
      font-size: 10px; letter-spacing: 1.5px;
      text-transform: uppercase; color: rgba(108,212,244,0.6);
    }
    .vp-settings-option {
      display: flex; align-items: center; justify-content: space-between;
      padding: 7px 14px; cursor: pointer;
      font-family: 'Inter Tight', sans-serif;
      font-size: 13px; color: rgba(255,255,255,0.8);
      transition: background 0.15s;
    }
    .vp-settings-option:hover { background: rgba(255,255,255,0.06); }
    .vp-settings-option.active { color: var(--primary); }
    .vp-settings-option.active::after { content: '✓'; font-size: 11px; }

    .hero .btn-primary { margin-bottom: 32px; }

    /* 3-Step Flow */
    .steps-flow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      max-width: 860px;
      margin: 0 auto;
    }
    .step-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 26px;
      border-radius: 9999px;
      border: 1px solid rgba(62,72,77,0.3);
      background: rgba(22,28,33,0.4);
      backdrop-filter: blur(10px);
      white-space: nowrap;
      transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
      cursor: default;
    }
    .step-item.active {
      background: rgba(18,26,32,0.98);
      border-color: rgba(108,212,244,0.55);
      box-shadow: 0 0 22px rgba(108,212,244,0.22), 0 0 6px rgba(108,212,244,0.15) inset;
    }
    .step-item .step-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(62,72,77,0.5);
      transition: background 0.4s ease;
    }
    .step-item .step-icon svg {
      width: 13px;
      height: 13px;
      fill: none;
      stroke: var(--outline);
      stroke-width: 1.8;
      transition: stroke 0.4s ease;
    }
    .step-item.active .step-icon {
      background: rgba(108,212,244,0.12);
    }
    .step-item.active .step-icon svg {
      stroke: var(--primary);
    }
    .step-item .step-text {
      font-family: 'Inter Tight', sans-serif;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--outline);
      transition: color 0.4s ease;
    }
    .step-item.active .step-text {
      color: #fff;
      text-shadow: 0 0 18px rgba(108,212,244,0.35);
    }
    .step-connector {
      width: 48px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .step-connector svg {
      width: 22px;
      height: 22px;
      color: rgba(108,212,244,0.5);
      flex-shrink: 0;
    }

    /* ===== BINARY SECTION ===== */
    .binary {
      padding: 100px 0;
    }
    .binary .label, .binary .headline { text-align: center; }
    .binary .headline { margin-bottom: 64px; }

    /* Y-shape connector */
    .binary-connector {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .bc-stem {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18));
    }
    .bc-crossbar {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      position: relative;
    }
    .bc-crossbar::before {
      content: '';
      position: absolute;
      top: 0;
      left: calc(25% - 6px);
      right: calc(25% - 6px);
      height: 1px;
      background: linear-gradient(to right, rgba(62,72,77,0.45), rgba(108,212,244,0.55));
    }
    .bc-drop {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 44px;
      position: relative;
    }
    .bc-drop::before {
      content: '';
      width: 1px;
      height: 100%;
    }
    .bc-drop.fail::before { background: rgba(62,72,77,0.4); }
    .bc-drop.win::before  { background: rgba(108,212,244,0.5); filter: drop-shadow(0 0 3px rgba(108,212,244,0.4)); }
    .bc-node {
      width: 10px; height: 10px;
      border-radius: 50%;
      position: absolute;
      bottom: -5px;
      left: 50%; transform: translateX(-50%);
    }
    .bc-node.fail { background: rgba(22,28,33,1); border: 1px solid rgba(62,72,77,0.55); }
    .bc-node.win  { background: rgba(108,212,244,0.2); border: 1px solid rgba(108,212,244,0.8); box-shadow: 0 0 10px rgba(108,212,244,0.45); }

    .binary-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }
    .binary-card {
      border-radius: 20px;
      padding: 40px 36px;
      position: relative;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .binary-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

    /* fail card */
    .binary-card.fail {
      background: rgba(18,24,29,0.75);
      border: 1px solid rgba(62,72,77,0.25);
      backdrop-filter: blur(14px);
    }
    .binary-card.fail .card-eyebrow {
      font-family: 'Inter Tight', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--outline);
      margin-bottom: 12px;
    }
    .binary-card.fail .card-headline {
      font-family: 'Inter Tight', sans-serif;
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 900;
      text-transform: capitalize;
      color: var(--on-surface);
      line-height: 1.1;
      margin-bottom: 18px;
    }
    .binary-card.fail .card-body {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: 36px;
    }
    .binary-card.fail .card-micro {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      letter-spacing: 1px;
      text-transform: uppercase;
      font-family: 'Inter Tight', sans-serif;
      font-weight: 600;
      margin-bottom: 36px;
    }
    .btn-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 32px;
      border-radius: 9999px;
      border: 1px solid rgba(62,72,77,0.4);
      font-family: 'Inter Tight', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--on-surface-variant);
      background: rgba(22,28,33,0.7);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .btn-dark:hover {
      border-color: rgba(62,72,77,0.7);
      color: var(--on-surface);
    }

    /* win card */
    .binary-card.win {
      background: linear-gradient(160deg, rgba(18,26,33,0.9) 0%, rgba(108,212,244,0.06) 100%);
      border: 1px solid rgba(108,212,244,0.2);
      backdrop-filter: blur(14px);
      box-shadow: 0 0 60px rgba(108,212,244,0.06);
    }
    .binary-card.win .card-eyebrow {
      font-family: 'Inter Tight', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 10px;
    }
    .binary-card.win .win-price {
      font-family: 'Inter Tight', sans-serif;
      font-size: clamp(52px, 6vw, 76px);
      font-weight: 900;
      color: var(--secondary);
      line-height: 1;
      margin-bottom: 20px;
      text-shadow: 0 0 40px rgba(242,190,107,0.35);
    }
    .binary-card.win .win-price span {
      font-size: 22px;
      font-weight: 600;
      color: var(--on-surface-variant);
      vertical-align: super;
      font-size: 18px;
    }
    .binary-card.win .card-body {
      font-size: 14px;
      color: var(--on-surface-variant);
      line-height: 1.7;
      margin-bottom: 36px;
      font-weight: 600;
    }

    .vs-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--surface-high);
      border: 1px solid rgba(62,72,77,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter Tight', sans-serif;
      font-size: 12px;
      font-weight: 800;
      color: var(--outline);
      letter-spacing: 1px;
      z-index: 2;
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.from-left  { transform: translateX(-40px); }
    .reveal.from-right { transform: translateX(40px); }
    .reveal.visible {
      opacity: 1;
      transform: translate(0, 0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ===== CURRICULUM ===== */
    .curriculum {
      padding: 100px 0;
    }
    .curriculum-header {
      display: flex;
      align-items: flex-end;
      margin-bottom: 48px;
    }
    .curriculum-header .headline { margin-bottom: 0; }
    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 8px;
    }
    .carousel-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(62,72,77,0.3);
      background: rgba(22,28,33,0.5);
      color: var(--on-surface);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .carousel-btn:hover {
      border-color: rgba(108,212,244,0.3);
      background: rgba(108,212,244,0.05);
    }
    .curriculum-carousel-outer {
      overflow-x: hidden;
      overflow-y: visible;
      padding: 24px 44px;
      margin: -24px -44px;
      -webkit-mask-image:
        linear-gradient(to right,  transparent 0, black 120px, black calc(100% - 120px), transparent 100%),
        linear-gradient(to bottom, transparent 0, black 24px,  black calc(100% - 24px),  transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        linear-gradient(to right,  transparent 0, black 120px, black calc(100% - 120px), transparent 100%),
        linear-gradient(to bottom, transparent 0, black 24px,  black calc(100% - 24px),  transparent 100%);
      mask-composite: intersect;
    }
    .curriculum-carousel-wrap {
      overflow: visible;
      position: relative;
    }
    .curriculum-grid {
      display: flex;
      gap: 24px;
      margin-bottom: 40px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    /* ===== GLOW SPOTLIGHT CARD ===== */
    /* Coords are element-relative, set per-card by JS via getBoundingClientRect.
       Border uses padding + content-box mask (the proven CSS border-gradient technique):
       outer = border-box, inner = content-box, mask subtracts inner → shows only the ring.
       -webkit-mask-composite: destination-out  (Chrome/Safari)
       mask-composite: exclude                  (Firefox / W3C)                        */
    [data-glow] {
      --base:   197;   /* brand cyan hsl(197°,85%,70%) — set to 38 for gold Phase 04 */
      --spread:  25;   /* small hue shift left→right, stays in brand range            */
      --radius:  20;
      --border:   3;
      --size:   260;
      --outer:    1;
      --border-size:    calc(var(--border, 2) * 1px);
      --spotlight-size: calc(var(--size, 150) * 1px);
      --hue: calc(var(--base) + (var(--xp, 0) * var(--spread, 0)));
      position: relative;
    }

    /* Both pseudo-elements fill the card exactly (inset:0), then use padding as the
       "border thickness". The mask hides the interior (content-box) and shows only
       the padding ring → gradient is visible only on the border strip.             */
    [data-glow]::before,
    [data-glow]::after {
      pointer-events: none;
      content: "";
      position: absolute;
      inset: 0;
      padding: var(--border-size, 3px);
      border-radius: calc(var(--radius) * 1px);
      background-origin: border-box;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      background-position: 0 0;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      z-index: 2;
    }

    /* Primary border spotlight — brand cyan (or gold on Phase 04), fades to transparent */
    [data-glow]::before {
      background-image: radial-gradient(
        calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
        calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
        hsl(var(--hue, 197) 85% 65% / 1), transparent 100%
      );
      filter: brightness(1.6);
    }

    /* Secondary soft highlight — lighter tint of brand colour, not harsh white */
    [data-glow]::after {
      background-image: radial-gradient(
        calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
        calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
        hsl(var(--hue, 197) 75% 88% / 0.30), transparent 100%
      );
    }

    /* Inner [data-glow] div — blurred outer bloom effect.
       Inherit --base/--spread from parent card so gold cards bloom gold. */
    [data-glow] [data-glow] {
      --base: inherit;
      --spread: inherit;
      position: absolute;
      inset: 0;
      will-change: filter;
      opacity: var(--outer, 1);
      border-radius: calc(var(--radius) * 1px);
      filter: blur(calc(var(--border-size) * 10));
      background: none;
      pointer-events: none;
      border: none;
    }
    [data-glow] > [data-glow]::before {
      inset: -10px;
      padding: 10px;
    }

    /* Wrapper for cards that have overflow:hidden — outer shell handles the glow border */
    .glow-wrapper {
      position: relative;
      border-radius: 20px;
      flex: 1;
    }

    .curriculum-card {
      border-radius: 20px;
      overflow: visible;
      background-color: rgba(22,28,33,0.85);
      background-image:
        radial-gradient(
          var(--spotlight-size, 200px) var(--spotlight-size, 200px) at
          calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
          hsl(var(--hue, 197) 80% 65% / var(--glow-alpha, 0.06)),
          transparent
        ),
        radial-gradient(
          80% 65% at 50% 55%,
          hsl(var(--base, 197) 70% 60% / var(--base-tint, 0.03)),
          transparent
        );
      border: var(--border-size, 3px) solid rgba(62,72,77,0.22);
      backdrop-filter: blur(12px);
      box-shadow:
        0 8px 32px rgba(0,0,0,0.45),
        0 2px 8px rgba(0,0,0,0.3),
        0 0 60px 0 hsl(var(--base, 197) 70% 50% / 0.07);
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .curriculum-card:hover {
      border-color: rgba(108,212,244,0.18);
      transform: translateY(-6px);
      box-shadow:
        0 16px 48px rgba(0,0,0,0.55),
        0 4px 16px rgba(0,0,0,0.35),
        0 0 80px 0 hsl(var(--base, 197) 70% 55% / 0.13);
    }
    .curriculum-img {
      width: 100%;
      aspect-ratio: 16/10;
      position: relative;
      border-radius: 17px 17px 0 0;
      overflow: hidden;
    }
    .curriculum-img.health {
      background: linear-gradient(135deg, #0d1a26 0%, #1a3040 40%, #0f2030 100%);
    }
    .curriculum-img.health::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 50%, rgba(108,212,244,0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(69,178,209,0.06) 0%, transparent 40%);
    }
    .curriculum-img.face {
      background: linear-gradient(135deg, #1a1408 0%, #2c1e0e 40%, #1c1508 100%);
    }
    .curriculum-img.face::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 40%, rgba(242,190,107,0.09) 0%, transparent 55%);
    }
    .curriculum-img.enhance {
      background: linear-gradient(135deg, #1a2015 0%, #253020 40%, #1a2515 100%);
    }
    .curriculum-img.enhance::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(108,212,244,0.06) 0%, transparent 50%);
    }
    .curriculum-img.presence {
      background: linear-gradient(135deg, #1a1508 0%, #2e2210 40%, #1e1a08 100%);
    }
    .curriculum-img.presence::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 40%, rgba(242,190,107,0.09) 0%, transparent 55%);
    }
    .curriculum-img.escape {
      background: linear-gradient(135deg, #12091a 0%, #1e1030 40%, #130a1e 100%);
    }
    .curriculum-img.escape::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 45%, rgba(160,100,240,0.08) 0%, transparent 55%);
    }
    .curriculum-card-body {
      padding: 28px 24px;
    }
    .phase-label {
      font-family: 'Inter Tight', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 10px;
    }
    .curriculum-card-body h3 {
      font-family: 'Inter Tight', sans-serif;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--on-surface);
      margin-bottom: 12px;
    }
    .curriculum-card-body p {
      font-size: 14px;
      color: var(--on-surface-variant);
      line-height: 1.6;
    }
    .progress-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .progress-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(62,72,77,0.4);
      transition: all 0.3s ease;
    }
    .progress-dot.active {
      background: var(--primary);
      box-shadow: 0 0 8px rgba(108,212,244,0.4);
    }
    .progress-line {
      width: 40px;
      height: 2px;
      background: rgba(62,72,77,0.3);
    }

    /* ===== SOCIAL PROOF ===== */
    .social-proof {
      padding: 100px 0;
    }
    .social-proof-headline {
      text-align: center;
      margin-bottom: 40px;
    }
    .social-proof-headline .headline {
      display: inline;
    }
    .social-proof-headline .cyan { color: var(--primary); }

    .filter-chips {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .filter-chip {
      padding: 10px 24px;
      border-radius: 9999px;
      border: 1px solid rgba(62,72,77,0.25);
      background: rgba(22,28,33,0.4);
      font-family: 'Inter Tight', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--outline);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .filter-chip.active {
      background: rgba(108,212,244,0.1);
      border-color: rgba(108,212,244,0.3);
      color: var(--primary);
    }
    .filter-chip:hover {
      border-color: rgba(108,212,244,0.2);
    }

    .comparison-container {
      display: flex;
      align-items: center;
      gap: 24px;
      max-width: 480px;
      margin: 0 auto;
    }
    .comparison-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(62,72,77,0.3);
      background: rgba(22,28,33,0.5);
      color: var(--on-surface);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    .comparison-arrow:hover {
      border-color: rgba(108,212,244,0.3);
    }
    .img-slider-wrapper {
      flex: 1;
    }
    .img-slider {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      aspect-ratio: 3/4;
      cursor: ew-resize;
      user-select: none;
      display: block;
      width: 100%;
    }
    .img-slider-before,
    .img-slider-after {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
      -webkit-user-drag: none;
    }
    .img-slider-line {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background: rgba(255,255,255,0.85);
      transform: translateX(-50%);
      pointer-events: none;
      filter: drop-shadow(0 0 6px rgba(108,212,244,0.5));
      z-index: 3;
    }
    .img-slider-knob {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(14,20,25,0.88);
      border: 2px solid rgba(255,255,255,0.65);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }
    .comparison-label {
      position: absolute;
      bottom: 16px;
      padding: 7px 16px;
      border-radius: 9999px;
      font-family: 'Inter Tight', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      z-index: 4;
      pointer-events: none;
    }
    .comparison-label.before-label {
      right: 16px;
      left: auto;
      background: rgba(10,14,18,0.82);
      border: 1px solid rgba(255,255,255,0.18);
      color: #d0d8de;
      box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    .comparison-label.after-label {
      left: 16px;
      background: rgba(108,212,244,0.22);
      border: 1px solid rgba(108,212,244,0.7);
      color: #ffffff;
      box-shadow: 0 2px 12px rgba(108,212,244,0.25);
      text-shadow: 0 0 8px rgba(108,212,244,0.6);
    }

    /* ===== URGENCY ===== */
    .urgency {
      padding: 100px 0;
    }
    .urgency .label, .urgency .headline { text-align: center; }
    .urgency .headline { margin-bottom: 48px; }
    .urgency .headline .error-text { color: var(--error); }
    .urgency-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .urgency-card {
      border-radius: 20px;
      padding: 36px 28px;
      background: rgba(22,28,33,0.6);
      border: 1px solid rgba(62,72,77,0.15);
      backdrop-filter: blur(12px);
      text-align: center;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .urgency-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,180,171,0.25);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    }
    .urgency-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(255,180,171,0.08);
      border: 1px solid rgba(255,180,171,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }
    .urgency-icon svg {
      width: 24px;
      height: 24px;
    }
    .urgency-card h3 {
      font-family: 'Inter Tight', sans-serif;
      font-size: 17px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--error);
      margin-bottom: 14px;
      letter-spacing: 0.5px;
    }
    .urgency-card p {
      font-size: 14px;
      color: var(--on-surface-variant);
      line-height: 1.6;
    }

    /* ===== LOCK IN ===== */
    .lockin {
      padding: 100px 0;
    }
    .lockin-grid {
      display: grid;
      grid-template-columns: 1fr 2.2fr;
      gap: 24px;
      align-items: center;
    }
    .lockin-text .headline { margin-bottom: 24px; }
    .lockin-text .body-text { margin-bottom: 36px; }
    .lockin-image {
      aspect-ratio: 4/3;
      /* Bleed beyond the container on right side */
      width: calc(100% + 220px);
      margin-right: -220px;
      border-radius: 0;
      background: transparent;
      border: none;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-mask-image:
        linear-gradient(to right,  transparent 0%,  black 18%, black 82%,  transparent 100%),
        linear-gradient(to bottom, transparent 0%,  black 12%, black 88%,  transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        linear-gradient(to right,  transparent 0%,  black 18%, black 82%,  transparent 100%),
        linear-gradient(to bottom, transparent 0%,  black 12%, black 88%,  transparent 100%);
      mask-composite: intersect;
    }
    .lockin-image-text {
      font-family: 'Inter Tight', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--outline);
      position: relative;
      z-index: 1;
    }

    /* ===== PRICING ===== */
    .pricing {
      padding: 100px 0;
    }
    .pricing-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .pricing-header .headline {
      text-transform: none;
      font-size: clamp(34px, 4.5vw, 56px);
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1.45fr;
      gap: 20px;
      max-width: 880px;
      margin: 0 auto;
      align-items: stretch;
    }
    .pc {
      border-radius: 24px;
      padding: 44px 36px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .pc-bad {
      background: rgba(14,18,22,0.82);
      border: 1px solid rgba(62,72,77,0.18);
      backdrop-filter: blur(12px);
    }
    .pc-good {
      background: rgba(12,22,32,0.9);
      border: 1px solid rgba(108,212,244,0.22);
      backdrop-filter: blur(16px);
      box-shadow: 0 0 50px rgba(108,212,244,0.07), 0 24px 64px rgba(0,0,0,0.45);
    }
    .pc-good::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 55%; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(108,212,244,0.55), transparent);
    }
    .pc-icon {
      width: 52px; height: 52px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
    }
    .pc-bad .pc-icon {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .pc-good .pc-icon {
      background: rgba(108,212,244,0.1);
      border: 1px solid rgba(108,212,244,0.22);
    }
    .pc-icon svg { width: 24px; height: 24px; }
    .pc-title {
      font-family: 'Inter Tight', sans-serif;
      font-size: 28px; font-weight: 800;
      text-align: center; margin-bottom: 6px;
    }
    .pc-bad .pc-title  { color: rgba(255,255,255,0.45); }
    .pc-good .pc-title { color: var(--on-surface); }
    .pc-subtitle {
      text-align: center; font-size: 13px;
      color: var(--outline); margin-bottom: 20px;
    }
    .pc-divider {
      height: 1px;
      background: rgba(62,72,77,0.22);
      margin-bottom: 22px;
    }
    .pc-outcome {
      font-family: 'Inter Tight', sans-serif;
      font-size: 19px; font-weight: 700;
      text-align: center; margin-bottom: 20px;
      color: rgba(255,255,255,0.55);
    }
    .pc-price {
      display: flex; align-items: baseline;
      justify-content: center; gap: 4px;
      margin-bottom: 24px;
    }
    .pc-price-amount {
      font-family: 'Inter Tight', sans-serif;
      font-size: 58px; font-weight: 900;
      color: var(--primary); line-height: 1;
    }
    .pc-price-period {
      font-size: 20px; font-weight: 500;
      color: var(--outline);
    }
    .pc-list {
      list-style: none;
      margin-bottom: 24px;
      flex: 1;
    }
    .pc-list li {
      display: flex; align-items: center;
      gap: 12px; padding: 9px 0;
      font-size: 14px;
      border-bottom: 1px solid rgba(62,72,77,0.1);
    }
    .pc-list li:last-child { border-bottom: none; }
    .pc-bad  .pc-list li { color: rgba(255,255,255,0.58); }
    .pc-good .pc-list li { color: var(--on-surface-variant); font-weight: 500; }
    .pc-check {
      width: 20px; height: 20px; flex-shrink: 0;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .pc-bad  .pc-check { background: rgba(255,255,255,0.05); }
    .pc-good .pc-check { background: rgba(108,212,244,0.12); }
    .pc-notes { margin-bottom: 24px; }
    .pc-note {
      display: flex; align-items: center;
      gap: 10px; font-size: 13px; padding: 5px 0;
      color: rgba(255,255,255,0.72);
    }
    .pc-note-cyan { color: var(--primary); font-weight: 700; }
    .pc-price-old {
      font-family: 'Inter Tight', sans-serif;
      font-size: 26px; font-weight: 700;
      color: rgba(255,255,255,0.35);
      text-decoration: line-through;
      text-decoration-color: var(--error);
      text-decoration-thickness: 2px;
      margin-right: 2px;
    }
    .pc-btn-wrap { margin-top: auto; }
    .pc-btn-wrap .btn-primary {
      width: 100%; padding: 17px 36px;
      font-size: 13px; justify-content: center;
    }
    .btn-muted {
      display: inline-flex; align-items: center;
      justify-content: center; gap: 10px; width: 100%;
      padding: 17px 36px; border-radius: 9999px;
      border: 1px solid rgba(255,255,255,0.09);
      font-family: 'Inter Tight', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 1.8px; text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.03);
      cursor: pointer; text-decoration: none;
      transition: all 0.25s ease;
    }
    .btn-muted:hover {
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.45);
    }
    .pricing-refund {
      font-family: 'Inter Tight', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--outline); text-align: center;
      margin-top: 16px;
    }

    /* ===== FOOTER ===== */
    footer {
      padding: 60px 0 40px;
      border-top: 1px solid rgba(62,72,77,0.15);
      text-align: center;
    }
    .footer-brand {
      font-family: 'Inter Tight', sans-serif;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--on-surface);
      margin-bottom: 24px;
    }
    .footer-nav {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }
    .footer-nav a {
      font-family: 'Inter Tight', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--outline);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .footer-nav a:hover { color: var(--primary); }
    .footer-copy {
      font-size: 12px;
      color: var(--outline-variant);
    }

    /* ===== TESTIMONIALS BENTO ===== */
    .testimonials {
      padding: 100px 0;
    }
    .testimonials-headline {
      text-align: center;
      margin-bottom: 56px;
    }
    .bento-headline-line1 {
      display: block;
      background: linear-gradient(to bottom, #ffffff 60%, rgba(255,255,255,0.72));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .bento-headline-line2 {
      display: block;
      background: linear-gradient(to right, #6CD4F4 0%, rgba(255,255,255,0.92) 50%, #F2BE6B 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 100px;
      gap: 12px;
    }
    .bento-item {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      cursor: pointer;
      background: var(--surface-container);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .bento-item:hover {
      transform: scale(1.025);
      box-shadow: 0 8px 32px rgba(0,0,0,0.45);
      z-index: 2;
    }
    .bento-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }
    .bento-item:hover img {
      transform: scale(1.07);
    }
    .bento-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.18);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .bento-item:hover .bento-overlay {
      opacity: 1;
    }

    /* === TESTIMONIAL MODAL === */
    .t-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .t-modal.open {
      opacity: 1;
      pointer-events: all;
    }
    .t-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9,15,20,0.88);
      backdrop-filter: blur(20px);
    }
    .t-modal-body {
      position: relative;
      z-index: 1;
      max-width: min(560px, 90vw);
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.7);
      transform: scale(0.96) translateY(10px);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .t-modal.open .t-modal-body {
      transform: scale(1) translateY(0);
    }
    .t-modal-img {
      width: 100%;
      max-height: 72vh;
      object-fit: cover;
      display: block;
    }
    .t-modal-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 20px 24px;
      background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
    }
    .t-modal-caption h3 {
      font-family: 'Inter Tight', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: #fff;
    }
    .t-modal-caption p {
      font-size: 13px;
      color: rgba(255,255,255,0.68);
      margin-top: 4px;
    }
    .t-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(200,200,200,0.18);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s;
    }
    .t-modal-close:hover {
      background: rgba(200,200,200,0.32);
    }
    .t-modal-close svg {
      width: 13px; height: 13px;
      stroke: #fff; stroke-width: 2.5; fill: none; stroke-linecap: round;
    }

    /* === MODAL DOCK === */
    .t-modal-dock {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2001;
      cursor: grab;
      user-select: none;
      touch-action: none;
      display: none;
    }
    .t-modal-dock.visible {
      display: block;
    }
    .t-modal-dock:active {
      cursor: grabbing;
    }
    .dock-pill {
      background: rgba(108,212,244,0.13);
      backdrop-filter: blur(24px);
      border: 1px solid rgba(108,212,244,0.28);
      border-radius: 18px;
      padding: 10px 16px;
      display: flex;
      align-items: flex-end;
    }
    .dock-thumb {
      position: relative;
      width: 38px;
      height: 38px;
      border-radius: 9px;
      overflow: hidden;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      margin: 0 -5px;
      z-index: 1;
    }
    .dock-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      pointer-events: none;
      display: block;
    }
    .dock-thumb.tilt-left  { transform: rotate(-14deg); }
    .dock-thumb.tilt-right { transform: rotate(14deg); }
    .dock-thumb.active {
      transform: translateY(-10px) scale(1.22) rotate(0deg) !important;
      box-shadow: 0 0 0 2px rgba(255,255,255,0.82), 0 8px 20px rgba(0,0,0,0.5);
      z-index: 20;
    }
    .dock-thumb:hover:not(.active) {
      transform: translateY(-10px) scale(1.2) rotate(0deg) !important;
      z-index: 10;
    }

    /* ===== PRICE LOCK ===== */
    .price-lock {
      padding: 100px 0;
      text-align: center;
    }
    .price-lock-inner {
      max-width: 660px;
      margin: 0 auto;
    }
    .price-lock-headline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .price-lock-headline svg { flex-shrink: 0; }
    .price-lock-sub {
      font-family: 'Inter Tight', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--on-surface);
      margin-bottom: 16px;
    }
    .price-lock-body {
      font-size: 15px;
      color: var(--on-surface-variant);
      line-height: 1.75;
      margin-bottom: 16px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }
    .price-lock-cta-text {
      font-family: 'Inter Tight', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--on-surface);
      margin-bottom: 32px;
    }

    /* ===== FAQ ===== */
    .faq {
      padding: 100px 0;
    }
    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .faq-header .headline {
      text-transform: none;
      font-size: clamp(30px, 4vw, 50px);
    }
    .faq-list {
      max-width: 700px;
      margin: 0 auto 48px;
    }
    .faq-item {
      border: 1px solid rgba(62,72,77,0.22);
      border-radius: 12px;
      margin-bottom: 8px;
      background: rgba(18,24,30,0.6);
      overflow: hidden;
      transition: border-color 0.3s ease;
    }
    .faq-item.open {
      border-color: rgba(108,212,244,0.28);
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      cursor: pointer;
      gap: 16px;
      user-select: none;
    }
    .faq-question-text {
      font-family: 'Inter Tight', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--on-surface);
      text-align: left;
    }
    .faq-chevron {
      flex-shrink: 0;
      transition: transform 0.3s ease, color 0.3s ease;
      color: var(--outline);
    }
    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      color: var(--primary);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 400px;
    }
    .faq-answer-inner {
      padding: 0 22px 20px;
      font-size: 14px;
      color: var(--on-surface-variant);
      line-height: 1.75;
      border-top: 1px solid rgba(62,72,77,0.15);
      padding-top: 16px;
    }
    .faq-footer {
      text-align: center;
    }
    .faq-footer-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      font-size: 12px;
      color: var(--outline);
      font-family: 'Inter Tight', sans-serif;
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    .faq-footer-note span { color: var(--primary); font-weight: 600; }

    /* ===== PAIN / SOLUTION SPLIT ===== */
    .pain-split {
      padding: 96px 0;
    }
    .pain-split-header {
      margin-bottom: 56px;
    }
    .pain-split-header .label { margin-bottom: 14px; }
    .pain-split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .pain-split-text {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .pain-split-text p {
      font-size: 15px;
      color: var(--on-surface-variant);
      line-height: 1.75;
    }
    .pain-split-text strong {
      color: var(--on-surface);
      font-weight: 600;
    }
    .pain-split-cta {
      font-family: 'Inter Tight', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--on-surface) !important;
      line-height: 1.6 !important;
    }
    /* Right card */
    .pain-split-visual {
      background: var(--surface-container);
      border: 1px solid var(--outline-variant);
      border-radius: 20px;
      padding: 36px;
    }
    .psv-label {
      font-family: 'Inter Tight', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 28px;
    }
    .psv-list {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .psv-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .psv-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 10px;
      background: rgba(108,212,244,0.08);
      border: 1px solid rgba(108,212,244,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }
    .psv-icon svg { width: 18px; height: 18px; }
    .psv-item-title {
      font-family: 'Inter Tight', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--on-surface);
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .psv-item-body {
      font-size: 13px;
      color: var(--on-surface-variant);
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .pain-split-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ===== CAPACITY (SPOTS) ===== */
    .capacity {
      padding: 96px 0;
      text-align: center;
    }
    .capacity .label, .capacity .headline { text-align: center; }
    .capacity .headline { margin-bottom: 16px; }
    .capacity-subtitle {
      font-size: 16px;
      color: var(--on-surface-variant);
      max-width: 480px;
      margin: 0 auto 56px;
      line-height: 1.6;
    }
    .capacity-card {
      position: relative;
      max-width: 460px;
      margin: 0 auto;
      background: var(--surface-container);
      border: 1px solid var(--outline-variant);
      border-radius: 24px;
      padding: 44px 40px 40px;
      overflow: hidden;
    }
    .capacity-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      background: radial-gradient(ellipse at top center, rgba(255,107,107,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .capacity-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 107, 107, 0.12);
      border: 1px solid rgba(255, 107, 107, 0.35);
      color: #FF7A7A;
      font-family: 'Inter Tight', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 100px;
      margin-bottom: 32px;
    }
    .capacity-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #FF6B6B;
      flex-shrink: 0;
      animation: pulse-dot 1.6s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.35; transform: scale(0.65); }
    }
    .capacity-plan-name {
      font-family: 'Inter Tight', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--outline);
      margin-bottom: 6px;
    }
    .capacity-spots-number {
      font-family: 'Inter Tight', sans-serif;
      font-size: clamp(64px, 14vw, 96px);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-bottom: 4px;
    }
    .capacity-spots-label {
      font-size: 15px;
      color: var(--on-surface-variant);
      margin-bottom: 36px;
    }
    .capacity-bar-wrap {
      background: var(--surface-high);
      border-radius: 100px;
      height: 10px;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .capacity-bar-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--primary) 0%, #FF6B6B 100%);
      border-radius: 100px;
      transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    }
    .capacity-bar-stats {
      display: flex;
      justify-content: space-between;
      font-family: 'Inter Tight', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--outline);
      margin-bottom: 32px;
    }
    .capacity-bar-stats .cap-pct { color: #FF7A7A; }

    /* ===== PREMIUM ANIMATIONS ===== */

    /* Hero text staggered entrance */
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero .label      { animation: heroFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s  both; }
    .hero-headline    { animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s  both; }
    .hero-sub         { animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.6s  both; }
    .hero .btn-primary{ animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.82s both; }
    .steps-flow       { animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 1.05s both; }

    /* Video — scale-in on load, then continuous glow pulse */
    @keyframes videoScaleIn {
      from { opacity: 0; transform: scale(0.93); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes videoGlowPulse {
      0%, 100% {
        box-shadow:
          0 0 0 1px rgba(108,212,244,0.35),
          0 12px 56px rgba(0,0,0,0.7),
          0 0 60px  rgba(108,212,244,0.12),
          -12px 0 40px rgba(108,212,244,0.08),
           12px 0 40px rgba(108,212,244,0.08);
      }
      50% {
        box-shadow:
          0 0 0 1px rgba(108,212,244,0.55),
          0 12px 56px rgba(0,0,0,0.7),
          0 0 110px rgba(108,212,244,0.26),
          -18px 0 60px rgba(108,212,244,0.16),
           18px 0 60px rgba(108,212,244,0.16);
      }
    }
    .video-thumbnail {
      animation:
        videoScaleIn  0.9s cubic-bezier(0.22,1,0.36,1) 1.25s both,
        videoGlowPulse 5s  ease-in-out                 2.5s  infinite;
    }

    /* Scroll reveal — smoother easing + extra delay classes */
    .reveal {
      transition:
        opacity   0.7s cubic-bezier(0.22,1,0.36,1),
        transform 0.7s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* Binary section — line draw-in */
    .bc-stem {
      transform: scaleY(0);
      transform-origin: top center;
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.1s;
    }
    .bc-crossbar::before {
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.5s;
    }
    .bc-drop::before {
      transform: scaleY(0);
      transform-origin: top center;
    }
    .bc-drop.fail::before { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1) 0.88s; }
    .bc-drop.win::before  { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1) 1.0s; }
    .binary-connector.drawn .bc-stem            { transform: scaleY(1); }
    .binary-connector.drawn .bc-crossbar::before{ transform: scaleX(1); }
    .binary-connector.drawn .bc-drop::before    { transform: scaleY(1); }

    /* Binary cards — dim the un-hovered path */
    .binary-grid:has(.binary-card:hover) .binary-card:not(:hover) {
      opacity: 0.52;
      transform: scale(0.985);
    }

    /* Urgency CTA — attention pulse */
    @keyframes ctaAttention {
      0%, 100% {
        box-shadow: 0 0 28px rgba(108,212,244,0.35), 0 4px 16px rgba(0,0,0,0.3);
      }
      50% {
        box-shadow: 0 0 65px rgba(108,212,244,0.75), 0 0 130px rgba(108,212,244,0.22), 0 4px 16px rgba(0,0,0,0.3);
      }
    }
    .capacity-card .btn-primary {
      animation: ctaAttention 3.2s ease-in-out 0.5s infinite;
    }

    /* Icon micro-interactions */
    .step-icon,
    .urgency-icon,
    .psv-icon {
      transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
    }
    .step-item:hover .step-icon    { transform: scale(1.2) rotate(-8deg); }
    .urgency-card:hover .urgency-icon { transform: scale(1.12) translateY(-3px); }
    .psv-item:hover .psv-icon      { transform: scale(1.15) rotate(-6deg); }

    /* Nav link hover underline slide */
    .nav-links a {
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--primary);
      transition: width 0.3s cubic-bezier(0.22,1,0.36,1);
      box-shadow: 0 0 6px rgba(108,212,244,0.5);
    }
    .nav-links a:hover::after { width: 100%; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 80px;
      }
      /* ── 3-Step flow: vertical on mobile ── */
      .steps-flow {
        flex-direction: column;
        align-items: center;
        gap: 0;
      }
      .step-connector {
        width: 48px;
        height: 36px;
      }
      .step-connector svg {
        transform: rotate(90deg);
      }

      /* ── Binary / Two Paths: stack vertically ── */
      .binary-connector { display: none; }
      .binary-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 16px;
      }
      .binary-card.fail { order: 1; }
      .vs-badge {
        order: 2;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
        justify-self: center;
        z-index: 2;
      }
      .binary-card.win { order: 3; }

      .curriculum-header { margin-bottom: 32px; }
      .curriculum-carousel-outer {
        padding: 16px 0;
        margin: -16px 0;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
      }
      .urgency-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
      .lockin-grid { grid-template-columns: 1fr; }
      .lockin-image {
        width: 100%;
        max-width: 480px;
        margin-right: 0;
        margin-left: auto;
        margin-right: auto;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
      }
      .bento-item {
        grid-column: auto !important;
        grid-row: auto !important;
      }
      .comparison-container { max-width: 340px; gap: 12px; }
      .comparison-arrow { width: 36px; height: 36px; font-size: 14px; flex-shrink: 0; }
      .win-layout { flex-direction: column; }
      .win-price { font-size: 48px; }
    }
    @media (max-width: 600px) {
      .nav-cta { display: none; }
      nav { padding: 14px 16px; width: calc(100% - 32px); }
      .nav-brand img { height: 52px !important; }
      /* Prevent horizontal bleed from reveal animations on mobile */
      .reveal.from-left,
      .reveal.from-right { transform: translateY(24px); }
      .hero-headline { font-size: clamp(32px, 10vw, 48px); }
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .pc { padding: 36px 28px; }
      .filter-chips { gap: 8px; }
      .filter-chip { padding: 8px 16px; font-size: 11px; }
      .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
      }
      .pain-split-grid { grid-template-columns: 1fr; gap: 40px; }
    }
