/* ==========================================================================
   BattleYield — landing page styles (index.html only)
   Page-specific composition on top of tokens.css + base.css. No new colours,
   no new tokens: every value below is a token, transparent, or a black/white
   alpha already used by base.css. Animations: transform / opacity (+ SVG
   stroke-dash on reveal, paint-only), all covered by the reduced-motion block.
   ========================================================================== */

/* ---------- section rhythm --------------------------------------------- */
.section-alt {
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(255, 255, 255, 0.025), transparent 70%),
    var(--c-bg-deep);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.section-alt + .section-alt { border-top: 0; }
.strong { font-weight: 700; color: var(--c-text); }
.table td.strong { color: var(--c-text); }
.table th.strong { color: var(--c-text); }
.table tbody th[scope="row"] {
  text-align: left;
  font-family: var(--f-text);
  font-weight: 600;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-3) var(--s-4);
  white-space: nowrap;
  vertical-align: middle;
}
.table td { white-space: normal; }
.table td.num { white-space: nowrap; }

/* ---------- topbar: 8 anchors — tighten between the nav breakpoint and 1100px --- */
@media (min-width: 900px) and (max-width: 1099px) {
  .nav-links { margin-left: var(--s-2); gap: 0; }
  .nav-links a { padding-inline: var(--s-2); }
}

/* ---------- hero -------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-deep);
}
/* mobile-first: the key art sits at the top at its natural ratio (shiba left, cat right stay in frame),
   fades into the deep bg; copy comes below and overlaps the fade */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1072;
  z-index: 0;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7, 8, 12, 0.35) 0%, rgba(7, 8, 12, 0) 25%, rgba(7, 8, 12, 0.35) 60%, var(--c-bg-deep) 100%);
  pointer-events: none;
}
.hero .embers { z-index: 1; }
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: -22vw;
  padding-bottom: var(--s-7);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: var(--s-4);
}
.hero-eyebrow { color: var(--c-dim); }
.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 0.25em;
  font-size: var(--t-3xl);
  letter-spacing: -0.03em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}
.hero-vs {
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  top: -0.08em;
}
.hero-tagline {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--t-md);
  color: var(--c-text);
  max-width: none;
}
.hero-pitch {
  list-style: none;
  padding: 0;
  margin: var(--s-2) 0 0;
  display: grid;
  gap: var(--s-3);
  max-width: 62ch;
  text-align: left;
  counter-reset: pitch;
}
.hero-pitch li {
  position: relative;
  padding-left: 2.1rem;
  color: var(--c-dim);
  font-size: var(--t-base);
  line-height: var(--lh-body);
  counter-increment: pitch;
}
.hero-pitch li b { color: var(--c-text); }
.hero-pitch li::before {
  content: counter(pitch);
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  background: rgba(11, 13, 18, 0.7);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--c-text);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-2);
  width: 100%;
}
.hero-ctas .btn { flex: 1 1 200px; max-width: 320px; }

/* status strip */
.hero-status {
  width: 100%;
  max-width: 900px;
  margin-top: var(--s-4);
  padding: var(--s-4);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  /* opaque enough on its own: a backdrop-filter here would re-blur the animating embers canvas every frame */
  background: rgba(11, 13, 18, 0.92);
  box-shadow: var(--sh-2), var(--sh-inset);
  display: grid;
  gap: var(--s-3);
  text-align: left;
}
.hero-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
}
.hero-status .chip span:first-child { color: var(--c-dim); }
.hero-status-note { text-align: center; max-width: none; }
.hero-status-note a { color: var(--c-dogs); text-decoration: underline; text-underline-offset: 0.15em; }
.hero-status.is-live .hero-status-row { justify-content: space-between; }
.status-count {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-2);
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--c-text);
}
.status-count small { font-family: var(--f-text); font-size: var(--t-xs); font-weight: 500; color: var(--c-dim); text-transform: uppercase; letter-spacing: var(--ls-eyebrow); }
.status-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-3);
}
.status-team { display: grid; gap: 2px; min-width: 0; }
.status-team.cats { text-align: right; }
.status-team .lbl { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: var(--ls-eyebrow); font-weight: 600; }
.status-team .val { font-family: var(--f-mono); font-variant-numeric: tabular-nums; font-size: var(--t-md); font-weight: 600; color: var(--c-text); }
.status-team .sub { font-size: var(--t-xs); color: var(--c-dim); }
/* live team APY chip (built by landing.js): small, aligned with its team's side; "—" until the Arena answers */
.status-team .status-apy { justify-self: start; margin-top: var(--s-1); font-size: var(--t-xs); padding: 0.25em 0.6em; }
.status-team.cats .status-apy { justify-self: end; }
.status-team .status-apy b.is-tba { color: var(--c-dim); }
.status-teams .bar-vs { grid-column: 1 / -1; }

