:root {
  --tile: #f4f7f5;
  --paper: #fffef9;
  --blue: #173a6b;
  --blue-2: #245487;
  --red: #d2422e;
  --yellow: #f4c94f;
  --mint: #a9d8c6;
  --mint-soft: #dcefe8;
  --ink: #172b38;
  --muted: #5d6c70;
  --line: rgba(23, 58, 107, 0.16);
  --shadow: 8px 10px 0 rgba(23, 58, 107, 0.13);
  --radius: 20px;
  --display: "Dela Gothic One", "Hiragino Sans", sans-serif;
  --body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--tile);
  background-image:
    linear-gradient(rgba(23, 58, 107, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 58, 107, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  font-family: var(--body);
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 10px 16px; background: #fff; color: var(--blue); border: 2px solid var(--blue); }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 4px solid var(--yellow); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px 10px 18px;
  border: 2px solid rgba(23, 58, 107, .2);
  border-radius: 999px;
  background: rgba(255, 254, 249, .92);
  box-shadow: 0 8px 28px rgba(23, 58, 107, .11);
  backdrop-filter: blur(12px);
  transition: top .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { top: 8px; box-shadow: 0 10px 34px rgba(23, 58, 107, .18); }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); text-decoration: none; font-family: var(--display); letter-spacing: .02em; }
