/* ============================================================
   Org, Actually — B&B warm painterly system
   Palette + type per bb-brand-design (locked source of truth)
   ============================================================ */
:root {
  --terracotta: #c4622d;
  --terracotta-dark: #a0511f;
  --terracotta-light: #e8a07a;
  --cream: #f9f3ec;
  --cream-dark: #f0e6d8;
  --sage: #8faf8b;
  --sage-dark: #6e8f6a;
  /* text-safe inks — WCAG AA (≥4.5:1) on cream, cream-dark, and white */
  --sage-ink: #4d6749;
  --border-ui: #8f8578; /* ≥3:1 component boundary on white/cream */
  --charcoal: #2c2c2c;
  --charcoal-light: #555555;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; margin: 0 0 16px; }
p { margin: 0 0 16px; }
a { color: var(--terracotta-dark); }

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--terracotta); color: var(--cream);
  padding: 12px 20px; border-radius: 0 0 6px 6px;
  font-weight: 600; text-decoration: none; transition: top .2s ease;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--sage-dark); outline-offset: 2px; }

.site-bar {
  position: sticky; top: 0; z-index: 70;
  min-height: 58px; padding: 9px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: rgba(249,243,236,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}
.site-brand { display: flex; align-items: center; gap: 10px; color: var(--charcoal); text-decoration: none; font-family: var(--font-heading); font-weight: 600; white-space: nowrap; }
.site-brand img { width: 34px; height: 34px; }
.site-brand em { color: var(--terracotta-dark); }
.site-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; }
.site-links a { color: var(--charcoal); text-decoration: none; padding: 8px 2px; }
.site-links a:hover { color: var(--terracotta-dark); text-decoration: underline; text-underline-offset: 4px; }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--charcoal-light); margin-bottom: 12px;
}
.eyebrow-light { color: var(--cream-dark); }
.tc { color: var(--terracotta); }

/* ============ HERO ============ */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 64px 24px 48px; position: relative;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.hero h1 { font-size: clamp(44px, 8vw, 76px); color: var(--charcoal); margin-bottom: 20px; }
.hero h1 em { color: var(--terracotta); }
.hero-sub { max-width: 560px; font-size: 19px; color: var(--charcoal-light); }
.hero-hint { margin-top: 40px; color: var(--terracotta); font-weight: 500; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

.hero-butterfly {
  width: 54px; height: 54px; color: var(--terracotta);
  margin-bottom: 26px; animation: flutter 5s ease-in-out infinite;
}
@keyframes flutter {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

/* ============ LAYOUT ============ */
.page {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .page { grid-template-columns: minmax(0, 1fr) 340px; }
}
.story { min-width: 0; padding-bottom: 40px; }

/* ============ BEATS ============ */
.beat {
  margin: 10vh 0;
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--terracotta);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44,44,44,0.06);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.beat.active { opacity: 1; transform: translateY(0); }

.prologue { background: transparent; border: 0; box-shadow: none; padding: 24px 0; }
.prologue-line { font-size: clamp(26px, 4vw, 38px); margin-bottom: 24px; }

.act-marker { text-align: center; margin: 12vh 0 0; }
.act-marker span {
  font-family: var(--font-heading); font-style: italic; font-size: 22px;
  color: var(--sage-ink); padding: 0 18px; position: relative;
}
.act-marker span::before, .act-marker span::after {
  content: ""; position: absolute; top: 50%; width: 48px; height: 1px; background: var(--sage);
}
.act-marker span::before { right: 100%; }
.act-marker span::after { left: 100%; }

.dir-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.dir-head h2 { font-size: 30px; margin: 0; }
.h-sm { font-size: 24px; }
.pron { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--charcoal-light); }
.role { font-size: 13px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--terracotta-dark); margin: 4px 0 0; }

