/* ==========================================================================
   a11 info pages — landing-matched web stylesheet
   --------------------------------------------------------------------------
   Reproduces the sites/landing/ visual system in vanilla CSS so each topic
   page (pdfs / videos / lms) is a real scrolling website that reads as the
   same brand — dashed Band rails, Rule dividers w/ corner crosses, animated
   Aurora, pill CTAs, big Inter+Instrument-Serif headlines, ColorTrim footer.

   Type:  Inter (UI/headings, -0.05em) · Instrument Serif (italic accents) ·
          JetBrains Mono (labels). Palette = product status tokens.
   --------------------------------------------------------------------------
   THIS FILE IS THE SINGLE SOURCE OF TRUTH for all four sheets + the hub. It has
   TWO halves:
     1. Screen styles (everything down to the PRINT block) — the scrolling web page.
     2. The `@media print` block at the bottom — turns the SAME markup into a clean
        one-page US-Letter handout (nav hidden, reasons → 2×2 grid that fills the
        page, QR revealed, ColorTrim bled to the bottom edge).
   THEMING: each sheet sets `--accent` on <body>; everything accent-colored derives
   from it. A sheet's own <head> <style> may recolor the aurora (screen + the print
   `body::before/::after`) and override `.reason strong` to `white-space:normal`.
   See sites/info/README.md for the whole model, the clone recipe, and the ⚠️ about
   the print page filling tightly (edit copy → re-verify it's still one page).
   ========================================================================== */

:root {
  --canvas: #ffffff;
  --fg: #0a0a0a;
  --muted: #616161;
  --surface: #f1f0ec;
  --card: #ffffff;
  --line: #adadad;    /* dashed construction hairlines */
  --line2: #ececec;   /* card borders                  */

  --c-reviewed: #2563eb;
  --c-success: #657b60;
  --c-reprocessing: #988332;
  --c-processing: #ca8a04;
  --c-failed: #dc2626;

  --accent: #2563eb;  /* per-page override */

  --band: 1120px;
  --shadow: 0 0.6px 1.6px -1.5px rgba(0,0,0,0.17), 0 2.3px 6px -3px rgba(0,0,0,0.14), 0 10px 26px -4.5px rgba(0,0,0,0.05);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.10);

  --font-ui: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--fg);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; }
:focus-visible { outline: 2px solid var(--fg); outline-offset: 3px; border-radius: 2px; }
::selection { background: rgba(101, 123, 96, 0.35); }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: normal; }
.accent { color: var(--accent); }

/* skip link */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
}
.skip:focus {
  left: 12px; top: 12px; background: var(--fg); color: var(--canvas);
  padding: 0.5rem 1rem; border-radius: 8px; font-size: 14px; font-weight: 600;
}

/* --------------------------------------------------------------------------
   Band — centered column with dashed side rails (landing's <Band>)
   -------------------------------------------------------------------------- */
.band {
  max-width: var(--band);
  margin-inline: auto;
  border-inline: 1px dashed var(--line);
}

/* Rule — full-width dashed divider with corner crosses at the band edges */
.rule { position: relative; width: 100%; border-top: 1px dashed var(--line); }
.rule .xrow { max-width: var(--band); margin-inline: auto; position: relative; }
.rule .x { position: absolute; top: -5px; width: 9px; height: 9px; }
.rule .x.l { left: -4.5px; }
.rule .x.r { right: -4.5px; }
.rule .x::before, .rule .x::after { content: ""; position: absolute; background: var(--line); }
.rule .x::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.rule .x::after { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.nav .brand { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav .brand img { width: 28px; height: 28px; }
.nav .brand span { font-weight: 600; font-size: 15px; letter-spacing: -0.03em; }
.nav .links { display: flex; align-items: center; gap: 1.75rem; }
.nav .links a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.18s; }
.nav .links a:not(.btn):hover { color: var(--fg); }
@media (max-width: 640px) { .nav .links .navlink { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--fg); color: #ffffff;
  font-family: var(--font-ui); font-weight: 500; font-size: 14.5px;
  padding: 0.72rem 1.6rem; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transition: transform 0.18s;
}
.btn:hover { transform: scale(1.03); }
.btn.sm { padding: 0.62rem 1.25rem; font-size: 13.5px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 500; font-size: 14.5px; color: var(--muted); text-decoration: none;
  transition: color 0.18s;
}
.btn-ghost:hover { color: var(--fg); }
.btn-ghost .arrow { transition: transform 0.18s; }
.btn-ghost:hover .arrow { transform: translateX(2px); }

/* Mono section label + compliance line */
.label {
  font-family: var(--font-mono); font-weight: 500; font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted); margin: 0;
}

