/* ============================================================================
   SAPnet Solutions — "Ink & Garnet" design system
   Light-first paper canvas, deep-ink bands, a garnet→vermilion heat gradient.
   See docs/BRAND.md. No framework; tokens drive everything.
   ============================================================================ */

:root {
  /* canvas */
  --paper-50: #faf7f2;
  --paper-100: #f2ede5;
  --paper-200: #e5ddd2;
  --ink-900: #17121a;
  --ink-800: #221a24;
  --ink-700: #372b37;
  --ink-400: #6e6169;
  --bone-50: #faf7f2;
  --bone-300: #b8adb1;

  /* heat */
  --garnet-700: #5e1020;
  --garnet-500: #a31f34;
  --vermilion-400: #e2442f;
  --ember-300: #f5a26b;
  --verdigris: #1f8f86;
  --brand-gradient: linear-gradient(120deg, #5e1020 0%, #a31f34 40%, #e2442f 78%, #f5a26b 100%);

  --ok: #1f8f86;
  --warn: #e9a23b;
  --err: #c81e3a;

  /* surfaces (light context defaults) */
  --bg: var(--paper-50);
  --bg-raised: var(--paper-100);
  --border: var(--paper-200);
  --fg: var(--ink-900);
  --fg-muted: var(--ink-400);
  --accent: var(--garnet-500);
  --accent-hot: var(--vermilion-400);
  --logo-top: var(--garnet-700);
  --logo-bottom: var(--vermilion-400);

  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --radius: 1rem;
  --radius-sm: 0.6rem;
  --container: 76rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --nav-h: 4.25rem;
  --shadow-heat: 0 0 0 1px rgba(163, 31, 52, 0.18), 0 18px 60px -20px rgba(226, 68, 47, 0.45);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* dark context: any block with .on-dark flips the surface tokens */
.on-dark {
  --bg: var(--ink-900);
  --bg-raised: var(--ink-800);
  --border: var(--ink-700);
  --fg: var(--bone-50);
  --fg-muted: var(--bone-300);
  --accent: var(--ember-300);
  --logo-top: var(--bone-50);
  --logo-bottom: var(--vermilion-400);
  background: var(--bg);
  color: var(--fg);
  color-scheme: dark;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
address { font-style: normal; }
::selection { background: rgba(226, 68, 47, 0.28); }
:focus-visible { outline: 2px solid var(--accent-hot); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--ink-900); color: var(--bone-50); padding: 0.6rem 1rem; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- type scale ---------- */
.display-xl { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 750; letter-spacing: -0.035em; line-height: 1.02; font-variation-settings: 'opsz' 96; }
.display-lg { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.display-md { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.display-sm { font-size: clamp(1.35rem, 2.2vw, 1.6rem); }
.display-xs { font-size: 1.2rem; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--fg-muted); max-width: 44rem; }
.lede-sm { font-size: 1.1rem; color: var(--fg-muted); max-width: 40rem; }
.small { font-size: 0.94rem; line-height: 1.55; }
.muted { color: var(--fg-muted); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.9rem;
}
.eyebrow-ember { color: var(--ember-300); }
.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
}
.on-dark .text-gradient { background: linear-gradient(120deg, var(--vermilion-400) 0%, var(--ember-300) 60%, var(--bone-50) 100%); -webkit-background-clip: text; background-clip: text; }
.prose p { margin: 0 0 1.1rem; font-size: 1.05rem; }
.prose h2 { margin: 2rem 0 0.7rem; }
.prose-narrow { max-width: 46rem; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-alt { background: var(--paper-100); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head .display-lg { margin-bottom: 1.1rem; }
.two-col { display: grid; gap: 2.5rem; align-items: start; }
.grid-3, .grid-4, .grid-5 { display: grid; gap: 1rem; }
.stack { display: grid; gap: 1rem; align-content: start; }
.cta-row { margin-top: 3rem; display: flex; justify-content: center; }
@media (min-width: 700px) {
  .two-col { grid-template-columns: 1fr 1.3fr; gap: 4rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.95rem; line-height: 1; cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, opacity 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none !important; white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform 0.25s var(--ease-out); }
.btn:hover .icon { transform: translateX(3px); }
.btn-primary { background: var(--brand-gradient); color: var(--bone-50); box-shadow: var(--shadow-heat); }
.btn-primary:hover { transform: translateY(-1px); opacity: 0.95; }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent-hot); }
.on-dark .btn-ghost { background: rgba(34, 26, 36, 0.5); backdrop-filter: blur(6px); }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius-sm); padding: 1rem; }
.text-link { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; font-size: 0.9rem; margin-top: auto; }
.text-link .icon { width: 16px; height: 16px; }

/* ---------- nav ---------- */
.site-nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  --logo-top: var(--bone-50); --logo-bottom: var(--vermilion-400);
  color: var(--bone-50);
}
.site-nav.is-scrolled { background: rgba(23, 18, 26, 0.78); border-color: rgba(55, 43, 55, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo-link { display: inline-flex; align-items: center; }
.logo { height: 34px; width: auto; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links > a:not(.btn) { color: var(--bone-300); font-size: 0.95rem; transition: color 0.2s; }
.nav-links > a:not(.btn):hover { color: var(--bone-50); text-decoration: none; }
.nav-burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 0.5rem; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--bone-50); transition: transform 0.25s, opacity 0.2s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile[hidden] { display: none; }
.nav-mobile { display: grid; gap: 1rem; padding: 1rem var(--gutter) 1.5rem; background: rgba(23, 18, 26, 0.96); border-top: 1px solid var(--ink-700); backdrop-filter: blur(16px); }
.nav-mobile > a:not(.btn) { color: var(--bone-300); font-size: 1.05rem; }
.nav-mobile > .btn { justify-self: start; }
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-burger, .nav-mobile { display: none !important; }
}

.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 60; background: var(--brand-gradient); transform: scaleX(0); transform-origin: 0 50%; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: var(--nav-h); }
.hero-bg { position: absolute; inset: 0; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-cursor { position: absolute; inset: 0; pointer-events: none; }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(163, 31, 52, 0.18), transparent 70%),
    radial-gradient(90% 90% at 50% 50%, transparent 55%, var(--ink-900) 100%);
}
.tech-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(184, 173, 177, 0.28) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
  opacity: 0.5;
}
.hero-inner { position: relative; z-index: 1; text-align: center; padding-block: 4rem; display: flex; flex-direction: column; align-items: center; }
.hero .lede { margin: 1.6rem auto 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-inner .hero-actions { justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1rem; border-radius: 999px; border: 1px solid var(--ink-700);
  background: rgba(34, 26, 36, 0.6); backdrop-filter: blur(6px);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-300);
  margin-bottom: 1.6rem;
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember-300); box-shadow: 0 0 14px 2px rgba(245, 162, 107, 0.7); }
.scroll-cue { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-300); opacity: 0.6; }

