:root {
  --ink: #2c282b;
  --muted: #6b6468;
  --cream: #f4efe5;
  --paper: #fffaf1;

  /* Core identity */
  --lavender: #c9b8d8;
  --lavender-deep: #8d789d;

  /* Editorial accents, used sparingly */
  --sage: #bdd0c0;
  --clay: #d9aaa2;
  --blue: #b9cdd3;
  --butter: #e9dca7;

  --line: #302b2f;
  --soft-line: rgba(48, 43, 47, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* Intentionally flat. No floating blobs, glow, glass, or fake depth. */
.ambient { display: none; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 18px;
  border-bottom: 2px solid var(--line);
}
.wordmark {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.045em;
  text-decoration: none;
}
.wordmark span {
  padding: 0;
  background: none;
}
.wordmark span:nth-child(3) {
  padding: 1px 5px 2px;
  background: var(--lavender);
}
.header-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.header-link:hover { background: var(--sage); }

.hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 72px;
  align-items: start;
  padding: 82px 0 94px;
}
.eyebrow,
.step {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 7.2vw, 86px);
}
.hero h1 span {
  color: var(--ink);
  background: none;
  box-shadow: inset 0 -.22em 0 var(--lavender);
}
.lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  appearance: none;
  border: 2px solid var(--line);
  border-radius: 2px;
  padding: 12px 17px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.button:hover { background: var(--lavender); }
.button.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.button.primary:hover {
  background: var(--lavender);
  color: var(--ink);
}
.button.secondary { background: var(--paper); }
.button.full { width: 100%; }

.privacy-card {
  margin-top: 18px;
  background: var(--sage);
  border: 2px solid var(--line);
  border-radius: 2px;
  padding: 28px;
  box-shadow: 7px 7px 0 var(--lavender);
}
.privacy-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--line);
}
.privacy-card h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.privacy-card p { color: #4e554f; }
.privacy-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 22px;
}
.privacy-tags span {
  padding: 7px 8px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.intro-band {
  background: var(--lavender);
  border-block: 2px solid var(--line);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 72px;
  padding: 46px 0;
  align-items: start;
}
.big-copy {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3.5vw, 43px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 700;
}
.small-copy {
  margin: 4px 0 0;
  color: #504957;
  font-size: 16px;
}

.section { padding: 96px 0; }
.section-heading {
  max-width: 800px;
  margin-bottom: 38px;
}
.section-heading.compact { margin-bottom: 0; }
.section-heading h2 { font-size: clamp(42px, 6vw, 66px); }
.section-heading > p:last-child {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.form-card,
.signup-card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 2px;
  box-shadow: none;
}
.form-card {
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  gap: 30px;
}
.field {
  display: grid;
  gap: 9px;
}
.field > span,
.checkbox-group legend {
  font-size: 14px;
  font-weight: 800;
}
.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 1px;
  outline: none;
  resize: vertical;
  background: #fffdf8;
  color: var(--ink);
  padding: 13px 14px;
  transition: box-shadow .12s ease, background .12s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--line);
  background: #fff;
  box-shadow: 4px 4px 0 var(--blue);
}
.field textarea { min-height: 120px; }
.form-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-top: 18px;
  border-top: 1.5px solid var(--line);
}
.form-footer p {
  margin: 0;
  max-width: 600px;
  color: var(--muted);
  font-size: 13px;
}
.form-status {
  min-height: 24px;
  margin: 0;
  color: #46604b;
  font-weight: 700;
}
.form-status.error { color: #874851; }
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.signup-section {
  background: var(--paper);
  border-block: 2px solid var(--line);
  box-shadow: inset 0 9px 0 var(--clay);
}
.signup-grid {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 78px;
  align-items: start;
}
.signup-card {
  padding: 28px;
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--clay);
}
.checkbox-group {
  border: 0;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 0;
}
.checkbox-group legend { margin-bottom: 10px; }
.checkbox-group label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 0;
  border: 0;
  border-top: 1px solid var(--soft-line);
  background: transparent;
  cursor: pointer;
}
.checkbox-group label:last-child {
  border-bottom: 1px solid var(--soft-line);
}
.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--lavender-deep);
}
.checkbox-group span {
  display: grid;
  gap: 1px;
}
.checkbox-group small { color: var(--muted); }
.microcopy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: left;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 12px;
}
.footer-mark {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}
.footer-mark::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 8px;
  margin-left: 8px;
  background: var(--butter);
}

@media (max-width: 840px) {
  .hero,
  .intro-grid,
  .signup-grid { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    gap: 44px;
    padding: 66px 0 76px;
  }
  .privacy-card {
    max-width: 560px;
    margin-top: 0;
  }
  .intro-grid { gap: 22px; }
  .signup-grid { gap: 42px; }
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1120px); }
  .site-header { padding-top: 18px; }
  .header-link { display: none; }
  .wordmark {
    gap: 6px;
    font-size: 14px;
  }
  .hero { padding: 54px 0 66px; }
  .hero h1 { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { text-align: center; }
  .privacy-tags { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-heading h2 { font-size: 45px; }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
