/* MoveToOwn — site stylesheet
   Hand-written, framework-free. Spacing follows an 8px rhythm; type scales fluidly with clamp(). */

:root {
  /* Colour */
  --slate: #2F4A6D;
  --slate-700: #263E5C;
  --slate-800: #1F3350;
  --slate-900: #172538;
  --accent: #F08A4B;
  --accent-soft: #FBE3D3;
  --accent-ink: #A84E17;
  --accent-on-dark: #F4A06B;
  --sand: #F7F3EC;
  --sand-2: #EFE8DC;
  --sand-3: #E6DCCB;
  --paper: #FFFFFF;
  --ink: #1B2430;
  --ink-2: #4A5565;
  --on-dark: #FFFFFF;
  --on-dark-2: #C9D3DF;
  --line: rgba(27, 36, 48, 0.12);
  --line-strong: rgba(27, 36, 48, 0.2);
  --focus: #A84E17;

  /* Type */
  --font: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --fs-md: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --fs-lg: clamp(1.1875rem, 1.08rem + 0.5vw, 1.375rem);
  --fs-h3: clamp(1.1875rem, 1.1rem + 0.45vw, 1.4375rem);
  --fs-h2: clamp(1.75rem, 1.35rem + 1.7vw, 2.75rem);
  --fs-h1: clamp(2.25rem, 1.55rem + 3.2vw, 4.25rem);
  --fs-display: clamp(2.5rem, 1.6rem + 4.2vw, 5.25rem);

  /* Space (8px rhythm) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 2.5rem;
  --s-6: 3rem;
  --s-8: 4rem;
  --s-10: 5rem;
  --s-12: 6rem;
  --section-y: clamp(4rem, 2.8rem + 5vw, 7.5rem);

  /* Shape */
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 20px;
  --shadow-1: 0 1px 2px rgba(23, 37, 56, 0.05), 0 4px 14px rgba(23, 37, 56, 0.06);
  --shadow-2: 0 2px 6px rgba(23, 37, 56, 0.06), 0 22px 48px -18px rgba(23, 37, 56, 0.28);
  --shadow-3: 0 30px 70px -28px rgba(23, 37, 56, 0.45);

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: var(--fs-h1); font-weight: 500; letter-spacing: -0.025em; }
h2 { font-size: var(--fs-h2); font-weight: 500; letter-spacing: -0.02em; }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
p { margin: 0 0 var(--s-2); }
a { color: var(--slate); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-ink); }
ul, ol { margin: 0; padding: 0; }
strong { font-weight: 600; }
::selection { background: var(--accent-soft); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}
.on-dark, .site-footer, .hero, .section--dark, .signup-band--dark { --focus: var(--accent-on-dark); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Honeypot: off-screen, never visible to people */
.hp { position: absolute !important; left: -10000px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

.skip-link {
  position: absolute; left: var(--s-2); top: -100px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--r-sm);
  font-weight: 500; text-decoration: none; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--s-2); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px; border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.01em; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--slate); color: #fff; box-shadow: 0 8px 20px -10px rgba(47, 74, 109, 0.7); }