@media (min-width: 900px) {
  .hero {
    min-height: clamp(640px, 92vh, 980px);
    display: grid;
    align-items: end;
  }
  .hero-art {
    position: absolute;
    inset: -15% 0 0 0;   /* headroom for the 0.15 parallax translate */
    height: 115%;
    aspect-ratio: auto;
  }
  .hero-art img { object-position: center 40%; }
  /* keep the shiba (left third) and the cat (right third) visible; darken only the centre column
     where the copy sits, plus a bottom fade into the next section */
  .hero-art::after {
    background:
      linear-gradient(to bottom, rgba(7, 8, 12, 0.45) 0%, rgba(7, 8, 12, 0) 18%, rgba(7, 8, 12, 0) 48%, rgba(7, 8, 12, 0.72) 78%, var(--c-bg-deep) 100%),
      linear-gradient(to right, rgba(7, 8, 12, 0) 20%, rgba(7, 8, 12, 0.66) 36%, rgba(7, 8, 12, 0.66) 64%, rgba(7, 8, 12, 0) 80%);
  }
  .hero-content {
    margin-top: 0;
    padding-top: clamp(6rem, 18vh, 12rem);
    padding-bottom: var(--s-8);
  }
  .hero-pitch { max-width: 62ch; } /* stays inside the dark band; 70ch ran over the cape and the cat's shoulder */
  .hero-pitch li { font-size: var(--t-md); }
}

/* ---------- teams -------------------------------------------------------- */
.team-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--s-3);
  padding-block: var(--s-6);
}
.team-emblem { margin-bottom: var(--s-2); }
.team-name { font-size: var(--t-2xl); line-height: 1; letter-spacing: -0.03em; }
.team-era { color: var(--c-dim); }
.team-stats { width: 100%; text-align: left; margin-top: var(--s-2); }
.team-card .btn { margin-top: var(--s-2); max-width: 320px; }

/* ---------- timeline ----------------------------------------------------- */
.timeline {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--s-1);
  margin-bottom: var(--s-5);
}
.day {
  position: relative;
  display: grid;
  gap: 2px;
  align-content: start;
  min-height: 92px;
  padding: var(--s-3) var(--s-2);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  background: var(--c-panel);
  font-size: var(--t-xs);
  overflow: hidden;
}
.day.fight { border-color: rgba(224, 69, 58, 0.4); background: var(--c-danger-soft); }
.day.truce { border-color: rgba(111, 156, 255, 0.35); background: var(--c-info-soft); }
.day-n { color: var(--c-text); font-weight: 600; }
.day-tag { text-transform: uppercase; letter-spacing: var(--ls-eyebrow); font-family: var(--f-display); font-weight: 600; }
.day.fight .day-tag { color: var(--c-danger-text); }
.day.truce .day-tag { color: var(--c-info-text); }
.day-note { color: var(--c-dim); }
.day.is-bell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--c-dogs);
}
@media (max-width: 639px) {
  .timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .day { min-height: 76px; }
}
.timeline-notes .panel p { max-width: none; }

/* ---------- rules: the plain-language list that comes before the exact table --- */
.rules-plain {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
  counter-reset: rule;
  max-width: 78ch;
}
.rules-plain li {
  position: relative;
  padding: var(--s-4) var(--s-5) var(--s-4) 3.4rem;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  background: var(--c-panel);
  color: var(--c-dim);
  counter-increment: rule;
}
.rules-plain li b {
  display: block;
  color: var(--c-text);
  font-family: var(--f-display);
  font-size: var(--t-md);
  margin-bottom: var(--s-1);
}
.rules-plain li::before {
  content: counter(rule);
  position: absolute;
  left: var(--s-4);
  top: var(--s-4);
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--c-dogs-line);
  background: var(--c-dogs-soft);
  color: var(--c-dogs);
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 700;
}
@media (max-width: 639px) {
  .rules-plain li { padding-left: 3rem; padding-inline-end: var(--s-4); }
}

