:root {
  --bg: #05070f;
  --bg-elev: #0c1220;
  --card: rgba(18, 24, 38, 0.72);
  --card-solid: #121826;
  --border: rgba(59, 130, 246, 0.18);
  --border-strong: rgba(139, 92, 246, 0.35);
  --text: #eef3ff;
  --muted: #93a4c3;
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --purple: #8b5cf6;
  --green: #34d399;
  --gold: #f5c542;
  --danger: #f87171;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(1000px 520px at 12% -8%, rgba(59, 130, 246, 0.22), transparent 55%),
    radial-gradient(900px 480px at 92% 8%, rgba(139, 92, 246, 0.16), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(52, 211, 153, 0.06), transparent 55%),
    var(--bg);
  min-height: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(5, 7, 15, 0.72);
  border-bottom: 1px solid rgba(36, 48, 73, 0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none !important;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #4f8cff 0%, #2563eb 55%, #1d4ed8 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(147, 197, 253, 0.25);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.45);
  text-decoration: none !important;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: none;
  color: var(--text) !important;
}

.btn-ghost:hover {
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 24px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 56px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.08);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.45;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 18px 0 16px;
  font-weight: 800;
}

.grad {
  background: linear-gradient(105deg, #60a5fa 0%, #818cf8 45%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 34rem;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row strong {
  color: var(--text);
  font-weight: 600;
}

/* Product mock */
.mock {
  position: relative;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(96, 165, 250, 0.55), rgba(139, 92, 246, 0.25), rgba(15, 23, 42, 0.2));
  box-shadow: var(--shadow);
}

.mock-inner {
  border-radius: 21px;
  background: linear-gradient(180deg, #0f1628 0%, #0a0f1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(36, 48, 73, 0.9);
  background: rgba(0, 0, 0, 0.2);
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.mock-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #86efac;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 999px;
  padding: 4px 10px;
}

.mock-body {
  display: grid;
  grid-template-columns: 1fr 120px;
  min-height: 280px;
}

.mock-chat {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  border: 1px solid var(--border);
  background: rgba(18, 24, 38, 0.9);
  max-width: 95%;
}

.bubble .meta {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.bubble.callout {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(124, 58, 237, 0.14);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.12);
}

.bubble.user {
  align-self: flex-end;
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.12);
}

.bubble.coach {
  border-color: rgba(59, 130, 246, 0.2);
}

.mock-hud {
  border-left: 1px solid rgba(36, 48, 73, 0.9);
  padding: 12px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.75rem;
}

.mock-hud h4 {
  margin: 0 0 10px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.stat {
  margin-bottom: 10px;
}

.stat strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 600;
}

.stat span {
  color: var(--muted);
  font-size: 0.7rem;
}

.mock-glow {
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.modes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mode-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.mode-chip.soon {
  color: var(--muted);
  border-style: dashed;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(8px);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.feature:hover {
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(96, 165, 250, 0.25);
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Download */
.download-box {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(59, 130, 246, 0.16), transparent 55%),
    var(--card-solid);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.download-steps {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.download-steps h4 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.download-steps ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.download-steps strong {
  color: var(--green);
}

@media (max-width: 960px) {
  .download-box {
    grid-template-columns: 1fr;
  }
}

/* Value stack — what $100 includes */
.value-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.value-card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.value-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.value-card.highlight {
  grid-column: 1 / -1;
  background:
    radial-gradient(700px 180px at 10% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(500px 160px at 90% 100%, rgba(139, 92, 246, 0.12), transparent 50%),
    var(--card-solid);
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.12), 0 20px 50px rgba(37, 99, 235, 0.12);
}

.value-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.value-card p em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.value-footer {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(245, 197, 66, 0.25);
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.08), rgba(59, 130, 246, 0.06));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.value-price-line {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.value-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.value-per {
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}

.value-or {
  margin: 0 10px;
  opacity: 0.5;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--blue-bright);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pricing */
.pricing-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.card.featured {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15), 0 24px 60px rgba(37, 99, 235, 0.18);
  background:
    radial-gradient(500px 200px at 50% 0%, rgba(59, 130, 246, 0.14), transparent 60%),
    var(--card-solid);
  transform: scale(1.02);
}

.badge {
  display: inline-flex;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #86efac;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  padding: 4px 10px;
  margin: 0 0 12px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
  line-height: 1;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.strike {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 600;
  margin-right: 8px;
}

.sub {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 0.92rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.card li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--muted);
  border-bottom: 1px solid rgba(36, 48, 73, 0.6);
  font-size: 0.95rem;
}

.card li:last-child {
  border-bottom: none;
}

.card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.fine {
  color: #64748b;
  font-size: 0.8rem;
  margin: 12px 0 0;
}

/* Clean strip */
.clean {
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.06)),
    var(--card-solid);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.clean ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.clean li {
  margin: 8px 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 12px 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Waitlist form */
.waitlist {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waitlist input {
  flex: 1 1 220px;
  min-width: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.waitlist input:focus {
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(36, 48, 73, 0.9);
  padding: 36px 0 48px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
  text-decoration: none;
}

.footer a:hover {
  color: var(--text);
}

.disclaimer {
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 900px;
}

/* Legal pages */
.legal-page {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page pre {
  white-space: pre-wrap;
  font-family: var(--font);
  color: var(--muted);
  line-height: 1.6;
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .pricing-wrap,
  .grid3,
  .steps,
  .value-stack,
  .clean,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-card.highlight {
    grid-column: auto;
  }

  .card.featured {
    transform: none;
    order: -1;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 36px;
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-hud {
    border-left: none;
    border-top: 1px solid rgba(36, 48, 73, 0.9);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
