* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --bg: #020713;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.09);
  --line: rgba(255,255,255,.12);
  --muted: rgba(255,255,255,.66);
  --faint: rgba(255,255,255,.44);
  --blue: #36c9ff;
  --cyan: #70f3ff;
  --red: #ff4655;
  --gold: #ffd36c;
  --purple: #9b5cff;
  --green: #55ffb0;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

body {
  margin: 0;
  color: white;
  background:
    radial-gradient(circle at 18% 6%, rgba(54,201,255,.22), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255,70,85,.20), transparent 26%),
    radial-gradient(circle at 56% 100%, rgba(155,92,255,.18), transparent 36%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  z-index: -2;
}

.site-glow {
  position: fixed;
  inset: auto -20% -30% -20%;
  height: 420px;
  background: radial-gradient(circle, rgba(54,201,255,.12), transparent 65%);
  filter: blur(24px);
  z-index: -1;
}

a { color: inherit; }

.topbar {
  width: min(1180px, calc(100vw - 36px));
  margin: 22px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(54,201,255,.22);
  border-radius: 24px;
  background: rgba(2, 9, 22, .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 60px rgba(54,201,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  letter-spacing: -1px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(145deg, rgba(54,201,255,.90), rgba(155,92,255,.72));
  color: #020713;
  box-shadow: 0 0 42px rgba(54,201,255,.26);
}

.brand-title {
  font-size: 25px;
  font-weight: 1000;
  letter-spacing: -.9px;
}
.brand-title span, .footer-brand span { color: var(--blue); text-shadow: 0 0 22px rgba(54,201,255,.42); }
.brand-subtitle {
  margin-top: 2px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 8px; }
nav a {
  text-decoration: none;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  transition: .2s ease;
}
nav a:hover { color: white; background: rgba(255,255,255,.07); }
.nav-cta {
  color: #020713 !important;
  background: var(--blue) !important;
  box-shadow: 0 0 36px rgba(54,201,255,.32);
}
.mobile-toggle { display: none; }

.section-shell {
  width: min(1180px, calc(100vw - 36px));
  margin: 28px auto 0;
}

.hero {
  min-height: 710px;
  padding: 54px;
  border-radius: 38px;
  border: 1px solid rgba(54,201,255,.24);
  background:
    radial-gradient(circle at 78% 24%, rgba(255,70,85,.18), transparent 26%),
    radial-gradient(circle at 18% 12%, rgba(54,201,255,.18), transparent 32%),
    linear-gradient(135deg, rgba(6,20,42,.88), rgba(2,7,19,.96));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  position: relative;
  overflow: hidden;
}

.hero::after, .lab-panel::after {
  content: "";
  position: absolute;
  inset: -60% -40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.055), transparent);
  transform: rotate(18deg);
  animation: scan 9s infinite ease-in-out;
  pointer-events: none;
}

@keyframes scan {
  0% { translate: -30% -20%; opacity: 0; }
  22%, 65% { opacity: 1; }
  100% { translate: 30% 20%; opacity: 0; }
}

.hero-copy, .command-card, .lab-panel > * { position: relative; z-index: 1; }

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bdeeff;
  background: rgba(54,201,255,.10);
  border: 1px solid rgba(54,201,255,.26);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(85,255,176,.9);
}

