:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #171717;
  background: #f7f7f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.document-shell {
  flex: 1;
  padding: 72px 24px;
}

.hero,
.document {
  width: min(720px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.document h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
}

.document h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.4;
}

.document section {
  margin-top: 36px;
}

.document p,
.document li {
  line-height: 1.7;
}

.document ul {
  padding-left: 24px;
}

.document a,
.eyebrow a {
  color: inherit;
}

.lede {
  margin: 32px 0 0;
  max-width: 560px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.status {
  margin-top: 20px;
  color: #666;
}

.early-access {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #d8d8d2;
}

.early-access h2 {
  margin: 0;
  font-size: 1.15rem;
}

.early-access > p,
.early-access label,
.form-status {
  font-size: 0.95rem;
  line-height: 1.5;
}

.early-access label {
  display: block;
  margin: 24px 0 8px;
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input,
.form-row button {
  min-height: 44px;
  border: 1px solid #a8a8a2;
  border-radius: 4px;
  font: inherit;
}

.form-row input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  color: inherit;
  background: #fff;
}

.form-row button {
  padding: 10px 18px;
  color: #f7f7f4;
  background: #171717;
  cursor: pointer;
}

.form-row button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: #666;
}

.updated {
  margin-top: 20px;
  color: #666;
}

.status a,
.footer a {
  color: inherit;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  font-size: 0.9rem;
  color: #666;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-nav [aria-current="page"] {
  color: #171717;
}

@media (max-width: 600px) {
  .footer {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .form-row {
    align-items: stretch;
    flex-direction: column;
  }
}
