:root {
  --ink: #181818;
  --muted: #62675f;
  --paper: #f7f7f7;
  --surface: #ffffff;
  --line: #ededed;
  --green: #40470e;
  --leaf: #828f24;
  --gold: #ffb955;
  --blue: #2e6f86;
  --danger: #c95f3f;
  --panel: #202020;
  --shadow: 0 24px 32px rgba(0, 0, 0, 0.1);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ---------- site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 52px;
  padding: 0 22px;
  background: rgba(24, 24, 24, 0.92);
  backdrop-filter: blur(8px);
  color: #fff;
}
.site-header .brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.site-header .brand img { height: 25px; display: block; }
.site-header .brand .div { width: 1px; height: 20px; background: rgba(255, 255, 255, 0.28); }
.site-header .brand .t { font-size: 14px; letter-spacing: 0.06em; color: #cfcfc8; white-space: nowrap; }
.site-header .brand .t b { color: #fff; font-weight: 700; }
.site-header nav { display: flex; align-items: center; gap: 18px; }
.site-header nav a { color: rgba(255, 255, 255, 0.76); font-size: 14px; font-weight: 600; }
.site-header nav a:hover { color: #fff; }

/* ---------- section shell ---------- */
.section {
  position: relative;
  overflow: hidden;
  padding: 96px 56px;
  background: var(--paper);
}
.inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.section.dark { background: var(--ink); color: #fff; }
.section.plaid {
  background:
    repeating-linear-gradient(45deg, transparent 0 74px, rgba(255, 185, 85, 0.24) 74px 75px, transparent 75px 150px),
    repeating-linear-gradient(-45deg, transparent 0 74px, rgba(64, 71, 14, 0.14) 74px 75px, transparent 75px 150px),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(251, 251, 251, 0.84)),
    #fffdf9;
  background-position: center top;
}
/* gold top-rule motif on every section (1.5px divider) */
.section::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: var(--gold); z-index: 3; }
/* no divider between header and hero */
.cover::after { content: none; }

/* ---------- typography ---------- */
.kicker { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 800; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.cover .kicker { font-size: clamp(13px, 1vw, 15px); letter-spacing: 0.24em; font-weight: 800; margin: 14px 0 6px; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4); }
.profile-eyebrow { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 18px; }
.profile-eyebrow .kicker { margin-bottom: 0; }
.profile-logo { height: 68px; width: auto; flex: none; display: block; margin-bottom: 0; }
.kicker .arc { color: var(--muted); font-weight: 800; }
.dark .kicker .arc { color: #9a9d92; }
h1 { font-size: clamp(42px, 6vw, 84px); line-height: 0.96; margin: 0 0 0.3em; letter-spacing: -0.02em; font-weight: 900; }
h2 { font-size: clamp(26px, 3.1vw, 44px); line-height: 1.06; margin: 0 0 0.5em; letter-spacing: -0.015em; font-weight: 850; }
h3 { font-size: 19px; margin: 0 0 0.35em; font-weight: 800; }
p { color: var(--muted); max-width: 60ch; margin: 0 0 1em; font-size: clamp(15px, 1.15vw, 18px); }
.dark p { color: rgba(255, 255, 255, 0.78); }
.lead { font-size: clamp(18px, 1.7vw, 24px); color: var(--ink); font-weight: 500; }
.dark .lead { color: rgba(255, 255, 255, 0.92); }
.hl { color: var(--gold); font-weight: 800; }
.em-gold { color: var(--gold); font-weight: 800; text-transform: uppercase; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.section.in-view .reveal { opacity: 1; transform: none; }
.section.in-view .reveal:nth-child(2) { transition-delay: 0.08s; }
.section.in-view .reveal:nth-child(3) { transition-delay: 0.16s; }
.section.in-view .reveal:nth-child(4) { transition-delay: 0.24s; }
.r1 { transition-delay: 0.05s; } .r2 { transition-delay: 0.15s; } .r3 { transition-delay: 0.25s; } .r4 { transition-delay: 0.35s; } .r5 { transition-delay: 0.45s; }

/* ---------- cover ---------- */
.cover { min-height: clamp(620px, calc(100vh - 52px), 860px); display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: #000; padding: 80px 56px; }
.cover .bg { position: absolute; inset: 0; background-size: cover; background-position: right center; z-index: 0; }
.cover .shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(14, 22, 10, 0.8) 0%, rgba(14, 22, 10, 0.44) 44%, rgba(14, 22, 10, 0.08) 100%); }
.cover .inner { position: relative; z-index: 2; margin-bottom: 4vh; display: flex; flex-direction: column; flex: 1; }
.cobrand { display: flex; align-items: center; gap: 18px; margin-bottom: auto; padding-top: 8px; }
.cobrand img.iu { width: min(160px, 38vw); height: auto; }
.cobrand img.bb { width: 74px; height: auto; }
.cobrand .vr { width: 1px; height: 38px; background: rgba(255, 255, 255, 0.28); }
.cover h1 { color: #fff; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); margin-top: 12px; max-width: 12ch; }
.cover .lede { font-size: clamp(18px, 1.75vw, 23px); color: #fff; font-weight: 500; max-width: 660px; line-height: 1.32; }
.cover .lede .luna-inline { display: inline-block; height: 0.8em; width: auto; vertical-align: -0.05em; margin: 0 0.16em 0 0.02em; filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.34)); }
.cover-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* ---------- buttons ---------- */
.btn { display: inline-block; padding: 14px 26px; border-radius: 12px; font-weight: 800; font-size: 15px; text-decoration: none; transition: 0.16s; }
.btn.gold { background: var(--gold); color: #181818; }
.btn.gold:hover { filter: brightness(1.06); }
.btn.ghost { border: 1px solid rgba(255, 255, 255, 0.35); color: #fff; background: rgba(255, 255, 255, 0.04); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- metrics (static strip, old-site styling) ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 5px solid var(--gold); border-bottom: 1px solid var(--line); background: var(--surface); }
.metric { min-height: 176px; padding: 30px 28px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--gold); font-size: clamp(34px, 4.6vw, 56px); line-height: 0.95; }
.metric span { display: block; max-width: 260px; margin-top: 14px; color: var(--ink); font-size: 15px; font-weight: 750; }
.metric em { color: var(--gold); font-style: normal; font-weight: 900; text-transform: uppercase; }

/* ---------- big quote ---------- */
.bigquote { border-top: 5px solid var(--gold); padding-top: 44px; max-width: min(94vw, 1500px); margin: 0; }
.bigquote .q { font-size: clamp(30px, 4.6vw, 60px); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); max-width: 32ch; }
.bigquote cite { display: block; margin-top: 34px; font-style: normal; font-size: clamp(15px, 1.3vw, 19px); font-weight: 800; color: var(--muted); }
.bigquote cite b { color: var(--ink); }

/* ---------- two-column layouts ---------- */
.cols { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.cols.text-first { grid-template-columns: 1fr 1fr; }
.colhead h2 { max-width: 16ch; }
.quotecard { border-left: 4px solid var(--gold); background: #fff; border-radius: 0 14px 14px 0; padding: 26px 28px; box-shadow: var(--shadow); }
.quotecard .q { font-size: clamp(17px, 1.5vw, 21px); font-weight: 750; color: var(--ink); line-height: 1.4; margin: 0 0 16px; }
.quotecard cite { font-style: normal; font-size: 13.5px; font-weight: 800; color: var(--muted); }
.quotecard cite b { color: var(--ink); }
.darkquote { background: #242424; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; padding: 24px 28px; margin-top: 26px; }
.darkquote .q { font-size: clamp(18px, 1.6vw, 23px); font-weight: 800; color: #fff; margin: 0 0 12px; }
.darkquote cite { font-style: normal; font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, 0.6); }
.darkquote cite b { color: rgba(255, 255, 255, 0.9); }
.lunamark { height: 26px; width: auto; margin-bottom: 22px; display: block; }

/* ---------- results (impact) ---------- */
.impact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.resultcards { display: flex; flex-direction: column; gap: 12px; }
.rcard { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 16px; padding: 18px 22px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); }
.rcard b { font-size: clamp(23px, 2.5vw, 34px); font-weight: 900; color: var(--gold); line-height: 1; min-width: 88px; font-variant-numeric: tabular-nums; }
.rcard strong { display: block; font-size: 16.5px; color: var(--ink); font-weight: 800; }
.rcard small { display: block; margin-top: 3px; font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.4; }

/* ---------- weekly chart ---------- */
.chartwrap { background: var(--panel); border-radius: 20px; padding: 16px 18px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); max-width: 560px; margin: 0 auto; }
.chart-context { color: rgba(255, 255, 255, 0.7); font-size: 15px; margin: 0 0 16px; max-width: 82ch; }
.weekly-chart { border-radius: 14px; background: #fff; opacity: 0; transform: translateY(20px); transition: opacity 500ms ease, transform 500ms ease; }
.weekly-chart.is-visible { opacity: 1; transform: translateY(0); }
.weekly-chart-canvas { overflow-x: auto; padding: 16px 12px 8px; }
.weekly-chart svg { display: block; width: 100%; height: auto; }
.weekly-title { font-size: 24px; font-weight: 900; }
.axis-label { font-size: 14px; font-weight: 850; }
.tick-label, .week-label { fill: #1d1d1d; font-size: 13px; font-weight: 800; }
.legend-text { fill: #1d1d1d; font-size: 12px; font-weight: 750; }
.target-label { fill: #3d4712; font-size: 13px; font-weight: 900; }
.chart-value { fill: #1d1d1d; font-size: 13px; font-weight: 900; pointer-events: none; }
.chart-readout { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border-top: 1px solid #e6e6e6; background: #e6e6e6; border-radius: 0 0 14px 14px; overflow: hidden; }
.readout-item { padding: 14px; background: #fff; }
.readout-item span { display: block; color: #686d64; font-size: 11px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.readout-item strong { display: block; margin-top: 3px; color: var(--ink); font-size: 16px; line-height: 1.1; }
.chart-takeaway { margin: 12px 0 0; color: rgba(255, 255, 255, 0.82); font-size: 13px; font-weight: 650; }
.chart-cue { color: var(--gold); font-weight: 800; }
.wk-line { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.wk-dot { stroke: #fff; stroke-width: 2; }
.wk-tip { opacity: 0.85; }
.weekly-steps { display: flex; width: max-content; margin: 0 auto 10px; }
.weekly-steps .seg { padding: 8px 18px; font-size: 13.5px; }

/* ---------- coverage ---------- */
.coverage-card { position: relative; width: min(100%, 560px); padding: 26px; border: 1px solid #d7dfcf; border-radius: 18px; background: #fbfcf8; box-shadow: var(--shadow); color: inherit; font: inherit; text-align: left; cursor: pointer; transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.coverage-card:hover, .coverage-card:focus-visible, .coverage-card.is-after { border-color: var(--gold); transform: translateY(-2px); }
.coverage-card > .coverage-label { display: block; color: var(--green); font-size: 17px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.coverage-card > .coverage-stat { display: block; margin: 6px 0 18px; color: var(--ink); font-size: 32px; font-weight: 900; }
.coverage-visual { display: grid; }
.coverage-visual .coverage-grid { grid-area: 1 / 1; transition: opacity 420ms ease, transform 420ms ease; }
.coverage-grid-after { opacity: 0; transform: scale(0.98); }
.coverage-card.is-after .coverage-grid-before { opacity: 0; transform: scale(0.98); }
.coverage-card.is-after .coverage-grid-after { opacity: 1; transform: scale(1); }
.coverage-action { margin-top: 18px; color: var(--ink); font-size: 17px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.coverage-action .tap { color: #f2b01e; font-weight: 900; }
.coverage-legend { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 16px; }
.coverage-legend span { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 700; }
.legend-swatch { display: inline-block; width: 12px; height: 12px; border-radius: 3px; background: #d7ddd1; }
.legend-swatch.is-sampled { background: var(--gold); }
.legend-swatch.is-balanced { background: var(--leaf); }
.legend-swatch.is-anomaly { background: var(--danger); }
.coverage-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 5px; padding: 10px; border-radius: 12px; background: #e8efe1; }
.coverage-cell { aspect-ratio: 1; border-radius: 5px; background: #d7ddd1; transform: scale(0.82); animation: cellIn 420ms ease-out forwards; animation-delay: var(--delay); }
.coverage-cell.is-sampled { background: var(--gold); }
.coverage-cell.is-balanced { background: var(--leaf); }
.coverage-cell.is-anomaly { background: var(--danger); }

/* ---------- segmented control + panels ---------- */
.segmented { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px; gap: 4px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); max-width: 100%; flex-wrap: wrap; }
.dark .segmented { background: #242424; border-color: #343434; }
.seg { border: none; background: transparent; font: inherit; font-weight: 800; font-size: 14px; color: var(--muted); padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: 0.18s; }
.dark .seg { color: rgba(255, 255, 255, 0.62); }
.seg:hover { color: var(--ink); }
.dark .seg:hover { color: #fff; }
.seg.active { background: var(--gold); color: #181818; }
.pbig { font-size: clamp(20px, 2vw, 27px); font-weight: 850; line-height: 1.15; margin: 0 0 10px; letter-spacing: -0.01em; }
.psub { margin: 0; color: var(--muted); font-size: 15px; max-width: 52ch; }
.dark .ipanel .pbig { color: #fff; }
.dark .ipanel .psub { color: rgba(255, 255, 255, 0.72); }
#insight-cadence { margin: 20px 0 14px; }
.ipanels { display: grid; }
.ipanel { grid-area: 1 / 1; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.ipanel.active { opacity: 1; pointer-events: auto; }

/* cadence dots (leading vs lagging) */
.cadence { display: flex; gap: 7px; margin: 2px 0 4px; flex-wrap: wrap; }
.cadence i { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); display: inline-block; transition: background 0.45s ease; }
.cadence i.on { background: var(--gold); }

/* crop-balance interactive bar */
.balancebar { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 6px; }
.bzone { position: relative; border: 1px solid var(--line); background: #fff; border-radius: 14px; padding: 18px 16px; cursor: pointer; text-align: center; font: inherit; transition: 0.18s; overflow: hidden; }
.bzone::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--z, #ccc); opacity: 0.9; transition: 0.18s; }
.bzone:hover { transform: translateY(-3px); }
.bzone .zt { font-size: 15px; font-weight: 850; color: var(--ink); display: block; }
.bzone .zr { font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 4px; display: block; font-variant-numeric: tabular-nums; }
.bzone.active { border-color: var(--z, #ccc); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.09); transform: translateY(-3px); }
.bzone.active::before { opacity: 1; height: 6px; }
.zdot { display: block; width: 12px; height: 12px; border-radius: 50%; background: var(--z); margin: 0 auto 8px; }
.balancebar.vertical { grid-template-columns: 1fr; gap: 6px; margin-top: 14px; }
.balancebar.vertical .bzone { display: flex; align-items: center; gap: 14px; text-align: left; padding: 9px 16px; }
.balancebar.vertical .bzone::before { left: 0; top: 0; bottom: 0; right: auto; width: 4px; height: auto; opacity: 1; }
.balancebar.vertical .zdot { margin: 0; flex: none; }
.balancebar.vertical .ztext { display: flex; flex-direction: column; }
.balancebar.vertical .zt { margin: 0; font-size: 16px; }
.balancebar.vertical .zr { margin-top: 3px; color: var(--muted); font-size: 13.5px; }
.bzone[data-zone="gen"] { --z: #c98a3f; }
.bzone[data-zone="tgt"] { --z: #828f24; }
.bzone[data-zone="veg"] { --z: #c95f3f; }

/* ---------- spatial bar chart ---------- */
.chartcard { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 16px 20px; box-shadow: var(--shadow); max-width: 820px; }
.chart-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 6px; flex-wrap: wrap; }
.chart-readout2 { font-size: 14.5px; font-weight: 800; color: var(--ink); }
.chart-readout2 b { color: var(--gold); }
#spatial-chart svg { display: block; width: 100%; height: auto; }
.s-band { fill: #cfe5d6; }
.s-grid { stroke: #eee; }
.s-axis { fill: #8a8f84; font-size: 12px; font-weight: 700; }
.s-comp { fill: #40470e; font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; }
.s-val { fill: #1d1d1d; font-size: 12px; font-weight: 800; }
.sbar { transition: opacity 0.35s ease; }

/* problem list (challenge) */
.problist { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; max-width: 48ch; }
.problist li { position: relative; padding-left: 26px; font-size: 15.5px; color: var(--muted); line-height: 1.45; }
.problist li strong { color: var(--ink); font-weight: 800; }
.problist li::before { content: ""; position: absolute; left: 0; top: 7px; width: 11px; height: 11px; border-radius: 3px; background: var(--gold); }

/* grower profile */
.profile .inner.cols { gap: 64px; align-items: center; }
.profile .colhead h2 { font-size: clamp(30px, 3.9vw, 54px); line-height: 1.04; }
.profile-body p { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; margin-bottom: 1.1em; }

/* challenge */
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; margin-top: 38px; }
.eyebrow-sm { font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 800; }

/* weekly chart two-column */
.weekly-cols { grid-template-columns: 0.82fr 1.18fr; gap: 40px; align-items: center; }
.weekly-cols .chart-context { margin: 0 0 18px; }
.weekly-cols .weekly-steps { margin: 0 0 18px; }
.weekly-cols .chartwrap { max-width: none; margin: 0; padding: 16px 18px; }
.weekly-cols .chart-readout { grid-template-columns: 1fr 1fr; background: #333; border: 1px solid #333; border-radius: 12px; overflow: hidden; margin-top: 0; }
.weekly-cols .readout-item { background: #1c1c1c; }
.weekly-cols .readout-item span { color: #8a8f84; }
.weekly-cols .readout-item strong { color: #fff; }
.weekly-cols .chart-takeaway { margin-top: 16px; }

/* combined crop-balance + spatial */
.combined-cols { grid-template-columns: 0.82fr 1.18fr; gap: 38px; align-items: start; }
.combined .colhead h2 { font-size: clamp(24px, 2.7vw, 40px); margin-bottom: 0.35em; }
.combined-cols .chartcard { max-width: none; margin: 0; padding: 14px 18px; }
.combined-quote { margin: 0 0 16px; }
.combined .quotecard { padding: 16px 20px; }
.combined .quotecard .q { font-size: clamp(15px, 1.2vw, 17px); margin-bottom: 12px; }

/* ---------- closing ---------- */
.closing { padding-bottom: 168px; }
.closing .inner { text-align: left; }
.closing img.iu { height: 48px; margin-bottom: 34px; display: block; }
.closing h2 { color: #fff; max-width: 18ch; }
.closing h2 .luna-inline { height: 0.74em; width: auto; display: inline-block; vertical-align: -0.01em; margin: 0 0.16em 0 0.28em; }
.closing .links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.closing .site-footer { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; align-items: center; gap: 16px 28px; flex-wrap: wrap; padding: 20px 56px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.closing .site-footer .foot-logo { height: 25px; width: auto; opacity: 0.85; flex: none; }
.closing .site-footer .foot-copy { color: rgba(255, 255, 255, 0.42); font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 600; }
.closing .site-footer .foot-copy b { color: var(--gold); font-weight: 700; }
.closing .contact { display: flex; gap: 12px 28px; flex-wrap: wrap; font-size: 14px; }
.closing .contact a { position: relative; display: inline-flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, 0.72); text-decoration: none; font-weight: 600; letter-spacing: 0.01em; transition: color 0.2s ease; }
.closing .contact a svg { width: 16px; height: 16px; flex: none; opacity: 0.75; transition: opacity 0.2s ease; }
.closing .contact a:hover { color: var(--gold); }
.closing .contact a:hover svg { opacity: 1; }

/* ---------- keyframes ---------- */
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes pointIn { from { transform: scale(0.25); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes cellIn { to { transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 72px 24px; }
  .cols, .cols.text-first, .impact-layout, .challenge-grid, .weekly-cols, .combined-cols { grid-template-columns: 1fr; gap: 30px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric { border-bottom: 1px solid var(--line); }
  .site-header .brand .t { display: none; }
  .closing { padding-bottom: 208px; }
  .closing .site-footer { justify-content: center; text-align: center; padding: 18px 24px; }
}
@media (max-width: 560px) {
  .metrics { grid-template-columns: 1fr; }
  .metric { min-height: 134px; border-right: 0; }
  .weekly-chart svg { min-width: 640px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .weekly-chart { opacity: 1; transform: none; }
  .coverage-cell { transform: none; animation: none; }
  * { scroll-behavior: auto; }
}