/* page heads (inner pages) */
.page-head { position: relative; padding: calc(var(--nav-h) + 5rem) 0 4.5rem; overflow: hidden; }
.page-head-tall { min-height: 70svh; display: flex; align-items: center; }
.page-head .container { position: relative; }
.page-head .lede { margin-top: 1.4rem; }
.page-head .display-xl { max-width: 16ch; }

/* ---------- cards ---------- */
.card {
  position: relative; display: flex; flex-direction: column; gap: 0.9rem;
  padding: 1.6rem; border-radius: var(--radius); background: var(--bg-raised);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -30px rgba(23, 18, 26, 0.35); }
.card p { color: var(--fg-muted); }
.card .display-xs, .card .display-sm { color: var(--fg); }
.brand-ring::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--brand-gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.brand-ring:hover::after { opacity: 0.9; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg); color: var(--accent); border: 1px solid var(--border);
}
.card-icon-alt { color: var(--verdigris); }
.card-icon-ok { color: var(--ok); }
.card-glow { position: absolute; right: -4rem; top: -4rem; width: 16rem; height: 16rem; border-radius: 50%; background: rgba(226, 68, 47, 0.12); filter: blur(48px); pointer-events: none; }
.badge { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 999px; border: 1px solid var(--border); color: var(--fg-muted); background: var(--bg); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-size: 0.74rem; padding: 0.35rem 0.75rem; border-radius: 999px; border: 1px solid var(--border); color: var(--fg-muted); background: var(--bg); }
.tag-lg { font-size: 0.9rem; padding: 0.55rem 1rem; color: var(--fg); }
.cap-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.feature-list { display: grid; gap: 0.45rem; font-size: 0.9rem; color: var(--fg-muted); }
.feature-list li { display: flex; align-items: center; gap: 0.6rem; }
.feature-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-hot); flex: none; }
.feature-list-inline { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); margin-top: 1rem; }

/* bento */
.bento { display: grid; gap: 1rem; grid-auto-rows: minmax(13rem, auto); }
.bento-lead { justify-content: space-between; padding: 2rem; }
.bento-lead .display-sm { margin-top: 1rem; }
.bento-lead p { margin-top: 0.7rem; max-width: 30rem; }
.bento-lead .tag-row { margin-top: 1.5rem; }
.bento-wide { flex-direction: row; align-items: center; justify-content: space-between; }
.card-arrow { display: none; color: var(--fg-muted); transition: transform 0.3s var(--ease-out), color 0.2s; }
.card-arrow:hover { transform: translate(3px, -3px); color: var(--accent-hot); }
@media (min-width: 860px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento-lead { grid-column: span 2; grid-row: span 2; }
  .bento-wide { grid-column: span 2; }
  .card-arrow { display: inline-flex; }
}
.cap-card { min-height: 100%; }
.cap-card .feature-list { margin-bottom: 0.6rem; }

