/* Pre-lander styling. Deliberately plain and readable: this page has to look
   like an editorial review, not a sales funnel. Meta reviewers and readers both
   distrust the high-pressure landing-page look, and it converts worse for
   considered purchases anyway. */

:root {
  --ground: #fbfaf8;
  --surface: #ffffff;
  --ink: #1b1a18;
  --ink-2: #46433e;
  --muted: #6f6a62;
  --line: #e3ded6;
  --accent: #7a4a1e;
  --accent-ink: #ffffff;
  --note: #f4efe6;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #161513;
    --surface: #1d1c1a;
    --ink: #ece8e2;
    --ink-2: #c2bcb2;
    --muted: #928c82;
    --line: #322f2b;
    --accent: #d99a52;
    --accent-ink: #1b1a18;
    --note: #24211d;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.66;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
}

.kicker {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 .6rem;
}

h1 {
  font-size: clamp(1.9rem, 5.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 .7rem;
  text-wrap: balance;
}

.standfirst {
  font-size: 1.16rem;
  color: var(--ink-2);
  margin: 0 0 1.8rem;
  text-wrap: pretty;
}

h2 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.06rem;
  letter-spacing: -.01em;
  margin: 2.3rem 0 .6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

p { margin: 0 0 1.05rem; }

ul { margin: 0 0 1.05rem; padding-left: 1.15rem; }
li { margin-bottom: .5rem; }

.disclosure {
  background: var(--note);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .95rem 1.1rem;
  font-size: .93rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 1.4rem;
}

.cta {
  display: block;
  margin: 1.8rem 0 .5rem;
  padding: .95rem 1.4rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.02rem;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
}

.cta:hover, .cta:focus-visible { filter: brightness(1.08); }
.cta:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

.cta.secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.cta-note {
  font-size: .86rem;
  color: var(--muted);
  text-align: center;
  margin: 0 0 1rem;
}

footer {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.6rem 1.25rem 3.5rem;
  border-top: 1px solid var(--line);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: .85rem;
  color: var(--muted);
}

footer p { margin: 0 0 .55rem; }
footer a { color: var(--muted); }
.small { font-size: .8rem; line-height: 1.5; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
