:root {
  --box-brown: #7a5c3a;
  --box-light: #c9a87c;
  --box-cream: #f0e6d3;
  --box-dark: #2e1f0e;
  --box-mid: #a07848;
  --box-ink: #1a1008;
  --accent: #8b1a1a;
  --green-dark: #2d4a1e;
  --green-mid: #4a7a2e;
  --green-light: #7ab648;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--box-cream);
  color: var(--box-ink);
  font-family: 'Libre Baskerville', Georgia, serif;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(122,92,58,0.04) 2px, rgba(122,92,58,0.04) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(122,92,58,0.025) 8px, rgba(122,92,58,0.025) 10px);
}

/* ── HEADER ── */
header {
  border-bottom: 2px solid var(--box-brown);
  background: rgba(240,230,211,0.97);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  padding: 14px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(122,92,58,0.2);
}

.header-notice {
  position: absolute;
  left: 48px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--box-mid);
  text-transform: uppercase;
}

.header-notice strong { color: var(--accent); font-weight: 500; }

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--box-dark);
  text-align: center;
  line-height: 1;
  text-decoration: none;
  display: block;
}

.wordmark span {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.35em;
  color: var(--box-mid);
  text-transform: uppercase;
  margin-top: 4px;
}

nav {
  padding: 0 48px;
  display: flex;
  justify-content: center;
}

nav a {
  display: block;
  padding: 13px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--box-brown);
  text-decoration: none;
  border-right: 1px solid rgba(122,92,58,0.15);
  transition: background 0.15s, color 0.15s;
}

nav a:first-child { border-left: 1px solid rgba(122,92,58,0.15); }
nav a:hover { background: var(--box-brown); color: var(--box-cream); }
nav a.active { background: var(--box-dark); color: var(--box-cream); }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--box-brown);
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.marquee-inner {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,230,211,0.55);
  padding: 0 32px;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--box-dark);
  color: var(--box-cream);
  padding: 28px 48px;
  display: flex;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid rgba(201,168,124,0.15);
}
.stat:last-child { border-right: none; }

.stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--box-light);
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,168,124,0.55);
}

/* ── SECTIONS ── */
section {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 48px;
  border-bottom: 1px solid rgba(122,92,58,0.2);
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--box-mid);
  margin-bottom: 20px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.15;
  color: var(--box-dark);
  margin-bottom: 28px;
}

section h2 em { font-style: italic; color: var(--box-brown); }

section p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #3a2a18;
  margin-bottom: 18px;
  max-width: 640px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--box-dark);
  color: var(--box-cream);
  padding: 72px 48px 64px;
  text-align: center;
}

.page-hero .eyebrow { color: var(--box-mid); margin-bottom: 16px; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  color: var(--box-cream);
  margin-bottom: 20px;
}

.page-hero h1 em { font-style: italic; color: var(--box-light); }

.page-hero p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(240,230,211,0.6);
  max-width: 520px;
  margin: 0 auto;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── STAGES ── */
.stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.stage {
  border: 1px solid rgba(122,92,58,0.25);
  padding: 28px;
  background: rgba(240,230,211,0.4);
}

.stage-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--box-mid);
  margin-bottom: 12px;
}

.stage-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--box-dark);
  margin-bottom: 10px;
}

.stage-desc { font-size: 12.5px; line-height: 1.75; color: #6b4c2a; }

/* ── DIFF TABLE ── */
.diff-table { width: 100%; border-collapse: collapse; margin-top: 36px; font-size: 13px; }

.diff-table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--box-mid);
  border-bottom: 2px solid var(--box-brown);
  padding: 12px 16px;
  text-align: left;
}

.diff-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(122,92,58,0.15);
  color: #3a2a18;
  line-height: 1.5;
}

.diff-table td.check { font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-align: center; }
.yes { color: #3a6b2a; }
.no { color: #8b1a1a; opacity: 0.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: #1a1008; padding: 80px 48px; }
.testimonials .inner { max-width: 840px; margin: 0 auto; }
.testimonials .eyebrow { color: var(--box-mid); }
.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--box-cream);
  margin-bottom: 48px;
}

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,124,0.12);
  padding: 28px;
}

.testimonial-text {
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(240,230,211,0.75);
  margin-bottom: 20px;
}

.testimonial-attr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--box-mid);
}

/* ── QUESTIONNAIRE ── */
.questionnaire { background: var(--box-dark); padding: 80px 48px; }
.questionnaire .inner { max-width: 720px; margin: 0 auto; }
.questionnaire .eyebrow { color: var(--box-mid); }
.questionnaire h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--box-cream);
  margin-bottom: 16px;
}
.questionnaire .inner > p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(240,230,211,0.55);
  max-width: 560px;
  margin-bottom: 44px;
}

.q-card {
  border: 1px solid rgba(201,168,124,0.2);
  padding: 32px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.025);
}

.q-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.3em;
  color: var(--box-mid);
  margin-bottom: 16px;
}

.q-text {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--box-cream);
  margin-bottom: 24px;
  line-height: 1.35;
}

.options { display: flex; flex-wrap: wrap; gap: 8px; }

.option {
  border: 1px solid rgba(201,168,124,0.3);
  padding: 9px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: rgba(240,230,211,0.6);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.12s;
}

.option:hover, .option.sel { background: var(--box-brown); border-color: var(--box-brown); color: var(--box-cream); }

