/* Ace Networks: styles. Tokens are documented in .planning/DESIGN.md */

:root {
  --ink: oklch(0.15 0.012 245);
  --ink-2: oklch(0.19 0.014 245);
  --ink-line: oklch(0.30 0.014 245);
  --paper: oklch(0.965 0.010 80);
  --paper-2: oklch(0.93 0.012 80);
  --paper-line: oklch(0.86 0.012 80);
  --text-on-ink: oklch(0.95 0.008 245);
  --muted-on-ink: oklch(0.72 0.012 245);
  --text-on-paper: oklch(0.20 0.014 245);
  --muted-on-paper: oklch(0.45 0.014 245);
  --blue: oklch(0.55 0.22 262);
  --blue-deep: oklch(0.47 0.20 262);
  --cyan: oklch(0.80 0.14 205);
  --cyan-deep: oklch(0.46 0.12 215);
  --shadow: 0 24px 60px oklch(0.10 0.03 245 / 0.45);

  --font-display: "Archivo", "Archivo Fallback", sans-serif;
  --font-body: "Instrument Sans", "Archivo", sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --pad-x: clamp(20px, 5vw, 72px);
  --pad-y: clamp(64px, 10vw, 160px);
  --nav-h: 76px;

  /* per-surface defaults (ink) */
  --bg: var(--ink);
  --fg: var(--text-on-ink);
  --muted: var(--muted-on-ink);
  --line: var(--ink-line);
  --accent: var(--cyan);
  --accent-text: var(--cyan);
  --surface: var(--ink-2);
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: var(--pad-x); top: 12px; z-index: 100; background: var(--cyan); color: var(--ink); padding: 10px 14px; font-weight: 600; transform: translateY(-200%); transition: transform 150ms var(--ease-out); }
.skip:focus-visible { transform: none; }

.paper {
  --bg: var(--paper);
  --fg: var(--text-on-paper);
  --muted: var(--muted-on-paper);
  --line: var(--paper-line);
  --accent: var(--blue);
  --accent-text: var(--cyan-deep);
  --surface: var(--paper-2);
  background: var(--bg);
  color: var(--fg);
  color-scheme: light;
}

/* ---------- Type ---------- */

h1, h2, .display {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6.4vw, 98px); max-width: 11ch; }
h2 { font-size: clamp(32px, 4.4vw, 62px); line-height: 1.02; }
h3 { font-family: var(--font-display); font-stretch: 108%; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
.lede { color: var(--muted); font-size: clamp(16px, 1.15vw, 18px); line-height: 1.65; max-width: 58ch; text-wrap: pretty; }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(40px, 6vw, 88px); }
.section-head h2 { max-width: 16ch; }
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.3fr 1fr; align-items: end; column-gap: 8vw; }
  .section-head h2 { grid-column: 1; }
  .section-head .lede { grid-column: 2; grid-row: 1; align-self: end; }
}

/* ---------- Buttons and links ---------- */