.brand-mark { display: grid; place-items: center; width: 38px; aspect-ratio: 1; border-radius: 50%; color: var(--paper); background: var(--blue); font-family: "Hachi Maru Pop", sans-serif; font-size: 18px; }
.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a { padding: 7px 12px; color: var(--blue); font-size: 14px; font-weight: 700; text-decoration: none; border-radius: 999px; }
.header-nav a:hover { background: var(--mint-soft); }
.header-nav .nav-cta { padding-inline: 18px; color: #fff; background: var(--red); }
.header-nav .nav-cta:hover { background: #b93221; }

.hero {
  position: relative;
  min-height: 780px;
  padding: 146px max(6vw, 24px) 90px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 84% 20%, rgba(169, 216, 198, .6), transparent 30%), linear-gradient(135deg, rgba(255,255,255,.7), rgba(244,201,79,.09));
}
.hero-copy { max-width: 690px; justify-self: end; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 16px; color: var(--red); font-family: "Bungee", var(--body); font-size: 12px; letter-spacing: .12em; line-height: 1.5; }
.eyebrow span { display: inline-block; margin-right: 10px; padding: 5px 10px; border-radius: 999px; background: var(--yellow); color: var(--blue); font-family: var(--body); letter-spacing: .05em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; color: var(--blue); font-family: var(--display); font-size: clamp(50px, 6.2vw, 104px); font-weight: 400; line-height: 1.06; letter-spacing: -.05em; }
h1 span { display: block; width: fit-content; position: relative; color: var(--red); }
h1 span::after { content: ""; position: absolute; left: 3%; right: 0; bottom: -8px; height: 10px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='10' viewBox='0 0 240 10'%3E%3Cpath d='M2 6 C60 1 170 10 238 3' fill='none' stroke='%23f4c94f' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat; }
.hero-lead { max-width: 620px; margin-bottom: 28px; color: #40545b; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 12px 22px; border: 2px solid var(--blue); border-radius: 999px; font-weight: 900; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 4px 5px 0 rgba(23, 58, 107, .18); }
.button-primary { border-color: var(--red); color: #fff; background: var(--red); }
.button-ghost { color: var(--blue); background: rgba(255,255,255,.62); }
.checked { color: var(--muted); font-size: 12px; }
.checked > span:first-child { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 5px; border-radius: 50%; color: var(--blue); background: var(--mint); font-weight: 900; }
.checked span:last-child { margin-left: 10px; }
.hero-visual { position: relative; width: min(100%, 860px); margin: 0; transform: rotate(1.4deg); }
.hero-visual::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1; border: 3px solid var(--blue); border-radius: 34px 14px 40px 18px; background: var(--yellow); }
.hero-visual img { width: 100%; border: 4px solid var(--blue); border-radius: 20px 38px 18px 42px; box-shadow: 16px 20px 0 rgba(23, 58, 107, .09); }
.hero-visual figcaption { position: absolute; left: -10px; right: -10px; bottom: 20px; display: flex; justify-content: space-between; gap: 10px; }
.hero-visual figcaption span { padding: 8px 14px; border: 2px solid var(--blue); border-radius: 7px; color: var(--blue); background: var(--paper); font-family: var(--display); font-size: clamp(12px, 1.2vw, 17px); box-shadow: 4px 5px 0 var(--yellow); }
.steam { position: absolute; z-index: -1; width: 180px; height: 280px; border: 25px solid rgba(169,216,198,.45); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; filter: blur(2px); opacity: .7; animation: floatSteam 6s ease-in-out infinite; }
.steam-a { right: 12%; top: 0; }
.steam-b { right: 45%; bottom: -90px; scale: .65; animation-delay: -2s; }
.scroll-cue { position: absolute; left: 50%; bottom: 18px; display: flex; align-items: center; gap: 10px; color: var(--blue); font: 10px/1 "Bungee", sans-serif; letter-spacing: .15em; transform: translateX(-50%) rotate(90deg); transform-origin: center; }
.scroll-cue span { display: block; width: 42px; height: 2px; background: var(--blue); }

.summary-strip { display: grid; grid-template-columns: repeat(4, 1fr); width: min(1180px, calc(100% - 32px)); margin: 0 auto 130px; border: 3px solid var(--blue); border-radius: 16px; background: var(--paper); box-shadow: var(--shadow); overflow: hidden; }
.summary-strip > div { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 104px; padding: 16px; border-right: 2px dashed rgba(23,58,107,.25); }
.summary-strip > div:last-child { border-right: 0; }
.stat-number { color: var(--red); font: clamp(25px, 3vw, 42px)/1 "Bungee", sans-serif; letter-spacing: -.05em; }
.summary-strip span { color: var(--blue); font-size: 12px; font-weight: 900; line-height: 1.45; }

.section { padding: 110px max(6vw, 24px); }
.section-heading { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-heading h2, .diagnosis-intro h2, .checklist-card h2 { margin-bottom: 18px; color: var(--blue); font-family: var(--display); font-size: clamp(36px, 5vw, 68px); font-weight: 400; line-height: 1.2; letter-spacing: -.035em; }
.section-heading > p:last-child { color: var(--muted); }
.verdict-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 82px); max-width: 1120px; margin: 0 auto; }
.facility-card { overflow: hidden; border: 3px solid var(--blue); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.card-image-wrap { position: relative; aspect-ratio: 4/2.8; overflow: hidden; border-bottom: 3px solid var(--blue); }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.facility-card:hover .card-image-wrap img { transform: scale(1.04); }
.locker-tag { position: absolute; top: 16px; left: 16px; display: grid; place-items: center; width: 64px; height: 84px; border: 3px solid var(--blue); border-radius: 30px 30px 9px 9px; color: var(--blue); background: var(--yellow); font-family: var(--display); font-size: 13px; box-shadow: 3px 4px 0 rgba(23,58,107,.23); transform: rotate(-5deg); }
.locker-tag::before { content: ""; position: absolute; top: 8px; width: 8px; height: 8px; border: 2px solid var(--blue); border-radius: 50%; background: var(--paper); }
.spajapo .locker-tag { color: #fff; background: var(--red); transform: rotate(5deg); }
.card-body { padding: 34px; }
.card-kicker { margin-bottom: 8px; color: var(--red); font-weight: 900; letter-spacing: .08em; }
.facility-card h3 { margin-bottom: 18px; color: var(--blue); font-family: var(--display); font-size: clamp(32px, 4vw, 54px); font-weight: 400; line-height: 1.08; letter-spacing: -.04em; }
.facility-card h3 small { font-size: .55em; letter-spacing: -.02em; }
.card-summary { color: #43585e; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; padding: 0; list-style: none; }
.chips li { padding: 5px 11px; border: 1.5px solid var(--blue); border-radius: 999px; color: var(--blue); background: var(--mint-soft); font-size: 12px; font-weight: 900; }
.spajapo .chips li { background: #fff0db; }
.best-for { padding: 15px; border-radius: 12px; color: var(--blue); background: rgba(169,216,198,.3); font-size: 13px; }
.best-for span { color: var(--red); font-size: 22px; vertical-align: -2px; }
.best-for strong { display: block; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--blue); font-weight: 900; text-underline-offset: 4px; }
.versus-badge { position: absolute; z-index: 4; top: 28%; left: 50%; display: grid; place-items: center; width: 70px; aspect-ratio: 1; border: 3px solid var(--blue); border-radius: 50%; color: var(--blue); background: var(--yellow); font: 20px/1 "Bungee", sans-serif; box-shadow: 5px 6px 0 var(--blue); transform: translate(-50%, -50%) rotate(-8deg); }
.mini-conclusion { display: flex; align-items: center; justify-content: center; gap: 22px; max-width: 820px; margin: 52px auto 0; padding: 22px 28px; border: 2px dashed var(--blue); border-radius: 16px; background: rgba(255,255,255,.65); text-align: left; }
.bucket-icon { display: grid; place-items: center; flex: 0 0 64px; width: 64px; height: 54px; border: 3px solid var(--blue); border-radius: 8px 8px 18px 18px; color: var(--blue); background: var(--yellow); font-size: 27px; }
.mini-conclusion p { margin-bottom: 2px; color: var(--red); font-size: 12px; font-weight: 900; }
.mini-conclusion strong { color: var(--blue); font-size: clamp(16px, 2vw, 21px); }

.compare-section { position: relative; color: #fff; background: var(--blue); overflow: hidden; }
.compare-section::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 24px 24px; }
.section-heading.light { position: relative; }
.section-heading.light h2, .section-heading.light p:last-child { color: #fff; }
.table-shell { position: relative; max-width: 1120px; margin: 0 auto; border: 3px solid #fff; border-radius: 18px; background: var(--paper); box-shadow: 10px 12px 0 rgba(0,0,0,.18); overflow-x: auto; }
table { width: 100%; min-width: 820px; border-collapse: collapse; color: var(--ink); }
th, td { padding: 20px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: middle; text-align: left; }
thead th { color: #fff; background: #102d56; font-family: var(--display); font-size: 18px; font-weight: 400; }
thead th:first-child { width: 25%; }
tbody th { color: var(--blue); background: #eef4f1; font-weight: 900; }
tbody th small { color: var(--muted); font-size: 11px; }
tbody td { position: relative; width: 37.5%; background: #fffef9; }
tbody td strong { display: block; color: var(--blue); font-size: 18px; line-height: 1.4; }
tbody td span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.table-label { display: inline-grid; place-items: center; width: 28px; height: 36px; margin-right: 10px; border-radius: 14px 14px 5px 5px; font: 13px/1 "Bungee", sans-serif; }
.table-label.blue { background: #3c70a8; }
.table-label.red { background: var(--red); }
.featured-row td strong { color: var(--red); font: 27px/1.2 "Bungee", sans-serif; }
.winner-cell { background: #fff9e7; }
.winner-cell em { position: absolute; top: 9px; right: 8px; padding: 2px 8px; border-radius: 999px; color: var(--blue); background: var(--yellow); font-size: 10px; font-style: normal; font-weight: 900; transform: rotate(2deg); }
.table-note { position: relative; max-width: 1120px; margin: 20px auto 0; color: #d7e4e4; font-size: 12px; }

.diagnosis { color: var(--ink); background: var(--yellow); }
.diagnosis-intro { max-width: 820px; margin: 0 auto 46px; text-align: center; }
.diagnosis-intro p { color: #4d4b41; }
.howto { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 24px; color: var(--blue); font-size: 12px; font-weight: 900; }
.howto span { display: inline-grid; place-items: center; width: 24px; height: 24px; border: 2px solid var(--blue); border-radius: 50%; background: var(--paper); font: 10px/1 "Bungee", sans-serif; }
.howto i { width: 24px; height: 2px; background: var(--blue); opacity: .3; }
.diagnosis-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); gap: 28px; max-width: 1180px; margin: 0 auto; align-items: start; }
.priority-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.priority-card { display: grid; grid-template-columns: 58px 1fr; column-gap: 15px; align-items: center; min-height: 118px; padding: 18px; border: 3px solid var(--blue); border-radius: 15px; background: var(--paper); cursor: pointer; text-align: left; box-shadow: 4px 5px 0 rgba(23,58,107,.17); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.priority-card:hover { transform: translateY(-3px) rotate(-.5deg); box-shadow: 6px 8px 0 rgba(23,58,107,.19); }
.priority-card[aria-pressed="true"] { color: #fff; background: var(--blue); box-shadow: 4px 5px 0 var(--red); }
.priority-icon { grid-row: 1 / span 2; display: grid; place-items: center; width: 54px; aspect-ratio: 1; border: 2px solid var(--blue); border-radius: 50%; color: var(--blue); background: var(--mint-soft); font-family: var(--display); font-size: 19px; }
.priority-card[aria-pressed="true"] .priority-icon { border-color: #fff; background: var(--yellow); }
.priority-card strong { align-self: end; font-size: 17px; line-height: 1.3; }
.priority-card small { align-self: start; color: var(--muted); font-size: 11px; }
.priority-card[aria-pressed="true"] small { color: #dce8ee; }
.result-card { position: sticky; top: 98px; min-height: 450px; padding: 30px; border: 3px solid var(--blue); border-radius: 18px; background: var(--paper); box-shadow: 8px 10px 0 var(--red); text-align: center; }
.result-label { display: inline-block; margin-bottom: 28px; padding: 4px 12px; border-radius: 999px; color: var(--paper); background: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .06em; }
.result-empty > span { display: block; margin-bottom: 14px; color: var(--blue); font-size: 54px; animation: tap 1.6s ease-in-out infinite; }
.result-card h3 { margin-bottom: 14px; color: var(--blue); font-family: var(--display); font-size: 31px; font-weight: 400; line-height: 1.25; }
.result-card p { color: var(--muted); font-size: 13px; }
.result-card .result-label { color: var(--paper); }
.result-card [data-result-name] { white-space: pre-line; }
.result-stamp { display: inline-block; padding: 4px 10px; border: 2px solid var(--red); color: var(--red) !important; font-weight: 900; transform: rotate(-4deg); }
.score-wrap { margin: 26px 0 22px; }
.score-wrap > div:not(.score-track) { display: inline-flex; gap: 7px; margin: 0 8px 7px; color: var(--blue); font-size: 11px; }
.score-caption { margin-bottom: 8px; font-size: 10px !important; }
.score-track { height: 13px; border: 2px solid var(--blue); border-radius: 999px; background: var(--red); overflow: hidden; }
.score-track i { display: block; width: 50%; height: 100%; border-right: 2px solid var(--blue); background: var(--mint); transition: width .5s cubic-bezier(.2,.8,.2,1); }
.result-link { width: 100%; font-size: 13px; }
.reset-button { margin-top: 16px; border: 0; color: var(--blue); background: transparent; cursor: pointer; font-size: 12px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.reset-button:disabled { opacity: .35; cursor: default; }
.result-note { margin: 18px 0 0 !important; font-size: 10px !important; }

.day-plan { background: var(--tile); }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1080px; margin: 0 auto; }
.plan-card { padding: 34px; border: 3px solid var(--blue); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
.plan-card header { margin: -34px -34px 30px; padding: 24px 32px; border-bottom: 3px solid var(--blue); background: var(--mint-soft); }
.plan-card header span { color: var(--red); font: 11px/1 "Bungee", sans-serif; }
.plan-card h3 { margin: 8px 0 0; color: var(--blue); font-family: var(--display); font-size: 26px; font-weight: 400; }
.plan-card ol { margin: 0; padding: 0; list-style: none; }
.plan-card li { display: grid; grid-template-columns: 66px 1fr; gap: 16px; position: relative; padding-bottom: 25px; }
.plan-card li:last-child { padding-bottom: 0; }
.plan-card li:not(:last-child)::before { content: ""; position: absolute; left: 29px; top: 34px; bottom: 0; border-left: 2px dashed var(--mint); }
.plan-card time { display: grid; place-items: center; align-self: start; height: 30px; border: 2px solid var(--blue); border-radius: 999px; color: var(--blue); background: var(--yellow); font: 10px/1 "Bungee", sans-serif; }
.plan-card li strong { color: var(--blue); }
.plan-card li p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.red-plan { box-shadow: 8px 10px 0 rgba(210,66,46,.2); }
.red-plan header { background: #fff0db; }

.before-you-go { padding-top: 30px; }
.checklist-card { display: grid; grid-template-columns: .65fr 1.35fr; gap: 48px; max-width: 1120px; margin: 0 auto; padding: 48px; border: 3px solid var(--blue); border-radius: 18px; color: #fff; background: var(--blue); box-shadow: 10px 12px 0 var(--yellow); }
.checklist-card h2 { margin: 0; color: #fff; font-size: clamp(32px, 4vw, 52px); }
.checklist-card ul { margin: 0; padding: 0; list-style: none; }
.checklist-card li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px dashed rgba(255,255,255,.3); }
.checklist-card li:last-child { border-bottom: 0; }
.checklist-card li > span { display: grid; place-items: center; width: 38px; height: 46px; border-radius: 17px 17px 5px 5px; color: var(--blue); background: var(--yellow); font: 10px/1 "Bungee", sans-serif; }
.checklist-card p { margin: 0; color: #dce8ee; font-size: 13px; }
.checklist-card strong { display: block; color: #fff; font-size: 17px; }

.sources { padding-top: 90px; background: rgba(255,255,255,.5); }
.source-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 980px; margin: 0 auto; }
.source-grid > div { padding: 28px; border: 2px solid var(--blue); border-radius: 14px; background: var(--paper); }
.source-grid h3 { margin-bottom: 18px; color: var(--blue); font-family: var(--display); font-size: 18px; font-weight: 400; }
.source-grid a { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px dashed var(--line); color: var(--blue); font-size: 13px; font-weight: 900; text-underline-offset: 3px; }
.source-meta { max-width: 980px; margin: 20px auto 0; color: var(--muted); font-size: 11px; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 34px max(6vw, 24px); color: #fff; background: #102d56; }
footer p { margin: 0; color: #c6d5dc; font-size: 12px; }
footer > a:last-child { font-size: 12px; font-weight: 900; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: var(--blue); background: var(--yellow); }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }
@keyframes floatSteam { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(6deg); } }
@keyframes tap { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 960px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 130px; }
  .hero-copy { justify-self: center; text-align: center; }
  h1 span { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: min(88vw, 760px); margin: 20px auto 0; }
  .summary-strip { grid-template-columns: 1fr 1fr; }
  .summary-strip > div:nth-child(2) { border-right: 0; }
  .summary-strip > div:nth-child(-n+2) { border-bottom: 2px dashed rgba(23,58,107,.25); }
  .diagnosis-layout { grid-template-columns: 1fr; }
  .result-card { position: relative; top: 0; min-height: 380px; }
  .checklist-card { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }
  body { background-size: 38px 38px; }
  .site-header { top: 8px; width: calc(100% - 18px); padding: 7px 8px 7px 12px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 32px; font-size: 15px; }
  .header-nav a:not(.nav-cta) { display: none; }
  .header-nav .nav-cta { padding: 7px 13px; font-size: 12px; }
  .hero { padding: 112px 20px 72px; gap: 26px; }
  h1 { font-size: clamp(44px, 14vw, 64px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .checked span:last-child { display: block; margin: 5px 0 0; }
  .hero-visual { width: 96%; transform: rotate(.6deg); }
  .hero-visual::before { inset: 8px -8px -8px 8px; }
  .hero-visual figcaption { bottom: 10px; }
  .scroll-cue { display: none; }
  .summary-strip { margin-bottom: 70px; }
  .summary-strip > div { min-height: 92px; flex-direction: column; gap: 6px; text-align: center; }
  .stat-number { font-size: 25px; }
  .summary-strip span { font-size: 10px; }
  .section { padding: 76px 18px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .diagnosis-intro h2 { font-size: 37px; }
  .verdict-grid { grid-template-columns: 1fr; gap: 36px; }
  .versus-badge { top: 50%; width: 58px; }
  .card-body { padding: 26px; }
  .facility-card h3 { font-size: 38px; }
  .mini-conclusion { align-items: flex-start; padding: 20px; }
  .bucket-icon { flex-basis: 52px; width: 52px; height: 45px; }
  .table-shell { margin-inline: -2px; }
  .table-note { padding-inline: 4px; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority-card { min-height: 102px; }
  .howto i { display: none; }
  .result-card { padding: 24px; }
  .plan-grid, .source-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 26px; }
  .plan-card header { margin: -26px -26px 26px; padding: 22px 24px; }
  .checklist-card { padding: 30px 24px; }
  footer { flex-direction: column; text-align: center; }
}

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

@media print {
  .site-header, .hero-actions, .scroll-cue, .diagnosis, footer { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; padding-top: 30px; }
  .section { padding-block: 36px; }
  .reveal { opacity: 1; transform: none; }
  .facility-card, .plan-card, .table-shell { break-inside: avoid; box-shadow: none; }
}