/* --------------------------------------------------------------------------
   Aurora — soft animated status-color blobs behind hero/CTA
   -------------------------------------------------------------------------- */
/* NB: no overflow:hidden here — the landing's Aurora container doesn't clip its
   blobs, and clipping them turns each blurred blob into a hard-edged rectangle
   (a visible line where the glow stops). The parent section's overflow:hidden
   already contains the glow; let the blobs blur out softly inside it. */
.aurora { position: absolute; inset-inline: 0; top: -140px; height: 380px; pointer-events: none; z-index: 0; }
.aurora.bottom { top: auto; bottom: -140px; }
.aurora b {
  position: absolute; top: 0; border-radius: 50%; filter: blur(80px);
  /* base color so the glow is present before the animation resolves and when
     prefers-reduced-motion disables the color keyframes */
  background: rgba(101, 123, 96, 0.09);
  animation: aurora-color 40s ease-in-out infinite, aurora-drift var(--d, 26s) ease-in-out infinite;
}
.aurora b:nth-child(1) { left: 8%; width: 460px; height: 300px; --d: 24s; animation-delay: 0s, -4s; }
.aurora b:nth-child(2) { left: 46%; width: 520px; height: 320px; --d: 30s; animation-delay: -16s, -9s; }
.aurora b:nth-child(3) { left: 72%; width: 380px; height: 260px; --d: 27s; animation-delay: -32s, -2s; }
@keyframes aurora-color {
  0%   { background: rgba(37, 99, 235, 0.10); }
  20%  { background: rgba(101, 123, 96, 0.11); }
  40%  { background: rgba(202, 138, 4, 0.09); }
  60%  { background: rgba(220, 38, 38, 0.08); }
  80%  { background: rgba(152, 131, 50, 0.10); }
  100% { background: rgba(37, 99, 235, 0.10); }
}
@keyframes aurora-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(60px); }
}
@media (prefers-reduced-motion: reduce) {
  .aurora b { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* --------------------------------------------------------------------------
   Reveal on scroll (JS adds .in)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); filter: blur(8px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1), filter 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; text-align: center; padding: clamp(2rem, 4vw, 3.25rem) 1.5rem clamp(2.25rem, 4vw, 3.25rem); }
/* lift hero content above the aurora — but NOT the aurora itself, or it drops
   into flow and its 380px height becomes dead space at the top of the hero */