.button {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  border: 1px solid var(--line); border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  cursor: pointer; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 150ms var(--ease-out), border-color 150ms var(--ease-out), color 150ms var(--ease-out);
}
.button:active { transform: scale(0.97); }
.button.primary { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.paper .button.primary { color: oklch(0.98 0.005 245); }
.button.primary::after { content: "→"; font-family: var(--font-display); transition: transform 150ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .button:hover { border-color: var(--fg); }
  .button.primary:hover { background: var(--fg); border-color: var(--fg); color: var(--bg); }
  .button.primary:hover::after { transform: translateX(4px); }
  .paper .button.primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: oklch(0.98 0.005 245); }
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px; font-weight: 600; font-size: 14px;
  border-bottom: 1px solid var(--line);
  transition: border-color 150ms var(--ease-out), color 150ms var(--ease-out);
}
.link-arrow::after { content: "↓"; font-family: var(--font-display); transition: transform 150ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .link-arrow:hover { border-color: var(--accent); color: var(--accent-text); }
  .link-arrow:hover::after { transform: translateY(3px); }
}

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 40;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 28px;
  padding: 0 var(--pad-x);
  background: oklch(0.15 0.012 245 / 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.nav.scrolled { border-color: var(--ink-line); box-shadow: 0 12px 40px oklch(0.08 0.02 245 / 0.5); }
.brand img { width: auto; height: 46px; filter: brightness(0) invert(1); }
.nav nav { margin-left: auto; }
.nav ul { display: flex; gap: 6px; }
.nav ul a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px;
  font-size: 14px; font-weight: 500; color: var(--muted-on-ink);
  border-bottom: 1px solid transparent;
  transition: color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.nav ul a[aria-current="true"] { color: var(--text-on-ink); border-bottom-color: var(--cyan); }
@media (hover: hover) and (pointer: fine) { .nav ul a:hover { color: var(--text-on-ink); } }
.nav-cta { min-height: 42px; padding: 0 18px; font-size: 13px; }
.menu { display: none; margin-left: auto; min-height: 44px; min-width: 44px; padding: 0 4px; background: none; border: 0; cursor: pointer; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.menu-bars { width: 22px; height: 12px; position: relative; }
.menu-bars::before, .menu-bars::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform 200ms var(--ease-out); }
.menu-bars::before { top: 0; } .menu-bars::after { bottom: 0; }
.menu[aria-expanded="true"] .menu-bars::before { transform: translateY(5px) rotate(45deg); }
.menu[aria-expanded="true"] .menu-bars::after { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 899px) {
  .nav { gap: 12px; }
  .nav nav { position: absolute; left: 0; right: 0; top: var(--nav-h); margin: 0; }
  .nav ul {
    display: none; flex-direction: column; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--ink-line);
    padding: 8px var(--pad-x) 20px;
  }
  .nav ul.open { display: flex; }
  .nav ul a { min-height: 52px; padding: 0; font-size: 18px; border-bottom: 1px solid var(--ink-line); }
  .nav ul a[aria-current="true"] { border-bottom-color: var(--ink-line); color: var(--cyan); }
  .nav-cta { display: none; }
  .menu { display: inline-flex; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative; isolation: isolate;
  display: grid;
  grid-template-rows: auto auto;
  padding: 0 var(--pad-x) clamp(28px, 4vw, 56px);
  overflow: hidden;
}
.map { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, oklch(0.15 0.012 245 / 0) 30%, oklch(0.15 0.012 245 / 0.75) 68%, var(--ink) 100%);
}
.hero-copy { grid-row: 1; max-width: min(760px, 100%); padding-top: min(96vw, 420px); }
.hero-body { margin-top: 28px; max-width: 46ch; color: var(--muted-on-ink); font-size: clamp(16px, 1.2vw, 19px); line-height: 1.6; }
.hero-actions { grid-row: 2; display: flex; align-items: center; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
@media (min-width: 900px) {
  .hero { min-height: calc(100svh - var(--nav-h)); grid-template-columns: 1fr auto; grid-template-rows: 1fr auto; align-items: end; }
  .hero-copy { grid-column: 1; grid-row: 2; padding-top: clamp(48px, 10vh, 120px); }
  .hero-actions { grid-column: 2; grid-row: 2; margin: 0 0 8px; justify-content: flex-end; }
}

/* hero entrance */
.hero-copy > *, .hero-actions > *, .map { opacity: 0; }
html.loaded .hero-copy > *, html.loaded .hero-actions > * { transform: translateY(18px); filter: blur(8px); animation: rise 700ms var(--ease-out) forwards; }
html.loaded .hero-copy h1 { animation-delay: 120ms; }
html.loaded .hero-body { animation-delay: 280ms; }
html.loaded .hero-actions > :nth-child(1) { animation-delay: 420ms; }
html.loaded .hero-actions > :nth-child(2) { animation-delay: 500ms; }
@keyframes rise { to { opacity: 1; transform: none; filter: blur(0); } }
html.loaded .map { animation: fade 1100ms var(--ease-out) 200ms forwards; }
@keyframes fade { to { opacity: 1; } }

/* ---------- Loading screen ---------- */

.loader {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center; align-content: center; gap: 28px;
  background: var(--ink);
  transition: opacity 500ms var(--ease-out), visibility 0s linear 500ms;
}
.loader img { width: 150px; filter: brightness(0) invert(1); opacity: 0; animation: loaderIn 600ms var(--ease-out) 80ms forwards; }
.loader-bar { width: 150px; height: 1px; background: var(--ink-line); position: relative; overflow: hidden; }
.loader-bar::after { content: ""; position: absolute; inset: 0; background: var(--cyan); transform-origin: left; transform: scaleX(0); animation: loaderBar 1000ms var(--ease-in-out) 120ms forwards; }
.loader.done { opacity: 0; visibility: hidden; }
@keyframes loaderIn { to { opacity: 1; } }
@keyframes loaderBar { to { transform: scaleX(1); } }

/* ---------- Statement ---------- */

.statement, .capabilities, .approach, .industries, .about, .contact { min-height: 92svh; }
.statement, .capabilities, .approach, .industries { display: grid; align-content: center; }
.statement { padding: var(--pad-y) var(--pad-x); }
.statement p {
  font-family: var(--font-display); font-stretch: 110%; font-weight: 500;
  font-size: clamp(26px, 3.4vw, 50px); line-height: 1.12; letter-spacing: -0.025em;
  max-width: 26ch; text-wrap: balance;
}

/* ---------- Capabilities ---------- */

.capabilities { position: relative; padding: var(--pad-y) var(--pad-x); }
.cap-list { border-top: 1px solid var(--ink-line); }
.cap { border-bottom: 1px solid var(--ink-line); }
.cap summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr auto; column-gap: 24px; align-items: center;
  padding: clamp(22px, 3vw, 34px) 0;
  transition: padding-left 200ms var(--ease-out), color 150ms var(--ease-out);
}
.cap summary::-webkit-details-marker { display: none; }
.cap summary h3 { font-size: clamp(24px, 2.6vw, 40px); }
.cap summary .short { display: block; grid-column: 1; margin-top: 8px; color: var(--muted-on-ink); font-size: 15px; max-width: 52ch; }
.cap .plus { grid-column: 2; grid-row: 1 / span 2; width: 40px; height: 40px; border: 1px solid var(--ink-line); border-radius: 50%; display: grid; place-items: center; transition: transform 200ms var(--ease-out), border-color 150ms var(--ease-out); }
.cap .plus svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; }
.cap[open] .plus { transform: rotate(45deg); border-color: var(--cyan); }
@media (hover: hover) and (pointer: fine) {
  .cap summary:hover { padding-left: 14px; }
  .cap summary:hover .plus { border-color: var(--cyan); }
}
.cap-body { display: grid; gap: 24px; padding: 0 0 clamp(28px, 3vw, 40px); }
.cap-body p { color: var(--muted-on-ink); max-width: 54ch; line-height: 1.65; }
.cap-body .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cap-body .tags li { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; padding: 7px 11px; border: 1px solid var(--ink-line); border-radius: 999px; color: var(--muted-on-ink); }
.cap-body figure { border: 1px solid var(--ink-line); background: var(--ink-2); padding: 16px; max-width: 480px; }
@media (min-width: 900px) {
  .cap-body { grid-template-columns: 1.2fr 1fr; align-items: start; column-gap: 8vw; }
  .cap-body figure { grid-column: 2; grid-row: 1 / span 2; justify-self: end; width: 100%; }
}
.cap-preview {
  position: fixed; left: 0; top: 0; z-index: 30; pointer-events: none;
  width: 360px; padding: 18px;
  background: var(--ink-2); border: 1px solid var(--ink-line); box-shadow: var(--shadow);
  clip-path: inset(50% round 2px);
  transform: translate(var(--x, 0px), var(--y, 0px));
  transition: clip-path 380ms var(--ease-out);
  display: none;
}
.cap-preview.on { clip-path: inset(0 round 2px); }
@media (hover: hover) and (pointer: fine) and (min-width: 900px) { .cap-preview { display: block; } }

