:root {
  --navy-950: #061725;
  --navy-900: #0a2238;
  --navy-800: #103452;
  --blue-600: #0879bd;
  --blue-100: #dff3ff;
  --yellow: #f8c842;
  --orange: #ef7c47;
  --mint: #62d2bd;
  --paper: #f5f8fb;
  --white: #ffffff;
  --ink: #12283d;
  --muted: #617184;
  --line: #d8e1e8;
  --radius: 22px;
  --shadow: 0 24px 65px rgba(6, 23, 37, 0.14);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 6.3vw, 5.8rem); margin-bottom: 1.6rem; }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.15rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.45rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container.narrow { width: min(calc(100% - 40px), 1040px); }
.section { padding: clamp(5.25rem, 9vw, 9rem) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: .7rem 1rem;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 800;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(10,34,56,.1);
  backdrop-filter: blur(16px);
}

.header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .78rem; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy-950);
  background: var(--yellow);
  border-radius: 13px 13px 13px 3px;
  font-weight: 950;
  letter-spacing: -.06em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-size: 1.06rem; letter-spacing: -.035em; }
.brand-copy strong span { color: var(--blue-600); }
.brand-copy small { color: var(--muted); font-size: .73rem; margin-top: .25rem; letter-spacing: .02em; }

.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav > a:not(.button) { color: #344b60; font-size: .93rem; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button):hover { color: var(--blue-600); }
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 11px;
  font-size: .95rem;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  text-align: center;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.button-small { min-height: 42px; padding: .62rem .95rem; font-size: .86rem; }
.button-yellow { background: var(--yellow); color: var(--navy-950); box-shadow: 0 8px 22px rgba(248,200,66,.18); }
.button-yellow:hover { background: #ffd961; box-shadow: 0 11px 30px rgba(248,200,66,.26); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.7); }
.button-outline:hover { background: var(--white); color: var(--navy-950); }
.text-link { color: var(--blue-600); font-weight: 850; text-decoration: none; }
.text-link span { display: inline-block; margin-left: .28rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { color: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  padding: clamp(4.5rem, 8vw, 7.4rem) 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -200px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,121,189,.34), rgba(8,121,189,0) 67%);
}
.court-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: .18; }
.court-lines::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border: 2px solid var(--white);
  border-radius: 50%;
  left: -260px;
  top: 160px;
}
.court-lines::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 130%;
  border-left: 2px solid var(--white);
  border-right: 2px solid var(--white);
  right: 8%;
  top: -15%;
  transform: skewX(-13deg);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(3rem, 7vw, 6.5rem); }
.hero-copy { padding-bottom: 4.5rem; }
.hero h1 { max-width: 760px; }
.hero h1 em { display: block; color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 680px; color: #c7d3de; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.62; }
.eyebrow { display: flex; align-items: center; gap: .65rem; color: var(--yellow); font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 30px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--blue-600); }
.eyebrow.light { color: var(--yellow); }
.eyebrow.centered { justify-content: center; }
.hero-actions { display: flex; align-items: center; gap: 1.45rem; margin: 2rem 0 2.2rem; }