/* band */
.band { position: relative; overflow: hidden; border-block: 1px solid var(--ink-700); }
.band-grid { opacity: 0.35; }
.band-glow { position: absolute; left: -6rem; top: 50%; width: 22rem; height: 22rem; transform: translateY(-50%); border-radius: 50%; background: rgba(163, 31, 52, 0.22); filter: blur(60px); }
.band-inner { position: relative; display: grid; gap: 3rem; padding-block: clamp(4.5rem, 9vw, 8rem); align-items: center; }
.band .display-lg { margin-bottom: 1.2rem; }
.pillar { flex-direction: row; align-items: flex-start; gap: 1.2rem; }
@media (min-width: 900px) { .band-inner { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

/* proof */
.stat { text-align: center; gap: 0.35rem; }
.stat-value { font-size: 2.6rem; font-weight: 500; color: var(--fg); line-height: 1; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-family: var(--font-display); font-weight: 600; color: var(--fg); }
.sectors { margin-top: 3.5rem; }
.timeline { margin-top: 3.5rem; display: grid; gap: 0; border-left: 1px solid var(--border); }
.timeline-item { position: relative; display: grid; gap: 0.3rem; padding: 1.2rem 0 1.2rem 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -5px; top: 1.65rem; width: 9px; height: 9px; border-radius: 50%; background: var(--brand-gradient); box-shadow: 0 0 0 4px var(--bg); }
.timeline-year { font-size: 0.8rem; color: var(--accent); letter-spacing: 0.08em; }
@media (min-width: 700px) { .timeline-item { grid-template-columns: 7rem 1fr; gap: 1.5rem; align-items: start; } .timeline-year { padding-top: 0.35rem; } }

/* capabilities page */
.cap-index { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.cap-index .tag { color: var(--fg); }
.cap-index .tag:hover { border-color: var(--accent-hot); text-decoration: none; }
.cap-list { display: grid; gap: 0; }
.cap-detail { display: grid; gap: 1.2rem; padding: 2.5rem 0; border-top: 1px solid var(--border); scroll-margin-top: calc(var(--nav-h) + 1rem); }
.cap-detail:last-child { border-bottom: 1px solid var(--border); }
.cap-detail-meta { display: flex; align-items: center; gap: 1rem; }
.cap-num { font-size: 0.85rem; color: var(--accent); letter-spacing: 0.1em; }
.cap-detail-body { display: grid; gap: 1rem; }
.cap-detail-body .cap-head { justify-content: flex-start; gap: 1rem; }
.cap-detail-body > p:not(.lede-sm) { max-width: 46rem; color: var(--fg-muted); }
@media (min-width: 860px) { .cap-detail { grid-template-columns: 10rem 1fr; gap: 2rem; } .cap-detail-meta { flex-direction: column; align-items: flex-start; } }

/* contact */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.7fr 1fr; align-items: start; } }
.contact-solo { max-width: 52rem; margin-inline: auto; }
.contact-form { display: grid; gap: 1.2rem; margin-top: 0.4rem; }
.form-grid { display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 600; }
.req { color: var(--accent-hot); }
.field input, .field textarea {
  font: inherit; width: 100%; padding: 0.8rem 0.95rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg); color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 9rem; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-muted); opacity: 0.7; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--garnet-500); box-shadow: 0 0 0 3px rgba(163, 31, 52, 0.18); }
.field input.input-validation-error, .field textarea.input-validation-error { border-color: var(--err); }
.field-error { font-size: 0.82rem; color: var(--err); min-height: 1em; }
.field-error:empty { display: none; }
.form-error { color: var(--err); font-size: 0.9rem; }
.form-error:empty, .form-error ul:empty { display: none; }
.field-trap { position: absolute !important; left: -10000px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.82rem; color: var(--fg-muted); }
.form-success { display: grid; gap: 1rem; justify-items: start; }
.form-success p { color: var(--fg-muted); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--ink-700); padding-block: 4rem 2.5rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-blurb { margin-top: 1.2rem; max-width: 22rem; font-size: 0.92rem; color: var(--bone-300); }
.footer-address { margin-top: 1.2rem; display: grid; font-size: 0.8rem; color: rgba(184, 173, 177, 0.75); }
.footer-links { display: grid; gap: 0.7rem; margin-top: 1.1rem; }
.footer-links a, .footer-links span { color: var(--bone-300); font-size: 0.92rem; }
.footer-links a:hover { color: var(--bone-50); text-decoration: none; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--ink-700); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; font-size: 0.78rem; color: rgba(184, 173, 177, 0.75); }

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > :nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-in > :nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-in > :nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-in > :nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-in > :nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-in > :nth-child(n+6) { transition-delay: 0.55s; }
.kinetic-word { display: inline-block; white-space: nowrap; }
.kinetic-char { display: inline-block; opacity: 0; transform: translateY(110%); transition: opacity 0.7s var(--ease-out), transform 0.85s var(--ease-out); transition-delay: calc(0.12s + var(--i) * 0.028s); }
.kinetic.is-in .kinetic-char { opacity: 1; transform: none; }

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

@media print {
  .site-nav, .scroll-progress, .hero-bg, .scroll-cue { display: none !important; }
  .on-dark { background: #fff; color: #000; }
}