.avatar {
  flex: none; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-size: 28px; font-weight: 600; color: #fff;
}
.avatar-sm { width: 48px; height: 48px; font-size: 22px; }
.av-terracotta { background: radial-gradient(circle at 30% 25%, var(--terracotta-light), var(--terracotta)); }
.av-sage { background: radial-gradient(circle at 30% 25%, #b5cdb2, var(--sage-dark)); }
.av-router {
  background: radial-gradient(circle at 30% 25%, var(--terracotta-light), var(--terracotta));
  outline: 3px solid var(--sage); outline-offset: 3px;
}

.problem strong, .build strong { color: var(--terracotta-dark); font-weight: 600; }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 18px 0; }
.chips li {
  background: var(--cream-dark); color: var(--charcoal);
  font-size: 13.5px; font-weight: 500; padding: 6px 14px; border-radius: 999px;
}
.chips.sidekicks li { background: var(--cream); border: 1px solid var(--sage); display: block; width: 100%; border-radius: 8px; padding: 10px 16px; }
.chips.sidekicks em { color: var(--charcoal-light); font-style: normal; font-size: 12.5px; display: block; }

.bloom-btn {
  background: transparent; border: 2px solid var(--sage-dark); color: var(--sage-ink);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  min-height: 44px; padding: 9px 20px; border-radius: 4px; cursor: pointer; transition: all .25s ease;
}
.bloom-btn:hover, .bloom-btn:focus-visible { background: var(--sage-ink); border-color: var(--sage-ink); color: var(--cream); }
.bloom-btn[aria-expanded="true"] .bloom-arrow { display: inline-block; transform: rotate(90deg); }
.bloom { margin-top: 16px; }
.bloom-note { font-size: 14px; color: var(--charcoal-light); }
.bloom:not([hidden]) .sidekicks li { animation: bloom-in .45s ease backwards; }
.bloom:not([hidden]) .sidekicks li:nth-child(2) { animation-delay: .06s; }
.bloom:not([hidden]) .sidekicks li:nth-child(3) { animation-delay: .12s; }
.bloom:not([hidden]) .sidekicks li:nth-child(4) { animation-delay: .18s; }
.bloom:not([hidden]) .sidekicks li:nth-child(5) { animation-delay: .24s; }
.bloom:not([hidden]) .sidekicks li:nth-child(6) { animation-delay: .30s; }
.bloom:not([hidden]) .sidekicks li:nth-child(7) { animation-delay: .36s; }
.bloom:not([hidden]) .sidekicks li:nth-child(8) { animation-delay: .42s; }
.bloom:not([hidden]) .sidekicks li:nth-child(9) { animation-delay: .48s; }
@keyframes bloom-in { from { opacity: 0; transform: translateY(10px); } }

.voice-line {
  margin: 20px 0 0; padding-top: 16px; border-top: 1px dashed var(--cream-dark);
  font-size: 14px; color: var(--charcoal-light);
}
.voice-line q { font-family: var(--font-heading); font-style: italic; color: var(--charcoal); font-size: 16px; }
.director:hover .voice-line q, .director:focus-within .voice-line q { color: var(--terracotta-dark); }

/* ============ GATE ============ */
.gate { border-left-color: var(--sage-dark); background: var(--cream-dark); text-align: center; }
.gate h2 { color: var(--terracotta); font-size: 30px; }
.gate-butterfly { width: 36px; height: 36px; color: var(--sage-dark); margin-bottom: 8px; }
.capture-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 22px 0 8px; }
.capture-form input[type="email"] {
  font-family: var(--font-body); font-size: 16px; padding: 13px 16px;
  border: 2px solid var(--border-ui); border-radius: 4px; min-width: 260px;
  background: #fff; color: var(--charcoal);
}
.capture-form input[type="email"]:focus { outline: 3px solid var(--sage); outline-offset: 1px; }
.form-note { font-size: 13px; color: var(--charcoal-light); }
.form-error { max-width: 520px; margin: 10px auto 0; color: #8a2f22; font-size: 14px; font-weight: 600; }
.capture-form button:disabled { opacity: .68; cursor: wait; }
.gate-confirm {
  font-family: var(--font-heading); font-style: italic; font-size: 19px;
  color: var(--sage-ink); margin: 22px 0 0;
}
.gate-story-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .8s cubic-bezier(.4, 0, .2, 1);
}
.gate-story-wrap.open { grid-template-rows: 1fr; }
.gate-story-wrap.open-instant { transition: none; }
.gate-story {
  overflow: hidden; min-height: 0;
  text-align: left; background: #fff; border-radius: 8px;
  border-left: 4px solid var(--terracotta);
  opacity: 0; transition: opacity .6s ease .25s;
}
.gate-story-wrap.open .gate-story { opacity: 1; margin-top: 20px; padding: 28px; }
.gate-story h3 { color: var(--terracotta-dark); outline: none; }
.gate-onward {
  margin: 20px 0 0; padding-top: 16px; border-top: 1px dashed var(--cream-dark);
  font-family: var(--font-heading); font-style: italic; color: var(--sage-ink);
  text-align: center;
}
.gate-onward-arrow { display: inline-block; animation: bob 2.4s ease-in-out infinite; color: var(--terracotta); }

