/* Bounded Focus, marketing site v2, round 2.
   Concept: an editorial ledger of your attention.
   Paper, ink, ruled lines, two brand accents. No blobs, no glass, no filler.
   Type: Fraunces (display + numerals), Newsreader (text), Archivo (labels/UI). */

:root {
  --paper: #f6f1e6;
  --paper-deep: #efe7d6;
  --ink: #21324a;
  --ink-soft: #54647c;
  --steel: #3d5a80;
  --orange: #ee6c4d;
  --orange-deep: #d95535;
  --night: #101b2e;
  --night-soft: #1a2740;
  --rule: rgba(33, 50, 74, 0.16);
  --rule-strong: rgba(33, 50, 74, 0.4);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-text: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-ui: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --size-hero: clamp(2.5rem, 1.55rem + 4.4vi, 4.9rem);
  --size-h2: clamp(1.9rem, 1.3rem + 2.6vi, 3.4rem);
  --size-h3: clamp(1.3rem, 1.1rem + 0.9vi, 1.75rem);
  --size-body: clamp(1.05rem, 1rem + 0.25vi, 1.2rem);
  --size-big-number: clamp(4rem, 2.4rem + 8vi, 8.5rem);

  --wrap: min(72rem, 92vw);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-text);
  font-size: var(--size-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* faint paper grain, procedural, no image file */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

main, header.site-head, footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { width: var(--wrap); margin-inline: auto; }

::selection { background: var(--orange); color: #fff; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.03;
  text-wrap: balance;
}

h1 { font-weight: 620; letter-spacing: -0.028em; font-variation-settings: "opsz" 144; }
h2 { font-weight: 600; letter-spacing: -0.022em; font-variation-settings: "opsz" 96; }
h3 { font-weight: 560; letter-spacing: -0.012em; font-variation-settings: "opsz" 40; }

p { max-width: 56ch; }

/* UI voice: labels, nav, buttons, captions, form controls */
.site-nav, .head-cta, .kicker, .sec-mark .label, .badge-lines, .badge-play, .badge-appstore,
figure.shot figcaption, .calc-row label, .result .caption, .life-caption,
.calc-foot, .hero-note, footer, .compare th, .day-row .day-label, .day-scale, summary {
  font-family: var(--font-ui);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- header ---------- */

.site-head {
  border-bottom: 1px solid var(--rule);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  font-family: var(--font-ui);
}

.brand img { width: 30px; height: 30px; border-radius: 8px; }

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding-block: 0.2rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover { color: var(--ink); border-bottom-color: var(--orange); }

.head-cta {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--paper);
  background: var(--ink);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  white-space: nowrap;
}

.head-cta:hover { background: var(--steel); }

@media (max-width: 52rem) {
  .site-nav { display: none; }
  .head-cta { margin-left: auto; }
}

/* ---------- shared section chrome ---------- */

section { padding-block: clamp(4rem, 3rem + 4vi, 7rem); }

.sec-mark {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  position: relative;
  padding-top: 0.85rem;
  margin-bottom: clamp(2rem, 1.5rem + 2vi, 3.5rem);
  color: var(--ink);
}

/* the ruled line above every section, drawn in when it enters the page */
.sec-mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transform-origin: left center;
}

.sec-mark .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--orange-deep);
  font-variant-numeric: tabular-nums;
  min-width: 2.2ch;
}

.sec-mark .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .sec-mark::before { transform: scaleX(0); transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
  .sec-mark.in::before { transform: scaleX(1); }
}

h2 { font-size: var(--size-h2); margin-bottom: 1.2rem; max-width: 24ch; }

.lede {
  font-size: clamp(1.15rem, 1.05rem + 0.5vi, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* painted underline accent */
.paint {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 9' preserveAspectRatio='none'%3E%3Cpath d='M2 6.5C25 3 55 2.5 118 5.2' fill='none' stroke='%23ee6c4d' stroke-width='3.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 96%;
  background-size: 100% 0.34em;
  padding-bottom: 0.08em;
}

@media (prefers-reduced-motion: no-preference) {
  .hero .paint {
    background-size: 0% 0.34em;
    animation: paintIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
  }
  @keyframes paintIn { to { background-size: 100% 0.34em; } }
}

/* ---------- hero ---------- */

.hero { padding-block: clamp(3rem, 2rem + 4vi, 6rem) clamp(3.5rem, 2.5rem + 4vi, 6.5rem); }

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 1rem + 4vi, 5rem);
  align-items: center;
}

.kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.4rem;
}

.hero h1 { font-size: var(--size-hero); margin-bottom: 1.5rem; }

.hero .lede { margin-bottom: 2.2rem; }

.store-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.badge-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 1.2rem;
  border: 1.5px solid transparent;
  box-sizing: border-box;
  min-width: 168px;
  border-radius: 12px;
  line-height: 1.15;
  transition: transform 0.15s ease, background 0.15s ease;
}

.badge-appstore:hover { background: var(--steel); transform: translateY(-2px); }

.badge-appstore svg { width: 22px; height: 22px; fill: currentColor; flex: none; }

.badge-lines { display: flex; flex-direction: column; }
.badge-small { font-size: 0.66rem; opacity: 0.75; letter-spacing: 0.02em; }
.badge-big { font-size: 1rem; font-weight: 600; }

.badge-play {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1.5px solid var(--rule-strong);
  box-sizing: border-box;
  min-width: 168px;
  color: var(--ink-soft);
  padding: 0.65rem 1.2rem;
  border-radius: 12px;
  line-height: 1.15;
}

.badge-play svg { width: 19px; height: 19px; fill: currentColor; flex: none; }

a.badge-play {
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transition: transform 0.15s ease, background 0.15s ease;
}
a.badge-play:hover { background: var(--steel); border-color: var(--steel); transform: translateY(-2px); }
a.badge-play svg { width: 22px; height: 22px; }

.hero-note { margin-top: 1.3rem; font-size: 0.85rem; color: var(--ink-soft); }

/* phone frames */
.phone {
  border: 3px solid var(--ink);
  border-radius: clamp(30px, 5vi, 46px);
  overflow: hidden;
  background: var(--night);
  box-shadow: 10px 12px 0 rgba(33, 50, 74, 0.14);
  max-width: 340px;
}

.phone img { width: 100%; height: auto; }

figure.shot { display: flex; flex-direction: column; align-items: center; gap: 0.95rem; }

figure.shot figcaption {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
  max-width: 34ch;
}

figure.shot figcaption strong { color: var(--ink); }

@media (max-width: 52rem) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { justify-self: center; }
  .phone { max-width: 280px; }
}

/* ---------- 01 the math ---------- */

.math-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 1.5rem + 4vi, 5rem);
  align-items: start;
}

.calc {
  border: 2px solid var(--ink);
  background: var(--paper-deep);
  padding: clamp(1.4rem, 1rem + 2vi, 2.5rem);
  box-shadow: 10px 12px 0 rgba(33, 50, 74, 0.14);
}

.calc-row { margin-bottom: 1.8rem; }

.calc-row label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.calc-row output {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 560;
  color: var(--steel);
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 30px;
  background: transparent;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: var(--rule-strong);
  border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--ink);
  margin-top: -11px;
}

input[type="range"]::-moz-range-track {
  height: 4px;
  background: var(--rule-strong);
  border-radius: 2px;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--ink);
}

input[type="range"]:focus-visible { outline: 3px solid var(--steel); outline-offset: 4px; }

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--rule-strong);
  padding-top: 1.6rem;
}

.result .figure {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.6rem, 1.8rem + 3.6vi, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 144;
}

.result.lost .figure { color: var(--orange-deep); }
.result.back .figure { color: var(--steel); }

.result .caption { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.45rem; max-width: 20ch; }

.life-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.7rem;
}

.life-grid i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.life-grid i.spent { background: var(--orange); border-color: var(--orange-deep); }

.life-caption { font-size: 0.84rem; color: var(--ink-soft); margin-top: 0.8rem; }

.calc-foot { font-size: 0.8rem; color: var(--ink-soft); margin-top: 1.4rem; border-top: 1px dashed var(--rule-strong); padding-top: 0.9rem; }

.math-aside { display: flex; flex-direction: column; gap: 1.2rem; align-items: center; }

@media (max-width: 52rem) {
  .math-grid { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
}

/* ---------- 02 the block ---------- */

.block-sec { background: var(--paper-deep); border-block: 1px solid var(--rule); }
.block-sec .calc { background: var(--paper); }

.block-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 1.5rem + 4vi, 5rem);
  align-items: start;
}

