/* palette: bg=#FFFFFF fg=#22262B accent=#C4D82E */
/* fonts: display="Space Grotesk" body="DM Sans" mono="Space Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F6F1;
  --fg: #22262B;
  --fg-soft: #3B4148;
  --muted: #767C82;
  --accent: #C4D82E;
  --accent-deep: #A3B71C;
  --accent-ink: #2C3406;
  --border: rgba(34, 38, 43, 0.12);
  --border-soft: rgba(34, 38, 43, 0.07);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; }
p { margin: 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

section { position: relative; }
.section { padding: clamp(72px, 12vw, 160px) 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 8px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(34, 38, 43, 0.06), 0 8px 30px -18px rgba(34, 38, 43, 0.35);
  border-color: var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 34px; height: 34px;
  flex: none;
  display: grid; place-items: center;
}
.brand__mark svg { width: 34px; height: 34px; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.nav { display: none; align-items: center; gap: 34px; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a {
  font-size: 14px;
  color: var(--fg-soft);
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }

.header__cta {
  display: none;
  padding: 11px 22px;
  border-radius: 9999px;
  background: var(--fg);
  color: var(--bg);
  font-size: 13.5px;
  font-weight: 500;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
@media (min-width: 940px) { .header__cta { display: inline-block; } }
.header__cta:hover { transform: translateY(-2px); background: var(--accent-deep); color: var(--accent-ink); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 74px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .header__cta {
  display: inline-block;
  margin-top: 24px;
  align-self: flex-start;
  font-size: 15px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { transform: translateY(-3px); background: var(--accent-deep); }
.btn--dark { background: var(--fg); color: var(--bg); }
.btn--dark:hover { transform: translateY(-3px); background: var(--accent); color: var(--accent-ink); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--fg); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--fg);
  transition: gap 0.25s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform 0.25s var(--ease); }
.link-arrow:hover { gap: 12px; }
.link-arrow:hover::after { transform: translateX(2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--accent-ink);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
  filter: grayscale(1) contrast(1.05);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(196,216,46,0.82), rgba(196,216,46,0.9));
  mix-blend-mode: multiply;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__inner { position: relative; z-index: 2; padding: 140px 0 80px; }
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before { content: ""; width: 40px; height: 2px; background: var(--accent-ink); }
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 400;
  max-width: 15ch;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--bg); }
.hero__sub {
  margin-top: 34px;
  max-width: 46ch;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.6;
  color: var(--accent-ink);
}
.hero__actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero .btn--primary { background: var(--fg); color: var(--bg); }
.hero .btn--primary:hover { background: var(--bg); color: var(--fg); }
.hero .btn--ghost { border-color: rgba(44,52,6,0.4); color: var(--accent-ink); }
.hero .btn--ghost:hover { border-color: var(--accent-ink); }
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span { width: 1px; height: 40px; background: var(--accent-ink); opacity: 0.5; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); opacity: 0.3; } 50% { transform: scaleY(1); opacity: 0.7; } }

/* small hero (interior pages) */
.subhero { padding: clamp(120px, 18vw, 200px) 0 clamp(56px, 8vw, 96px); background: var(--bg-alt); border-bottom: 1px solid var(--border-soft); }
.subhero__index { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.subhero h1 { font-size: clamp(2.8rem, 8vw, 6rem); line-height: 1; letter-spacing: -0.03em; font-weight: 400; margin-top: 20px; max-width: 16ch; }
.subhero h1 em { font-style: normal; color: var(--accent-deep); }
.subhero p { margin-top: 26px; max-width: 52ch; color: var(--fg-soft); font-size: 1.08rem; }

/* ---------- Intro / split heading ---------- */
.split {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: start; } }
.split h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.split h2 em { font-style: normal; color: var(--accent-deep); }
.split__body p { color: var(--fg-soft); margin-bottom: 22px; font-size: 1.05rem; }
.split__body p:last-child { margin-bottom: 0; }

/* circular thumbnail row */
.thumb-row { display: flex; gap: 18px; margin-top: 48px; flex-wrap: wrap; }
.thumb-row figure { margin: 0; text-align: center; }
.thumb {
  width: 92px; height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 4px 20px -6px rgba(34,38,43,0.25);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row figcaption { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .grid--3 { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 34px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  box-shadow: 0 4px 24px -14px rgba(34,38,43,0.18);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 46px -18px rgba(34,38,43,0.28); border-color: var(--border); }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent-deep); }
.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.card__icon svg { width: 24px; height: 24px; stroke: var(--accent-ink); }
.card h3 { font-size: 1.42rem; letter-spacing: -0.01em; margin: 14px 0 12px; }
.card p { color: var(--fg-soft); font-size: 1rem; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.card__tags span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 9999px;
  background: var(--bg-alt);
  color: var(--fg-soft);
}