.btn-primary:hover { background: var(--slate-800); color: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(240, 138, 75, 0.9); }
.btn-accent:hover { background: #F39A62; color: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); color: #fff; border-color: #fff; }
.btn-outline { background: transparent; color: var(--slate); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--slate); color: var(--slate); background: var(--paper); }
.btn-sm { min-height: 40px; padding: 8px 18px; }
.btn[disabled] { opacity: 0.65; cursor: progress; transform: none; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--slate);
  text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.text-link svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.text-link:hover svg { transform: translateX(3px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 var(--s-2);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; }
.on-dark .eyebrow, .hero .eyebrow, .section--dark .eyebrow { color: var(--accent-on-dark); }

.lead { font-size: var(--fs-lg); line-height: 1.55; color: var(--ink-2); font-weight: 300; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, 0.82);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -20px rgba(23, 37, 56, 0.35); background: rgba(247, 243, 236, 0.9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: none; }
.brand:hover { color: var(--ink); }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; box-shadow: 0 6px 14px -8px rgba(47, 74, 109, 0.8); }
.brand-name { font-size: 1.3125rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.brand-name span { color: var(--slate); font-weight: 400; }
.site-footer .brand, .site-footer .brand:hover { color: #fff; }
.site-footer .brand-name span { color: var(--accent-on-dark); }

.site-nav { display: flex; align-items: center; gap: var(--s-4); }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.site-nav ul a {
  position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px;
  color: var(--ink); text-decoration: none; font-size: var(--fs-sm); font-weight: 500; border-radius: 999px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.site-nav ul a:hover { background: rgba(47, 74, 109, 0.07); color: var(--slate); }
.site-nav ul a[aria-current="page"] { color: var(--slate); }
.site-nav ul a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; border-radius: 2px; background: var(--accent);
}

.nav-toggle {
  display: none; position: relative; width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 14px;
  background: var(--paper); color: var(--ink); cursor: pointer; padding: 0;
}
.nav-toggle-bar { position: absolute; left: 14px; right: 14px; height: 2px; border-radius: 2px; background: currentColor; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease); }
.nav-toggle-bar:nth-child(1) { top: 17px; }
.nav-toggle-bar:nth-child(2) { top: 23px; }
.nav-toggle-bar:nth-child(3) { top: 29px; }
.nav-open .nav-toggle-bar:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { top: 23px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .js .nav-toggle { display: inline-block; }
  .js .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: var(--s-2);
    padding: var(--s-2) var(--gutter) var(--s-3);
    background: var(--sand); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(23, 37, 56, 0.4);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity 0.2s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
  }
  .js .nav-open .site-nav { visibility: visible; opacity: 1; transform: none; transition: opacity 0.2s var(--ease), transform 0.25s var(--ease); }
  .js .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .js .site-nav ul li + li { border-top: 1px solid var(--line); }
  .js .site-nav ul a { display: flex; min-height: 52px; padding: 12px 4px; border-radius: 0; font-size: 1.0625rem; }
  .js .site-nav ul a:hover { background: transparent; }
  .js .site-nav ul a[aria-current="page"]::after { left: auto; right: 4px; top: 50%; bottom: auto; width: 8px; height: 8px; border-radius: 50%; transform: translateY(-50%); }
  .js .site-nav .btn { width: 100%; min-height: 48px; }
  html:not(.js) .header-inner { flex-wrap: wrap; padding-block: 12px; }
  html:not(.js) .site-nav { flex-wrap: wrap; gap: var(--s-2); }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--white { background: var(--paper); }
.section--sand2 { background: var(--sand-2); }
.section--dark { background: var(--slate-900); color: var(--on-dark-2); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: var(--s-4); margin-bottom: var(--s-6); flex-wrap: wrap; }
.section-head > div { max-width: 640px; }
.section-head p { margin: var(--s-2) 0 0; color: var(--ink-2); font-size: var(--fs-md); }
.section--dark .section-head p { color: var(--on-dark-2); }

/* ---------- Home hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--slate-900); color: #fff; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 60% 40%; transform: scale(1.02); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 37, 56, 0.92) 0%, rgba(23, 37, 56, 0.78) 38%, rgba(23, 37, 56, 0.28) 72%, rgba(23, 37, 56, 0.12) 100%),
    linear-gradient(0deg, rgba(23, 37, 56, 0.7) 0%, rgba(23, 37, 56, 0) 40%);
}
.hero-inner {
  position: relative; z-index: 1; display: grid; align-content: end; gap: var(--s-6);
  min-height: clamp(560px, 82vh, 780px); padding-block: var(--s-12) var(--s-8);
}
.hero-copy { max-width: 700px; }
.hero h1 { color: #fff; font-size: var(--fs-display); font-weight: 400; line-height: 1.02; letter-spacing: -0.035em; }
.hero h1 em { font-style: normal; color: var(--accent-on-dark); }
.hero .lead { color: rgba(255, 255, 255, 0.86); margin-top: var(--s-3); max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-4); }
.hero-foot { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--s-3); border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: var(--s-3); }
.hero-topics { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.hero-topics li {
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 999px; background: rgba(255, 255, 255, 0.06);
}
.hero-start {
  display: flex; align-items: center; gap: 16px; max-width: 420px; padding: 14px 18px 14px 14px; border-radius: var(--r);
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: #fff; text-decoration: none; transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-start:hover { background: rgba(255, 255, 255, 0.16); color: #fff; transform: translateY(-2px); }
.hero-start img { width: 72px; height: 56px; object-fit: cover; border-radius: 10px; flex: none; }
.hero-start small { display: block; font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-on-dark); font-weight: 600; }
.hero-start strong { display: block; font-weight: 500; line-height: 1.3; margin-top: 2px; }
.photo-credit { font-size: 0.75rem; color: rgba(255, 255, 255, 0.72); margin: 0; }
.photo-credit a { color: inherit; }

/* ---------- Intro split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split h2 { max-width: 16ch; }
.split .lead { margin-top: var(--s-3); }
.pillars { list-style: none; display: grid; gap: var(--s-3); margin-top: var(--s-5); }
.pillars li { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: var(--s-2); align-items: start; }
.pillar-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--paper); color: var(--slate); box-shadow: var(--shadow-1); }
.pillar-icon svg { width: 22px; height: 22px; }
.pillars h3 { font-size: 1.125rem; margin: 2px 0 4px; }
.pillars p { margin: 0; color: var(--ink-2); }

.feature-figure { position: relative; margin: 0; }
.feature-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-3); }
.feature-note {
  position: absolute; left: clamp(-32px, -3vw, -12px); bottom: var(--s-4); max-width: 290px;
  background: var(--paper); border-radius: var(--r); padding: var(--s-3); box-shadow: var(--shadow-2);
}
.feature-note p { margin: 0; font-size: var(--fs-sm); color: var(--ink-2); }
.feature-note strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 4px; }
.feature-figure figcaption { margin-top: 12px; font-size: 0.75rem; color: var(--ink-2); text-align: right; }

/* ---------- Guide cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.4vw, 2rem); }
.guide-card {
  position: relative; display: flex; flex-direction: column; background: var(--paper); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-1); border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.section--white .guide-card { background: var(--sand); border-color: transparent; }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.guide-card-media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: var(--sand-2); }
.guide-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.guide-card:hover .guide-card-media img { transform: scale(1.045); }
.guide-card-tag {
  position: absolute; left: 16px; top: 16px; padding: 5px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255, 255, 255, 0.92); color: var(--slate);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.guide-card-body { display: flex; flex-direction: column; flex: 1; padding: var(--s-3) var(--s-3) var(--s-3); }
.guide-card h3 { font-size: 1.25rem; line-height: 1.28; font-weight: 600; }
.guide-card h3 a { color: var(--ink); text-decoration: none; }
.guide-card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.guide-card h3 a:focus-visible { outline: none; }
.guide-card:focus-within { outline: 3px solid var(--focus); outline-offset: 3px; }
.guide-card p { margin: 10px 0 var(--s-3); color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.6; }
.guide-card-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: var(--fs-xs); font-weight: 500; color: var(--ink-2); padding-top: var(--s-2); border-top: 1px solid var(--line); }
.guide-card-meta .arrow { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--sand-2); color: var(--slate); transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); }
.section--white .guide-card-meta .arrow { background: var(--paper); }
.guide-card-meta .arrow svg { width: 16px; height: 16px; }
.guide-card:hover .guide-card-meta .arrow { background: var(--accent); color: var(--ink); transform: rotate(-45deg); }
.clock { display: inline-flex; align-items: center; gap: 6px; }
.clock svg { width: 15px; height: 15px; }

/* ---------- Path stages ---------- */
.stages { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.4vw, 2rem); counter-reset: stage; }
.stage { position: relative; padding: var(--s-4); background: var(--paper); border-radius: var(--r-lg); border: 1px solid var(--line); counter-increment: stage; }
.stage::before {
  content: "0" counter(stage); display: block; font-size: 2.75rem; font-weight: 300; letter-spacing: -0.04em; line-height: 1;
  color: var(--accent-ink); margin-bottom: var(--s-3);
}
.stage h3 { margin-bottom: 8px; }
.stage > p { color: var(--ink-2); margin-bottom: var(--s-3); }
.stage ul { list-style: none; display: grid; gap: 2px; border-top: 1px solid var(--line); padding-top: 12px; }
.stage ul a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; color: var(--slate); text-decoration: none; font-weight: 500; line-height: 1.35; }
.stage ul a:hover { color: var(--accent-ink); }
.stage ul a svg { width: 16px; height: 16px; flex: none; transition: transform 0.2s var(--ease); }
.stage ul a:hover svg { transform: translateX(3px); }