.hero > *:not(.aurora) { position: relative; z-index: 1; }
.badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px dashed rgba(10,10,10,0.28); border-radius: 999px;
  background: rgba(255,255,255,0.65); backdrop-filter: blur(6px);
  padding: 0.4rem 0.95rem; font-size: 13px; color: rgba(10,10,10,0.75);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  margin: 1.5rem auto 0; max-width: 640px;
  font-weight: 500; font-size: clamp(38px, 5.2vw, 56px); line-height: 1.08; letter-spacing: -0.05em;
}
.hero .sub { margin: 1.15rem auto 0; max-width: 540px; font-size: 16.5px; line-height: 1.62; color: var(--muted); }
.hero .cta { margin-top: 1.6rem; display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
.hero .compliance { margin-top: 1.6rem; }
/* tight — condensed hero so the sheet fits one printed page */
.hero.tight { padding-top: clamp(1.5rem, 3vw, 2.25rem); padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.hero.tight h1 { margin-top: 1rem; font-size: clamp(34px, 4.6vw, 48px); }
.hero.tight .sub { margin-top: 0.85rem; }
.hero.tight .cta { margin-top: 1.15rem; }
.hero.tight .compliance { margin-top: 1.15rem; }

/* --------------------------------------------------------------------------
   Stats band (proof)
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats .stat { padding: 1.4rem 1.25rem; text-align: center; }
.stats .stat + .stat { border-left: 1px dashed var(--line); }
.stats .stat .v { font-weight: 500; font-size: clamp(30px, 3.6vw, 38px); letter-spacing: -0.05em; line-height: 1.05; }
.stats .stat .v .unit { color: var(--accent); }
.stats .stat .l { margin-top: 0.5rem; font-size: 13px; line-height: 1.45; color: var(--muted); }
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:nth-child(3) { border-left: none; }
  .stats .stat:nth-child(n+3) { border-top: 1px dashed var(--line); }
}

/* --------------------------------------------------------------------------
   Generic section
   -------------------------------------------------------------------------- */
.section { padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.25rem; }
.section-head .lead { max-width: 300px; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
h2.display {
  margin: 0.9rem 0 0; max-width: 560px;
  font-weight: 500; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; letter-spacing: -0.045em;
}
h2.display.first { margin-top: 0; }
.center { text-align: center; }
.center h2.display, .center .sub { margin-inline: auto; }
.center .sub { max-width: 560px; margin-top: 1rem; font-size: 15px; line-height: 1.65; color: var(--muted); }

/* Feature strips ("why a11 wins") — full-width alternating rows, each a
   treated brand photo (grayscale + status-color tint + grain) beside copy. */
.strips { margin-top: 1.5rem; }
.strip { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 236px; }
.strip + .strip { border-top: 1px dashed var(--line); }
.strip .media { order: 0; }
.strip.reverse .media { order: 2; }

.media {
  position: relative; overflow: hidden; min-height: 236px;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--fg);
  background: var(--surface);
  /* faint dotted-grid texture so the panel isn't flat — reads as "workspace" */
  background-image: radial-gradient(rgba(10, 10, 10, 0.05) 1px, transparent 1px);
  background-size: 14px 14px;
}
/* line-art diagram — monochrome ink + one per-strip accent stroke (--accent) */
.media .art {
  width: 100%; max-width: 340px; height: auto;
  stroke-linecap: round; stroke-linejoin: round;
}
.media .art .accent { stroke: var(--accent); }
.media .art .accent-fill { fill: var(--accent); stroke: none; }
/* legacy photo support (kept so any remaining <img> media still renders) */
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* number chip — anchors the diagram panel */
.media .snum {
  position: absolute; top: 0.85rem; left: 0.95rem; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  color: #fff; background: rgba(10, 10, 10, 0.62); backdrop-filter: blur(2px);
  padding: 0.28rem 0.55rem; border-radius: 6px;
}

.strip .body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.7rem clamp(1.6rem, 3.2vw, 2.75rem);
}
.strip .body .label { color: var(--accent); }
.strip .body h3 { margin: 0.75rem 0 0.6rem; font-weight: 600; font-size: clamp(22px, 2.6vw, 27px); letter-spacing: -0.03em; line-height: 1.12; }
.strip .body p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.strip .body p strong { color: var(--fg); font-weight: 600; }
.strip .body .tag {
  align-self: flex-start; margin-top: 1.1rem; font-family: var(--font-mono);
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px; padding: 0.3rem 0.75rem;
}
@media (max-width: 720px) {
  .strip { grid-template-columns: 1fr; min-height: 0; }
  .strip.reverse .media { order: 0; }   /* photo always on top when stacked */
  .media { min-height: 200px; }
  .strip .body { padding: 1.75rem 1.4rem; }
}

/* Pillars — 3-column card grid ("why a11 wins"), each a line-art diagram
   over copy, split by the same dashed rails as the rest of the system. */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 1.5rem; }
