/* Repro It landing page, numbered sections.
   Loaded after styles.css: the tokens, nav, hero, graph, and section shells
   live there, every numbered section and the responsive rules live here. */

/* ---------------- 01 distinction split ---------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; margin-top: clamp(26px, 6vh, 88px); }

.split-rule { border-top: 1px solid var(--p-rule); }

.split-a {
  padding: clamp(18px, 3.4vh, 34px) var(--gutter) clamp(20px, 4vh, 40px) 0;
  border-right: 1px solid var(--p-rule);
}
.split-b { padding: clamp(18px, 3.4vh, 34px) 0 clamp(20px, 4vh, 40px) var(--gutter); }

.rows { display: flex; flex-direction: column; }

.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--p-line);
}

.row:last-child { border-bottom: none; }

.row-a { font-size: 17px; }
.row-a.dim { color: var(--p-body); }
.row-a.mono { font-size: 15px; }

.row-b { font-family: var(--mono); font-size: 14px; color: var(--p-dim); white-space: nowrap; }
.row-b.hot { color: var(--accent-deep); }

.note {
  margin-top: clamp(16px, 3.4vh, 34px);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(20, 20, 22, 0.55);
  max-width: 420px;
}

.note.strong { color: rgba(20, 20, 22, 0.7); }

.ink .note { color: rgba(239, 234, 224, 0.72); }
.ink .note.strong { color: rgba(239, 234, 224, 0.72); }

/* ---------------- 02 anatomy ---------------- */

.quad { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(26px, 5.6vh, 72px); }

.prop { border-top: 1px solid rgba(20, 20, 22, 0.28); padding: 26px 34px 0; }
.prop:first-child { padding-left: 0; }
.prop:last-child { padding-right: 0; }

.prop-n {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin-bottom: 22px;
}

.prop h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.prop p { font-size: 15px; line-height: 1.6; color: var(--p-body); margin-bottom: 22px; }

.prop-ex { font-family: var(--mono); font-size: 14px; line-height: 1.9; color: var(--p-dim); }

/* ---------------- 03 one model matrix ---------------- */

.matrix {
  display: grid;
  grid-template-columns: 176px repeat(4, 1fr);
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  border-top: 1px solid var(--i-rule);
}

.sys { display: contents; }

.m-head { padding: 22px 26px 20px; }
.sys-labels .m-head, .sys:nth-child(2) .m-head { padding-left: 0; }
.sys:last-child .m-head { padding-right: 0; }

.m-name {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 8px;
}

.m-scope {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.m-cell {
  padding: 24px 26px 26px;
  border-top: 1px solid rgba(239, 234, 224, 0.16);
  font-size: 15px;
  line-height: 1.5;
  color: var(--paper);
}

.m-cell.mono { font-family: var(--mono); font-size: 14px; line-height: 1.6; }

.m-key {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-left: 0;
  padding-right: 24px;
}

.sys:nth-child(2) .m-cell { padding-left: 0; }
.sys:last-child .m-cell { padding-right: 0; }

.m-seal { border-top: 1px solid var(--i-rule); padding-bottom: 0; color: var(--accent); }
.m-key.m-seal { color: var(--i-dim); }

/* a closing line set in mono, used to sign off a section */
.mono-foot {
  margin-top: clamp(16px, 3.4vh, 34px);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--i-dim);
  max-width: 900px;
}

/* ---------------- 04 closed loop ---------------- */

.steps { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: clamp(26px, 5.8vh, 76px); }

.step { border-top: 1px solid var(--i-rule); padding: 0 26px 0 0; position: relative; }
.step:not(:first-child) { padding-left: 26px; }
.step:last-child { padding-right: 0; }

.step-tick {
  width: 7px;
  height: 7px;
  background: rgba(239, 234, 224, 0.62);
  position: absolute;
  top: -4px;
  left: 0;
}

/* Steps after the first are indented, so the dot has to move with the text
   it marks rather than staying pinned to the column edge. */
.step:not(:first-child) .step-tick { left: 26px; }

.step.hot .step-tick { background: var(--accent); }

.step-n {
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--i-dim);
}

