:root {
  --ink: #171719;
  --paper: #f6f3ed;
  --blue: #3b6edc;
  --line: rgba(23, 23, 25, 0.2);
  --muted: #656461;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 64px)); margin-inline: 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; }

/* Shared navigation and legal-page foundation */
.nav { min-height: 72px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.wordmark { display: inline-flex; flex-direction: column; font-size: 15px; line-height: .9; letter-spacing: -.04em; }
.wordmark span { font-weight: 700; }
.wordmark em { color: var(--blue); font-family: "Playfair Display", Georgia, serif; font-size: 1.1em; font-weight: 500; }
.nav-status, .eyebrow { font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.nav-status { color: var(--muted); }
h1, h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-weight: 500; letter-spacing: -.055em; line-height: .94; }
h1 i, h2 i { color: var(--blue); font-weight: 500; }

/* Single-screen launch page */
.launch-page { min-height: 100svh; }
.launch { min-height: 100svh; display: grid; grid-template-rows: auto 1fr auto; }
.launch-content { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .7fr); gap: clamp(44px, 8vw, 124px); align-items: end; padding: clamp(28px, 4vh, 50px) 0 clamp(24px, 3vh, 36px); }
.eyebrow { margin: 0 0 28px; color: var(--blue); }
.launch h1 { max-width: 800px; font-size: clamp(52px, 7.3vw, 108px); }
.launch-intro { max-width: 555px; margin: 22px 0 0; color: #3e3d3a; font-size: clamp(14px, 1.25vw, 17px); line-height: 1.68; letter-spacing: -.018em; }
.launch-optin { align-self: center; max-width: 360px; margin-top: 32px; padding: 23px 0 0; border-top: 1px solid var(--ink); }
.optin-label { margin: 0 0 13px; color: var(--blue); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .08em; }
.launch-optin > p:not(.optin-label):not(.form-note) { max-width: 315px; margin: 0 0 18px; font-size: 15px; line-height: 1.58; letter-spacing: -.015em; }
.launch-form { display: flex; border-bottom: 1px solid var(--ink); }
.launch-form input { flex: 1; min-width: 0; padding: 13px 0; border: 0; outline: 0; color: var(--ink); background: transparent; font: 500 14px "Manrope", Arial, sans-serif; }
.launch-form input::placeholder { color: #777671; }
.launch-form button { padding: 0 0 0 16px; border: 0; color: var(--ink); background: transparent; cursor: pointer; font: 700 12px "Manrope", Arial, sans-serif; white-space: nowrap; }
.launch-form button span { color: var(--blue); margin-left: 6px; font-size: 16px; }
.form-note { min-height: 18px; margin: 12px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; }

footer { color: var(--paper); background: var(--ink); }
.footer-inner { min-height: 62px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.footer-note, .copyright { margin: 0; color: #aaa8a3; font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .04em; }
.footer-links { display: flex; justify-content: center; gap: 20px; font-size: 11px; }
.footer-links a { color: #ddd9d0; }
.footer-links a:hover { color: #83a6f9; }
.copyright { text-align: right; }

@media (max-width: 760px) {
  .shell { width: min(100% - 40px, 1180px); }
  .nav { min-height: 72px; }
  .nav-status { display: none; }
  .launch { display: block; min-height: 100svh; }
  .launch-content { grid-template-columns: 1fr; gap: 41px; align-items: start; padding: 62px 0 53px; }
  .launch h1 { font-size: clamp(48px, 14.5vw, 78px); }
  .eyebrow { margin-bottom: 24px; }
  .launch-intro { margin-top: 25px; font-size: 14px; line-height: 1.62; }
  .launch-optin { width: 100%; max-width: none; margin-top: 0; }
  .footer-inner { min-height: 0; grid-template-columns: 1fr; gap: 15px; padding: 23px 0; align-items: start; }
  .footer-links { justify-content: start; }
  .copyright { text-align: left; }
}