.pillar { display: flex; flex-direction: column; }
.pillar + .pillar { border-left: 1px dashed var(--line); }
.pillar .pdiagram {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 1.75rem 1.25rem; min-height: 172px; color: var(--fg);
  background: var(--surface);
  background-image: radial-gradient(rgba(10, 10, 10, 0.05) 1px, transparent 1px);
  background-size: 14px 14px;
  border-bottom: 1px dashed var(--line);
}
.pillar .pdiagram .art {
  width: 100%; max-width: 200px; height: auto;
  stroke-linecap: round; stroke-linejoin: round;
}
.pillar .pdiagram .art .accent { stroke: var(--accent); }
.pillar .pdiagram .art .accent-fill { fill: var(--accent); stroke: none; }
.pillar .pdiagram .snum {
  position: absolute; top: 0.7rem; left: 0.8rem;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  color: #fff; background: rgba(10, 10, 10, 0.62); backdrop-filter: blur(2px);
  padding: 0.28rem 0.55rem; border-radius: 6px;
}
.pillar .pbody { flex: 1; display: flex; flex-direction: column; padding: 1.5rem clamp(1.25rem, 2.5vw, 1.75rem); }
.pillar .pbody .label { color: var(--accent); }
.pillar .pbody h3 { margin: 0.7rem 0 0.55rem; font-weight: 600; font-size: clamp(19px, 2vw, 22px); letter-spacing: -0.025em; line-height: 1.15; }
.pillar .pbody p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.pillar .pbody p strong { color: var(--fg); font-weight: 600; }
.pillar .pbody .tag {
  align-self: flex-start; margin-top: 1.1rem; font-family: var(--font-mono);
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px; padding: 0.3rem 0.75rem;
}
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar + .pillar { border-left: none; border-top: 1px dashed var(--line); }
  .pillar .pdiagram { min-height: 152px; }
}

/* Reasons — condensed vertical stack: line-art symbol left, copy right.
   Print-friendly (each row break-inside: avoid), single accent (--accent). */
.reasons { display: flex; flex-direction: column; }
.reason {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.1rem, 2.4vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
}
.reason + .reason { border-top: 1px dashed var(--line); }
.reason .ricon {
  position: relative; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: clamp(84px, 11vw, 112px); height: clamp(84px, 11vw, 112px);
  color: var(--fg); background: var(--surface);
  background-image: radial-gradient(rgba(10, 10, 10, 0.05) 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid var(--line2); border-radius: 16px;
}
.reason .ricon .art { width: 74%; height: 74%; stroke-linecap: round; stroke-linejoin: round; }
.reason .ricon .art .accent { stroke: var(--accent); }
.reason .ricon .art .accent-fill { fill: var(--accent); stroke: none; }
.reason .rbody .label { color: var(--accent); }
.reason .rbody h3 { margin: 0.4rem 0 0.45rem; font-weight: 600; font-size: clamp(19px, 2.3vw, 24px); letter-spacing: -0.025em; line-height: 1.14; }
.reason .rbody p { margin: 0; max-width: none; font-size: 15px; line-height: 1.62; color: var(--muted); }
.reason .rbody p strong { color: var(--fg); font-weight: 600; white-space: nowrap; }
.reason .rbody .tag {
  display: inline-block; margin-top: 0.7rem; font-family: var(--font-mono);
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px; padding: 0.3rem 0.75rem;
}
@media (max-width: 560px) {
  .reason { grid-template-columns: 1fr; gap: 1rem; }
  .reason .ricon { width: 76px; height: 76px; }
}

/* Spotlight (the unique differentiator, two-column) */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 780px) { .spotlight { grid-template-columns: 1fr; } }
.spotlight .body h2 { margin-top: 0.9rem; }
.spotlight .body p { margin: 1.1rem 0 0; font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.spotlight .body p strong { color: var(--fg); font-weight: 600; }
.spotlight .visual {
  position: relative; border: 1px solid var(--line2); border-radius: 20px; background: var(--card);
  box-shadow: var(--shadow); padding: 1.25rem; aspect-ratio: 4 / 3; overflow: hidden;
}
.spotlight .visual .art { width: 100%; height: 100%; color: var(--fg); }

/* Scan-to-read QR — printed sheet carries a code back to the live page.
   URL is also printed as real text, so the sheet works without scanning. */
.qr {
  /* printout only — hidden in the web view, revealed by @media print below */
  display: none; align-items: center; gap: 1.1rem; margin-top: 2.25rem;
}
.qr img {
  width: 96px; height: 96px; flex: 0 0 auto;
  background: #fff; border: 1px solid var(--line2); border-radius: 12px;
  padding: 8px; box-shadow: var(--shadow);
}
.qr .qr-cap .label { color: var(--muted); }
.qr .qr-cap .qr-url {
  margin: 0.4rem 0 0; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: -0.01em; color: var(--fg); word-break: break-all;
}

/* --------------------------------------------------------------------------
   Closing band (CTA) + big watermark
   -------------------------------------------------------------------------- */
.closing {
  position: relative; overflow: hidden;
  padding: clamp(2.75rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  /* static wash so the section reads as an intentional footer band — grounds
     the animated aurora on screen and still prints (aurora is hidden in print) */
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--accent) 7%, transparent) 100%);
}
.closing .mark {
  position: absolute; right: -0.3rem; bottom: -0.16em; pointer-events: none; user-select: none;
  font-weight: 500; font-size: clamp(200px, 30vw, 400px); line-height: 0.75; letter-spacing: -0.06em;
  color: rgba(10,10,10,0.05); z-index: 0;
}
.closing .inner { position: relative; z-index: 1; max-width: 560px; }
.closing h2 { margin: 0; font-weight: 500; font-size: clamp(32px, 4.4vw, 50px); line-height: 1.1; letter-spacing: -0.05em; }
.closing p { margin: 1.25rem 0 0; max-width: 440px; font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.closing .cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }
.closing .cta a.email { font-weight: 500; font-size: 14.5px; color: var(--muted); text-decoration: none; }
.closing .cta a.email:hover { color: var(--fg); }

