:root {
  --ink: #17332f;
  --ink-soft: #36514b;
  --paper: #f5f0e7;
  --paper-deep: #e9dfcf;
  --white: #fffdf8;
  --clay: #c86348;
  --gold: #d5a550;
  --sage: #7ea092;
  --line: rgba(23, 51, 47, .17);
  --shadow: 0 24px 70px rgba(23, 51, 47, .12);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
}
.skip:focus { top: 16px; }

.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
}
h1 { max-width: 760px; font-size: clamp(3.2rem, 8vw, 7.4rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); letter-spacing: -.04em; }
h3 { font-size: 1.65rem; }
p { margin: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 231, .9);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1.2rem;
}
.navlinks { display: flex; align-items: center; gap: 22px; }
.navlinks a { text-decoration: none; font-size: .88rem; font-weight: 700; }
.navlinks a:hover { color: var(--clay); }

.hero { position: relative; overflow: hidden; padding: 96px 0 54px; }
.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -130px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f7d698, var(--clay) 46%, var(--ink) 47%, var(--ink) 51%, transparent 52%);
  opacity: .17;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 64px;
  align-items: end;
}
.hero-copy > p:not(.eyebrow) { max-width: 620px; margin-top: 28px; color: var(--ink-soft); font-size: 1.17rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.btn.primary { color: white; background: var(--ink); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(23, 51, 47, .14); }
.launch-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.launch-card strong { display: block; margin-bottom: 8px; font-family: Georgia, serif; font-size: 1.4rem; }
.launch-card small { color: var(--ink-soft); }
.zero-spend {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--sage);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.factbar { padding: 28px 0 84px; }
.factgrid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.fact { padding: 26px 22px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact b { display: block; font-family: Georgia, serif; font-size: 2.15rem; font-weight: 500; }
.fact span { color: var(--ink-soft); font-size: .83rem; }

.section { padding: 96px 0; }
.section.alt { background: var(--ink); color: var(--paper); }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-head > p { color: var(--ink-soft); font-size: 1.06rem; }
.alt .section-head > p { color: rgba(245, 240, 231, .74); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.card .num { color: var(--clay); font-size: .82rem; font-weight: 900; }
.card h3 { margin: 42px 0 14px; }
.card p { color: var(--ink-soft); }
.source-state {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--paper-deep);
  font-size: .72rem;
  font-weight: 800;
}

.questions { counter-reset: question; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(245,240,231,.18); }
.question { min-height: 220px; padding: 32px; background: var(--ink); }
.question::before {
  counter-increment: question;
  content: "0" counter(question);
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.question h3 { max-width: 420px; }

.guide-callout {
  padding: 52px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--paper-deep), #f4d7c7);
}
.guide-callout p { max-width: 680px; margin-top: 14px; color: var(--ink-soft); }

.briefing-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.briefing-copy p { margin-top: 22px; color: var(--ink-soft); }
.trust-list { margin: 30px 0 0; padding: 0; list-style: none; }
.trust-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
form {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .82rem; font-weight: 800; }
label.full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 116px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0; font-weight: 500; }
.check input { width: auto; margin: 5px 0 0; }
.form-note { margin-top: 14px; color: var(--ink-soft); font-size: .77rem; }
.form-status { min-height: 28px; margin-top: 14px; font-weight: 800; }

.guide-hero { padding: 86px 0 60px; border-bottom: 1px solid var(--line); }
.guide-hero h1 { max-width: 920px; font-size: clamp(3rem, 7vw, 6.2rem); }
.provenance { margin-top: 28px; color: var(--ink-soft); }
.fact-sheet { display: grid; gap: 18px; }
.fact-row {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
}
.fact-row dt { font-weight: 900; }
.fact-row dd { margin: 0; color: var(--ink-soft); }
.caution { padding: 28px; border-left: 5px solid var(--clay); background: var(--white); }

.asset-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.asset-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.asset-card img, .asset-card video { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; background: var(--ink); }
.asset-card video { aspect-ratio: 9 / 16; }
.asset-card h3 { margin: 18px 0 8px; font-size: 1.2rem; }
.asset-card a { font-size: .82rem; font-weight: 800; }
.copy-block { margin-top: 32px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.copy-block h3 { margin-bottom: 14px; }

.legal { max-width: 980px; }
.legal > h2 { margin-top: 64px; font-size: clamp(2rem, 4vw, 3.25rem); }
.legal > h2:first-child { margin-top: 0; }
.legal > p { margin-top: 18px; color: var(--ink-soft); font-size: 1.02rem; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.legal-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.legal-grid h3 { margin-bottom: 14px; font-size: 1.35rem; }
.legal-grid p { color: var(--ink-soft); }
.legal code { padding: 2px 6px; border-radius: 6px; background: var(--paper-deep); }

.footer { padding: 54px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; }
.footer p { max-width: 720px; color: var(--ink-soft); font-size: .8rem; }
.footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer a { font-size: .8rem; font-weight: 800; }

@media (max-width: 900px) {
  .navlinks a:not(.lang) { display: none; }
  .hero-grid, .section-head, .briefing-grid { grid-template-columns: 1fr; }
  .launch-card { max-width: 520px; }
  .factgrid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards, .asset-list, .legal-grid { grid-template-columns: 1fr 1fr; }
  .guide-callout { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 64px; }
  .section { padding: 72px 0; }
  .factgrid, .cards, .questions, .asset-list, .fields, .legal-grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .question { min-height: 190px; }
  .guide-callout { padding: 30px; }
  .fact-row { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid { flex-direction: column; }
}

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