/* ============ THE RE-ORG (before/after mini diagram) ============ */
.rewire-fig {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 24px 0 8px; padding: 20px; background: var(--cream); border-radius: 8px;
}
.rewire-half { text-align: center; flex: 0 1 170px; }
.rewire-half svg { width: 100%; max-width: 150px; height: auto; }
.rewire-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--charcoal-light); margin: 0 0 4px;
}
.rewire-caption { font-family: var(--font-heading); font-style: italic; font-size: 14px; color: var(--sage-ink); margin: 4px 0 0; }
.rewire-arrow { font-size: 28px; color: var(--terracotta); margin: 0; }
.mini-edge { stroke: var(--sage); stroke-width: 1.6; fill: none; }
.mini-me { fill: var(--charcoal); stroke: var(--terracotta); stroke-width: 1.5; }
.mini-t { fill: var(--terracotta); }
.mini-s { fill: var(--sage); }
.mini-r { fill: var(--terracotta); stroke: var(--sage); stroke-width: 2; }
.mini-init { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 600; fill: var(--cream); text-anchor: middle; }
.rewire-note { font-size: 14px; color: var(--charcoal-light); font-style: italic; }
.mini-r { stroke: var(--sage-dark); }

/* ============ THE HIRING SPREE ============ */
.hiring { border-left-color: var(--sage-dark); }
.hiring h2 { color: var(--terracotta); }
.hiring-cue { font-family: var(--font-heading); font-style: italic; color: var(--sage-ink); }

/* ============ STATS COUNT-UP ============ */
.stats {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  margin: 28px 0 8px; padding: 0;
}
.stat { display: flex; flex-direction: column-reverse; align-items: center; }
.stat dd { font-family: var(--font-heading); font-size: 52px; font-weight: 700; color: var(--terracotta); margin: 0; line-height: 1; }
.stat dt { font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--charcoal-light); margin-top: 8px; }

/* ============ BUTTERFLY FLYBY ============ */
.flyby {
  position: fixed; top: 30vh; left: -80px; z-index: 60;
  width: 56px; height: 56px; color: var(--terracotta);
  pointer-events: none;
  animation: flyacross 4.5s ease-in-out forwards;
}
.flyby svg { width: 100%; height: 100%; }
@keyframes flyacross {
  0%   { transform: translate(0, 0) rotate(-8deg); }
  25%  { transform: translate(28vw, -6vh) rotate(8deg); }
  50%  { transform: translate(55vw, 2vh) rotate(-6deg); }
  75%  { transform: translate(80vw, -5vh) rotate(8deg); }
  100% { transform: translate(110vw, -2vh) rotate(0deg); }
}

/* ============ EPILOGUE ============ */
.epilogue { background: transparent; border: 0; box-shadow: none; padding: 0; }
.epi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.epi-card {
  background: #fff; border: 1px solid var(--cream-dark); border-left: 4px solid var(--sage);
  border-radius: 8px; padding: 28px; box-shadow: 0 2px 12px rgba(44,44,44,0.06);
  font-size: 15.5px;
}

/* ============ FULL ORG ============ */
.full-org { text-align: center; border-left-color: var(--sage-dark); }
.full-org h2 { font-size: clamp(26px, 4vw, 36px); color: var(--terracotta); }
.org-chart-inline { display: none; margin: 24px auto; max-width: 420px; }
.closing-bridge { margin-top: 24px; color: var(--charcoal-light); }
.closing-line { font-family: var(--font-heading); font-size: 21px; margin-top: 10px; }