.step-t { margin-top: 14px; font-family: var(--serif); font-size: 24px; font-weight: 300; }

.step p { margin-top: 12px; font-size: 14.5px; line-height: 1.6; color: rgba(239, 234, 224, 0.70); }

.verdicts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(24px, 5.6vh, 88px);
  border: 1px solid rgba(239, 234, 224, 0.18);
}

.verdict { padding: clamp(22px, 3.6vh, 38px) 44px; }
.verdict:first-child { border-right: 1px solid rgba(239, 234, 224, 0.18); }

.verdict .kicker { font-size: 14px; margin-bottom: 24px; }

.verdict-id { font-family: var(--mono); font-size: 20px; color: var(--paper); margin-bottom: 22px; }

.verdict-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.tag {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  color: var(--ink);
}

.tag-accent { background: var(--accent); }
.tag-paper { background: var(--paper); }

.tag-note { font-family: var(--mono); font-size: 14px; color: var(--i-mut); }

.loop-foot {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(239, 234, 224, 0.6);
  max-width: 640px;
  margin-top: 30px;
}

/* ---------------- 05 the guarantee ledger ---------------- */

/* The ledger card. Sits on paper, so it is drawn the way the evidence panels
   are: a hairline box over a barely tinted surface, no shadow. */
.ledger {
  margin-top: clamp(24px, 4.6vh, 56px);
  border: 1px solid rgba(20, 20, 22, 0.22);
  background: rgba(20, 20, 22, 0.03);
}

.led-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--p-line);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--p-dim);
}

.led-commit { letter-spacing: 0.06em; text-transform: none; color: rgba(20, 20, 22, 0.60); }
.led-commit span { color: var(--carbon); }

.led-meter {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 3.4vw, 52px);
  align-items: center;
  padding: clamp(16px, 2.8vh, 26px) 20px;
  border-bottom: 1px solid var(--p-line);
}

.led-count { display: flex; align-items: baseline; gap: 16px; }

/* tabular figures: the counter must not shift the label when it ticks over */
.led-num {
  font-family: var(--serif);
  font-weight: 200;
  font-variant-numeric: tabular-nums;
  font-size: clamp(48px, 4.2vw, 64px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--carbon);
}

.led-num-label {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--p-dim);
  max-width: 130px;
}

.led-ratchet { display: flex; align-items: flex-end; gap: 3px; height: 34px; }

.led-tick {
  flex: 1 1 0;
  height: 11px;
  background: rgba(20, 20, 22, 0.14);
  transition: height 320ms ease, background 320ms ease;
}

.led-tick.on { height: 30px; background: rgba(20, 20, 22, 0.30); }
.led-tick.lead { height: 34px; background: var(--accent-deep); }

.led-row {
  display: grid;
  grid-template-columns: 34px 140px minmax(0, 1fr) 172px 92px;
  gap: 18px;
  align-items: baseline;
  padding: 10px 20px;
  border-bottom: 1px solid var(--p-line);
  transition: opacity 320ms ease, background 320ms ease;
}

.led-row.pending { opacity: 0.42; }
.led-row.running { background: rgba(210, 121, 63, 0.1); }

.led-n, .led-id, .led-when { font-family: var(--mono); font-size: 14px; }
.led-n { letter-spacing: 0.1em; color: rgba(20, 20, 22, 0.56); }
.led-id { color: var(--carbon); }
.led-when { color: rgba(20, 20, 22, 0.60); white-space: nowrap; }
.led-oracle { font-size: 17px; line-height: 1.45; color: var(--p-body); }

.led-status {
  justify-self: start;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 320ms ease, color 320ms ease, border-color 320ms ease;
}

.led-status.held { color: var(--p-dim); border-color: rgba(20, 20, 22, 0.22); }
.led-status.running { background: var(--accent); color: var(--ink); }
.led-status.sealed { background: var(--carbon); color: var(--paper); }

.led-earlier {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(20, 20, 22, 0.60);
}

.led-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 11px 22px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.led-state { display: flex; align-items: center; gap: 9px; color: var(--carbon); }
.led-dot { width: 5px; height: 5px; flex: none; display: block; background: var(--accent-deep); }
.led-note { color: rgba(20, 20, 22, 0.60); text-align: right; }