/* ---------- Editorial standards ---------- */
.standards { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.standards-intro p { color: var(--on-dark-2); font-size: var(--fs-md); margin-top: var(--s-3); }
.standards-intro .text-link { color: #fff; margin-top: var(--s-2); }
.standards-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-3); }
.standards-list li { padding: var(--s-3); border-radius: var(--r); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); }
.standards-list .num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(244, 160, 107, 0.6); color: var(--accent-on-dark); font-size: var(--fs-sm); font-weight: 600; margin-bottom: var(--s-2); }
.standards-list h3 { font-size: 1.125rem; margin-bottom: 8px; }
.standards-list p { margin: 0; font-size: var(--fs-sm); color: var(--on-dark-2); }

/* ---------- Sign-up band & forms ---------- */
.signup-band { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.signup-band h2 { max-width: 14ch; }
.signup-band .lead { margin-top: var(--s-3); }
.signup-points { list-style: none; display: grid; gap: 12px; margin-top: var(--s-4); }
.signup-points li { display: flex; gap: 12px; align-items: start; color: var(--ink-2); }
.signup-points svg { width: 20px; height: 20px; flex: none; color: var(--accent-ink); margin-top: 3px; }

.form-card { background: var(--paper); border-radius: var(--r-lg); padding: clamp(1.5rem, 1rem + 2.5vw, 3rem); box-shadow: var(--shadow-2); border: 1px solid var(--line); }
.form-card h2, .form-card h3 { margin-bottom: 8px; }
.form-card > p { color: var(--ink-2); }
.form { display: grid; gap: var(--s-3); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-3); }
.field { display: grid; gap: 8px; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.field .optional { font-weight: 400; color: var(--ink-2); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--sand);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 13px 16px; min-height: 50px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { min-height: 160px; resize: vertical; line-height: 1.55; }
.field input:hover, .field textarea:hover { border-color: rgba(27, 36, 48, 0.35); }
.field input:focus, .field textarea:focus { outline: none; background: var(--paper); border-color: var(--slate); box-shadow: 0 0 0 4px rgba(47, 74, 109, 0.16); }
.field .hint { font-size: var(--fs-xs); color: var(--ink-2); margin: 0; }

.check { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 12px; align-items: start; font-size: 0.875rem; line-height: 1.55; color: var(--ink-2); }
.check input {
  appearance: none; -webkit-appearance: none; width: 22px; height: 22px; margin: 1px 0 0; border-radius: 6px;
  border: 1.5px solid rgba(27, 36, 48, 0.45); background: var(--paper); cursor: pointer; display: grid; place-items: center;
  transition: background-color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.check input::after { content: ""; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); opacity: 0; }
.check input:checked { background: var(--slate); border-color: var(--slate); }
.check input:checked::after { opacity: 1; }
.check input:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.check a { color: var(--slate); font-weight: 500; }
.check .req { color: var(--accent-ink); font-weight: 600; }
.consents { display: grid; gap: var(--s-2); padding: var(--s-3); border-radius: var(--r-sm); background: var(--sand); border: 1px solid var(--line); }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-3); }
.form-foot small { color: var(--ink-2); font-size: var(--fs-xs); }