/* ---------- Approach ---------- */

.approach { padding: var(--pad-y) var(--pad-x); }
.approach-grid { display: grid; gap: 40px; }
.approach-visual { display: none; }
.steps { counter-reset: step; display: grid; gap: 0; border-top: 1px solid var(--line); }
.steps li { padding: clamp(28px, 3vw, 44px) 0; border-bottom: 1px solid var(--line); display: grid; gap: 14px; }
.steps h3 { font-size: clamp(30px, 3.6vw, 56px); display: flex; align-items: baseline; gap: 18px; }
.steps h3::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-size: 13px; font-stretch: 88%; font-weight: 600; letter-spacing: 0.1em; color: var(--accent-text); font-variant-numeric: tabular-nums; }
.steps p { color: var(--muted); max-width: 46ch; line-height: 1.65; }
.steps figure { border: 1px solid var(--line); background: var(--surface); padding: 14px; margin-top: 8px; max-width: 480px; }
@media (min-width: 900px) {
  .approach-grid { grid-template-columns: 1fr 1fr; column-gap: 8vw; align-items: start; }
  .approach-visual {
    display: block; position: sticky; top: calc(var(--nav-h) + 32px);
    aspect-ratio: 4 / 3; border: 1px solid var(--line); background: var(--surface); padding: 24px;
    overflow: hidden;
  }
  .approach-visual .dg { position: absolute; inset: 24px; width: auto; height: auto; opacity: 0; transform: scale(0.98); transition: opacity 500ms var(--ease-out), transform 700ms var(--ease-out); }
  .approach-visual .dg.on { opacity: 1; transform: none; }
  .steps figure { display: none; }
  .steps li { min-height: 46vh; align-content: center; }
  .steps h3 { transition: color 300ms var(--ease-out); }
  .steps li:not(.on) h3 { color: var(--muted); }
}