.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(14px, 2.2vh, 26px);
  border-top: 1px solid var(--p-rule);
}

.point { padding: 18px 40px 0; border-left: 1px solid var(--p-line); }
.point:first-child { padding-left: 0; border-left: none; }
.point:last-child { padding-right: 0; }

.point-k {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin-bottom: 16px;
}

.point p { font-size: 15px; line-height: 1.6; color: rgba(20, 20, 22, 0.65); }

/* ---------------- 06 models and memory ---------------- */

.memory {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: start;
  margin-top: clamp(26px, 5.6vh, 76px);
}

.branches { display: flex; flex-direction: column; border-top: 1px solid var(--i-rule); }

.branch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--i-line);
}

.branch:last-child { border-bottom: none; }

.b-name { font-family: var(--mono); font-size: 14px; color: var(--paper); }
.b-what { font-size: 14px; color: rgba(239, 234, 224, 0.72); }

/* the spine carries the one claim that joins the two columns: it happens on
   every commit, not on the commits someone remembered to check */
.memory-spine {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 44px;
}

.spine-rule { width: 1px; flex: 1 1 auto; min-height: 24px; display: block; background: rgba(239, 234, 224, 0.2); }

.spine-label {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--accent);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ---------------- panels and terminals ---------------- */

.panel { border: 1px solid rgba(20, 20, 22, 0.22); background: rgba(20, 20, 22, 0.03); }

.panel-ink { border-color: rgba(20, 20, 22, 0.28); background: var(--ink); }

.ink .panel-ink { border-color: rgba(239, 234, 224, 0.22); }

.term {
  padding: clamp(12px, 2.2vh, 20px) 18px clamp(14px, 2.4vh, 22px);
  font-family: var(--mono);
  font-size: clamp(12px, 1.6vh, 13.5px);
  line-height: clamp(1.7, 2.4vh, 2.05);
  color: rgba(239, 234, 224, 0.85);
}

.term + .term { border-top: 1px solid rgba(239, 234, 224, 0.16); }

.t-accent { color: var(--accent); }
.t-paper { color: var(--paper); }
.t-mut { color: rgba(239, 234, 224, 0.70); }

/* ---------------- 07 trust ---------------- */

.trust-grid {
  display: grid;
  grid-template-columns: minmax(300px, 440px) 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.ruled { border-top: 1px solid var(--p-rule); padding-top: clamp(24px, 4.6vh, 56px); }

.trust-grid .eyebrow { margin-bottom: 26px; }

.trust-grid .display.sm { font-size: clamp(28px, min(3.8vw, 5.6vh), 52px); }

.trust-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.6vw, 56px); }

.trust-cols h4 { font-size: 19px; font-weight: 500; margin-bottom: 16px; }

.trust-cols p { font-size: 16px; line-height: 1.65; color: var(--p-body); margin-bottom: 20px; }

.muted { font-size: 14px; color: rgba(20, 20, 22, 0.4); }

/* ---------------- 08 pricing ---------------- */

.plans { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--i-rule); }

.plan {
  padding: clamp(20px, 3.2vh, 32px) 26px clamp(20px, 3.4vh, 34px);
  border-right: 1px solid var(--i-line);
  display: flex;
  flex-direction: column;
}

.plan:first-child { padding-left: 0; }
.plan:last-child { border-right: none; padding-right: 0; }

.plan-pop { box-shadow: inset 0 2px 0 0 var(--accent); }

.plan h4 {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.plan-price {
  font-family: var(--serif);
  font-weight: 200;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin: clamp(10px, 1.8vh, 18px) 0 clamp(10px, 1.6vh, 16px);
}

.plan-price small {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--i-dim);
}

.plan-sub { font-size: 14px; line-height: 1.6; color: var(--i-mut); margin-bottom: clamp(12px, 2vh, 20px); }

.plan ul {
  list-style: none;
  margin: 0 0 clamp(16px, 2.8vh, 26px);
  padding: 0;
  flex: 1;
  border-top: 1px solid var(--i-line);
}