.form-note { margin: 0; font-size: 0.8125rem; line-height: 1.55; color: var(--ink-2); }
.form-note a { color: var(--slate); }
.form-title { font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem); }
.section--flush-top { padding-top: 0; }
.h-sm { font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem); margin-bottom: var(--s-3); }
.expect-list { list-style: none; display: grid; gap: var(--s-3); }
.expect-list li { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: var(--s-2); align-items: start; }
.expect-list h3 { font-size: 1.125rem; margin: 2px 0 4px; }
.expect-list p { margin: 0; color: var(--ink-2); }
.signup-figure { margin-top: var(--s-5); }
.signup-figure img { aspect-ratio: 3 / 2; }
.signup-page { align-items: start; }
.signup-page .form-card { position: sticky; top: calc(var(--header-h) + 24px); }
.form-status { font-size: var(--fs-sm); font-weight: 500; border-radius: var(--r-sm); padding: 14px 16px; }
.form-status:empty { display: none; }
.form-status.is-success { background: #E6F2EA; color: #1D5B35; border: 1px solid #A9D2B7; }
.form-status.is-error { background: #FBE9E4; color: #8A2E17; border: 1px solid #EDB9A8; }

/* ---------- Inner page hero ---------- */
.page-hero { padding-block: clamp(3rem, 2rem + 4vw, 6rem) clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 640px; margin-top: var(--s-3); }
.page-banner { margin: 0; }
.page-banner img { width: 100%; height: clamp(240px, 38vw, 520px); object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-2); }
.page-banner figcaption, .article-figure figcaption { margin-top: 12px; font-size: 0.75rem; color: var(--ink-2); }

.breadcrumb { margin-bottom: var(--s-3); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: var(--fs-xs); color: var(--ink-2); }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: rgba(27, 36, 48, 0.3); }
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--slate); text-decoration: underline; }