.operating-note { border-left-color: var(--sage-dark); background: #fff; }
.operating-note h2 { color: var(--sage-ink); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.principles p { margin: 0; padding: 18px; background: var(--cream); border: 1px solid var(--cream-dark); border-radius: 8px; font-size: 14px; }
.principles strong { color: var(--terracotta-dark); }

/* ============ REVEAL (the one dark-accent moment) ============ */
.reveal {
  background: var(--charcoal); color: var(--cream);
  border: 0; border-left: 4px solid var(--terracotta);
  padding: 56px 44px; text-align: center;
}
.reveal h2 { color: var(--terracotta-light); font-size: clamp(28px, 4vw, 38px); }
.reveal strong { color: var(--terracotta-light); }
.reveal-kicker { font-family: var(--font-heading); font-size: 23px; margin-top: 26px; }
.reveal-kicker em { color: var(--terracotta-light); }

/* ============ CTA ============ */
.cta { text-align: center; border-left-color: var(--terracotta); background: var(--cream-dark); }
.cta h2 { font-size: clamp(26px, 4vw, 34px); color: var(--terracotta); }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.consulting-bridge { margin: 24px 0 0; font-size: 15px; color: var(--charcoal-light); }
.consulting-bridge a { font-weight: 600; }

.btn-primary {
  /* terracotta-dark, not terracotta: cream-on-terracotta is 3.7:1 — under AA */
  display: inline-block; background: var(--terracotta-dark); color: var(--cream);
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  min-height: 48px; padding: 14px 28px; border: 0; border-radius: 4px; cursor: pointer;
  text-decoration: none; transition: background .2s ease;
}
.btn-primary:hover, .btn-primary:focus-visible { background: #8a4419; }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--terracotta-dark);
  border: 2px solid var(--terracotta); font-family: var(--font-body);
  min-height: 48px; font-weight: 500; font-size: 15px; padding: 12px 26px; border-radius: 4px;
  cursor: pointer; text-decoration: none; transition: all .2s ease;
}
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--terracotta-dark); border-color: var(--terracotta-dark); color: var(--cream); }

/* ============ SHARE ============ */
.share h2 { color: var(--terracotta); }
.share-form { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 8px; }
.share-fields { display: flex; flex-direction: column; gap: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-light); margin-bottom: 6px; }
.field input[type="text"] {
  width: 100%; font-family: var(--font-body); font-size: 16px; padding: 12px 14px;
  border: 2px solid var(--border-ui); border-radius: 4px; background: #fff; color: var(--charcoal);
}
.field input[type="text"]:focus { outline: 3px solid var(--sage); outline-offset: 1px; }
.emoji-row { display: flex; gap: 8px; flex-wrap: wrap; }
.emoji-opt {
  font-size: 24px; background: var(--cream); border: 2px solid var(--border-ui);
  border-radius: 8px; padding: 8px 12px; cursor: pointer; transition: all .15s ease;
}
.emoji-opt.selected, .emoji-opt:hover { border-color: var(--terracotta); background: #fff; }
.emoji-opt:focus-visible { outline: 3px solid var(--sage); }
.share-preview { display: flex; flex-direction: column; gap: 14px; align-items: center; }
#share-canvas {
  width: 100%; max-width: 320px; height: auto; border-radius: 8px;
  border: 1px solid var(--cream-dark); box-shadow: 0 4px 18px rgba(44,44,44,0.1);
}
.share-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ============ RAIL (sticky org chart) ============ */
.rail { display: none; }
@media (min-width: 1024px) {
  .rail { display: block; }
  .rail-inner { position: sticky; top: 24px; padding: 24px 0; }
  .rail-title {
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--charcoal-light); text-align: center; margin-bottom: 6px;
  }
  #org-chart { width: 100%; height: auto; }
  .rail-here { font-size: 12.5px; color: var(--terracotta-dark); text-align: center; font-weight: 500; }
}

/* chart node styling (shared: rail + inline).
   Unplaced nodes are visibility:hidden, not just transparent — otherwise
   keyboard users can tab onto invisible chart nodes. */
