:root {
  --paper: #f4f1ea;
  --panel: #fbfaf6;
  --ink: #17160f;
  --body: #403e34;
  --muted: #6b6a60;
  --line: #d6d1c4;
  --bar-track: #e7e3d8;
  --accent: #1d4ed8;
  --accent-dark: #93b4ff;
  --dark-input: #1f1e15;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

input::placeholder {
  color: #9a978c;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

button,
input {
  border-radius: 0;
  font: inherit;
}

.site {
  min-height: 100vh;
  overflow-x: hidden;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.legal-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mono-label {
  margin: 0;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.wordmark {
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.03em;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 40px;
  border-bottom: 1px solid var(--ink);
}

.nav__cta {
  background: var(--accent);
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 11px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .15s ease;
}

.nav__cta:hover {
  background: var(--ink);
}

.hero {
  border-bottom: 1px solid var(--ink);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
}

.hero__copy {
  padding: 64px 40px 60px;
  border-right: 1px solid var(--ink);
}

.hero__eyebrow {
  margin-bottom: 30px;
  letter-spacing: .16em;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--accent);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.hero__subhead {
  max-width: 540px;
  margin: 0 0 36px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
  text-wrap: pretty;
}

.waitlist-form {
  display: flex;
  max-width: 480px;
  margin-bottom: 18px;
  border: 1px solid var(--ink);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 16px;
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--ink);
  color: var(--ink);
  font-size: 15px;
  outline: 0;
}

.waitlist-form button {
  padding: 15px 22px;
  background: var(--accent);
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s ease, opacity .15s ease;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: var(--ink);
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-error {
  max-width: 480px;
  margin: -4px 0 18px;
  color: #9f1239;
  font-size: 14px;
  line-height: 1.4;
}

.confirmation {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin-bottom: 18px;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--accent);
}

.confirmation span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
}

.confirmation strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.microcopy {
  margin: 0;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: .03em;
}

.snapshot {
  display: flex;
  flex-direction: column;
  padding: 32px 36px;
  background: var(--panel);
}

.snapshot[data-show-snapshot="false"] {
  display: none;
}

.snapshot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.snapshot__top span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.snapshot__top i {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.score {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 6px;
}

.score strong {
  color: var(--ink);
  font-size: 66px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .85;
}

.score span {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 500;
}

.score em {
  margin-left: auto;
  padding-bottom: 10px;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-style: normal;
}

.snapshot__caption {
  margin: 0 0 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.snapshot__bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 42px;
  align-items: center;
  gap: 14px;
}

.bar-row span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.bar-row b {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: var(--bar-track);
}

.bar-row i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
}

.bar-row em {
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-style: normal;
  text-align: right;
}

.trust {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 26px 40px;
  border-bottom: 1px solid var(--ink);
}

.trust .mono-label {
  flex: 0 0 auto;
  font-size: 11.5px;
  letter-spacing: .12em;
}

.trust div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.trust span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.section {
  border-bottom: 1px solid var(--ink);
}

.section__head {
  padding: 38px 40px 0;
}

.section__head--compact {
  padding-bottom: 28px;
}

.section h2,
.cta-band h2 {
  margin: 18px 0 32px;
  color: var(--ink);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.section__head--compact h2 {
  margin-bottom: 0;
}

.stats-grid,
.feature-grid,
.persona-grid {
  display: grid;
  border-top: 1px solid var(--ink);
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid article {
  padding: 34px 36px 40px;
  border-right: 1px solid var(--line);
}

.stats-grid article:last-child,
.persona-grid article:last-child {
  border-right: 0;
}

.stats-grid p,
.feature-grid p {
  margin: 0 0 20px;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stats-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .95;
}

.stats-grid span,
.feature-grid span,
.persona-grid p,
.steps p {
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.55;
}

.stats-grid span {
  display: block;
  max-width: 280px;
}

.steps article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: start;
  padding: 30px 40px;
  border-top: 1px solid var(--ink);
  transition: background .15s ease;
}

.steps article:hover,
.feature-grid article:hover {
  background: var(--panel);
}

.steps strong {
  color: var(--accent);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .9;
}

.steps h3,
.feature-grid h3,
.persona-grid h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.18;
}

.steps p,
.persona-grid p {
  max-width: 580px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-grid article {
  padding: 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .15s ease;
}

.feature-grid article:nth-child(2n) {
  border-right: 0;
}

.feature-grid p {
  margin-bottom: 16px;
}

.feature-grid h3 {
  font-size: 19px;
}

.feature-grid span {
  display: block;
  font-size: 15px;
}

.persona-grid {
  grid-template-columns: repeat(3, 1fr);
}

.persona-grid article {
  padding: 32px 36px 40px;
  border-right: 1px solid var(--line);
}

.persona-grid div {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.persona-grid div span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.persona-grid h3 {
  margin: 0;
  font-size: 20px;
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 52px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px;
}

.cta-band .mono-label {
  color: var(--accent-dark);
}

.cta-band h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -.03em;
  line-height: 1.06;
  text-wrap: balance;
}

.waitlist-form--dark {
  max-width: none;
  border-color: var(--paper);
}

.waitlist-form--dark input {
  background: var(--dark-input);
  border-color: var(--paper);
  color: var(--white);
}

.waitlist-form--dark button:hover {
  background: var(--accent);
  opacity: .88;
}

.form-error--dark {
  color: #fda4af;
}

.confirmation--dark {
  max-width: none;
  background: var(--dark-input);
}

.confirmation--dark strong {
  color: var(--white);
}

.cta-band__microcopy {
  margin: 0;
  color: #8a8678;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: .02em;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 40px;
}

.footer .wordmark {
  font-size: 18px;
  letter-spacing: -.02em;
}

.footer div {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: .02em;
}

.footer a:not(.wordmark) {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.footer a:not(.wordmark):hover {
  border-color: var(--ink);
}

.back-link {
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-header {
  padding: 54px 40px 44px;
  border-bottom: 1px solid var(--ink);
}

.legal-header h1 {
  margin: 20px 0 16px;
  color: var(--ink);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}

.legal-header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
}

.legal-intro {
  max-width: 680px;
  margin: 0;
  padding: 40px 40px 8px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.7;
}

.policy-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.policy-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 34px 40px;
  border-top: 1px solid var(--ink);
}

.policy-list article > span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.policy-list h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.policy-list p,
.policy-list li {
  max-width: 640px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.policy-list p {
  margin: 0;
}

.policy-list ul {
  margin: 0;
  padding-left: 18px;
}

.policy-list li {
  margin-bottom: 8px;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.policy-list strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-band {
  margin-top: 0;
  padding: 48px 40px;
  background: var(--ink);
  color: var(--paper);
}

.contact-band .mono-label {
  color: var(--accent-dark);
}

.contact-band h2 {
  margin: 14px 0 12px;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.contact-band p:last-child {
  max-width: 560px;
  margin: 0;
  color: #c8c4b8;
  font-size: 16px;
  line-height: 1.7;
}

.contact-band a {
  color: var(--accent-dark);
}

.legal .footer > span {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
}

@media (max-width: 860px) {
  .hero__grid,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .stats-grid,
  .feature-grid,
  .persona-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article,
  .feature-grid article,
  .feature-grid article:nth-child(2n),
  .persona-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero__copy,
  .snapshot,
  .trust,
  .section__head,
  .steps article,
  .stats-grid article,
  .feature-grid article,
  .persona-grid article,
  .cta-band__inner,
  .footer,
  .legal-header,
  .legal-intro,
  .policy-list article,
  .contact-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav {
    align-items: flex-start;
  }

  .nav__cta,
  .back-link {
    font-size: 11px;
  }

  .waitlist-form,
  .waitlist-form--dark {
    flex-direction: column;
  }

  .waitlist-form input,
  .waitlist-form--dark input {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .waitlist-form--dark input {
    border-bottom-color: var(--paper);
  }

  .waitlist-form button {
    width: 100%;
  }

  .bar-row {
    grid-template-columns: 96px 1fr 40px;
    gap: 10px;
  }

  .steps article,
  .policy-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer,
  .footer div {
    align-items: flex-start;
    flex-direction: column;
  }
}