/* ---------- Article ---------- */
.article-header { padding-block: clamp(2.5rem, 1.8rem + 3vw, 5rem) var(--s-4); }
.article-header h1 { max-width: 20ch; font-size: clamp(2.125rem, 1.5rem + 2.8vw, 3.75rem); }
.article-header .lead { max-width: 680px; margin-top: var(--s-3); }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin-top: var(--s-4); font-size: var(--fs-sm); color: var(--ink-2); }
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta svg { width: 17px; height: 17px; color: var(--accent-ink); }
.article-figure { margin: 0; }
.article-figure img { width: 100%; height: clamp(240px, 42vw, 560px); object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-2); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; padding-block: var(--s-8) var(--section-y); }
.article-aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: var(--s-3); }
.toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-3); }
.toc-title { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 12px; }
.toc ol { list-style: none; display: grid; gap: 2px; }
.toc a {
  display: block; padding: 7px 0 7px 14px; border-left: 2px solid var(--line); color: var(--ink-2);
  text-decoration: none; font-size: 0.9rem; line-height: 1.4; transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.toc a:hover { color: var(--slate); border-left-color: var(--slate); }
.toc a.is-active { color: var(--ink); border-left-color: var(--accent); font-weight: 500; }
.aside-cta { background: var(--slate); color: var(--on-dark-2); border-radius: var(--r); padding: var(--s-3); --focus: var(--accent-on-dark); }
.aside-cta h2 { font-size: 1.1875rem; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.aside-cta p { font-size: var(--fs-sm); margin-bottom: var(--s-2); }
.aside-cta .btn { width: 100%; }
.toc-mobile { display: none; }

.prose { max-width: 700px; font-size: var(--fs-md); line-height: 1.75; }
.prose > * + * { margin-top: 1.1em; }
.prose p { margin-bottom: 0; }
.prose > .takeaways + p { margin-top: 2em; }
.prose > .official { margin-top: 2.5em; }
.prose > .callout { margin-block: 1.8em; }
.prose > p:first-of-type { font-size: var(--fs-lg); line-height: 1.6; color: var(--ink); }
.prose h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2.125rem); margin-top: 2.2em; line-height: 1.18; font-weight: 500; }
.prose h3 { font-size: clamp(1.1875rem, 1.1rem + 0.35vw, 1.375rem); margin-top: 1.8em; }
.prose h2 + p, .prose h3 + p, .prose h2 + ul, .prose h3 + ul, .prose h2 + ol { margin-top: 0.7em; }
.prose ul, .prose ol { padding-left: 0; list-style: none; display: grid; gap: 0.6em; }
.prose ul > li { position: relative; padding-left: 1.6em; }
.prose ul > li::before { content: ""; position: absolute; left: 0.3em; top: 0.72em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.prose ol { counter-reset: item; }
.prose ol > li { position: relative; padding-left: 2.6em; counter-increment: item; }
.prose ol > li::before {
  content: counter(item); position: absolute; left: 0; top: 0.1em; width: 1.75em; height: 1.75em; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.8em; font-weight: 600; background: var(--sand-2); color: var(--slate);
}
.prose a { color: var(--slate); font-weight: 500; }
.prose a:hover { color: var(--accent-ink); }
.prose strong { color: var(--ink); }

.takeaways { position: relative; background: var(--paper); border-radius: var(--r-lg); padding: var(--s-4); border: 1px solid var(--line); box-shadow: var(--shadow-1); overflow: hidden; }
.takeaways::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--accent), var(--slate)); }
.takeaways h2 { display: flex; align-items: center; gap: 10px; font-size: 1.125rem !important; letter-spacing: 0.01em; margin: 0 0 var(--s-2) !important; font-weight: 600 !important; }
.takeaways h2 svg { width: 22px; height: 22px; color: var(--accent-ink); }
.takeaways ul { gap: 0.75em; }
.takeaways ul > li { padding-left: 2em; font-size: 1rem; line-height: 1.6; }
.takeaways ul > li::before {
  width: 1.15em; height: 1.15em; left: 0; top: 0.22em; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23A84E17' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5'/%3E%3C/svg%3E") center / 80% no-repeat;
}

.callout { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: var(--s-2); padding: var(--s-3); border-radius: var(--r); background: var(--sand-2); border: 1px solid var(--line); }
.callout-icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--paper); color: var(--accent-ink); }
.callout-icon svg { width: 20px; height: 20px; }
.callout--caution { background: #FCEDE3; border-color: #F2C9AE; }
.callout--note { background: #E9EEF4; border-color: #C9D5E3; }
.callout--note .callout-icon { color: var(--slate); }
.callout-title { display: block; font-weight: 600; font-size: 1.0625rem; color: var(--ink); margin: 6px 0 6px; }
.callout p { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--ink); }
.callout p + p { margin-top: 0.7em; }

.worksheet-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); background: var(--paper); -webkit-overflow-scrolling: touch; }
.worksheet { width: 100%; border-collapse: collapse; font-size: 0.95rem; line-height: 1.5; min-width: 520px; }
.worksheet caption { text-align: left; padding: 14px 18px; font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.worksheet th, .worksheet td { padding: 12px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.worksheet thead th { background: var(--sand); font-weight: 600; color: var(--ink); }
.worksheet tbody th { font-weight: 600; color: var(--ink); white-space: nowrap; }
.worksheet td { color: var(--ink-2); }
.worksheet tr:last-child th, .worksheet tr:last-child td { border-bottom: 0; }

.official { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-4); }
.official h2 { margin-top: 0 !important; font-size: 1.25rem !important; font-weight: 600 !important; }
.official > p { font-size: 0.95rem; color: var(--ink-2); }
.official ul { gap: 0 !important; margin-top: var(--s-2); }
.official ul > li { padding: 0 !important; border-top: 1px solid var(--line); }
.official ul > li::before { display: none; }
.official a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; text-decoration: none; font-size: 1rem; line-height: 1.4; }
.official a span { display: block; }
.official a small { display: block; font-weight: 400; color: var(--ink-2); font-size: 0.85rem; }
.official a svg { width: 18px; height: 18px; flex: none; color: var(--ink-2); }
.official a:hover svg { color: var(--accent-ink); }