/* ---------- Industries ---------- */

.industries { padding: var(--pad-y) var(--pad-x); }
.ind-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ind-strip li { display: grid; gap: 14px; align-content: start; }
.ind-strip .pic-box { aspect-ratio: 1; border: 1px solid var(--ink-line); background: var(--ink-2); display: grid; place-items: center; padding: 18%; transition: border-color 150ms var(--ease-out), background-color 150ms var(--ease-out); }
.ind-strip .pic { width: 100%; height: auto; }
.ind-strip h3 { font-size: 20px; }
.ind-strip p { color: var(--muted-on-ink); font-size: 14px; }
@media (hover: hover) and (pointer: fine) { .ind-strip li:hover .pic-box { border-color: var(--cyan); background: oklch(0.22 0.02 235); } }
@media (min-width: 700px) { .ind-strip { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1100px) {
  .ind-strip { grid-template-columns: 1.25fr 1fr 1.15fr 1fr 1.2fr 1fr; align-items: start; }
  .ind-strip li:nth-child(even) { margin-top: 56px; }
}

/* ---------- About ---------- */

.about { padding: var(--pad-y) var(--pad-x); display: grid; gap: 40px; align-content: center; }
.about-brand img { width: min(300px, 70%); }
.about-copy { display: grid; gap: 18px; }
.about-years { display: flex; align-items: baseline; gap: 16px; }
.about-years strong { font-family: var(--font-display); font-stretch: 118%; font-weight: 500; letter-spacing: -0.05em; line-height: 0.9; font-size: clamp(96px, 16vw, 240px); color: var(--blue); font-variant-numeric: tabular-nums; }
.about-years span { max-width: 12ch; line-height: 1.3; color: var(--muted); font-weight: 500; }
.about-coverage { display: grid; gap: 12px; max-width: 420px; }
.about-coverage .dg { width: 100%; }
.about-coverage figcaption { color: var(--muted); font-size: 14px; }
@media (min-width: 900px) {
  .about { grid-template-columns: 1fr 1fr; column-gap: 8vw; row-gap: clamp(56px, 8vw, 120px); align-items: end; }
  .about-brand { grid-column: 1; grid-row: 1; align-self: start; }
  .about-copy { grid-column: 2; grid-row: 1; }
  .about-years { grid-column: 1; grid-row: 2; }
  .about-coverage { grid-column: 2; grid-row: 2; justify-self: end; width: 100%; }
}

/* ---------- Contact ---------- */

.contact { padding: var(--pad-y) var(--pad-x); display: grid; gap: 48px; align-content: center; }
.contact-copy { display: grid; gap: 18px; align-content: start; }
.contact-details { font-style: normal; display: grid; gap: 6px; margin-top: 16px; color: var(--muted-on-ink); line-height: 1.5; }
.contact-details a { color: var(--text-on-ink); border-bottom: 1px solid var(--ink-line); transition: border-color 150ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .contact-details a:hover { border-color: var(--cyan); } }
form { display: grid; gap: 22px; align-content: start; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 0;
  background: transparent; color: var(--text-on-ink);
  border: 0; border-bottom: 1px solid var(--ink-line); border-radius: 0;
  font: 16px var(--font-body);
  transition: border-color 150ms var(--ease-out);
}
.field select { background-color: var(--ink); }
.field select option { background: var(--ink); color: var(--text-on-ink); }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: oklch(0.52 0.012 245); }
.field :is(input, select, textarea):focus { border-bottom-color: var(--cyan); }
.field :is(input, select, textarea):focus-visible { outline: none; }
.field:focus-within label { color: var(--cyan); }
.field.invalid input { border-bottom-color: oklch(0.72 0.18 25); }
.error { min-height: 0; font-size: 13px; color: oklch(0.80 0.15 25); }
.error:empty { display: none; }
form .button { justify-self: start; margin-top: 4px; }
.form-note { font-size: 13px; color: var(--muted-on-ink); }
@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1fr; column-gap: 8vw; } }

