:root {
  color-scheme: light;
  --paper: #f7f1e8;
  --paper-strong: #eee3d6;
  --ink: #2b231e;
  --muted: #75675e;
  --line: #d9cabe;
  --accent: #9e493e;
  --sage: #dce4d6;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}
a { color: inherit; text-underline-offset: 0.2em; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.skip { position: absolute; left: -10000px; top: 1rem; }
.skip:focus { left: 1rem; z-index: 10; padding: .7rem 1rem; background: white; }
.shell { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
header { border-bottom: 1px solid var(--line); }
nav { min-height: 74px; display: flex; align-items: center; gap: 1.25rem; }
.brand { margin-right: auto; font-family: var(--serif); font-size: 1.55rem; font-weight: 700; text-decoration: none; }
.nav-link { color: var(--muted); text-decoration: none; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: .65rem 1.05rem; border: 1px solid var(--ink); border-radius: 999px;
  background: var(--ink); color: var(--paper); font-weight: 700; text-decoration: none; cursor: pointer;
}
.button.secondary { background: transparent; color: var(--ink); }
.hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: center; padding: 6.5rem 0 5.5rem; }
.eyebrow { color: var(--accent); font-weight: 750; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; }
h1 { margin: .7rem 0 1.25rem; font-size: clamp(3.2rem, 8vw, 6.7rem); font-weight: 600; letter-spacing: -.045em; }
h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); letter-spacing: -.025em; }
h3 { font-size: 1.35rem; }
.lede { max-width: 62ch; color: var(--muted); font-size: 1.15rem; }
.actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.8rem; }
.word-card { min-height: 410px; border: 1px solid var(--line); border-radius: 32px; padding: 2rem; background: #efe3d2; display: flex; flex-direction: column; box-shadow: 0 30px 90px #5d463019; }
.word-card .word { margin-top: auto; font-family: var(--serif); font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1; }
.word-card .meaning { color: var(--muted); }
.section { padding: 5rem 0; border-top: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { border: 1px solid var(--line); border-radius: 22px; padding: 1.4rem; background: #ffffff35; }
.card p, .muted { color: var(--muted); }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.price-card { border: 1px solid var(--line); border-radius: 24px; padding: 1.5rem; }
.price-card.featured { background: var(--sage); }
.legal { width: min(780px, calc(100% - 2rem)); margin: 0 auto; padding: 4rem 0 6rem; }
.legal h1 { font-size: clamp(2.8rem, 8vw, 5rem); }
.legal h2 { margin-top: 2.6rem; font-size: 1.8rem; }
.notice { border-left: 4px solid var(--accent); padding: .8rem 1rem; background: #fff6; }
form { display: grid; gap: 1rem; max-width: 700px; }
label { display: grid; gap: .35rem; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .85rem; background: #fff9; color: var(--ink); font: inherit; }
textarea { min-height: 180px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 1.5rem; }
footer { border-top: 1px solid var(--line); padding: 2.5rem 0; color: var(--muted); }
.footer-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-row span { margin-right: auto; }

@media (max-width: 760px) {
  nav .nav-link { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; gap: 2rem; }
  .word-card { min-height: 320px; }
  .grid, .pricing { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