/* ---------- Manifesto (dark band) ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
}
.manifesto__quote em { font-style: italic; color: var(--accent); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.4;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  height: 40px;
}
.manifesto cite {
  display: block;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-style: normal;
}

/* ---------- Timeline / progression ---------- */
.timeline { position: relative; margin-top: 60px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 15px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--border));
}
@media (min-width: 820px) { .timeline::before { left: 50%; transform: translateX(-50%); } }
.tl-item { position: relative; padding-left: 54px; padding-bottom: 52px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item__dot {
  position: absolute;
  left: 6px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  z-index: 2;
}
.tl-item__phase { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); }
.tl-item h3 { font-size: 1.6rem; letter-spacing: -0.015em; margin: 10px 0 12px; }
.tl-item p { color: var(--fg-soft); font-size: 1.02rem; max-width: 52ch; }
.tl-item__meta { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 12px; letter-spacing: 0.05em; }
@media (min-width: 820px) {
  .tl-item { width: 50%; padding-left: 0; padding-right: 54px; text-align: right; }
  .tl-item__dot { left: auto; right: -10px; }
  .tl-item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 54px; text-align: left; }
  .tl-item:nth-child(even) .tl-item__dot { left: -10px; right: auto; }
  .tl-item p { margin-left: auto; }
  .tl-item:nth-child(even) p { margin-left: 0; }
}

/* ---------- Stats ---------- */
.stats { display: grid; gap: 32px; grid-template-columns: 1fr 1fr; }
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.4rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1; }
.stat__num em { font-style: normal; color: var(--accent-deep); }
.stat__label { font-size: 0.95rem; color: var(--fg-soft); margin-top: 12px; max-width: 22ch; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.faq-item__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--accent-deep);
  transition: transform 0.3s var(--ease);
}
.faq-item__icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-item__icon::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item[data-open="true"] .faq-item__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item__a p { padding: 0 0 28px; color: var(--fg-soft); max-width: 70ch; }

/* ---------- CTA ---------- */
.cta {
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
}
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.03em; font-weight: 400; max-width: 18ch; margin: 0 auto; }
.cta p { margin: 26px auto 0; max-width: 46ch; font-size: 1.1rem; color: var(--accent-ink); }
.cta .btn { margin-top: 40px; }
.cta .btn--dark:hover { background: var(--bg); color: var(--fg); }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.contact-info dl { display: grid; gap: 26px; margin: 40px 0 0; }
.contact-info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 1.08rem; color: var(--fg); }
.contact-info dd a:hover { color: var(--accent-deep); }

form .field { margin-bottom: 22px; }
form label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
form input, form textarea, form select {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font: inherit;
  font-size: 16px;
  color: var(--fg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(196,216,46,0.25);
}
form textarea { resize: vertical; min-height: 140px; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.form-consent input { width: auto; margin-top: 4px; }
.form-consent a { color: var(--accent-deep); text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--fg); color: rgba(255,255,255,0.72); padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer .brand__name, .footer .brand__mark svg path { color: var(--bg); }
.footer__brand p { margin-top: 22px; max-width: 34ch; color: rgba(255,255,255,0.6); font-size: 0.98rem; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 400; margin-bottom: 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer__col a { color: rgba(255,255,255,0.72); font-size: 0.98rem; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer__bottom a:hover { color: var(--accent); }
.footer .brand__sub { color: rgba(255,255,255,0.45); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
}

/* ---------- Cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: center; padding: 24px; background: rgba(34,38,43,0.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
@media (min-width: 640px) { .cookie-popup { align-items: flex-end; justify-content: flex-start; } }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 30px 34px; max-width: 460px; border-radius: 14px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 0.92rem; color: var(--fg-soft); line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 22px; border-radius: 9999px; border: 1px solid var(--border); font-size: 14px; font-weight: 500; transition: transform 0.2s var(--ease); }
.cookie-popup__actions button:hover { transform: translateY(-2px); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ---------- Legal pages ---------- */
.legal { padding: clamp(120px, 16vw, 180px) 0 clamp(64px, 9vw, 110px); }
.legal__wrap { max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.03em; font-weight: 400; margin-bottom: 16px; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 48px; }
.legal h2 { font-size: 1.5rem; letter-spacing: -0.01em; margin: 44px 0 16px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 1.02rem; margin-bottom: 16px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent-deep); text-decoration: underline; }

/* thanks page */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 120px 20px; }
.thanks__badge { width: 76px; height: 76px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; margin: 0 auto 32px; }
.thanks__badge svg { width: 34px; height: 34px; stroke: var(--accent-ink); }
.thanks h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.03em; font-weight: 400; }
.thanks p { margin: 22px auto 40px; max-width: 44ch; color: var(--fg-soft); }

.section--alt { background: var(--bg-alt); }
.section__head { max-width: 720px; margin-bottom: 60px; }
.section__head h2 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 400; }
.section__head h2 em { font-style: normal; color: var(--accent-deep); }
.section__head p { margin-top: 22px; color: var(--fg-soft); font-size: 1.08rem; }