.disclosure { border-radius: 14px; padding: 1rem 1.1rem; }
.disclosure p { margin: 0; font-size: .86rem; line-height: 1.55; }
.disclosure-dark { max-width: 700px; display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; color: #cfdae4; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.13); }
.disclosure-dark strong { color: var(--white); }
.disclosure-label { display: inline-flex; white-space: nowrap; color: var(--navy-950); background: var(--mint); padding: .26rem .45rem; border-radius: 4px; font-size: .68rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }

.hero-visual { position: relative; align-self: end; padding: 1rem 0 0; }
.image-frame { position: relative; margin-left: 1rem; border-radius: 180px 180px 0 0; overflow: hidden; box-shadow: 0 45px 90px rgba(0,0,0,.35); }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,23,37,.92), transparent 48%); }
.image-frame img { width: 100%; min-height: 620px; object-fit: cover; object-position: center; }
.image-caption { position: absolute; z-index: 2; left: 2rem; right: 2rem; bottom: 2rem; }
.image-caption span { display: block; color: var(--yellow); font-size: .73rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.image-caption strong { display: block; max-width: 330px; margin-top: .35rem; font-size: 1.35rem; line-height: 1.2; }
.note-card { position: absolute; z-index: 3; width: 205px; padding: 1rem 1.1rem; color: var(--navy-950); background: var(--white); box-shadow: var(--shadow); border-radius: 12px; transform: rotate(-3deg); }
.note-card small { display: block; margin-bottom: .35rem; color: var(--blue-600); font-size: .63rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.note-card strong { display: block; font-size: .9rem; line-height: 1.35; }
.note-card-one { left: -42px; top: 14%; }
.note-card-two { right: -24px; bottom: 18%; transform: rotate(3deg); background: var(--yellow); }

.proof-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.13); }
.proof-strip > div { padding: 1.45rem 1.6rem; border-right: 1px solid rgba(255,255,255,.13); }
.proof-strip > div:first-child { padding-left: 0; }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { color: var(--white); font-size: .92rem; }
.proof-strip span { color: #8fa4b7; font-size: .76rem; margin-top: .12rem; }

.intro-section { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.intro-grid h2 { font-size: clamp(2.25rem, 4.4vw, 3.7rem); }
.large-copy { padding-top: 1.8rem; }
.large-copy p { color: #43596c; font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.large-copy p:last-child { color: var(--blue-600); font-weight: 850; }

.problems-section { background: var(--paper); }
.section-heading { margin-bottom: 3.5rem; }
.section-heading h2 { max-width: 790px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 4rem; }
.split-heading > p, .split-heading > .text-link { max-width: 340px; margin-bottom: .65rem; }
.split-heading > p { color: var(--muted); }
.centered-heading { max-width: 820px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.problem-card { position: relative; min-height: 340px; padding: 2rem; border-radius: var(--radius); overflow: hidden; }
.problem-card::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid currentColor; border-radius: 50%; opacity: .14; right: -75px; bottom: -75px; }
.problem-card h3 { margin-top: 3.5rem; max-width: 260px; }
.problem-card p { color: rgba(6,23,37,.72); }
.problem-card > strong { display: block; margin-top: 1.5rem; font-size: .9rem; }
.card-number { font-size: .74rem; font-weight: 950; letter-spacing: .1em; }
.coral-card { background: #ffd9cc; }
.blue-card { background: var(--blue-100); }
.yellow-card { background: #ffe79a; }

.criteria-section { background: var(--white); }
.criteria-list { list-style: none; max-width: 1030px; margin: 0 auto; padding: 0; border-top: 1px solid var(--line); }
.criterion { display: grid; grid-template-columns: 65px minmax(0,1fr) 300px; gap: 1.25rem; align-items: center; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.criterion-number { color: var(--blue-600); font-size: .76rem; font-weight: 950; letter-spacing: .1em; }
.criterion h3 { margin: 0 0 .45rem; font-size: 1.26rem; }
.criterion p { margin: 0; color: var(--muted); font-size: .95rem; }
.ask-box { padding: .9rem 1rem; background: var(--paper); border-radius: 10px; }
.ask-box span, .ask-box strong { display: block; }
.ask-box span { color: var(--blue-600); font-size: .64rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.ask-box strong { margin-top: .2rem; font-size: .86rem; }

.javy-section { color: var(--white); background: var(--navy-900); }
.javy-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 5rem; align-items: end; margin-bottom: 3.2rem; }
.javy-heading h2 { max-width: 790px; }
.javy-heading > p { color: #a8b9c8; font-size: 1.05rem; }
.javy-scorecard { border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.score-row { display: grid; grid-template-columns: .95fr 1.05fr; border-bottom: 1px solid rgba(255,255,255,.12); }
.score-row:last-child { border-bottom: 0; }
.score-row > div { padding: 1.4rem 1.6rem; }
.score-row > div + div { color: #bfd0dd; border-left: 1px solid rgba(255,255,255,.12); }
.score-row strong { font-size: 1rem; }
.score-head { color: var(--yellow); background: rgba(255,255,255,.05); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.score-index { display: inline-block; min-width: 38px; color: var(--mint); font-size: .7rem; font-weight: 950; }

.reach-band { display: grid; grid-template-columns: 300px 1fr; gap: 3.3rem; align-items: center; margin-top: 2rem; padding: 2.2rem; color: var(--navy-950); background: var(--yellow); border-radius: var(--radius); }
.reach-stat strong { display: block; font-size: clamp(4rem, 8vw, 6.6rem); line-height: .9; letter-spacing: -.08em; }
.reach-stat sup { font-size: 1.5rem; vertical-align: top; }
.reach-stat span { display: block; max-width: 215px; margin-top: .8rem; font-size: .77rem; font-weight: 900; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.reach-copy h3 { margin-bottom: .65rem; font-size: 1.65rem; }
.reach-copy p { margin-bottom: .65rem; }
.reach-copy .footnote { margin: 0; color: rgba(6,23,37,.68); font-size: .74rem; line-height: 1.5; }

.categories-section { background: var(--paper); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.category-grid a { position: relative; min-height: 205px; padding: 1.7rem; background: var(--white); border: 1px solid transparent; border-radius: 16px; text-decoration: none; transition: transform .2s ease, border .2s ease, box-shadow .2s ease; }
.category-grid a:hover { transform: translateY(-4px); border-color: #b9d7e8; box-shadow: 0 16px 38px rgba(6,23,37,.09); }
.category-grid span { display: block; color: var(--blue-600); font-size: .72rem; font-weight: 950; }
.category-grid strong { display: block; margin: 2.15rem 0 .5rem; font-size: 1.3rem; line-height: 1.15; }
.category-grid small { display: block; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.category-grid a::after { content: "\2197"; position: absolute; right: 1.35rem; top: 1.15rem; color: var(--blue-600); font-size: 1.1rem; }

.principle-section { background: var(--white); }
.principle-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.principle-quote { position: relative; display: flex; align-items: flex-end; padding: 3rem; color: var(--white); background: var(--blue-600); overflow: hidden; }
.principle-quote::before { content: ""; position: absolute; width: 420px; height: 420px; border: 2px solid rgba(255,255,255,.3); border-radius: 50%; right: -210px; top: -150px; }
.principle-quote > span { position: absolute; top: 1rem; left: 2.2rem; color: var(--yellow); font-family: Georgia, serif; font-size: 8rem; line-height: 1; }
.principle-quote blockquote { position: relative; z-index: 1; margin: 0; max-width: 500px; font-size: clamp(1.75rem, 3.2vw, 2.75rem); font-weight: 800; line-height: 1.12; letter-spacing: -.04em; }
.principle-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.4rem, 5vw, 4.5rem); background: var(--paper); }
.principle-copy h2 { font-size: clamp(2rem, 3.8vw, 3.35rem); }
.principle-copy > p:last-child { color: var(--muted); font-size: 1.05rem; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.45rem 0; cursor: pointer; list-style: none; font-size: 1.06rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; color: var(--blue-600); background: var(--white); border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { padding: 0 3rem 1.5rem 0; color: var(--muted); }
.faq-list details > div p { margin: 0; }
.faq-list details a { color: var(--blue-600); font-weight: 700; }

.cta-section { position: relative; overflow: hidden; padding: 5.5rem 0; color: var(--white); background: var(--navy-950); }
.cta-lines::before { left: auto; right: -220px; top: -160px; }
.cta-lines::after { right: auto; left: -10%; }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: center; }
.cta-inner h2 { max-width: 770px; margin-bottom: 0; font-size: clamp(2.3rem, 4.8vw, 4.35rem); }
.cta-actions { display: flex; flex-direction: column; gap: .8rem; }

.site-footer { padding: 4.5rem 0 1.5rem; color: #c3d0db; background: #04111c; }
.footer-grid { display: grid; grid-template-columns: 1fr .7fr 1.25fr; gap: 4rem; }
.footer-brand { color: var(--white); }
.footer-grid > div:first-child > p { margin-top: 1.4rem; color: #8499aa; font-size: .9rem; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer-contact strong, .footer-disclosure strong { color: var(--white); margin-bottom: .4rem; }
.footer-contact a { color: #a9bdcc; text-decoration: none; font-size: .88rem; }
.footer-contact a:hover { color: var(--yellow); }
.footer-disclosure p { margin: 0; color: #8499aa; font-size: .82rem; line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.4rem; color: #708696; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }
.footer-bottom a { color: #a9bdcc; text-decoration: none; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr .76fr; gap: 2.5rem; }
  .note-card { display: none; }
  .image-frame { margin-left: 0; }
  .image-frame img { min-height: 560px; }
  .problem-card { min-height: 365px; }
  .criterion { grid-template-columns: 50px minmax(0,1fr) 250px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-disclosure { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-header { backdrop-filter: none; }
  .menu-button { display: flex; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 10px; border: 0; border-radius: 10px; background: var(--paper); cursor: pointer; }
  .menu-button .menu-line { display: block; width: 100%; height: 2px; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] .menu-line-one { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-line-two { opacity: 0; }
  .menu-button[aria-expanded="true"] .menu-line-three { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 80px 0 auto; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 1.2rem 20px 2rem; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 25px 40px rgba(6,23,37,.12); }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav .button { margin-top: 1rem; }
  .hero { padding-top: 4rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { width: min(100%, 560px); margin: 0 auto; }
  .image-frame { border-radius: 150px 150px 0 0; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .proof-strip > div:nth-child(3) { padding-left: 0; }
  .intro-grid, .javy-heading, .principle-grid, .faq-grid, .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .large-copy { padding-top: 0; }
  .split-heading { display: block; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 280px; }
  .problem-card h3 { margin-top: 2.2rem; }
  .criterion { grid-template-columns: 45px minmax(0,1fr); }
  .ask-box { grid-column: 2; }
  .javy-heading { margin-bottom: 2rem; }
  .reach-band { grid-template-columns: 220px 1fr; gap: 2rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-grid { min-height: 0; }
  .principle-quote { min-height: 420px; }
  .faq-intro { position: static; }
  .cta-actions { max-width: 430px; }
}

@media (max-width: 560px) {
  .container, .container.narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 4.5rem 0; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 40px; height: 40px; }
  .site-nav { top: 72px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.1rem); }
  h2 { font-size: clamp(2rem, 10.4vw, 3rem); }
  .hero { padding-top: 3.25rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .hero-actions .text-link { align-self: flex-start; }
  .disclosure-dark { grid-template-columns: 1fr; gap: .65rem; }
  .image-frame img { min-height: 475px; }
  .image-caption { left: 1.3rem; right: 1.3rem; bottom: 1.4rem; }
  .proof-strip > div { padding: 1.1rem .65rem; }
  .proof-strip > div:first-child, .proof-strip > div:nth-child(3) { padding-left: 0; }
  .section-heading { margin-bottom: 2.5rem; }
  .criterion { grid-template-columns: 34px minmax(0,1fr); gap: .8rem; align-items: start; padding: 1.4rem 0; }
  .ask-box { grid-column: 1 / -1; margin-left: 34px; }
  .score-head { display: none; }
  .score-row { grid-template-columns: 1fr; }
  .score-row > div { padding: 1.25rem; }
  .score-row > div + div { padding-top: 0; border-left: 0; }
  .reach-band { grid-template-columns: 1fr; padding: 1.55rem; }
  .reach-stat strong { font-size: 5rem; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid a { min-height: 180px; }
  .principle-quote { min-height: 360px; padding: 1.7rem; }
  .principle-copy { padding: 2rem 1.7rem; }
  .faq-list details > div { padding-right: 0; }
  .cta-section { padding: 4.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .footer-disclosure { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: .7rem; }
}

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

@media print {
  .site-header, .hero-visual, .hero-actions, .cta-section, .site-footer, .category-grid, .problem-grid { display: none !important; }
  .hero { color: var(--ink); background: var(--white); padding: 2rem 0; }
  .hero h1 em, .eyebrow { color: var(--ink); }
  .hero-lead, .disclosure-dark { color: var(--ink); }
  .disclosure-dark { background: transparent; border: 1px solid #999; }
  .proof-strip { color: var(--ink); border-color: #999; }
  .proof-strip > div { border-color: #999; }
  .proof-strip strong, .proof-strip span { color: var(--ink); }
  .section { padding: 2rem 0; }
  .criterion, .score-row { break-inside: avoid; }
  .javy-section { color: var(--ink); background: var(--white); }
  .score-row > div + div { color: var(--ink); }
}