/* --------------------------------------------------------------------------
   Footer + ColorTrim
   -------------------------------------------------------------------------- */
.footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1.5rem clamp(1.5rem, 4vw, 2.5rem); }
.footer .who { display: flex; align-items: center; gap: 0.5rem; }
.footer .who img { width: 20px; height: 20px; opacity: 0.7; }
.footer .who span { font-size: 12px; color: var(--muted); }
.footer .links { display: flex; gap: 1.25rem; }
.footer .links a { font-size: 12.5px; font-weight: 500; color: var(--muted); text-decoration: none; }
.footer .links a:hover { color: var(--fg); }
.color-trim { display: flex; height: 6px; }
.color-trim .ink { width: 90%; background: var(--fg); }
.color-trim span { width: 2%; }

/* print-only brand mark (shown in @media print, where the nav is hidden) */
.print-brand { display: none; }

/* --------------------------------------------------------------------------
   PRINT — keep the styling, make it export to a clean PDF
   -------------------------------------------------------------------------- */
@media print {
  /* margin:0 so the ColorTrim can bleed to the very bottom edge; the framed
     content gets its own tiny margins via .band/.rule margin-inline instead.
     NOTE: print with Margins = "None" so the browser doesn't re-add a margin. */
  @page { size: letter portrait; margin: 0; }
  html { scroll-behavior: auto; }
  /* full-height flex column so the ColorTrim + bottom aurora anchor to the very
     bottom of the sheet even when the content is short */
  body { font-size: 11px; line-height: 1.45; min-height: 100vh; display: flex; flex-direction: column; position: relative; }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* CRITICAL: reveal-on-scroll leaves off-screen elements at opacity:0; when
     printing they were never scrolled into view. Force them all visible. */
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }

  /* strip web-only chrome + the whole nav header (its logo moves into the hero) */
  .skip, .aurora, .nav-band, .nav-rule, .hero .cta, .btn, .btn-ghost,
  .footer, .closing .mark { display: none !important; }
  a { text-decoration: none; }

  /* Vertical rails (band borders) inset 0.28in → tiny margins on the sides.
     Horizontal rules run full-bleed off BOTH paper edges. */
  .band { max-width: none; margin-inline: 0.28in; border-inline: 1px dashed var(--line); padding-inline: 0.32in; }
  .rule { margin-inline: 0; border-top: 1px dashed var(--line); }
  .rule .x { display: none !important; }
  .reason, .closing { break-inside: avoid; }

  /* top dashed rule at 0.28in (equal top margin), full-bleed off both edges */
  main { flex: 1 0 auto; margin-top: 0.28in; border-top: 1px dashed var(--line); display: flex; flex-direction: column; }
  /* pull the first band's rails up to the very top edge, so the vertical dashes
     continue up past the top rule and run off the top of the sheet */
  main > .band:first-child { margin-top: -0.28in; padding-top: 0.28in; }

  /* brand mark at the top LEFT of the hero */
  .print-brand { display: flex; align-items: center; justify-content: flex-start; gap: 0.4rem; margin-bottom: 0.16in; }
  .print-brand img { width: 25px; height: 25px; }
  .print-brand span { font-family: var(--font-ui); font-weight: 600; font-size: 19px; letter-spacing: -0.03em; }

  /* hero */
  .hero, .hero.tight { padding: 0.1in 0 0.18in; }
  .hero .badge { font-size: 9.5px; padding: 0.18rem 0.6rem; background: transparent; border: 1px solid rgba(10,10,10,0.22); }
  .hero h1, .hero.tight h1 { font-size: 30px; margin-top: 0.5rem; }
  .hero .sub { font-size: 12px; margin-top: 0.5rem; max-width: 5.6in; }
  .hero .compliance { margin-top: 0.55rem; font-size: 10px; letter-spacing: 0.2em; }

  /* section head */
  .section { padding: 0.16in 0 0.04in; }
  h2.display { font-size: 22px; margin-top: 0.32rem; }
  .section-head { gap: 0.85rem; }
  .section-head .lead { font-size: 10.5px; max-width: 3in; }

  /* reasons — 2x2 grid pulled out to the rails (negative margin cancels the band
     padding) so its borders run all the way to the vertical bars. The band + grid
     GROW to fill the page (flex: 1) and the two rows split that height
     (grid-auto-rows: 1fr), so the sheet fills top-to-bottom instead of leaving a
     dead gap above the ColorTrim. Each cell centers its content vertically, so the
     reclaimed height reads as roomy cells — not a condensed block with space below. */
  .band:has(.reasons) { flex: 1 1 auto; display: flex; flex-direction: column; }
  .reasons { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; flex: 1 1 auto; margin-top: 0.16in; margin-inline: -0.32in; }
  .reason { display: flex; align-items: center; gap: 0.62rem; padding: 0.12in 0.26in; border: none; }
  .reason:nth-child(odd) { padding-left: 0.32in; border-right: 1px dashed var(--line); }
  .reason:nth-child(even) { padding-right: 0.32in; }
  .reason:nth-child(-n+2) { border-top: 1px dashed var(--line); }
  .reason:nth-child(n+3) { border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
  .reason .ricon { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 12px; margin: 0; background: var(--surface); background-image: none; border-color: #e7e7e7; }
  .reason .rbody { flex: 1; min-width: 0; }
  .reason .rbody h3 { font-size: 14px; margin: 0.06rem 0 0.2rem; }
  .reason .rbody p { font-size: 12px; line-height: 1.5; }
  .reason .rbody .tag { display: none; }   /* hidden in print so all 4 cells stay the same size */

  /* closing — footer band, message left / QR right */
  .closing { padding: 0.2in 0 0.12in; background: none; }
  .closing .inner { display: flex; align-items: center; justify-content: space-between; gap: 0.55in; max-width: none; }
  .closing-text { flex: 1; max-width: 5in; }
  .closing h2 { font-size: 23px; }
  .closing p { font-size: 11px; margin-top: 0.52rem; max-width: 4.6in; }
  .closing .cta { margin-top: 0.65rem; }
  .closing .cta a.email { font-size: 12.5px; font-weight: 600; color: var(--fg); }
  .qr { display: flex !important; flex-direction: column; align-items: center; gap: 0.4rem; margin: 0; text-align: center; }
  .qr img { box-shadow: none; width: 1in; height: 1in; border: 1px solid #e7e7e7; }
  .qr .qr-cap .label { font-size: 8px; }
  .qr .qr-cap .qr-url { font-size: 9px; }

  /* Very subtle blue aurora at the top & bottom edges — a static, print-safe
     echo of the site's animated aurora. Delete this block to revert. */
  body::before, body::after {
    content: ""; position: absolute; left: 0; right: 0; height: 2.4in;
    pointer-events: none; z-index: -1;
  }
  body::before { top: 0; background: radial-gradient(75% 100% at 50% 0%, rgba(37, 99, 235, 0.075), rgba(37, 99, 235, 0) 72%); }
  body::after  { bottom: 0; background: radial-gradient(75% 100% at 50% 100%, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0) 72%); }

  /* ColorTrim — last flex item, so it sits full-bleed at the very bottom */
  .color-trim { width: 100%; height: 9px; margin: 0; }
}