.article-note { font-size: 0.9rem !important; color: var(--ink-2); border-top: 1px solid var(--line); padding-top: var(--s-3); }

/* Keep reading */
.more-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--s-3); }
.mini-card { position: relative; display: flex; flex-direction: column; gap: 14px; }
.mini-card-media { overflow: hidden; border-radius: var(--r); aspect-ratio: 4 / 3; background: var(--sand-2); }
.mini-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mini-card:hover .mini-card-media img { transform: scale(1.05); }
.mini-card small { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-ink); }
.mini-card h3 { font-size: 1.0625rem; line-height: 1.35; margin-top: 4px; font-weight: 600; }
.mini-card h3 a { color: var(--ink); text-decoration: none; }
.mini-card h3 a::after { content: ""; position: absolute; inset: 0; }
.mini-card:hover h3 a { color: var(--slate); }
.mini-card:focus-within { outline: 3px solid var(--focus); outline-offset: 4px; border-radius: var(--r); }
.mini-card h3 a:focus-visible { outline: none; }
.mini-card .clock { font-size: var(--fs-xs); color: var(--ink-2); margin-top: 6px; }

/* ---------- Resources page ---------- */
.guide-group + .guide-group { margin-top: var(--s-10); }
.guide-group-head { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: var(--s-3); align-items: baseline; margin-bottom: var(--s-4); padding-bottom: var(--s-3); border-bottom: 1px solid var(--line); }
.guide-group-head .num { font-size: 3rem; font-weight: 300; letter-spacing: -0.04em; color: var(--accent-ink); line-height: 1; }
.guide-group-head p { margin: 8px 0 0; color: var(--ink-2); max-width: 620px; }
.guide-group .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.guide-group .guide-card { flex-direction: row; }
.guide-group .guide-card-media { flex: 0 0 42%; aspect-ratio: auto; min-height: 260px; }

