@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --paper: #f2eddf;
  --paper-2: #fffaf0;
  --ink: #17213b;
  --muted: #5f655f;
  --blue: #1649d8;
  --coral: #ef6749;
  --green: #1c8a70;
  --yellow: #f3c846;
  --line: rgba(23, 33, 59, .24);
  --shadow: 8px 8px 0 rgba(23, 33, 59, .12);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(239,103,73,.10), transparent 21rem),
    radial-gradient(circle at 84% 11%, rgba(22,73,216,.09), transparent 25rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--blue); }
img, svg { max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: .8rem 1rem;
}
.skip-link:focus { top: 1rem; }

.topline {
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0 40%, var(--coral) 40% 65%, var(--green) 65% 83%, var(--yellow) 83%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  background: rgba(242,237,223,.91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.05em;
  font-size: 1.35rem;
}
.brand-mark { width: 34px; height: 34px; overflow: visible; }
.brand-mark path { transform-origin: center; animation: driftPath 7s ease-in-out infinite alternate; }
.brand span span { color: var(--coral); }

.site-nav { display: flex; justify-content: center; gap: .35rem; }
.site-nav a {
  padding: .45rem .7rem;
  text-decoration: none;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.site-nav a[aria-current="page"] { background: var(--ink); color: var(--paper-2); }
.header-note {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.header-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 1.8s infinite; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--ink); padding: .45rem .65rem; }

.progress { position: fixed; z-index: 50; top: 0; left: 0; width: 0; height: 6px; background: var(--coral); }
.shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: 710px;
  display: grid;
  align-items: center;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}
