:root {
  --navy: #1f3864;
  --blue: #297f8c;
  --red: #d63b27;
  --red-deep: #b32d1c;
  --yellow: #f5a623;
  --yellow-deep: #e8901a;
  --cream: #fbf3e2;
  --paper: #fef8ec;
  --ink: #1a1410;
  --muted: #6b5d44;
  --line: #ead9b8;
  --green: #3d6b43;
  --green-wash: #e6f0e2;
  --red-wash: #fbe3de;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.58;
}
a { color: var(--blue); }
a:hover { color: var(--red); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 10; background: white; padding: 8px 12px; }
.site-header { background: var(--ink); color: white; border-bottom: 5px solid var(--yellow); }
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { color: white; text-decoration: none; font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.brand small { display: block; color: var(--yellow); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: flex-end; }
.nav-links a { color: white; text-decoration: none; font-size: 14px; font-weight: 700; }
.nav-links a[aria-current="page"] { color: var(--yellow); }
.hero {
  background: var(--yellow);
  background-image: radial-gradient(circle at 86% 12%, rgba(214, 59, 39, .18), transparent 44%);
  border-bottom: 0;
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 64px 24px 58px; }
.eyebrow { color: var(--red-deep); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: 13px; margin: 0 0 14px; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; letter-spacing: -.025em; }
h1 { margin: 0 0 22px; font-size: clamp(42px, 7vw, 76px); max-width: 840px; }
h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 44px); }
h3 { margin: 0 0 8px; font-size: 22px; }
.lede { font-size: clamp(21px, 3vw, 27px); line-height: 1.38; max-width: 820px; margin: 0 0 24px; }
.principle {
  max-width: 820px;
  background: rgba(255, 255, 255, .55);
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--red);
  padding: 20px 24px;
  margin: 30px 0;
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.3;
  font-weight: 800;
  color: var(--ink);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button { display: inline-block; border: 2px solid var(--ink); background: var(--ink); color: white; padding: 11px 20px; text-decoration: none; font-weight: 800; border-radius: 999px; box-shadow: 3px 3px 0 var(--red); transition: transform .12s, box-shadow .12s, background .12s; }