/* ---------- verbs -------------------------------------------------------- */
/* Plain-English name first, the contract function demoted to a quiet second line. */
.verb h4 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-2);
  font-size: var(--t-lg);
  margin-bottom: var(--s-2);
  color: var(--c-text);
  overflow-wrap: anywhere;
}
.verb-fn { font-size: var(--t-xs); font-weight: 500; color: var(--c-faint); white-space: nowrap; }
.verb p { max-width: none; }
.verb-fight { border-color: var(--c-dogs-line); }
.verb-fight h4 { color: var(--c-dogs); }
.verb-fight .verb-fn { color: var(--c-dogs-deep); }

/* ---------- rules -------------------------------------------------------- */
.rules-grid { display: grid; gap: var(--s-5); }
@media (min-width: 1000px) {
  .rules-grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.rules-table { min-width: 0; }
.rules-table td { white-space: normal; line-height: 1.5; }
.rules-side { display: grid; gap: var(--s-4); }
.pin {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-panel);
  padding: var(--s-4);
  display: grid;
  gap: var(--s-3);
  box-shadow: var(--sh-1), var(--sh-inset);
}
.pin-head { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.pin-body {
  margin: 0;
  padding: var(--s-4);
  border-radius: var(--r-md);
  background: var(--c-input);
  border: 1px solid var(--c-line);
  font-family: var(--f-mono);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--c-text);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-width: 100%;
}

/* ---------- yield -------------------------------------------------------- */
.yield-toggle .btn[aria-pressed="true"] { color: var(--c-dogs); border-color: var(--c-dogs-line); background: var(--c-dogs-soft); }
.yield-table tbody tr[hidden] { display: none; }
.yield-table th.strong { color: var(--c-dogs); }
.yield-table td.strong { color: var(--c-dogs); font-weight: 700; }
.curve-head { display: grid; gap: var(--s-2); margin-bottom: var(--s-4); }
.curve-head p { max-width: 80ch; }
.curve-table th[scope="row"] { min-width: 180px; }
/* §12.2 season return: one compact row of chips under the curve, then the one-line APY caveat */
.season-return p { max-width: none; }
.season-return .chip { white-space: normal; }   /* four chips must wrap on a phone, never overflow the container */

/* shared chart card */
.chart-card {
  margin: 0;
  padding: var(--s-4);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-panel);
  box-shadow: var(--sh-1), var(--sh-inset);
  display: grid;
  gap: var(--s-3);
}
.chart-scroll { width: 100%; overflow-x: auto; scrollbar-width: thin; }
.chart { width: 100%; height: auto; min-width: 560px; font-family: var(--f-mono); font-variant-numeric: tabular-nums; }
.fee-chart { min-width: 520px; }
.chart .grid line { stroke: var(--c-line); stroke-width: 1; }
.chart .axis-labels text { fill: var(--c-dim); font-size: 11px; text-anchor: end; }
.chart .axis-labels text.x { text-anchor: middle; }
.chart .axis-labels text.axis-title { font-family: var(--f-text); font-size: 11px; }
.chart-legend { display: flex; flex-wrap: wrap; gap: var(--s-4); font-size: var(--t-sm); color: var(--c-dim); }
.legend-item { display: inline-flex; align-items: center; gap: var(--s-2); }
.swatch { display: inline-block; width: 12px; height: 12px; border-radius: 3px; flex: 0 0 auto; }
.swatch-net { background: var(--c-dogs); }
.swatch-gross { background: var(--c-dim); }
.swatch-liq { background: var(--c-info); }
.swatch-chest { background: var(--c-dogs); }
.swatch-team { background: var(--c-dim); }