h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin: 24px 0 0;
  font-size: clamp(56px, 8vw, 108px);
  line-height: .9;
  letter-spacing: -5px;
}
.gradient-text {
  background: linear-gradient(90deg, #fff, var(--blue), var(--gold), var(--red), #fff);
  background-size: 360%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 7s infinite ease;
}
@keyframes gradientShift {
  0%,100% { background-position: 0%; }
  50% { background-position: 100%; }
}
.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.68;
  font-weight: 700;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 16px;
  font-weight: 1000;
  text-decoration: none;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary { color: #020713; background: var(--blue); box-shadow: 0 0 36px rgba(54,201,255,.32); }
.btn.secondary { color: white; background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.14); }
.btn.founder-btn { color: #120b00; background: linear-gradient(135deg, var(--gold), #fff2b7); box-shadow: 0 0 42px rgba(255,211,108,.24); }
.btn.full { width: 100%; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.trust-row div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
}
.trust-row strong { display: block; font-size: 14px; }
.trust-row span { display: block; margin-top: 6px; color: var(--faint); font-size: 12px; font-weight: 700; line-height: 1.45; }

.command-card {
  min-height: 590px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(54,201,255,.16), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  animation: floaty 7s infinite ease-in-out;
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.card-topline { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.card-topline span { color: var(--cyan); font-size: 12px; font-weight: 1000; letter-spacing: 2px; text-transform: uppercase; }
.card-topline strong { color: #04121f; background: var(--green); border-radius: 99px; padding: 8px 12px; font-size: 12px; }
.radar-wrap { display: grid; place-items: center; padding: 30px 0 24px; }
.radar {
  width: min(360px, 100%);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(54,201,255,.08), transparent 60%);
}
.radar::before, .radar::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: inherit;
  border: 1px dashed rgba(54,201,255,.24);
  animation: spin 24s linear infinite;
}
.radar::after { inset: 76px; border-color: rgba(255,70,85,.24); animation-duration: 15s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.radar-core {
  width: 142px;
  height: 142px;
  border-radius: 38px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 1000;
  letter-spacing: 2px;
  line-height: 1.2;
  background: linear-gradient(145deg, rgba(54,201,255,.30), rgba(255,70,85,.20));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 0 60px rgba(54,201,255,.18);
}
.node {
  position: absolute;
  padding: 9px 12px;
  border-radius: 99px;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 1.6px;
}
.node-one { top: 28px; left: 46px; color: var(--blue); }
.node-two { top: 112px; right: 18px; color: var(--gold); }
.node-three { bottom: 44px; right: 62px; color: var(--red); }
.node-four { bottom: 78px; left: 12px; color: var(--green); }
.coach-output { display: grid; gap: 12px; }
.coach-line { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 12px; padding: 16px; border-radius: 18px; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.09); }
.coach-line span { color: var(--blue); font-weight: 1000; }
.coach-line p { margin: 0; color: rgba(255,255,255,.72); font-weight: 800; }

.banner-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}
.banner-strip span { padding: 10px 14px; border-radius: 999px; color: rgba(255,255,255,.70); background: rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.08); font-size: 12px; font-weight: 1000; letter-spacing: 1.3px; text-transform: uppercase; }

.section-heading { max-width: 850px; margin: 0 auto 34px; text-align: center; }
.section-heading.left { text-align: left; margin: 0; }
.section-heading h2 { margin: 18px 0 0; font-size: clamp(36px, 5.4vw, 68px); line-height: .98; letter-spacing: -2.6px; }
.section-heading p { margin: 18px auto 0; color: var(--muted); font-size: 18px; line-height: 1.65; font-weight: 700; }
.split { padding: 72px 0 36px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: center; }
.steps-grid { display: grid; gap: 16px; }
.step-card, .feature-card, .price-card, details, .timeline-item {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.step-card { padding: 22px; display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: center; }
.step-number { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-weight: 1000; background: linear-gradient(145deg, rgba(54,201,255,.36), rgba(155,92,255,.28)); border: 1px solid rgba(255,255,255,.14); }
.step-card h3 { margin: 0; font-size: 24px; letter-spacing: -.8px; }
.step-card p { margin: 8px 0 0; color: var(--muted); line-height: 1.55; font-weight: 700; }

.lab-preview { padding: 48px 0; }
.lab-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(54,201,255,.24);
  background:
    radial-gradient(circle at 18% 8%, rgba(54,201,255,.18), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(255,70,85,.12), transparent 28%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.panel-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.panel-header h2 { margin: 14px 0 0; font-size: clamp(32px, 5vw, 56px); letter-spacing: -2px; }
.status-pill { padding: 12px 14px; border-radius: 999px; color: #ffccd1; background: rgba(255,70,85,.11); border: 1px solid rgba(255,70,85,.25); font-size: 12px; font-weight: 1000; letter-spacing: 1.4px; text-transform: uppercase; }
.review-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.review-tab { border: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.72); background: rgba(0,0,0,.24); padding: 12px 14px; border-radius: 14px; font-weight: 1000; cursor: pointer; }
.review-tab.active { color: #020713; background: var(--blue); border-color: transparent; }
.lab-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; margin-top: 18px; }
.input-card, .output-card { padding: 24px; border-radius: 24px; border: 1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.24); }
.input-label { display: block; margin-bottom: 14px; color: var(--faint); font-size: 11px; font-weight: 1000; letter-spacing: 1.8px; text-transform: uppercase; }
.fake-input { margin-top: 10px; padding: 14px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.76); font-weight: 800; }
.output-card h3 { margin: 0; font-size: 28px; letter-spacing: -1px; }
.output-card p { color: var(--muted); line-height: 1.62; font-weight: 700; }
.mini-checklist { display: flex; gap: 10px; flex-wrap: wrap; }
.mini-checklist span { color: #c9ffe4; background: rgba(85,255,176,.09); border: 1px solid rgba(85,255,176,.16); padding: 9px 11px; border-radius: 99px; font-size: 12px; font-weight: 1000; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 26px; position: relative; overflow: hidden; }
.feature-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 80% 0%, rgba(54,201,255,.13), transparent 38%); }
.feature-card.red::before { background: radial-gradient(circle at 80% 0%, rgba(255,70,85,.14), transparent 38%); }
.feature-card.gold::before { background: radial-gradient(circle at 80% 0%, rgba(255,211,108,.14), transparent 38%); }
.feature-card.purple::before { background: radial-gradient(circle at 80% 0%, rgba(155,92,255,.16), transparent 38%); }
.feature-card.cyan::before { background: radial-gradient(circle at 80% 0%, rgba(112,243,255,.13), transparent 38%); }
.feature-card.white::before { background: radial-gradient(circle at 80% 0%, rgba(255,255,255,.10), transparent 38%); }
.feature-card > * { position: relative; z-index: 1; }
.feature-card span, .timeline-item span, .plan-top span { color: var(--blue); font-size: 12px; font-weight: 1000; letter-spacing: 1.8px; text-transform: uppercase; }
.feature-card h3 { margin: 14px 0 0; font-size: 27px; letter-spacing: -1px; line-height: 1.1; }
.feature-card p { margin: 14px 0 0; color: var(--muted); line-height: 1.62; font-weight: 700; }