.locked {
  border: 1px dashed rgba(201,168,124,0.12);
  padding: 20px 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0.35;
}

.locked-dash { font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: var(--box-mid); }
.locked-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--box-mid);
  text-transform: uppercase;
}

.email-row { display: flex; margin-top: 40px; }
.email-row input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(201,168,124,0.35);
  border-right: none;
  padding: 14px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: var(--box-cream);
  outline: none;
}
.email-row input::placeholder { color: rgba(201,168,124,0.3); }
.email-row button {
  background: var(--box-brown);
  border: 1px solid var(--box-brown);
  color: var(--box-cream);
  padding: 14px 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.email-row button:hover { background: #5e4128; border-color: #5e4128; }

/* ── MASCOT ── */
.mascot-wrap {
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 260px;
  gap: 60px;
  position: relative;
}

.mascot-field {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

/* SVG grass layer */
.mascot-field svg {
  width: 100%;
  height: 100%;
}

.mascot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.mascot-flap {
  width: 150px; height: 32px;
  background: #9b7348;
  border-radius: 2px 2px 0 0;
  position: relative; z-index: 2;
}
.mascot-flap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 100%;
  background: rgba(0,0,0,0.08);
}
.mascot-body {
  width: 150px; height: 130px;
  background: var(--box-brown);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 9px, rgba(0,0,0,0.06) 9px, rgba(0,0,0,0.06) 10px),
    repeating-linear-gradient(90deg, transparent, transparent 9px, rgba(255,255,255,0.04) 9px, rgba(255,255,255,0.04) 10px);
  position: relative; z-index: 1;
}
.mascot-tape {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 100%;
  background: rgba(201,168,124,0.55);
  border-left: 1px solid rgba(122,92,58,0.25);
  border-right: 1px solid rgba(122,92,58,0.25);
}
.mascot-eye {
  width: 9px; height: 9px;
  background: var(--box-cream);
  border-radius: 50%;
  position: absolute; top: 36px;
}
.mascot-eye.l { left: 28px; }
.mascot-eye.r { right: 28px; }

.mascot-legs { display: flex; gap: 32px; }
.mascot-leg {
  width: 20px; height: 42px;
  background: #1a1008;
  border-radius: 0 0 3px 3px;
  position: relative;
}
.mascot-leg::after {
  content: '';
  position: absolute;
  bottom: -8px; left: -4px;
  width: 28px; height: 10px;
  background: #0e0804;
  border-radius: 0 0 5px 5px;
}

.mascot.sm .mascot-flap { width: 90px; height: 22px; }
.mascot.sm .mascot-body { width: 90px; height: 80px; }
.mascot.sm .mascot-eye { width: 6px; height: 6px; top: 22px; }
.mascot.sm .mascot-eye.l { left: 16px; }
.mascot.sm .mascot-eye.r { right: 16px; }
.mascot.sm .mascot-leg { width: 14px; height: 26px; }
.mascot.sm .mascot-legs { gap: 18px; }
.mascot.sm .mascot-tape { width: 16px; }

/* ── FOOTER ── */
.footer-main { background: var(--box-dark); color: var(--box-cream); padding: 64px 48px 40px; }

.footer-grid {
  max-width: 840px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .wordmark { text-align: left; font-size: 18px; color: var(--box-cream); margin-bottom: 16px; display: block; text-decoration: none; }
.footer-brand .wordmark span { color: var(--box-mid); }
.footer-brand p { font-size: 12px; line-height: 1.8; color: rgba(240,230,211,0.45); max-width: 240px; }

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--box-mid);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(240,230,211,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.12s;
}
.footer-col a:hover { color: var(--box-cream); }

.footer-bottom {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid rgba(201,168,124,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,124,0.3);
}

/* ── CONTENT BLOCKS (inner pages) ── */
.content-block {
  max-width: 840px;
  margin: 0 auto;
  padding: 72px 48px;
  border-bottom: 1px solid rgba(122,92,58,0.2);
}

.content-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--box-dark);
  margin-bottom: 16px;
  margin-top: 40px;
}
.content-block h3:first-of-type { margin-top: 0; }

.content-block p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #3a2a18;
  margin-bottom: 18px;
  max-width: 640px;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(122,92,58,0.2);
  padding: 28px 0;
}
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--box-dark);
  margin-bottom: 12px;
  cursor: pointer;
}
.faq-a {
  font-size: 14px;
  line-height: 1.85;
  color: #5a3e22;
  max-width: 620px;
}

/* ── TRACK ── */
.track-box {
  border: 1px solid rgba(122,92,58,0.3);
  padding: 40px;
  margin-top: 40px;
  background: rgba(240,230,211,0.5);
}
.track-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--box-mid);
  margin-bottom: 12px;
}
.track-value {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--box-dark);
  margin-bottom: 32px;
}
.track-timeline { display: flex; flex-direction: column; gap: 0; }
.track-event {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(122,92,58,0.1);
}
.track-event:last-child { border-bottom: none; }
.track-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--box-light);
  margin-top: 4px;
  flex-shrink: 0;
}
.track-dot.current { background: var(--box-brown); box-shadow: 0 0 0 3px rgba(122,92,58,0.2); }
.track-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--box-mid);
  width: 120px;
  flex-shrink: 0;
  margin-top: 2px;
}
.track-desc { font-size: 13.5px; color: #3a2a18; line-height: 1.6; }