.node {
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease, transform 1.1s cubic-bezier(.4, 0, .2, 1);
}
.node.placed { opacity: 1; visibility: visible; }
.node circle { stroke-width: 2; transition: stroke-width .2s ease; }
.node[role="link"] { cursor: pointer; }
.node[role="link"]:hover circle, .node[role="link"]:focus-visible circle { stroke-width: 4; }
.node[role="link"]:focus-visible { outline: none; }
.node[role="link"]:focus-visible circle { stroke: var(--charcoal); }
.node text {
  font-family: 'DM Sans', sans-serif; font-size: 11px; fill: var(--charcoal);
  paint-order: stroke; stroke: var(--cream); stroke-width: 3px; stroke-linejoin: round;
}
.node text.node-init { stroke: none; fill: var(--cream); }
.node .node-role { font-size: 8.5px; fill: var(--charcoal-light); }
.edge {
  stroke: var(--sage); stroke-width: 1.6; fill: none;
  transition: stroke-dashoffset 1.1s ease .15s, opacity .9s ease;
}
.edge.placed { stroke-dashoffset: 0; }
.edge-spine { stroke: var(--terracotta); stroke-width: 2; }
.edge.unwired { opacity: 0.12; stroke-dasharray: 4 5 !important; }
.edge-mem { stroke-dasharray: 3 4; stroke: var(--sage-dark); opacity: 0; transition: opacity .9s ease; }
.edge-mem.placed { opacity: 0.65; }
.node[data-node="memfile"] circle { stroke-dasharray: 4 3; }
.node[data-node="memfile"] .node-role { font-style: italic; }

/* ============ MOBILE TRACKER ============ */
.tracker {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(249,243,236,0.94); backdrop-filter: blur(6px);
  border-top: 1px solid var(--cream-dark); padding: 9px 12px;
  width: 100%; max-width: 100vw; overflow: clip; contain: layout paint;
}
.tracker ol { width: 100%; max-width: 100%; min-width: 0; height: 40px; contain: strict; list-style: none; display: flex; gap: 5px; justify-content: flex-start; margin: 0; padding: 0; overflow-x: auto; scrollbar-width: thin; }
.tracker li { display: flex; }
.tracker button {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  background: var(--cream-dark); border: 2px solid var(--sage-dark);
  transition: background .4s ease, transform .4s ease;
}
.tracker button.placed { background: var(--terracotta); border-color: var(--terracotta); }
.tracker button.here { transform: scale(1.3); }
@media (min-width: 1024px) { .tracker { display: none; } }

/* ============ FOOTER (cream band, terracotta separator — Option C adapted) ============ */
.footer {
  margin-top: 12vh; background: var(--cream);
  border-top: 3px solid var(--terracotta);
  padding: 56px 24px 40px; text-align: center;
}
.footer-capture { max-width: 520px; margin: 0 auto 44px; }
.footer-capture h2 { color: var(--terracotta); }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-brand img { width: 56px; height: 56px; }
.footer-url {
  font-family: var(--font-heading); font-size: 19px;
  color: var(--terracotta-dark); text-decoration: none;
}
.footer-url:hover { text-decoration: underline; }
.footer-links { max-width: 760px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 12px auto 2px; font-size: 13px; }
.footer-links a { color: var(--charcoal-light); }
.footer-fine { font-size: 12.5px; color: var(--charcoal-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 760px) {
  .site-bar { padding: 8px 14px; }
  .site-brand span { font-size: 15px; }
  .site-links { gap: 12px; font-size: 13px; }
  .site-links a:first-child { display: none; }
  .beat { padding: 28px 22px; margin: 8vh 0; }
  .epi-grid, .share-form, .principles { grid-template-columns: 1fr; }
  body { padding-bottom: 54px; } /* room for tracker */
}

@media (max-width: 430px) {
  .site-brand span { display: none; }
  .site-links { width: 100%; justify-content: flex-end; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .beat { opacity: 1; transform: none; transition: none; }
  .node { transition: none; }
  .edge { transition: none; }
  .hero-butterfly, .hero-hint { animation: none; }
  .bloom:not([hidden]) .sidekicks li { animation: none; }
  .flyby { animation: none; display: none; }
  .tracker button { transition: none; }
  .gate-story-wrap { transition: none; }
  .gate-story { transition: none; }
  .gate-onward-arrow { animation: none; }
}