.agency-list { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-2); }
.agency-list a {
  display: flex; flex-direction: column; gap: 4px; height: 100%; padding: var(--s-3); border-radius: var(--r); background: var(--paper);
  border: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.agency-list a:hover { border-color: var(--slate); transform: translateY(-2px); box-shadow: var(--shadow-1); color: var(--ink); }
.agency-list strong { font-weight: 600; line-height: 1.35; }
.agency-list span { font-size: var(--fs-sm); color: var(--ink-2); }
.agency-list em { font-style: normal; font-size: var(--fs-xs); color: var(--slate); font-weight: 500; margin-top: auto; padding-top: 8px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.about-grid .sticky-label { position: sticky; top: calc(var(--header-h) + 32px); }
.about-grid .sticky-label h2 { font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem); }
.about-grid + .about-grid { margin-top: var(--s-10); padding-top: var(--s-10); border-top: 1px solid var(--line); }
.cover-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-2); margin-top: var(--s-3); }
.cover-list li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-3); }
.cover-list h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.cover-list p { margin: 0; font-size: var(--fs-sm); color: var(--ink-2); }
.not-list { margin-top: var(--s-3); display: grid; gap: 10px; list-style: none; }
.not-list li { display: flex; gap: 12px; align-items: start; }
.not-list svg { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--accent-ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.info-stack { display: grid; gap: var(--s-2); }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-3); }
.info-card h2 { font-size: 1.125rem; margin-bottom: 8px; letter-spacing: 0; font-weight: 600; }
.info-card p { margin: 0; font-size: var(--fs-sm); color: var(--ink-2); }
.info-card p + p { margin-top: 10px; }
.info-card ul { list-style: none; display: grid; gap: 8px; font-size: var(--fs-sm); color: var(--ink-2); margin-top: 8px; }
.info-card li { display: flex; gap: 10px; }
.info-card li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--accent-ink); }
.email-link { display: inline-flex; align-items: center; gap: 10px; font-size: 1.125rem; font-weight: 600; color: var(--slate); text-decoration: none; margin-top: 4px; word-break: break-all; }
.email-link:hover { text-decoration: underline; }
.email-link svg { width: 20px; height: 20px; flex: none; }
.info-card--dark { background: var(--slate); border-color: var(--slate); color: var(--on-dark-2); --focus: var(--accent-on-dark); }
.info-card--dark h2 { color: #fff; }
.info-card--dark p { color: var(--on-dark-2); }
.info-card--dark a { color: #fff; }

/* ---------- Legal ---------- */
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(2rem, 6vw, 5.5rem); align-items: start; padding-bottom: var(--section-y); }
.legal-layout .toc { position: sticky; top: calc(var(--header-h) + 24px); }
.legal { max-width: 740px; font-size: 1.03rem; line-height: 1.75; }
.legal h2 { font-size: clamp(1.3125rem, 1.2rem + 0.5vw, 1.625rem); margin: 2.2em 0 0.6em; font-weight: 600; letter-spacing: -0.01em; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.125rem; margin: 1.6em 0 0.5em; }
.legal p { margin: 0 0 1em; color: var(--ink); }
.legal ul { list-style: none; display: grid; gap: 0.55em; margin: 0 0 1.1em; }
.legal ul li { position: relative; padding-left: 1.5em; }
.legal ul li::before { content: ""; position: absolute; left: 0.25em; top: 0.72em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.updated-row { margin: var(--s-3) 0 0; }
.updated { display: inline-flex; gap: 8px; align-items: center; font-size: var(--fs-sm); color: var(--ink-2); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; }
.updated svg { width: 16px; height: 16px; color: var(--accent-ink); }
.legal-summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-3); margin-bottom: var(--s-5); }
.legal-summary p:last-child { margin-bottom: 0; }