/* ---------- Footer ---------- */

.footer { background: var(--ink-2); border-top: 1px solid var(--ink-line); padding: 40px var(--pad-x); display: grid; gap: 20px; align-items: center; color: var(--muted-on-ink); font-size: 13px; line-height: 1.6; }
.footer img { width: 150px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer a { color: var(--text-on-ink); }
.footer-credit { font-size: 12px; color: oklch(0.58 0.012 245); padding-top: 16px; border-top: 1px solid var(--ink-line); }
.footer-credit a { color: var(--muted-on-ink); border-bottom: 1px solid var(--ink-line); transition: color 150ms var(--ease-out), border-color 150ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .footer-credit a:hover { color: var(--text-on-ink); border-color: var(--cyan); } }
@media (min-width: 900px) { .footer { grid-template-columns: auto 1fr auto; column-gap: 6vw; } .footer-credit { grid-column: 1 / -1; } }

/* ---------- Diagrams ---------- */

.dg { display: block; width: 100%; height: auto; color: inherit; overflow: visible; }
.dg .l { fill: none; stroke: currentColor; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.dg .d { fill: none; stroke: currentColor; stroke-width: 1; stroke-dasharray: 3 4; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.dg .g { fill: none; stroke: currentColor; stroke-opacity: 0.18; stroke-width: 1; vector-effect: non-scaling-stroke; }
.dg .a { fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.dg .af { fill: var(--accent); stroke: none; }
.dg .sf { fill: var(--accent); fill-opacity: 0.14; stroke: none; }
.dg .t { fill: currentColor; font: 500 12px var(--font-body); }
.dg .ta { fill: var(--accent-text); font: 600 12px var(--font-body); }
.dg.pic .l { stroke-width: 1.5; }

/* ---------- Scroll reveal ---------- */

.reveal, .reveal-group > * { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 700ms var(--ease-out), transform 900ms var(--ease-out), filter 700ms var(--ease-out); transition-delay: var(--delay, 0ms); }
.reveal.visible, .reveal-group.visible > * { opacity: 1; transform: none; filter: blur(0); }
.reveal-group > :nth-child(2) { --delay: 90ms; }
.reveal-group > :nth-child(3) { --delay: 180ms; }
.reveal-group > :nth-child(4) { --delay: 270ms; }
.reveal-group > :nth-child(5) { --delay: 360ms; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy > *, .hero-actions > *, .map, html.loaded .hero-copy > *, html.loaded .hero-actions > *, html.loaded .map { animation: none; opacity: 1; transform: none; filter: none; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; filter: none; transition: none; }
  .loader { display: none; }
  .cap-preview { transition: none; }
  .approach-visual .dg { transition: opacity 200ms ease; transform: none; }
  .steps h3 { transition: none; }
  .button, .link-arrow, .cap summary, .cap .plus { transition: none; }
}