.hero-grid { position: relative; z-index: 4; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; padding: 7rem 0 6rem; }
.kicker {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: .75rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}
.kicker::before { content: ""; width: 42px; height: 2px; background: currentColor; }
.hero h1, .page-hero h1 {
  margin: 0;
  max-width: 880px;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8.7rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.055em;
}
.hero h1 em, .page-hero h1 em { color: var(--blue); font-weight: 400; }
.hero h1 .under { position: relative; white-space: nowrap; }
.hero h1 .under::after { content: ""; position: absolute; height: .11em; left: 0; right: 0; bottom: .03em; background: var(--coral); transform: rotate(-1.5deg); z-index: -1; }
.lede { max-width: 650px; margin: 1.8rem 0 2rem; color: #424940; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.action-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .75rem 1.1rem;
  border: 1px solid var(--ink);
  background: var(--blue);
  color: white;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { color: white; transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.button.alt { background: var(--paper-2); color: var(--ink); }
.button.small { min-height: 42px; padding: .55rem .85rem; font-size: .72rem; box-shadow: 3px 3px 0 var(--ink); }

.hero-map { position: relative; min-height: 500px; }
.map-card {
  position: absolute;
  inset: 3.2rem 0 0 1rem;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  box-shadow: 16px 16px 0 rgba(22,73,216,.18);
  transform: rotate(1.4deg);
  overflow: hidden;
}
.map-card::before {
  content: "FIELD MAP / 30 BOARDS";
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .35rem .55rem;
  background: var(--yellow);
  border: 1px solid var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.flow-map { width: 100%; height: 100%; min-height: 460px; }
.flow-map .river { fill: none; stroke: var(--blue); stroke-width: 46; stroke-linecap: round; opacity: .94; stroke-dasharray: 18 8; animation: riverMove 18s linear infinite; }
.flow-map .river-edge { fill: none; stroke: var(--ink); stroke-width: 50; stroke-linecap: round; opacity: .95; }
.flow-map .tributary { fill: none; stroke: var(--coral); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 3 13; animation: tributaryMove 10s linear infinite; }
.flow-map text { font-family: var(--sans); font-weight: 800; font-size: 13px; fill: var(--ink); }
.flow-map .dot { fill: var(--yellow); stroke: var(--ink); stroke-width: 2; animation: pulseDot 2.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.stamp {
  position: absolute;
  z-index: 5;
  right: -1rem;
  bottom: .2rem;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border: 3px double var(--coral);
  border-radius: 50%;
  color: var(--coral);
  background: rgba(255,250,240,.88);
  font-size: .73rem;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .1em;
  font-weight: 800;
  transform: rotate(-11deg);
  animation: stampFloat 6s ease-in-out infinite;
}
.shape { position: absolute; pointer-events: none; z-index: 1; will-change: transform; }
.shape-a { width: 190px; height: 190px; border: 24px solid var(--green); border-radius: 50%; top: 10%; right: -90px; opacity: .65; }
.shape-b { width: 130px; height: 260px; background: var(--yellow); left: -78px; top: 58%; transform: rotate(17deg); opacity: .65; }

.ticker { overflow: hidden; border-bottom: 1px solid var(--ink); background: var(--ink); color: var(--paper-2); }
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 1.2rem; padding: .75rem 1.5rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 700; }
.ticker span::after { content: "✦"; color: var(--yellow); }

.section { padding: 7rem 0; border-bottom: 1px solid var(--line); }
.section.blue { background: var(--blue); color: white; }
.section.ink { background: var(--ink); color: var(--paper-2); }
.section.coral { background: var(--coral); color: var(--ink); }
.section-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.section-head h2 { margin: 0; max-width: 760px; font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 5.6rem); line-height: .96; letter-spacing: -.04em; font-weight: 400; }
.section-head p { margin: 0; max-width: 520px; justify-self: end; }
.eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.rule { height: 1px; background: currentColor; opacity: .35; margin: 1rem 0; }

.podium { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border: 1px solid var(--ink); background: var(--paper-2); box-shadow: var(--shadow); }
.podium-card { position: relative; min-height: 410px; padding: 2rem; border-right: 1px solid var(--ink); overflow: hidden; }
.podium-card:last-child { border-right: 0; }
.podium-card:first-child { background: var(--yellow); }
.podium-card:nth-child(2) { background: #dce6ff; }
.podium-card:nth-child(3) { background: #ffdcd1; }
.podium-rank { font-family: var(--serif); font-size: 7rem; line-height: .7; color: rgba(23,33,59,.13); position: absolute; right: .7rem; top: .9rem; }
.podium-card h3 { position: relative; margin: 7rem 0 .5rem; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); line-height: .95; font-weight: 400; }
.podium-card p { position: relative; margin: 1rem 0 2rem; }
.score { display: inline-flex; align-items: baseline; gap: .2rem; font-family: var(--serif); font-size: 2.7rem; }
.score small { font-family: var(--sans); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }

.rank-tools { display: grid; grid-template-columns: 1fr auto; gap: 1rem; margin: 0 0 2rem; }
.searchbox { min-height: 54px; width: 100%; border: 1px solid var(--ink); border-radius: 0; background: var(--paper-2); padding: .8rem 1rem; color: var(--ink); outline: none; }
.searchbox:focus { box-shadow: 0 0 0 3px var(--yellow); }
.filter-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-button { border: 1px solid var(--ink); background: var(--paper-2); padding: .6rem .8rem; cursor: pointer; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.filter-button.active { background: var(--ink); color: white; }

.ranking { border-top: 2px solid var(--ink); }
.rank-row {
  display: grid;
  grid-template-columns: 80px 1.2fr .65fr .65fr auto;
  gap: 1.2rem;
  align-items: center;
  min-height: 116px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}
.rank-row:hover { background: rgba(255,250,240,.65); padding-left: 1rem; padding-right: 1rem; }
.rank-row.is-hidden { display: none; }
.rank-num { font-family: var(--serif); font-size: 2.8rem; line-height: 1; color: var(--coral); }
.rank-name { display: flex; flex-direction: column; }
.rank-name a { font-family: var(--serif); font-size: clamp(1.7rem, 2.5vw, 2.45rem); line-height: 1; text-decoration: none; }
.rank-name span, .rank-cell small { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.rank-cell { display: flex; flex-direction: column; }
.rank-cell strong { font-size: 1rem; }
.rank-score { min-width: 88px; text-align: right; font-family: var(--serif); font-size: 2rem; }
.rank-row.outer .rank-num, .rank-row.outer .rank-score { color: var(--muted); }
.rank-divider { margin: 3.5rem 0 1rem; display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; color: var(--muted); font-size: .73rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.rank-divider::before, .rank-divider::after { content: ""; height: 1px; background: var(--line); }

.finder { display: grid; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--ink); box-shadow: 12px 12px 0 rgba(23,33,59,.22); }
.finder-intro { padding: 3rem; background: var(--green); color: white; }
.finder-intro h2 { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5rem); line-height: .9; font-weight: 400; }
.finder-form { padding: 3rem; background: var(--paper-2); color: var(--ink); }
.question { margin-bottom: 2rem; }
.question legend { margin-bottom: .8rem; font-weight: 700; }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .65rem; }
.choice { position: relative; display: block; }
.choice input { position: absolute; opacity: 0; }
.choice span { display: block; min-height: 50px; padding: .75rem; border: 1px solid var(--line); cursor: pointer; }
.choice input:checked + span { border-color: var(--blue); background: #dce6ff; box-shadow: inset 5px 0 0 var(--blue); }
.finder-result { display: none; margin-top: 2rem; padding: 1.4rem; border: 2px solid var(--ink); background: var(--yellow); }
.finder-result.show { display: block; animation: reveal .35s ease both; }
.finder-result h3 { margin: 0; font-family: var(--serif); font-size: 2rem; }

.journal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid currentColor; }
.journal-card { position: relative; min-height: 330px; padding: 2rem; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; text-decoration: none; overflow: hidden; }
.journal-card:nth-child(3n) { border-right: 0; }
.journal-card:hover { color: inherit; background: rgba(255,255,255,.08); }
.journal-card .tag { display: inline-block; padding: .25rem .5rem; border: 1px solid currentColor; font-size: .65rem; line-height: 1; text-transform: uppercase; letter-spacing: .1em; }
.journal-card h3 { margin: 4.5rem 0 1rem; font-family: var(--serif); font-size: 2.15rem; line-height: 1.02; font-weight: 400; }
.journal-card p { margin: 0; font-size: .92rem; opacity: .82; }
.journal-card .arrow { position: absolute; right: 1.5rem; bottom: 1rem; font-size: 2.2rem; }

.page-hero { position: relative; padding: 7rem 0 5rem; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero h1 { font-size: clamp(3.8rem, 8vw, 8.2rem); }
.page-hero .lede { max-width: 760px; }
.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.crumbs a { text-decoration: none; }
.crumbs span::before { content: "/"; margin-right: .5rem; }
.page-stamp { position: absolute; right: max(3rem, calc((100vw - 1200px) / 2)); top: 4.5rem; border: 2px solid var(--coral); color: var(--coral); padding: .8rem; transform: rotate(6deg); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

.article-layout { display: grid; grid-template-columns: 240px minmax(0,760px); gap: 5rem; justify-content: center; padding: 5rem 0 7rem; }
.article-aside { align-self: start; position: sticky; top: 110px; font-size: .82rem; }
.article-aside strong { display: block; margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; }
.article-aside a { display: block; padding: .35rem 0; color: var(--muted); text-decoration: none; }
.prose h2 { margin: 3.6rem 0 1rem; font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.5rem); line-height: 1; letter-spacing: -.025em; font-weight: 400; }
.prose h3 { margin: 2rem 0 .6rem; font-size: 1.12rem; text-transform: uppercase; letter-spacing: .08em; }
.prose p { margin: 0 0 1.25rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .55rem; }
.prose blockquote { margin: 2rem 0; padding: 1.5rem 1.7rem; border-left: 8px solid var(--coral); background: var(--paper-2); font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.fact-strip { display: grid; grid-template-columns: repeat(3,1fr); margin: 2rem 0; border: 1px solid var(--ink); background: var(--paper-2); }
.fact { padding: 1rem; border-right: 1px solid var(--ink); }
.fact:last-child { border-right: 0; }
.fact span { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.fact strong { display: block; font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }
.verdict { margin: 2.5rem 0; padding: 2rem; border: 2px solid var(--ink); background: var(--yellow); box-shadow: 7px 7px 0 var(--ink); }
.verdict-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.verdict h2 { margin-top: .7rem; }
.checklist { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; list-style: none; padding: 0 !important; }
.checklist li { position: relative; min-height: 82px; margin: 0; padding: 1rem 1rem 1rem 2.6rem; border: 1px solid var(--line); background: rgba(255,250,240,.55); }
.checklist li::before { content: "✦"; position: absolute; left: 1rem; color: var(--green); }
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; background: var(--paper-2); }
.comparison-table th, .comparison-table td { border: 1px solid var(--ink); padding: .8rem; text-align: left; vertical-align: top; }
.comparison-table th { background: var(--ink); color: white; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }

.board-hero { padding-bottom: 4rem; }
.board-heading { display: grid; grid-template-columns: 180px 1fr auto; gap: 2rem; align-items: end; }
.giant-rank { font-family: var(--serif); font-size: clamp(6rem,12vw,11rem); line-height: .7; color: var(--coral); }
.board-heading h1 { font-size: clamp(3.8rem,7vw,7.5rem); }
.score-dial { width: 150px; height: 150px; display: grid; place-items: center; border: 12px solid var(--blue); border-right-color: var(--yellow); border-radius: 50%; background: var(--paper-2); transform: rotate(-5deg); }
.score-dial span { font-family: var(--serif); font-size: 2.8rem; transform: rotate(5deg); }

.related { padding: 5rem 0; background: var(--ink); color: var(--paper-2); }
.related h2 { margin: 0 0 2rem; font-family: var(--serif); font-size: 3rem; font-weight: 400; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.35); }
.related a { min-height: 190px; padding: 1.4rem; border-right: 1px solid rgba(255,255,255,.35); text-decoration: none; }
.related a:last-child { border: 0; }
.related strong { display: block; margin: 2.5rem 0 .5rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.related span { opacity: .7; font-size: .78rem; }

.social-proof {
  position: relative;
  padding: 4rem 0;
  color: var(--ink);
  background: var(--yellow);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.social-grid { display: grid; grid-template-columns: 240px 1fr auto; gap: 2rem; align-items: center; }
.social-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.social-proof p { margin: 0; max-width: 760px; }
.social-badges { display: flex; gap: .45rem; }
.social-badges span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%; font-weight: 800; background: var(--paper-2); }

.site-footer { background: var(--paper-2); }
.footer-main { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 4rem; padding: 5rem 0 4rem; }
.footer-mark { font-family: var(--serif); font-size: clamp(3.8rem,7vw,7rem); line-height: .85; letter-spacing: -.05em; }
.footer-mark em { color: var(--coral); font-weight: 400; }
.footer-column strong { display: block; margin-bottom: 1rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; }
.footer-column a { display: block; margin: .55rem 0; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding: 1.3rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }

.empty-state { display: none; padding: 3rem; text-align: center; border: 1px solid var(--line); }
.empty-state.show { display: block; }
.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.not-found .code { font-family: var(--serif); font-size: clamp(8rem,24vw,18rem); line-height: .7; color: var(--coral); }
.not-found h1 { font-family: var(--serif); font-size: 3rem; font-weight: 400; }

@keyframes riverMove { to { stroke-dashoffset: -260; } }
@keyframes tributaryMove { to { stroke-dashoffset: 160; } }
@keyframes pulseDot { 50% { transform: scale(1.35); fill: var(--coral); } }
@keyframes stampFloat { 50% { transform: rotate(-7deg) translateY(-12px); } }
@keyframes driftPath { 50% { transform: rotate(12deg) scale(.92); } }
@keyframes blink { 50% { opacity: .25; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .header-note { display: none; }
  .menu-toggle { display: inline-block; }
  .site-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 1rem 24px; flex-direction: column; background: var(--paper-2); border-bottom: 1px solid var(--ink); }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 1rem; padding-top: 5rem; }
  .hero-map { min-height: 430px; }
  .section-head { grid-template-columns: 1fr; }
  .section-head p { justify-self: start; }
  .podium { grid-template-columns: 1fr; }
  .podium-card { min-height: 290px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .podium-card h3 { margin-top: 4rem; }
  .rank-row { grid-template-columns: 55px 1fr auto; }
  .rank-row .rank-cell { display: none; }
  .finder { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: repeat(2,1fr); }
  .journal-card:nth-child(3n) { border-right: 1px solid currentColor; }
  .journal-card:nth-child(2n) { border-right: 0; }
  .article-layout { grid-template-columns: 1fr; gap: 1rem; }
  .article-aside { position: static; display: flex; flex-wrap: wrap; gap: .4rem 1rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
  .article-aside strong { width: 100%; }
  .board-heading { grid-template-columns: 125px 1fr; }
  .score-dial { grid-column: 2; width: 120px; height: 120px; }
  .social-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-mark { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .shell, .narrow { width: min(100% - 28px, 1240px); }
  .site-header { min-height: 66px; padding: 0 14px; }
  .site-nav { top: 66px; padding-left: 14px; padding-right: 14px; }
  .hero-grid { padding: 4rem 0; }
  .hero h1, .page-hero h1 { font-size: clamp(3.5rem,19vw,5.8rem); }
  .hero-map { min-height: 350px; }
  .map-card { inset: 2rem .5rem 0 .5rem; }
  .flow-map { min-height: 320px; }
  .stamp { width: 92px; height: 92px; right: 0; font-size: .59rem; }
  .section { padding: 4.5rem 0; }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: 2.8rem; }
  .podium-card { padding: 1.4rem; }
  .rank-tools { grid-template-columns: 1fr; }
  .rank-row { grid-template-columns: 42px 1fr 62px; gap: .55rem; min-height: 92px; }
  .rank-num { font-size: 2rem; }
  .rank-name a { font-size: 1.5rem; }
  .rank-score { min-width: 55px; font-size: 1.55rem; }
  .finder-intro, .finder-form { padding: 1.5rem; }
  .choice-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card, .journal-card:nth-child(3n) { border-right: 0; }
  .page-hero { padding: 4.5rem 0 3.5rem; }
  .page-stamp { display: none; }
  .article-layout { padding: 3rem 0 4rem; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--ink); }
  .fact:last-child { border-bottom: 0; }
  .checklist { grid-template-columns: 1fr; }
  .board-heading { display: block; }
  .giant-rank { margin-bottom: 2rem; }
  .score-dial { margin-top: 2rem; }
  .related-grid { grid-template-columns: 1fr; }
  .related a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35); }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-mark { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