/* ---------- Simple pages (thank you, 404) ---------- */
.simple-hero { min-height: calc(100vh - var(--header-h) - 200px); display: grid; align-items: center; padding-block: var(--section-y); }
.simple-hero .code { font-size: clamp(4rem, 3rem + 6vw, 8rem); font-weight: 200; letter-spacing: -0.06em; line-height: 1; color: var(--accent-ink); margin-bottom: var(--s-3); }
.simple-hero .check-badge { width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center; background: var(--paper); box-shadow: var(--shadow-2); color: var(--slate); margin-bottom: var(--s-4); }
.simple-hero .check-badge svg { width: 34px; height: 34px; }
.simple-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-4); }
.simple-links { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-2); margin-top: var(--s-8); }
.simple-hero .lead { margin-top: var(--s-3); max-width: 620px; }
.simple-links a { display: block; padding: var(--s-3); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; color: var(--ink); font-weight: 500; line-height: 1.4; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.simple-links a:hover { border-color: var(--slate); transform: translateY(-2px); color: var(--slate); }
.simple-links small { display: block; font-size: var(--fs-xs); color: var(--accent-ink); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-900); color: var(--on-dark-2); padding-top: var(--s-10); font-size: var(--fs-sm); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: var(--s-5); padding-bottom: var(--s-8); }
.footer-brand p { margin: var(--s-3) 0 var(--s-2); max-width: 340px; line-height: 1.65; }
.footer-brand a.mail { color: #fff; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.35); }
.footer-brand a.mail:hover { border-bottom-color: var(--accent-on-dark); color: #fff; }
.footer-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 var(--s-2); }
.site-footer ul { list-style: none; display: grid; gap: 4px; }
.site-footer ul a { display: inline-block; padding: 5px 0; color: var(--on-dark-2); text-decoration: none; line-height: 1.4; transition: color 0.2s var(--ease); }
.site-footer ul a:hover { color: #fff; }
.footer-bottom { position: relative; padding-block: var(--s-4); display: grid; gap: var(--s-2); }
.footer-bottom::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: rgba(255, 255, 255, 0.12); }
.disclaimer { margin: 0; max-width: 860px; font-size: 0.8125rem; line-height: 1.65; color: var(--on-dark-2); }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; font-size: 0.8125rem; margin: 0; }
.footer-meta a { color: var(--on-dark-2); }
.footer-meta a:hover { color: #fff; }

/* ---------- Reveal ---------- */
/* Content is always visible by default. Sections that start below the fold get a short entrance
   animation just before they scroll into view, so nothing can be left hidden if a script or observer never runs. */
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal-in { animation: rise-in 0.7s var(--ease) both; }
.reveal-in[data-reveal-delay="1"] { animation-delay: 0.08s; }
.reveal-in[data-reveal-delay="2"] { animation-delay: 0.16s; }
.reveal-in[data-reveal-delay="3"] { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; transition-delay: 0s !important; }
  .reveal-in { animation: none; }
  .guide-card:hover, .guide-card:hover .guide-card-media img, .mini-card:hover .mini-card-media img { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .more-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 260px; }
}
@media (max-width: 1000px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stages { grid-template-columns: minmax(0, 1fr); }
  .standards { grid-template-columns: minmax(0, 1fr); }
  .signup-band { grid-template-columns: minmax(0, 1fr); }
  .signup-band h2 { max-width: none; }
  .signup-page .form-card { order: -1; position: static; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .guide-group .card-grid { grid-template-columns: minmax(0, 1fr); }
  .agency-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .feature-figure { max-width: 560px; }
  .feature-note { left: var(--s-2); }
  .article-layout { grid-template-columns: minmax(0, 1fr); padding-top: var(--s-5); }
  .article-aside { position: static; order: 2; }
  .article-aside .toc { display: none; }
  .toc-mobile { display: block; margin-bottom: var(--s-4); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
  .toc-mobile summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; font-weight: 600; font-size: var(--fs-sm); min-height: 52px; }
  .toc-mobile summary::-webkit-details-marker { display: none; }
  .toc-mobile summary svg { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
  .toc-mobile[open] summary svg { transform: rotate(180deg); }
  .toc-mobile ol { list-style: none; padding: 0 20px 16px; display: grid; gap: 2px; }
  .toc-mobile a { display: block; padding: 8px 0; color: var(--slate); text-decoration: none; font-size: 0.95rem; border-top: 1px solid var(--line); }
  .legal-layout { grid-template-columns: minmax(0, 1fr); }
  .legal-layout .toc { position: static; }
  .about-grid { grid-template-columns: minmax(0, 1fr); gap: var(--s-3); }
  .about-grid .sticky-label { position: static; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .guide-group-head { grid-template-columns: minmax(0, 1fr); gap: 8px; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .card-grid { grid-template-columns: minmax(0, 1fr); }
  .standards-list { grid-template-columns: minmax(0, 1fr); }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); }
  .agency-list { grid-template-columns: minmax(0, 1fr); }
  .cover-list { grid-template-columns: minmax(0, 1fr); }
  .hero-inner { min-height: 0; padding-block: var(--s-10) var(--s-5); gap: var(--s-5); }
  .hero-media::after { background: linear-gradient(180deg, rgba(23, 37, 56, 0.6) 0%, rgba(23, 37, 56, 0.8) 50%, rgba(23, 37, 56, 0.94) 100%); }
  .hero-start { max-width: none; width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; }
  .guide-group .guide-card { flex-direction: column; }
  .guide-group .guide-card-media { flex: none; aspect-ratio: 3 / 2; min-height: 0; }
  .more-grid { grid-template-columns: minmax(0, 1fr); gap: var(--s-2); }
  .mini-card { flex-direction: row; align-items: center; gap: var(--s-2); padding-bottom: var(--s-2); border-bottom: 1px solid var(--line); }
  .mini-card-media { flex: 0 0 104px; aspect-ratio: 1 / 1; border-radius: var(--r-sm); }
  .feature-note { position: relative; left: auto; bottom: auto; margin: calc(var(--s-6) * -1) var(--s-2) 0; max-width: none; }
  .feature-figure img { aspect-ratio: 4 / 3; }
  .takeaways, .official { padding: var(--s-3); }
  .callout { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .brand-name { font-size: 1.1875rem; }
  .brand-mark { width: 34px; height: 34px; }
  .stage { padding: var(--s-3); }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
}

@media print {
  .site-header, .site-footer, .article-aside, .toc-mobile, .signup-band, .skip-link { display: none !important; }
  body { background: #fff; }
  .reveal-in { animation: none; }
}
.article-main, .legal, .prose { min-width: 0; }
@media (max-width: 640px) {
  .worksheet { min-width: 0; }
  .worksheet thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .worksheet tr { display: block; padding: 14px 18px; border-bottom: 1px solid var(--line); }
  .worksheet tr:last-child { border-bottom: 0; }
  .worksheet th, .worksheet td { display: block; padding: 2px 0; border: 0; }
  .worksheet tbody th { white-space: normal; margin-bottom: 4px; }
  .worksheet td::before { content: attr(data-label) ": "; font-weight: 600; color: var(--ink); }
}
