:root {
  --ink: #14161a;
  --ink-soft: #4b5058;
  --paper: #fbfaf8;
  --line: #e6e3dd;
  --accent: #2a5bd7;
  --accent-ink: #ffffff;
  --card: #ffffff;
  --radius: 12px;
  --max: 720px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

header.wrap {
  padding-top: 32px;
  padding-bottom: 8px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.hero {
  padding-top: 64px;
  padding-bottom: 48px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 14ch;
}

.subhead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 36px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 480px;
}

.waitlist-form[hidden] {
  display: none;
}

.waitlist-form input[type='email'] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 13px 16px;
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
}

.waitlist-form input[type='email']:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.waitlist-form button {
  padding: 13px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-ink);
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
}

.waitlist-form button:hover {
  background: #1f49b0;
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.pricing {
  padding-top: 24px;
  padding-bottom: 56px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.pricing h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  letter-spacing: -0.01em;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 360px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 6px 0;
  color: var(--ink-soft);
}

.price-card li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.contrast {
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 24px;
}

.problem {
  padding-top: 24px;
  padding-bottom: 8px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.problem h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  letter-spacing: -0.01em;
}

.problem p {
  color: var(--ink-soft);
  max-width: 60ch;
}

.competitors {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  max-width: 60ch;
}

.competitors li {
  padding: 10px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

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

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

.fix-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  max-width: 60ch;
}

.fix-points li {
  padding: 6px 0;
  color: var(--ink-soft);
}

.fix-points li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.closing {
  padding-top: 24px;
  padding-bottom: 56px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.closing h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  letter-spacing: -0.01em;
  max-width: 26ch;
}

.cta-link {
  display: inline-block;
  padding: 13px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
}

.cta-link:hover {
  background: #1f49b0;
}

.footer {
  padding: 32px 24px 48px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}