.holds { list-style: none; border-top: 1px solid var(--rule-strong); margin-top: 2.2rem; }

.holds li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 1.2rem;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--rule-strong);
}

.holds .try { font-weight: 600; font-family: var(--font-ui); font-size: 0.98rem; }

.holds .try::before {
  content: "→ ";
  color: var(--orange-deep);
}

.holds .answer { color: var(--ink-soft); }

@media (max-width: 52rem) {
  .block-grid { grid-template-columns: 1fr; }
  .block-grid .shot { order: 2; }
  .holds li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ---------- 03 the comparison ledger ---------- */

.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.compare th, .compare td {
  text-align: left;
  vertical-align: top;
  padding: 1.05rem 1.4rem 1.05rem 0;
  border-bottom: 1px solid var(--rule-strong);
}

.compare thead th {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.7rem;
}

.compare thead th.col-willpower { color: var(--ink-soft); }
.compare thead th.col-bounded { color: var(--orange-deep); }

.compare .row-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  width: 24%;
  color: var(--ink);
}

.compare td { color: var(--ink-soft); width: 38%; }
.compare td.cell-bounded { color: var(--ink); }

@media (max-width: 52rem) {
  .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100%; }
  .compare thead { display: none; }
  .compare tr { border-bottom: 2px solid var(--ink); padding-block: 0.9rem; }
  .compare td, .compare .row-label { border: none; padding: 0.25rem 0; width: 100%; }
  .compare td::before {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 0.5rem;
  }
  .compare td.cell-willpower::before { content: "A willpower app"; }
  .compare td.cell-bounded::before { content: "Bounded Focus"; color: var(--orange-deep); }
}

/* ---------- 04 the friction ---------- */

.friction-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 1.5rem + 4vi, 5rem);
  align-items: center;
}

.gate-steps { list-style: none; border-top: 1px solid var(--rule-strong); margin-top: 2rem; }

.gate-steps li {
  padding-block: 1rem;
  border-bottom: 1px solid var(--rule-strong);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.gate-steps .tick {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange-deep);
  flex: none;
  min-width: 3.4ch;
}

.gate-steps li span:last-child { color: var(--ink-soft); }
.gate-steps strong { color: var(--ink); font-weight: 600; }

/* breathing gate demo */
.breath {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: clamp(2rem, 1.5rem + 2vi, 3.5rem) clamp(1.5rem, 1rem + 2vi, 3rem);
  border: 2px solid var(--ink);
  background: var(--paper-deep);
  box-shadow: 10px 12px 0 rgba(33, 50, 74, 0.14);
}

.breath-ring {
  width: 130px;
  height: 130px;
  flex: none;
  border-radius: 50%;
  border: 3px solid var(--steel);
  position: relative;
}

.breath-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--steel);
  opacity: 0.85;
}

.breath-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--steel);
  text-align: center;
}

.breath-note { font-family: var(--font-ui); font-size: 0.84rem; color: var(--ink-soft); text-align: center; max-width: 30ch; }

@media (prefers-reduced-motion: no-preference) {
  .breath-ring::after { animation: breathe 8s ease-in-out infinite; }
  @keyframes breathe {
    0%, 100% { transform: scale(0.55); }
    50% { transform: scale(1); }
  }
}

@media (max-width: 52rem) {
  .friction-grid { grid-template-columns: 1fr; }
}

/* ---------- 05 the rhythm ---------- */

.rhythm-sec { background: var(--paper-deep); border-block: 1px solid var(--rule); }

.rhythm-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 1.5rem + 4vi, 5rem);
  align-items: center;
}

.day-ledger { margin-top: 2.4rem; max-width: 34rem; }

.day-row { margin-bottom: 1.5rem; }

.day-row .day-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.day-row .day-label .hours { color: var(--ink-soft); font-weight: 400; font-variant-numeric: tabular-nums; }

.day-track {
  position: relative;
  height: 14px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
}

.day-span {
  position: absolute;
  top: 0;
  bottom: 0;
  transform-origin: left center;
}

.day-span.steel { background: var(--steel); }
.day-span.orange { background: var(--orange); }

