:root {
      --bg: #050505;
      --bg-soft: #0b0d10;
      --panel: #101318;
      --panel-2: #151922;
      --text: #f8fafc;
      --muted: #a3aab6;
      --line: rgba(255,255,255,0.1);
      --green: #00ffaa;
      --purple: #8b5cf6;
      --pink: #f43f8b;
      --danger: #ff4d5e;
      --radius: 16px;
      --shadow: 0 24px 80px rgba(0,0,0,0.38);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 50% -10%, rgba(139,92,246,0.16), transparent 34rem),
        radial-gradient(circle at 15% 18%, rgba(0,255,170,0.12), transparent 28rem),
        radial-gradient(circle at 90% 65%, rgba(244,63,139,0.09), transparent 30rem),
        #050505;
    }
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.24;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: linear-gradient(to bottom, black, transparent 80%);
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font: inherit; }
    .container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
    .section { padding: 76px 0; position: relative; }
    .section.alt { background: rgba(255,255,255,0.025); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      border: 1px solid rgba(139,92,246,0.32);
      background: rgba(139,92,246,0.12);
      color: #d8ccff;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 8px rgba(0,255,170,0.12);
      flex: 0 0 auto;
    }
    .gradient-text {
      color: transparent;
      background: linear-gradient(135deg, var(--green), var(--purple));
      -webkit-background-clip: text;
      background-clip: text;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 22px;
      border: 0;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--green), var(--purple));
      color: #020403;
      font-weight: 900;
      box-shadow: 0 16px 42px rgba(0,255,170,0.22);
      cursor: pointer;
      transition: transform 0.18s ease, filter 0.18s ease;
    }
    .btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
    .btn.secondary { color: var(--text); background: rgba(255,255,255,0.08); box-shadow: none; border: 1px solid var(--line); }
    .card {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(5,5,5,0.84);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav {
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .brand {
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
    }
    .brand span { color: var(--green); }
    .nav .btn { min-height: 36px; padding: 0 14px; border-radius: 10px; font-size: 12px; }

    .hero {
      min-height: 100svh;
      padding: 92px 0 48px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 36px;
      align-items: center;
    }
    .hero-intro,
    .hero-details { grid-column: 1; }
    .hero-intro { align-self: end; }
    .hero-details { align-self: start; margin-top: -18px; }
    .hero-media {
      grid-column: 2;
      grid-row: 1 / span 2;
    }
    h1 {
      margin: 18px 0 16px;
      font-size: clamp(34px, 6vw, 68px);
      line-height: 1.04;
      letter-spacing: 0;
      font-weight: 900;
    }
    .hero-copy {
      color: var(--muted);
      font-size: clamp(16px, 1.5vw, 19px);
      max-width: 610px;
      margin: 0 0 24px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 24px; }
    .micro-proof {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      max-width: 680px;
    }
    .proof {
      padding: 13px 10px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.045);
      border-radius: 12px;
      text-align: center;
    }
    .proof strong { display: block; font-size: 16px; }
    .proof span { color: var(--muted); font-size: 11px; }

    .video-card {
      padding: 12px;
      border-radius: 20px;
      background:
        linear-gradient(var(--panel), var(--panel)) padding-box,
        linear-gradient(135deg, rgba(0,255,170,0.7), rgba(139,92,246,0.65)) border-box;
      border: 1px solid transparent;
      box-shadow: 0 35px 90px rgba(0,0,0,0.48);
    }
    .video-frame {
      aspect-ratio: 16/9;
      background: #030303;
      border-radius: 13px;
      overflow: hidden;
      position: relative;
    }
    .video-frame iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }
    .player-controls {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 42px 12px max(12px, env(safe-area-inset-bottom));
      background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.45), transparent);
    }
    .ctrl-btn {
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50%;
      background: rgba(0,0,0,0.62);
      color: white;
      cursor: pointer;
    }
    .ctrl-btn.speed {
      width: auto;
      min-width: 46px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
    }
    .seek-slider {
      flex: 1 1 auto;
      min-width: 70px;
      height: 18px;
      appearance: none;
      -webkit-appearance: none;
      background: transparent;
      cursor: pointer;
      touch-action: none;
    }
    .seek-slider::-webkit-slider-runnable-track {
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(to right, var(--green) 0%, var(--green) var(--seek-progress, 0%), rgba(255,255,255,0.28) var(--seek-progress, 0%), rgba(255,255,255,0.28) 100%);
    }
    .seek-slider::-moz-range-track {
      height: 7px;
      border-radius: 999px;
      background: rgba(255,255,255,0.28);
    }
    .seek-slider::-moz-range-progress {
      height: 7px;
      border-radius: 999px;
      background: var(--green);
    }
    .seek-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 17px;
      height: 17px;
      margin-top: -5px;
      border-radius: 50%;
      background: white;
      border: 3px solid var(--green);
      box-shadow: 0 4px 16px rgba(0,0,0,0.42);
    }
    .seek-slider::-moz-range-thumb {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: white;
      border: 3px solid var(--green);
      box-shadow: 0 4px 16px rgba(0,0,0,0.42);
    }
    .time-display {
      color: rgba(255,255,255,0.86);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
    }
    .tap-unmute {
      position: absolute;
      right: 12px;
      top: 12px;
      z-index: 5;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
      background: linear-gradient(135deg, var(--green), var(--purple));
      color: #020403;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(0,255,170,0.22);
    }
    .video-frame:fullscreen,
    .video-frame:-webkit-full-screen,
    .video-frame.pseudo-fullscreen {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      width: 100% !important;
      height: 100% !important;
      min-width: 100vw !important;
      min-height: 100vh !important;
      min-height: 100dvh !important;
      max-width: none !important;
      max-height: none !important;
      margin: 0 !important;
      padding: 0 !important;
      z-index: 999999 !important;
      aspect-ratio: auto !important;
      border-radius: 0 !important;
      background: #000 !important;
    }
    .host-card {
      margin-top: 12px;
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
      border-radius: 14px;
    }
    .host-card img {
      width: 76px;
      height: 76px;
      object-fit: cover;
      border-radius: 13px;
      border: 1px solid rgba(255,255,255,0.18);
    }
    .host-card h3 { margin: 0 0 2px; font-size: 18px; }
    .host-card p { margin: 0; color: var(--muted); font-size: 13px; }

    .countdown-wrap { margin-top: 24px; }
    .countdown-label {
      margin: 0 0 12px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      text-align: center;
    }
    .countdown {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      max-width: 440px;
      margin: 0 auto;
    }
    .timebox {
      padding: 16px 10px;
      text-align: center;
      border-radius: 16px;
      background: rgba(139,92,246,0.11);
      border: 1px solid rgba(139,92,246,0.28);
    }
    .timebox strong { display: block; font-size: 29px; color: var(--purple); line-height: 1; }
    .timebox span { color: var(--muted); font-size: 11px; text-transform: uppercase; }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 36px;
    }
    .section-head h2 {
      margin: 10px 0 10px;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.1;
      font-weight: 900;
    }
    .section-head p { margin: 0; color: var(--muted); font-size: 16px; }

    .learning-card {
      max-width: 720px;
      margin: 0 auto;
      overflow: hidden;
      background: #f8fafc;
      color: #101318;
    }
    .learning-bar {
      margin: 18px;
      padding: 14px 18px;
      border-radius: 12px;
      text-align: center;
      font-weight: 900;
      color: white;
      background: linear-gradient(135deg, var(--green), var(--purple));
    }
    .learning-body { padding: 0 24px 24px; }
    .learning-body h3 { text-align: center; margin: 4px 0 14px; font-size: 26px; line-height: 1.2; }
    .callout {
      display: flex;
      gap: 12px;
      background: #eef2f7;
      color: #4b5563;
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 18px;
    }
    .check-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
    .check-list li { display: flex; gap: 10px; color: #354152; font-size: 15px; }
    .check { color: #00a870; font-weight: 900; }

    .fit-grid { display: grid; gap: 12px; max-width: 840px; margin: 0 auto; }
    .fit-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px;
      border-radius: 14px;
      background: var(--panel);
      border: 1px solid var(--line);
    }
    .fit-item span { font-size: 24px; line-height: 1; }
    .fit-item p { margin: 0; color: var(--muted); }
    .warning {
      max-width: 840px;
      margin: 20px auto 0;
      padding: 18px;
      border-radius: 14px;
      border: 1px solid rgba(255,77,94,0.24);
      background: rgba(255,77,94,0.07);
    }
    .warning h3 { color: #ff98a3; margin: 0 0 8px; font-size: 14px; text-transform: uppercase; }
    .warning ul { margin: 0; padding-left: 18px; color: var(--muted); }

    .freedom-grid,
    .ways-grid,
    .stats-grid,
    .faq-grid {
      display: grid;
      gap: 18px;
    }
    .freedom-grid { grid-template-columns: repeat(3, 1fr); }
    .ways-grid { grid-template-columns: repeat(2, 1fr); max-width: 940px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .tile {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: var(--panel);
    }
    .tile .icon { font-size: 30px; margin-bottom: 12px; }
    .tile h3 { margin: 0 0 8px; font-size: 20px; }
    .tile p { margin: 0; color: var(--muted); font-size: 14px; }
    .stat { text-align: center; }
    .stat strong { display: block; font-size: 30px; color: transparent; background: linear-gradient(135deg, var(--green), var(--purple)); -webkit-background-clip: text; background-clip: text; }
    .stat span { color: var(--muted); font-size: 13px; }
    .way-card {
      position: relative;
      overflow: hidden;
      padding: 28px;
    }
    .way-card.featured {
      border-color: rgba(0,255,170,0.45);
      box-shadow: 0 24px 80px rgba(0,255,170,0.12);
    }
    .way-price {
      font-size: clamp(42px, 6vw, 62px);
      line-height: 1;
      font-weight: 900;
      margin: 10px 0 14px;
    }
    .way-card h3 { margin: 0; font-size: 22px; line-height: 1.18; }
    .way-card p { color: var(--muted); margin: 0 0 18px; }
    .way-list {
      list-style: none;
      padding: 0;
      margin: 0 0 22px;
      display: grid;
      gap: 12px;
      color: var(--muted);
    }
    .way-list li { display: flex; gap: 10px; }
    .way-badge {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(139,92,246,0.14);
      color: #d8ccff;
      border: 1px solid rgba(139,92,246,0.28);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .mentor {
      display: grid;
      grid-template-columns: minmax(260px, 0.8fr) 1fr;
      gap: 28px;
      align-items: center;
      max-width: 980px;
      margin: 0 auto;
    }
    .mentor-photo {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.18);
      background: var(--panel);
    }
    .mentor-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
    .mentor-copy h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; margin: 0 0 12px; }
    .mentor-copy p { color: var(--muted); margin: 0 0 18px; }
    .mentor-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .mentor-stat { padding: 14px; border-radius: 12px; background: rgba(0,255,170,0.08); border: 1px solid rgba(0,255,170,0.18); }
    .mentor-stat strong { display: block; color: var(--green); font-size: 20px; }
    .mentor-stat span { color: var(--muted); font-size: 12px; }

    .faq-grid { max-width: 800px; margin: 0 auto; }
    details {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--panel);
      overflow: hidden;
    }
    summary {
      cursor: pointer;
      padding: 18px 20px;
      font-weight: 800;
      list-style: none;
    }
    summary::-webkit-details-marker { display: none; }
    details p { margin: 0; padding: 0 20px 18px; color: var(--muted); }

    .final {
      text-align: center;
      padding: 86px 0 96px;
    }
    .final .card {
      max-width: 860px;
      margin: 0 auto;
      padding: clamp(28px, 5vw, 54px);
    }
    .final h2 { margin: 12px 0; font-size: clamp(30px, 5vw, 54px); line-height: 1.08; }
    .final p { color: var(--muted); max-width: 620px; margin: 0 auto 24px; }

    .site-footer {
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,0.025);
      padding: 52px 0 92px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr repeat(3, 1fr);
      gap: 28px;
      align-items: start;
    }
    .footer-brand {
      display: inline-block;
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .footer-brand span { color: var(--green); }
    .site-footer p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      max-width: 360px;
    }
    .site-footer h3 {
      margin: 0 0 12px;
      font-size: 14px;
      text-transform: uppercase;
      color: var(--text);
    }
    .footer-links {
      list-style: none;
      display: grid;
      gap: 9px;
      padding: 0;
      margin: 0;
    }
    .footer-links a {
      color: var(--muted);
      font-size: 14px;
      transition: color 0.18s ease;
    }
    .footer-links a:hover { color: var(--green); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 12px;
    }

    .legal-page {
      padding: 96px 0 48px;
      min-height: 70svh;
    }
    .legal-card {
      max-width: 860px;
      margin: 0 auto;
      padding: clamp(24px, 4vw, 44px);
    }
    .legal-card h1 {
      margin-top: 0;
      font-size: clamp(30px, 5vw, 48px);
    }
    .legal-card h2 {
      margin: 28px 0 10px;
      font-size: 20px;
    }
    .legal-card p,
    .legal-card li {
      color: var(--muted);
      font-size: 15px;
    }
    .legal-card a { color: var(--green); }

    .sticky-cta {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 60;
      padding: 10px 14px;
      background: rgba(5,5,5,0.95);
      border-top: 1px solid var(--line);
    }
    .sticky-cta.show { display: block; }
    .sticky-cta .btn { width: min(460px, 100%); margin: 0 auto; display: flex; }

    @media (max-width: 860px) {
      .hero { padding-top: 78px; text-align: center; }
      .hero-grid, .mentor { grid-template-columns: 1fr; }
      .hero-intro,
      .hero-details,
      .hero-media {
        grid-column: 1;
        grid-row: auto;
      }
      .hero-intro,
      .hero-details {
        align-self: auto;
        margin-top: 0;
      }
      .hero-intro { order: 1; }
      .hero-media { order: 2; }
      .hero-details { order: 3; }
      .hero-actions { justify-content: center; }
      .micro-proof, .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-bottom { flex-direction: column; }
      .freedom-grid, .ways-grid { grid-template-columns: 1fr; }
      .mentor-photo { max-width: 360px; margin: 0 auto; }
    }
    @media (max-width: 560px) {
      .container { width: min(100% - 24px, 1120px); }
      .section { padding: 56px 0; }
      .nav { height: 52px; }
      .brand { font-size: 11px; }
      .nav .btn { min-height: 34px; padding: 0 11px; }
      .hero { min-height: auto; padding-bottom: 38px; }
      .hero-copy { font-size: 15px; }
      .video-card { padding: 8px; border-radius: 16px; }
      .host-card { grid-template-columns: 58px 1fr; text-align: left; }
      .host-card img { width: 58px; height: 58px; }
      .host-card h3 { font-size: 16px; }
      .host-card p { font-size: 12px; }
      .player-controls { gap: 6px; padding: 38px 8px 8px; }
      .ctrl-btn { width: 34px; height: 34px; flex-basis: 34px; }
      .ctrl-btn.speed { min-width: 42px; padding: 0 8px; }
      .time-display { display: none; }
      .tap-unmute { top: 8px; right: 8px; min-height: 32px; padding: 0 11px; font-size: 12px; }
      .countdown { gap: 8px; }
      .timebox { padding: 12px 6px; border-radius: 12px; }
      .timebox strong { font-size: 23px; }
      .learning-body { padding: 0 16px 18px; }
      .learning-body h3 { font-size: 22px; }
      .mentor-stats { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      body { padding-bottom: 74px; }
    }