/* §12.2 curve (built by landing.js) */
.curve-line {
  fill: none;
  stroke-width: 2.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.1s var(--ease-out);
}
.curve-line.net { stroke: var(--c-dogs); }
.curve-line.gross { stroke: var(--c-dim); stroke-dasharray: 5 6; }
.curve-dot { transition: opacity var(--d-slow) var(--ease-out); transition-delay: 0.9s; }
.curve-dot.net { fill: var(--c-dogs); }
.curve-dot.gross { fill: var(--c-dim); }
.curve-label { font-size: 10.5px; text-anchor: middle; transition: opacity var(--d-slow) var(--ease-out); transition-delay: 1s; }
.curve-label.net { fill: var(--c-dogs); font-weight: 600; }
.curve-label.gross { fill: var(--c-dim); }
.curve-axis text { fill: var(--c-dim); font-size: 11px; }
.chart-card:not(.is-visible) .curve-dot,
.chart-card:not(.is-visible) .curve-label { opacity: 0; }

/* ---------- tokenomics --------------------------------------------------- */
.alloc-grid { display: grid; gap: var(--s-5); align-items: center; }
@media (min-width: 860px) {
  .alloc-grid { grid-template-columns: minmax(260px, 360px) 1fr; gap: var(--s-7); }
}
.donut-card {
  position: relative;
  margin: 0 auto;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.donut { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-track { stroke: var(--c-panel-2); }
.donut-seg {
  stroke-linecap: butt;
  transition: stroke-dasharray 1.1s var(--ease-out), stroke-dashoffset 1.1s var(--ease-out);
}
.seg-liq { stroke: var(--c-info); }
.seg-chest { stroke: var(--c-dogs); }
.seg-team { stroke: var(--c-dim); }
.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: var(--s-1);
  pointer-events: none;
  padding: 22%;
}
.donut-big { font-size: clamp(1rem, 4.2vw, 1.35rem); font-weight: 600; color: var(--c-text); letter-spacing: -0.02em; }
.alloc-legend { display: grid; gap: var(--s-4); }
.alloc-row { display: grid; grid-template-columns: 14px 1fr; gap: var(--s-3); align-items: start; }
.alloc-row .swatch { margin-top: 0.35em; }
.alloc-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s-2) var(--s-3); margin-bottom: var(--s-1); }
.alloc-head b { font-family: var(--f-display); font-size: var(--t-md); }
.alloc-pct { font-size: var(--t-lg); font-weight: 600; color: var(--c-text); }
.alloc-text p { max-width: none; }
.alloc-text code { font-size: 0.8em; }

/* §4 emission bars (built by landing.js) */
.em-bars {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--s-1);
  align-items: end;
  height: 220px;
}
.em-col { display: grid; grid-template-rows: 1fr auto auto; height: 100%; min-width: 0; text-align: center; gap: var(--s-1); }
.em-track { position: relative; height: 100%; display: flex; align-items: flex-end; }
.em-fill {
  display: block;
  width: 100%;
  height: var(--h, 0%);
  border-radius: var(--r-xs) var(--r-xs) 0 0;
  background: linear-gradient(180deg, var(--c-dogs-2), var(--c-dogs-deep));
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform var(--d-reveal) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.em-bars.is-visible .em-fill { transform: scaleY(1); }
.em-val { font-family: var(--f-mono); font-variant-numeric: tabular-nums; font-size: var(--t-xs); color: var(--c-text); overflow-wrap: normal; }
.em-war { font-size: var(--t-xs); color: var(--c-dim); }
@media (max-width: 639px) {
  .em-bars { height: 170px; gap: 2px; }
  .em-val { font-size: 9px; letter-spacing: -0.04em; }
  .em-war { font-size: 9px; }
  /* 12 labels of "61.2M" do not fit 12 columns under 640px: show every other one (the table below has them all) */
  .em-col:nth-child(even) .em-val { visibility: hidden; }
}

/* ---------- fees --------------------------------------------------------- */
.fee-stats .stat-value { font-size: clamp(1.4rem, 3.4vw, 2rem); }
.fee-grid { display: grid; gap: var(--s-5); align-items: start; }
@media (min-width: 960px) {
  .fee-grid { grid-template-columns: 1fr 1.15fr; }
}
.fee-lines { list-style: none; padding: 0; display: grid; gap: var(--s-3); }
.fee-lines li {
  padding: var(--s-3) var(--s-4);
  border-left: 2px solid var(--c-line-strong);
  color: var(--c-dim);
  font-size: var(--t-sm);
}
.fee-lines li b { color: var(--c-text); }
.fee-line { fill: none; stroke: var(--c-dogs); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.fee-fill { fill: var(--c-dogs-soft); }
.fee-chart .marker circle { fill: var(--c-dogs); }
.fee-chart .marker text { fill: var(--c-text); font-size: 11px; }
.fee-table { min-width: 0; }

/* ---------- loot flow ---------------------------------------------------- */
.flow {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s-3);
  counter-reset: flow;
}
.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "n title" "n sub";
  gap: 2px var(--s-3);
  padding: var(--s-4);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-panel);
}
.flow-step b { grid-area: title; font-family: var(--f-display); }
.flow-step .small { grid-area: sub; max-width: none; }
.flow-n {
  grid-area: n;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-dogs-soft);
  border: 1px solid var(--c-dogs-line);
  color: var(--c-dogs);
  font-weight: 600;
  font-size: var(--t-sm);
}
@media (min-width: 900px) {
  .flow { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .flow-step { grid-template-columns: 1fr; grid-template-areas: "n" "title" "sub"; gap: var(--s-2); align-content: start; }
  .flow-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -14px; top: var(--s-4);
    width: 20px; text-align: center;
    color: var(--c-faint);
    font-size: 1.25rem;
    line-height: 32px;
  }
}
#loot .panel p { max-width: none; }