.plan li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--i-body);
  padding: clamp(7px, 1.2vh, 11px) 0;
  border-bottom: 1px solid var(--i-line);
}

/* ---------------- final CTA + footer ---------------- */



.final-lede {
  margin-top: clamp(22px, 4vh, 44px);
  font-size: clamp(15px, 2vh, 18px);
  line-height: 1.55;
  color: rgba(239, 234, 224, 0.68);
  max-width: 600px;
}

.final-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(26px, 5.6vh, 60px);
  flex-wrap: wrap;
}

.final-cta .btn { padding: 17px 30px; }

.final-cta .fineprint { margin: 0 0 0 16px; font-size: 14px; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(40px, 10vh, 130px);
  padding: 28px 0 0;
  border-top: 1px solid var(--i-line);
}

footer .brand { font-size: 19px; }
footer .brand .mark { width: 17px; height: 17px; }

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--i-mut);
}

.foot-links a { transition: color 200ms ease; }
.foot-links a:hover { color: var(--paper); }

/* ---------------- responsive ---------------- */

@media (max-width: 1180px) {
  :root { --pad: 40px; --gutter: 36px; }

  .plans { grid-template-columns: repeat(3, 1fr); }
  .plan { border-bottom: 1px solid var(--i-line); }
  .plan:nth-child(3n) { border-right: none; padding-right: 0; }
  .plan:nth-child(3n+1) { padding-left: 0; }

  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .step:nth-child(3n) { padding-right: 0; }
  .step:nth-child(3n+1) { padding-left: 0; padding-right: 26px; }

  .quad { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .prop:nth-child(odd) { padding-left: 0; }
  .prop:nth-child(even) { padding-right: 0; }

  .point { padding: 24px 26px 0; }
  .led-row { grid-template-columns: 28px 120px minmax(0, 1fr) 140px 84px; gap: 12px; }
}

@media (max-width: 900px) {
  :root { --pad: 26px; --gutter: 0px; }

  /* a phone cannot hold a full section at a readable size: fall back to
     ordinary flow rather than shrinking the type into nothing */
  html { scroll-snap-type: none; }

  .hero, .paper, .ink {
    min-height: 0;
    display: block;
    scroll-snap-align: none;
    overflow: visible;
  }

  #nav { padding: 20px var(--pad); }
  .nav-links { display: none; }
  .nav-actions { gap: 18px; }

  /* with the section links gone the three-column grid keeps two equal tracks,
     which leaves the actions floating mid-width: hold them to the right edge */
  .nav-inner { display: flex; justify-content: space-between; gap: 16px; }

  .hero-head {
    grid-template-columns: 1fr;
    gap: clamp(18px, 3vh, 26px);
    padding: 58px var(--pad) 0;
  }

  .hero-head h1 { font-size: clamp(38px, 12vw, 52px); line-height: 0.98; }

  .hero-intro { padding-bottom: 0; }

  .hero-body { grid-template-columns: 1fr; border-top: none; }
  .hero-copy { border-right: none; padding: 28px var(--pad) 42px; gap: 26px; }
  .hero-legend { display: none; }
  .sub { display: none; }
  /* the ledger promise is the new half of the headline, so it stays on phones */
  .sub.sub-keep { display: block; }

  .hero-graph { padding: 24px 22px; border-top: 1px solid var(--i-line); min-height: 0; }
  .graph { height: 1180px; min-height: 0; }

  .paper, .ink { padding: 86px 0; }

  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .sec-aside { max-width: none; }

  .eyebrow-row { flex-direction: column; gap: 0; }
  .eyebrow-row .eyebrow.plain { display: none; }

  .display.xl { margin-top: 28px; }

  .split { grid-template-columns: 1fr; margin-top: 40px; border-top: none; }
  .split-a { padding: 0 0 40px; border-right: none; }
  .split-b { padding: 0; }
  .note { max-width: none; }

  .quad { grid-template-columns: 1fr; row-gap: 32px; margin-top: 40px; }
  .prop { padding: 20px 0 0; }
  .prop h3 { font-size: 27px; }

  /* the matrix collapses into one card per system */
  .matrix { display: flex; flex-direction: column; gap: 34px; border-top: none; }
  .sys { display: block; border-top: 1px solid var(--i-rule); padding-top: 20px; }
  .sys-labels { display: none; }

  .m-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 16px;
  }

  .m-name { margin-bottom: 0; font-size: 24px; }

  .m-cell {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 14px;
    padding: 0 0 9px;
    border-top: none;
    font-size: 14px;
    line-height: 1.45;
  }

  .m-cell::before {
    content: attr(data-k);
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--i-dim);
    padding-top: 3px;
  }

  .m-cell.mono { font-size: 14px; }
  .m-seal { border-top: none; padding-top: 7px; }

  .steps { grid-template-columns: 1fr; margin-top: 40px; row-gap: 0; }

  .step, .step:not(:first-child), .step:nth-child(3n), .step:nth-child(3n+1) {
    padding: 0 0 16px;
    border-top: 1px solid rgba(239, 234, 224, 0.2);
  }

  .step-tick { display: none; }
  .step-n { padding-top: 16px; }
  .step-t { margin-top: 8px; font-size: 20px; }

  .verdicts { grid-template-columns: 1fr; margin-top: 36px; }
  .verdict { padding: 26px 24px; }
  .verdict:first-child { border-right: none; border-bottom: 1px solid rgba(239, 234, 224, 0.18); }

  /* the terminal is monospace: it has to be sized to the narrow column */
  .term { padding: 18px 16px 20px; font-size: 14px; line-height: 2; }

  /* the ledger row loses its columns and becomes a stacked entry, with the
     status chip held beside it so the sweep is still legible */
  .led-head { padding: 12px 14px; font-size: 12.5px; letter-spacing: 0.1em; }
  .led-meter { grid-template-columns: 1fr; gap: 20px; padding: 20px 14px; }
  .led-num-label { max-width: none; }
  /* the status column is fixed: an auto column resizes with RUNNING vs HELD,
     which rewraps the oracle beside it and makes the card jump every tick */
  .led-row { grid-template-columns: minmax(0, 1fr) 96px; gap: 4px 12px; padding: 12px 14px; }
  .led-n { display: none; }
  .led-id { grid-area: 1 / 1; }
  /* two lines held: the oracle lines are one or two lines long, and the rows
     scroll, so an unreserved line moves everything under the card */
  .led-oracle { grid-area: 2 / 1; font-size: 14.5px; min-height: 2.9em; }
  .led-when { grid-area: 3 / 1; }
  .led-status { grid-area: 1 / 2 / 4 / 3; align-self: center; }
  .led-earlier { padding: 12px 14px; font-size: 14px; }
  .led-foot { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px; font-size: 14px; }
  /* the phase line is one or two lines: hold two so the card does not resize */
  .led-state { align-items: flex-start; min-height: 36px; }
  .led-dot { margin-top: 7px; }
  .led-note { text-align: left; }

  .points { grid-template-columns: 1fr; row-gap: 26px; margin-top: 34px; }
  .point, .point:first-child { padding: 26px 0 0; border-left: none; }
  .point:not(:first-child) { border-top: 1px solid var(--p-line); }

  .memory { grid-template-columns: 1fr; row-gap: 40px; margin-top: 34px; }
  .memory-spine { display: none; }
  .branch { grid-template-columns: 1fr; gap: 3px; padding: 13px 0; }

  .trust-grid { grid-template-columns: 1fr; gap: 34px; }
  .trust-cols { grid-template-columns: 1fr; gap: 26px; }

  .plans { grid-template-columns: 1fr; }

  .plan, .plan:nth-child(3n), .plan:nth-child(3n+1) {
    padding: 26px 0;
    border-right: none;
    border-bottom: 1px solid var(--i-line);
  }

  .final { padding-top: 90px; }
  .final-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .final-cta .btn { padding: 16px; }
  .final-cta .fineprint { margin: 8px 0 0; }

  footer { margin-top: 56px; padding-top: 22px; }
  .foot-links { gap: 18px; font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 1ms !important; animation-duration: 1ms !important; }
}