.button:hover { color: var(--ink); background: var(--cream); transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--red); }
.button.secondary { background: rgba(255, 255, 255, .55); color: var(--ink); }
.button.secondary:hover { background: white; }
.button.download { background: var(--red); border-color: var(--ink); }
main { max-width: var(--max); margin: 0 auto; padding: 48px 24px 80px; }
.narrow { max-width: 790px; }
section + section { margin-top: 62px; }
.question { background: var(--red); background-image: radial-gradient(circle at 90% 25%, rgba(245, 166, 35, .45), transparent 38%); color: white; padding: 30px 32px; border: 2px solid var(--ink); border-radius: 18px; box-shadow: 5px 5px 0 var(--yellow); font-size: 24px; font-weight: 800; line-height: 1.35; }
.question p { margin: 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card { border: 2px solid var(--ink); border-radius: 14px; background: white; padding: 23px; box-shadow: 4px 4px 0 var(--yellow); }
.card.student { background: var(--red-wash); box-shadow: 4px 4px 0 var(--red); }
.card.teacher { background: var(--green-wash); box-shadow: 4px 4px 0 var(--green); }
.card p:last-child { margin-bottom: 0; }
.tag { display: inline-block; color: var(--cream); background: var(--red); border-radius: 999px; padding: 5px 11px; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.steps { counter-reset: steps; list-style: none; padding: 0; margin: 26px 0; }
.steps li { counter-increment: steps; position: relative; padding: 0 0 28px 62px; min-height: 54px; }
.steps li::before { content: counter(steps); position: absolute; left: 0; top: -4px; width: 42px; height: 42px; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; font-weight: 800; box-shadow: 2px 2px 0 var(--red); }
.steps li:not(:last-child)::after { content: ""; position: absolute; left: 20px; top: 39px; bottom: 2px; border-left: 2px solid var(--line); }
.session { background: var(--cream); border: 2px solid var(--ink); border-left: 8px solid var(--red); border-radius: 14px; box-shadow: 4px 4px 0 var(--yellow); padding: 22px 24px; margin: 30px 0; }
.session:nth-of-type(even) { border-left-color: var(--blue); box-shadow: 4px 4px 0 var(--blue); }
.meta { color: var(--muted); font-size: 15px; }
.callout { background: var(--cream); border: 2px dashed var(--yellow-deep); border-radius: 14px; padding: 22px 24px; }
.callout strong { color: var(--navy); }
ul.checks { list-style: none; padding: 0; }
ul.checks li { position: relative; padding-left: 31px; margin: 10px 0; }
ul.checks li::before { content: "□"; position: absolute; left: 0; top: -2px; color: var(--blue); font-size: 22px; }
.page-tools { display: flex; flex-wrap: wrap; gap: 10px; border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 34px; }
.page-tools a, .page-tools button { font: inherit; font-size: 14px; font-weight: 800; padding: 8px 14px; border: 2px solid var(--ink); border-radius: 999px; background: white; color: var(--ink); text-decoration: none; cursor: pointer; }
.page-tools a:hover, .page-tools button:hover { background: var(--yellow); }
.field { margin: 24px 0; }
.field label, .score-title { display: block; color: var(--navy); font-weight: 800; margin-bottom: 7px; }
textarea, input[type="text"] { width: 100%; border: 2px solid var(--ink); border-radius: 10px; padding: 12px; min-height: 48px; font: inherit; background: white; box-shadow: 2px 2px 0 var(--line); }
textarea { min-height: 125px; resize: vertical; }
.score-row { border: 2px solid var(--ink); border-radius: 14px; padding: 18px; margin: 16px 0; background: white; box-shadow: 3px 3px 0 var(--yellow); }
.score-options { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 10px 0; }
.score-options label { font-size: 15px; }
.total { position: sticky; bottom: 12px; background: var(--yellow); color: var(--ink); border: 2px solid var(--ink); border-radius: 999px; padding: 12px 16px; font-weight: 800; text-align: center; box-shadow: 3px 3px 0 var(--red); }
.source-list li { margin-bottom: 15px; }
.live-pill { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; padding: 8px 14px; border: 2px solid var(--ink); border-radius: 999px; background: rgba(255,255,255,.5); color: var(--ink); font-size: 14px; font-weight: 800; }
.live-pill::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(214,59,39,.14); }
.video-wrap { margin: 0 auto 58px; max-width: 900px; }
.video { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--ink); border: 3px solid var(--ink); border-radius: 18px; box-shadow: 6px 6px 0 var(--red); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-note { margin: 14px 0 0; color: var(--muted); font-size: 15px; font-style: italic; }
.reader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reader { display: block; color: var(--ink); text-decoration: none; background: white; border: 2px solid var(--ink); border-radius: 14px; padding: 22px; box-shadow: 4px 4px 0 var(--yellow); transition: transform .12s, box-shadow .12s; }
.reader:hover { color: var(--ink); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--red); }
.reader small { display: block; margin-bottom: 7px; color: var(--red); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.reader strong { display: block; color: var(--ink); font-size: 21px; line-height: 1.2; margin-bottom: 8px; }
.reader span { color: var(--muted); font-size: 15px; }
.reader-doc { max-width: 860px; }
.reader-doc section + section { margin-top: 42px; }
.reader-doc .page-label { display: inline-block; margin-bottom: 12px; color: var(--red-deep); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.reader-intro { font-size: 21px; line-height: 1.52; }
.reader-doc h2 { margin-top: 0; }
.reader-doc h3 { margin-top: 28px; }
.reader-doc p, .reader-doc li { max-width: 75ch; }
.reader-doc li { margin-bottom: 10px; }
.definition { border-left: 7px solid var(--yellow); padding: 4px 0 4px 19px; margin: 20px 0; }
.definition p { margin: 7px 0; }
.reader-question { background: var(--cream); border: 2px solid var(--ink); border-radius: 14px; padding: 22px 24px; box-shadow: 4px 4px 0 var(--yellow); }
.reader-question h2 { font-size: 28px; }
.source-box { margin-top: 42px; padding-top: 18px; border-top: 2px solid var(--ink); color: var(--muted); font-size: 14px; }
.source-box p { margin: 7px 0; }
.reader-page-break { margin-top: 58px; padding-top: 42px; border-top: 3px solid var(--ink); }
.data-table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 2px solid var(--ink); border-radius: 14px; background: white; }
.data-table th { padding: 12px 15px; background: var(--ink); color: var(--cream); text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.data-table td { padding: 13px 15px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 16px; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table td:first-child { width: 30%; color: var(--red-deep); font-weight: 800; }
.paradox { position: relative; overflow: hidden; background: var(--red); color: white; border: 2px solid var(--ink); border-radius: 18px; box-shadow: 6px 6px 0 var(--yellow); padding: 30px; }
.paradox::after { content: ""; position: absolute; right: -50px; bottom: -50px; width: 210px; height: 210px; border-radius: 50%; background: rgba(245,166,35,.35); }
.paradox h2, .paradox p { position: relative; z-index: 1; color: white; }
.paradox p { margin-bottom: 0; }
.evidence-card { border: 2px solid var(--ink); border-radius: 14px; padding: 22px; background: white; }
.evidence-card.help { background: var(--green-wash); box-shadow: 4px 4px 0 var(--green); }
.evidence-card.harm { background: var(--red-wash); box-shadow: 4px 4px 0 var(--red); }
.evidence-card .number { display: block; color: var(--red-deep); font-size: 31px; line-height: 1; font-weight: 800; margin-bottom: 7px; }
.source-note { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.stances { display: grid; gap: 18px; }
.stance { border: 2px solid var(--ink); border-radius: 14px; padding: 24px; background: white; }
.stance.restrict { background: var(--red-wash); box-shadow: 4px 4px 0 var(--red); }
.stance.prepare { background: var(--green-wash); box-shadow: 4px 4px 0 var(--green); }
.stance.govern { background: var(--cream); box-shadow: 4px 4px 0 var(--yellow); }
.stance h3 { font-size: 25px; }
.tools-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tool-link { display: block; padding: 19px 21px; border: 2px solid var(--ink); border-radius: 14px; background: white; color: var(--ink); text-decoration: none; box-shadow: 4px 4px 0 var(--blue); }
.tool-link:hover { color: var(--ink); box-shadow: 5px 5px 0 var(--red); transform: translate(-1px,-1px); }
.tool-link strong { display: block; color: var(--ink); margin-bottom: 4px; }
.tool-link span { color: var(--muted); font-size: 14px; }
.site-footer { background: var(--ink); color: var(--cream); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 34px 24px; font-size: 14px; }
.footer-inner strong { color: var(--yellow); }

@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero-inner { padding-top: 44px; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .reader-grid, .tools-row { grid-template-columns: 1fr; }
  .question { padding: 22px; font-size: 21px; }
}

@media print {
  body { background: white; font-size: 11pt; }
  .site-header, .site-footer, .page-tools, .actions, .total { display: none !important; }
  .hero-inner, main { max-width: none; padding: 20px 30px; }
  * { box-shadow: none !important; text-shadow: none !important; }
  .hero, .card, .session, .callout, .score-row, .stance, .evidence-card, .reader, .tool-link { background: white !important; color: black !important; }
  .hero { border-bottom: 3px solid black; }
  h1 { font-size: 30pt; }
  h2 { font-size: 22pt; }
  h1, h2, h3, p, li, strong, span, label, .eyebrow, .lede, .principle { color: black !important; }
  .principle, .card, .session, .callout, .score-row, .stance, .evidence-card, .reader, .tool-link, textarea, input[type="text"], .data-table { border-color: black !important; }
  .question, .paradox { background: white !important; color: black !important; border: 3px solid black; }
  .question p, .paradox h2, .paradox p { color: black !important; }
  .tag { background: black !important; color: white !important; border: 1px solid black; }
  .data-table th { background: black !important; color: white !important; }
  .data-table td { color: black !important; }
  .card, .score-row, .callout, .question, .paradox, .stance, .evidence-card { break-inside: avoid; }
  .reader-page-break { break-before: page; margin-top: 0; padding-top: 0; border-top: 0; }
  .reader-doc { font-size: 10.5pt; line-height: 1.42; }
  .reader-doc section + section { margin-top: 18px; }
  .reader-doc h2 { font-size: 18pt; margin-bottom: 9px; }
  .reader-doc h3 { font-size: 13pt; margin: 14px 0 5px; }
  .reader-intro { font-size: 12pt; }
  .source-box { font-size: 8.5pt; }
  a { color: inherit; text-decoration: none; }
}