.plans { padding: 68px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { padding: 28px; position: relative; display: flex; flex-direction: column; }
.price-card.featured { border-color: rgba(54,201,255,.44); box-shadow: 0 0 76px rgba(54,201,255,.15); transform: translateY(-10px); }
.price-card.founder { border-color: rgba(255,211,108,.34); }
.popular-badge { position: absolute; right: 20px; top: -14px; color: #020713; background: var(--blue); padding: 8px 12px; border-radius: 999px; font-size: 11px; font-weight: 1000; letter-spacing: 1.2px; text-transform: uppercase; }
.plan-top strong { display: block; margin-top: 14px; font-size: 50px; letter-spacing: -2px; }
.plan-top strong span { color: var(--faint); font-size: 16px; letter-spacing: 0; }
.price-card p { color: var(--muted); line-height: 1.6; font-weight: 700; }
.price-card ul { display: grid; gap: 11px; list-style: none; padding: 0; margin: 16px 0 24px; flex: 1; }
.price-card li { color: rgba(255,255,255,.76); font-weight: 800; }
.price-card li::before { content: "✓"; color: var(--green); margin-right: 8px; font-weight: 1000; }
.price-card li.muted { color: var(--faint); }
.price-card li.muted::before { content: "—"; color: var(--faint); }
.plan-note { color: var(--faint); font-size: 13px; line-height: 1.6; font-weight: 700; text-align: center; max-width: 850px; margin: 22px auto 0; }

.roadmap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; padding: 50px 0; align-items: start; }
.timeline { display: grid; gap: 14px; }
.timeline-item { padding: 22px; }
.timeline-item.active { border-color: rgba(85,255,176,.28); box-shadow: 0 0 50px rgba(85,255,176,.08); }
.timeline-item h3 { margin: 12px 0 0; font-size: 24px; }
.timeline-item p { margin: 8px 0 0; color: var(--muted); line-height: 1.58; font-weight: 700; }

.faq { padding: 48px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
details { padding: 22px; }
summary { cursor: pointer; font-weight: 1000; font-size: 18px; }
details p { margin: 14px 0 0; color: var(--muted); line-height: 1.6; font-weight: 700; }

.final-cta {
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(54,201,255,.28);
  background:
    radial-gradient(circle at 18% 10%, rgba(54,201,255,.16), transparent 32%),
    radial-gradient(circle at 92% 90%, rgba(255,70,85,.10), transparent 34%),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.final-cta h2 { margin: 14px 0 0; font-size: clamp(34px, 5vw, 62px); letter-spacing: -2px; }
.final-cta p { color: var(--muted); line-height: 1.62; font-weight: 700; max-width: 720px; }

footer {
  width: min(1180px, calc(100vw - 36px));
  margin: 38px auto 0;
  padding: 34px 0 52px;
  text-align: center;
  color: var(--faint);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-brand { font-size: 26px; font-weight: 1000; color: white; }
.footer-links { margin-top: 18px; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--blue); text-decoration: none; font-weight: 900; }
.disclaimer { max-width: 920px; margin: 20px auto 0; font-size: 13px; line-height: 1.62; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(3,10,22,.95);
  border: 1px solid rgba(54,201,255,.24);
  box-shadow: 0 18px 60px rgba(0,0,0,.44);
  color: white;
  font-weight: 850;
  transition: .25s ease;
  z-index: 50;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

@media (max-width: 980px) {
  .topbar { align-items: flex-start; }
  .mobile-toggle { display: block; margin-left: auto; border: 1px solid rgba(255,255,255,.14); color: white; background: rgba(255,255,255,.06); border-radius: 12px; padding: 10px 12px; font-size: 20px; }
  nav { display: none; width: 100%; flex-direction: column; align-items: stretch; }
  nav.open { display: flex; }
  nav a { text-align: center; }
  .topbar { flex-wrap: wrap; }
  .hero, .split, .lab-grid, .roadmap { grid-template-columns: 1fr; }
  .trust-row, .feature-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .final-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .topbar, .section-shell, footer { width: min(100vw - 24px, 1180px); }
  .hero { padding: 38px 22px; min-height: auto; }
  .hero h1 { letter-spacing: -2.5px; }
  .hero-lead { font-size: 17px; }
  .trust-row { gap: 9px; }
  .command-card { min-height: auto; padding: 22px; }
  .radar { width: 280px; }
  .brand-title { font-size: 21px; }
  .brand-mark { width: 48px; height: 48px; }
  .panel-header { flex-direction: column; }
  .step-card { grid-template-columns: 1fr; }
  .lab-panel, .final-cta { padding: 24px; }
}