/* ---------- honest list -------------------------------------------------- */
.honest-list {
  list-style: none;
  padding: var(--s-5);
  border: 1px solid rgba(224, 69, 58, 0.4);
  border-radius: var(--r-xl);
  background:
    linear-gradient(180deg, var(--c-danger-soft), transparent 40%),
    var(--c-panel);
  display: grid;
  gap: var(--s-4);
  counter-reset: honest;
}
.honest-list li {
  position: relative;
  padding-left: 2.6rem;
  counter-increment: honest;
  color: var(--c-dim);
  line-height: var(--lh-body);
}
.honest-list li b { color: var(--c-text); }
.honest-list li::before {
  content: counter(honest, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0.2em;
  font-family: var(--f-mono);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--c-danger-text);
}
.honest-list li + li { border-top: 1px solid var(--c-line); padding-top: var(--s-4); }
.honest-list li + li::before { top: calc(var(--s-4) + 0.2em); }

/* ---------- faq ---------------------------------------------------------- */
.faq { display: grid; gap: var(--s-3); }
.faq-item {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-panel);
  transition: border-color var(--d-fast);
}
.faq-item[open] { border-color: var(--c-line-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--t-base);
  color: var(--c-text);
  border-radius: var(--r-md);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  color: var(--c-dim);
  font-family: var(--f-mono);
  font-weight: 500;
  transition: transform var(--d-base) var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--c-dogs); border-color: var(--c-dogs-line); }
.faq-body { padding: 0 var(--s-5) var(--s-5); color: var(--c-dim); font-size: var(--t-base); }
.faq-body p { max-width: none; }
.faq-body b { color: var(--c-text); }
.rq-table { min-width: 0; }

/* ---------- footer additions --------------------------------------------- */
.footer .brand { color: var(--c-text); }
.footer-addrs { display: grid; gap: var(--s-3); }
.footer-addr .addr { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2); }
.footer-addr .addr .num { overflow-wrap: anywhere; }
.footer-addr .addr .copy { padding: 0 var(--s-1); min-height: 24px; }
.footer-addr .addr a { text-decoration: underline; text-underline-offset: 0.15em; }
.footer-links { list-style: none; padding: 0; display: grid; gap: var(--s-2); }
.footer-fine { border-top: 1px solid var(--c-line); padding-top: var(--s-4); max-width: none; }

/* ---------- live calendar (built by landing.js) -------------------------- */
#calendar h3 { margin-bottom: var(--s-3); }

/* ---------- reduced motion ---------------------------------------------- */
/* landing.js skips the stroke-dash draw and sets final values directly when reduceMotion() is true */
@media (prefers-reduced-motion: reduce) {
  .em-fill { transform: none; transition: none; }
  .chart-card:not(.is-visible) .curve-dot,
  .chart-card:not(.is-visible) .curve-label { opacity: 1; }
  .donut-seg { transition: none; }
  .faq-item summary::after { transition: none; }
}