@media (prefers-reduced-motion: no-preference) {
  .day-span { transform: scaleX(0); transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
  .day-ledger.in .day-span { transform: scaleX(1); }
  .day-ledger.in .day-row:nth-child(2) .day-span { transition-delay: 0.15s; }
  .day-ledger.in .day-row:nth-child(3) .day-span { transition-delay: 0.3s; }
}

.day-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  border-top: 1px solid var(--rule-strong);
  padding-top: 0.35rem;
}

@media (max-width: 52rem) {
  .rhythm-grid { grid-template-columns: 1fr; }
}

/* ---------- 06 the garden ---------- */

.garden-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 1.5rem + 4vi, 5rem);
  align-items: center;
}

.garden-art img { width: 100%; height: auto; }

.garden-art {
  border: 3px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: var(--night);
  box-shadow: 10px 12px 0 rgba(33, 50, 74, 0.14);
  max-width: 560px;
  justify-self: center;
}

.garden-facts { list-style: none; margin-top: 2rem; border-top: 1px solid var(--rule-strong); }

.garden-facts li {
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--rule-strong);
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
}

.garden-facts .tick {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange-deep);
  flex: none;
  min-width: 3.4ch;
}

.garden-facts li span:last-child { color: var(--ink-soft); }

@media (max-width: 52rem) {
  .garden-grid { grid-template-columns: 1fr; }
}

/* ---------- 07 privacy, dark band ---------- */

.privacy-sec {
  background: var(--night);
  color: #dfe6f2;
}

.privacy-sec .sec-mark { color: #dfe6f2; }
.privacy-sec .sec-mark .label { color: #93a2ba; }
.privacy-sec .sec-mark .num { color: var(--orange); }

.privacy-sec h2 { color: #f2ede1; }

.privacy-body {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 1.5rem + 3vi, 4.5rem);
}

.privacy-body p { color: #aebbcf; margin-bottom: 1rem; }

.privacy-body a { color: #f2ede1; }

.privacy-claims { list-style: none; border-top: 1px solid rgba(223, 230, 242, 0.25); font-size: 0.98rem; }

.privacy-claims li {
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(223, 230, 242, 0.25);
  color: #dfe6f2;
}

.privacy-claims li::before { content: "no. "; font-family: var(--font-display); font-style: italic; color: var(--orange); }

@media (max-width: 52rem) {
  .privacy-body { grid-template-columns: 1fr; }
}

/* ---------- 08 faq ---------- */

.faq-list { border-top: 2px solid var(--ink); max-width: 46rem; }

.faq-list details { border-bottom: 1px solid var(--rule-strong); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  padding-block: 1.15rem;
  font-weight: 600;
  font-size: 0.98rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary .mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--orange-deep);
  flex: none;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-list details[open] summary .mark { transform: rotate(45deg); }

.faq-list details p {
  padding-bottom: 1.3rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

.faq-list summary:hover { color: var(--steel); }

/* ---------- final cta ---------- */

.final .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 1.5rem + 3vi, 4rem);
  align-items: center;
}

.final h2 { font-size: clamp(2.1rem, 1.4rem + 3.2vi, 4rem); max-width: 18ch; }

.final .store-row { margin-top: 1.8rem; }

.final-figure {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: var(--size-big-number);
  line-height: 0.95;
  color: var(--orange-deep);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 144;
}

.final-figure small {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  max-width: 26ch;
}

@media (max-width: 52rem) {
  .final .wrap { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */

footer {
  border-top: 2px solid var(--ink);
  padding-block: 2rem 3rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.foot-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }

.foot-links a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--rule-strong); }
.foot-links a:hover { color: var(--ink); border-bottom-color: var(--orange); }

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

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .holds li, .gate-steps li, .garden-facts li { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .holds.in li, .gate-steps.in li, .garden-facts.in li { opacity: 1; transform: none; }
  .holds.in li:nth-child(1), .gate-steps.in li:nth-child(1), .garden-facts.in li:nth-child(1) { transition-delay: 0.05s; }
  .holds.in li:nth-child(2), .gate-steps.in li:nth-child(2), .garden-facts.in li:nth-child(2) { transition-delay: 0.17s; }
  .holds.in li:nth-child(3), .gate-steps.in li:nth-child(3), .garden-facts.in li:nth-child(3) { transition-delay: 0.29s; }
  .holds.in li:nth-child(4), .gate-steps.in li:nth-child(4), .garden-facts.in li:nth-child(4) { transition-delay: 0.41s; }
}
