:root {
  color-scheme: dark;
  --bg: #050706;
  --panel: #080c0b;
  --panel-2: #07110f;
  --line: #172220;
  --line-strong: #24433d;
  --text: #f7f7f2;
  --muted: #9aa39f;
  --faint: #727c78;
  --accent: #4ccbb7;
  --accent-strong: #64e7d2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 28%, rgba(76, 203, 183, 0.12), transparent 34rem),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(76, 203, 183, 0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 78%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  width: 26px;
  height: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.brand-mark span {
  border-radius: 2px;
  background: var(--accent);
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(4),
.brand-mark span:nth-child(6),
.brand-mark span:nth-child(8) {
  background: transparent;
}

.nav-link {
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
}

.hero {
  padding: 124px 0 52px;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.82);
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
}

h1 span {
  color: var(--accent);
}

.hero-copy {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.35;
}

.pricing-strip,
.pain-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 40px auto 0;
  text-align: left;
}

.pricing-strip div,
.pain-strip div,
.proof-row div,
.form-card {
  border: 1px solid var(--line);
  background: rgba(8, 12, 11, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.pricing-strip div,
.pain-strip div {
  border-color: var(--line-strong);
  border-radius: 8px;
  padding: 20px;
}

.pain-strip {
  margin-top: 34px;
}

.pain-strip strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.pain-strip span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 10px;
}

.pricing-strip {
  margin-top: 16px;
}

.price-label {
  margin: 0 0 8px;
  color: var(--faint);
  font-size: 14px;
}

.pricing-strip strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.pricing-strip span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 10px;
}

.note-line {
  margin: 24px 0 0;
  color: var(--accent-strong);
  font-size: 16px;
}

.waitlist-section {
  padding: 54px 0 34px;
}

.form-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 28px;
}

.form-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-heading p,
.question-count {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.form-heading h2,
.form-step h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

.form-heading span,
.privacy-note {
  color: var(--muted);
}

.bot-field {
  display: none;
}

.progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.progress span {
  height: 4px;
  border-radius: 999px;
  background: #192522;
}

.progress span.is-active {
  background: var(--accent);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-step h3 {
  margin: 8px 0 18px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-button {
  min-height: 136px;
  border: 1px solid var(--line);
  background: #050807;
  color: var(--text);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.choice-button:hover,
.choice-button:focus-visible {
  border-color: var(--accent);
  background: var(--panel-2);
  outline: none;
  transform: translateY(-1px);
}

.choice-button strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.choice-button span {
  display: block;
  color: var(--muted);
  line-height: 1.35;
  font-size: 14px;
}

.email-label {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.email-row {
  display: flex;
  gap: 10px;
}

.email-row input {
  width: 100%;
  min-width: 0;
  height: 54px;
  border: 1px solid #26302e;
  background: #050807;
  color: var(--text);
  border-radius: 8px;
  padding: 0 16px;
}

.email-row input:focus {
  border-color: var(--accent);
  outline: none;
}

.email-row button {
  height: 54px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--accent);
  color: #04100d;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.privacy-note {
  margin: 12px 0 0;
  font-size: 14px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 34px 0 74px;
}

.proof-row div {
  border-radius: 8px;
  padding: 18px;
}

.proof-row strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.proof-row span {
  color: var(--muted);
  line-height: 1.4;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    padding: 80px 0 28px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .pricing-strip,
  .pain-strip,
  .choice-grid,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 20px;
  }

  .email-row {
    flex-direction: column;
  }

  .email-row button {
    width: 100%;
  }
}
