/* ============================================================
   stabiliti, Nature Infrastructure for Commerce
   Brand-locked design system
   ============================================================ */

:root {
  /* Brand colors */
  --abyss:        #19294B;
  --abyss-2:      #20335B;
  --abyss-3:      #2A4070;
  --chalk:        #FAF8F0;
  --chalk-2:      #F2EFE3;
  --atlantic:     #155ECF;
  --atlantic-2:   #1F6FE0;
  --altitude:     #A8BEDC;
  --amber:        #F59C00;
  --amber-light:  #F8BB4D;
  --amber-lite-2: #FBD799;
  --flint:        #D8D5C9;
  --peat:         #5D5949; /* product-only functional colour, not for marketing surfaces */
  --bark:         #1B2827; /* product-only functional colour, not for marketing surfaces */
  --white:        #FFFFFF;

  /* Ink/surfaces (dark editorial surface, light is hero+sections) */
  --ink:          var(--abyss);
  --ink-muted:    rgba(25, 41, 75, 0.62);
  --ink-soft:     rgba(25, 41, 75, 0.42);
  --rule:         rgba(25, 41, 75, 0.14);
  --rule-soft:    rgba(25, 41, 75, 0.08);
  --rule-on-dark: rgba(250, 248, 240, 0.14);
  --rule-on-dark-soft: rgba(250, 248, 240, 0.07);

  /* Type */
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Crimson Pro", "Iowan Old Style", Georgia, "Times New Roman", serif;

  /* Scale */
  --step--1: clamp(0.78rem, 0.76rem + 0.10vw, 0.82rem);
  --step-0:  clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  --step-1:  clamp(1.08rem, 1.02rem + 0.30vw, 1.20rem);
  --step-2:  clamp(1.30rem, 1.18rem + 0.55vw, 1.55rem);
  --step-3:  clamp(1.62rem, 1.40rem + 1.00vw, 2.10rem);
  --step-4:  clamp(2.10rem, 1.70rem + 1.80vw, 3.20rem);
  --step-5:  clamp(2.80rem, 2.10rem + 3.00vw, 4.80rem);
  --step-6:  clamp(3.50rem, 2.60rem + 4.00vw, 6.20rem);

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --container: 1320px;
  --section-pad-y: clamp(96px, 12vw, 168px);

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--abyss);
  color: var(--chalk);
  font-family: var(--font-display);
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .2s var(--ease-out);
}
.skip-link:focus {
  transform: translateY(0);
}

body {
  background: var(--chalk);
  color: var(--amber);
  font-family: var(--font-body);
  font-size: var(--step-1);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--abyss); color: var(--chalk); }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); margin-right: 10px; transform: translateY(-2px);
}
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
h1, .h1 { font-size: var(--step-6); font-weight: 700; letter-spacing: -0.035em; line-height: 0.98; }
h2, .h2 { font-size: var(--step-5); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; }
h3, .h3 { font-size: var(--step-3); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
h4, .h4 { font-size: var(--step-2); font-weight: 600; letter-spacing: -0.015em; line-height: 1.15; }

.lede {
  font-family: var(--font-body);
  font-size: var(--step-2);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
  max-width: 30ch;
}
.lede em { font-style: italic; color: var(--ink); }

p { margin: 0 0 1em; }
p.body { font-size: var(--step-1); line-height: 1.55; max-width: 58ch; color: rgba(25,41,75,.78); }
.label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum" 1, "zero" 1;
  letter-spacing: 0;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); position: relative; scroll-margin-top: 92px; }
.section--tight { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.grid { display: grid; gap: clamp(24px, 3vw, 48px); }
.grid-12 { grid-template-columns: repeat(12, 1fr); }
@media (max-width: 860px) { .grid-12 { grid-template-columns: repeat(6, 1fr); } }

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.rule-dark { height: 1px; background: var(--rule-on-dark); border: 0; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 18px 0;
  transition: background .35s var(--ease-out), backdrop-filter .35s var(--ease-out), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250, 248, 240, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--rule-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.28rem;
  letter-spacing: -0.035em;
  display: inline-flex; align-items: center;
  color: var(--ink);
}
.brand__word { text-transform: lowercase; }

.nav__links {
  display: flex; gap: clamp(14px, 1.8vw, 24px); align-items: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
}
.nav__links a { color: rgba(25,41,75,.74); transition: color .2s ease, border-color .2s ease; }
.nav__links a:hover, .nav__links a:focus-visible, .nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active { border-bottom: 1px solid var(--amber); padding-bottom: 4px; }
.nav__cta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--chalk);
  transition: background .2s, color .2s, transform .2s;
}
.nav__cta:hover { background: transparent; color: var(--ink); }
.nav__cta.is-active { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.nav__menu-btn { display: none; }
.nav__mobile { display: none; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__menu-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-size: 0.92rem;
    border: 1px solid var(--rule); border-radius: 999px;
    padding: 8px 14px;
  }
  .nav__mobile {
    display: none;
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 8px);
    padding: 12px;
    border: 1px solid var(--rule-soft);
    border-radius: 18px;
    background: rgba(250, 248, 240, 0.94);
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    box-shadow: 0 24px 70px rgba(25, 41, 75, 0.14);
  }
  .nav__mobile.is-open {
    display: grid;
    gap: 4px;
  }
  .nav__mobile a {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ink);
    padding: 13px 14px;
    border-radius: 12px;
  }
  .nav__mobile a:hover,
  .nav__mobile a:focus-visible,
  .nav__mobile a.is-active {
    background: rgba(25, 41, 75, 0.06);
  }
  .nav__mobile a.is-active { color: var(--amber); }
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  padding: 16px 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid transparent;
  transition: background .25s var(--ease-out), color .25s, border-color .25s, transform .25s;
  cursor: pointer;
}
.btn .arrow { transition: transform .3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--ink); color: var(--chalk); }
.btn--primary:hover { background: var(--amber); color: var(--ink); }
.btn--primary:focus-visible { outline: 2px solid var(--atlantic); outline-offset: 3px; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark.btn--ghost { color: var(--chalk); border-color: var(--rule-on-dark); }
.btn--on-dark.btn--ghost:hover { border-color: var(--chalk); }
.btn--on-dark.btn--primary { background: var(--chalk); color: var(--ink); }
.btn--on-dark.btn--primary:hover { background: var(--amber); color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(120px, 14vh, 180px);
  padding-bottom: clamp(80px, 8vh, 120px);
  display: flex; align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}
.hero__network {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.62;
}
.hero__network svg { width: 100%; height: 100%; }
.hero__network .grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1200px 700px at 80% 12%, rgba(168,190,220,0.16), transparent 60%),
    radial-gradient(900px 600px at 12% 85%, rgba(245,156,0,0.06), transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-content: end;
}
.hero__meta {
  grid-column: 1 / span 12;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(28px, 4vh, 48px);
}
.hero__meta .label-stack { display: flex; flex-direction: column; gap: 6px; }
.hero__meta .label-stack .label--big {
  font-family: var(--font-display); font-weight: 400; font-size: var(--step-1); letter-spacing: -0.005em; text-transform: none; color: var(--altitude);
}
.hero__title { grid-column: 1 / span 12; }
.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 2.2rem + 3.4vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  max-width: 14ch;
}
.hero__headline em {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.86em;
  color: var(--amber);
  letter-spacing: -0.015em;
  line-height: 1.0;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: var(--step-1);
  line-height: 1.5;
  color: rgba(25,41,75,.78);
  margin-top: 28px;
  max-width: 52ch;
}
.hero__ctas { grid-column: 1 / span 12; display: flex; gap: 14px; flex-wrap: wrap; margin-top: clamp(36px, 5vh, 56px); }

.hero__proof {
  grid-column: 1 / span 12;
  margin-top: clamp(28px, 4vh, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.hero__proof .cell .k {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.hero__proof .cell .k small {
  font-family: var(--font-display); font-size: 0.5em; color: var(--ink-muted); font-weight: 400; letter-spacing: 0;
}
.hero__proof .cell .l {
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
  max-width: 26ch;
}

@media (max-width: 860px) {
  .hero__sub { grid-column: 1 / span 12; }
  .hero__proof { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__meta .label[style] { text-align: left !important; }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
    --section-pad-y: clamp(72px, 18vw, 104px);
  }

  .section--tight {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .nav {
    position: relative;
    background: rgba(250, 248, 240, 0.88);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom-color: var(--rule-soft);
    padding: 12px 0;
  }

  .brand {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero__network { opacity: 0.54; }

  .hero__meta {
    margin-bottom: 42px;
  }

  .hero__meta .label-stack .label--big {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero__headline {
    font-size: clamp(2.2rem, 13.2vw, 3.28rem);
    line-height: 1.03;
    max-width: 12ch;
    letter-spacing: -0.045em;
  }

  .hero__sub {
    font-size: 1.08rem;
    line-height: 1.48;
    margin-top: 22px;
  }

  .hero__ctas {
    gap: 10px;
    margin-top: 30px;
  }

  .hero__ctas .btn,
  .closer__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    margin-top: 42px;
    gap: 18px;
  }

  .hero__proof .cell {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule-soft);
  }

  .hero__proof .cell:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .problem__eyebrow,
  .trust__head,
  .projects__head,
  .scale__head {
    margin-bottom: 40px;
  }

  .flow-steps,
  .proof-stack,
  .scale__legend,
  .ledger__footer {
    grid-template-columns: 1fr;
  }

  .proof-stack__cell {
    min-height: 0;
  }

  .ledger {
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .ledger__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ledger__grid {
    grid-template-columns: 1.25fr 0.75fr;
    min-height: 190px;
  }

  .ledger__grid .h:nth-child(2),
  .ledger__grid .h:nth-child(n+4),
  .ledger__grid .v:nth-child(6n + 8),
  .ledger__grid .v.col-hide {
    display: none;
  }

  .ledger__footer > div {
    border-right: 0;
  }

  .project-card__meta {
    flex-direction: column;
  }

  .closer__title h2 {
    font-size: clamp(2.25rem, 13vw, 3.2rem);
    max-width: 11ch;
  }

  .foot {
    padding-top: 64px;
  }

  .foot__col {
    grid-column: 1 / span 12;
  }
}

/* ---------- page routes ---------- */
.page-hero {
  padding-top: clamp(132px, 16vw, 188px);
  padding-bottom: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 82% 18%, rgba(168, 190, 220, 0.18), transparent 32%),
    var(--chalk);
}
.page-hero__inner { max-width: 940px; }
.page-hero h1 { margin-top: 22px; max-width: 820px; }
.page-hero h1 em {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.page-hero--ledger h1 em { display: inline; }
.page-hero p {
  margin-top: 24px;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.4vw, 1.82rem);
  line-height: 1.38;
  color: var(--ink-muted);
}
.route-index {
  background: var(--chalk);
  border-top: 1px solid var(--rule-soft);
}
.route-index__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 64px);
}
.route-index__head h2 em {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  color: var(--amber);
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.route-card {
  min-height: 260px;
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(250, 248, 240, 0.72);
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
  position: relative;
}
.route-card:hover,
.route-card:focus-visible { background: rgba(168, 190, 220, 0.16); }
.route-card::after {
  content: "→";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.34);
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.route-card:hover::after,
.route-card:focus-visible::after {
  transform: translateX(3px);
  border-color: rgba(245,156,0,.65);
  background: rgba(245,156,0,.12);
}
.route-card span {
  display: block;
  margin-bottom: 34px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.route-card h3 { margin-bottom: 16px; }
.route-card p { color: var(--ink-muted); }

.proof-snapshot {
  background: linear-gradient(180deg, rgba(168, 190, 220, 0.10), rgba(250, 248, 240, 0));
  border-top: 1px solid var(--rule-soft);
}
.proof-snapshot__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}
.proof-snapshot .eyebrow {
  grid-column: 1 / -1;
}
.proof-snapshot h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 10ch;
}
.proof-snapshot__grid {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.proof-snapshot__grid > div {
  min-height: 230px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.proof-snapshot__grid span {
  display: block;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.proof-snapshot__grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
  min-height: 2.1em;
}
.proof-snapshot__grid p {
  color: var(--ink-muted);
}

@media (max-width: 860px) {
  .route-index__head,
  .route-grid,
  .proof-snapshot__inner,
  .proof-snapshot__grid { grid-template-columns: 1fr; }
  .proof-snapshot .eyebrow,
  .proof-snapshot h2,
  .proof-snapshot__grid {
    grid-column: auto;
    grid-row: auto;
  }
  .route-card { min-height: 0; }
  .proof-snapshot__inner { gap: 28px; }
  .proof-snapshot h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10vw, 3.2rem);
    line-height: 1.02;
  }
  .proof-snapshot__grid > div {
    min-height: 0;
    padding: 28px 24px 30px;
  }
  .proof-snapshot__grid span {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 64px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 13.5vw, 3.45rem);
    max-width: 11.5ch;
  }
  .page-hero p {
    font-size: clamp(1.18rem, 5.4vw, 1.52rem);
  }

  .proof-snapshot {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .proof-snapshot h2 {
    font-size: clamp(2.12rem, 9vw, 2.65rem);
    letter-spacing: -0.035em;
    max-width: 100%;
  }

  .proof-snapshot__grid {
    border-top-color: var(--rule-soft);
    border-left-color: var(--rule-soft);
  }

  .proof-snapshot__grid > div {
    padding: 24px 24px 26px;
  }

  .proof-snapshot__grid span {
    margin-bottom: 22px;
  }

  .proof-snapshot__grid strong {
    font-size: 1.42rem;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .proof-snapshot__grid p {
    font-size: 1.05rem;
    line-height: 1.48;
  }

  .route-index {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .route-index__head {
    gap: 22px;
    margin-bottom: 30px;
  }

  .route-index__head h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 9vw, 2.65rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .route-index__head h2 em {
    display: block;
    max-width: 10.8ch;
    margin-top: 6px;
    font-size: 0.95em;
    line-height: 1.05;
  }

  .route-card {
    padding: 24px 24px 26px;
  }

  .route-card span {
    margin-bottom: 24px;
  }

  .route-card h3 {
    font-size: 1.5rem;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .route-card p {
    font-size: 1.05rem;
    line-height: 1.48;
  }
}

/* ---------- PROBLEM ---------- */
.problem {
  position: relative;
  background: var(--chalk);
}
.problem__row { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 3vw, 48px); }
.problem__eyebrow { grid-column: 1 / span 12; margin-bottom: 64px; }
.problem__statement {
  grid-column: 1 / span 12;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
  max-width: 24ch;
  margin: 0 0 64px;
}
.problem__statement em { display: block; margin-top: 6px; font-family: var(--font-body); font-style: italic; font-weight: 400; color: var(--ink); font-size: 0.88em; line-height: 1.04; }

.problem__detail { grid-column: 1 / span 6; }
.problem__detail--right { grid-column: 7 / span 6; }
.problem__detail h4 { margin-bottom: 14px; }
@media (max-width: 860px) {
  .problem__detail, .problem__detail--right { grid-column: 1 / span 12; }
  .problem__eyebrow { margin-bottom: 24px; }
  .problem__statement { margin-bottom: 34px; }
}

/* ---------- MECHANISM (transaction-to-nature) ---------- */
.mechanism {
  background: var(--abyss);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
}
.mechanism .eyebrow { color: rgba(250,248,240,.55); }
.mechanism .eyebrow .dot { background: var(--amber); }
.mechanism h2 { color: var(--chalk); }
.mechanism p.body { color: rgba(250,248,240,.72); }

.mechanism__header { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 3vw, 48px); margin-bottom: clamp(48px, 6vw, 80px); }
.mechanism__header .left { grid-column: 1 / span 6; }
.mechanism__header .right { grid-column: 8 / span 5; align-self: end; }
@media (max-width: 860px) {
  .mechanism__header .left, .mechanism__header .right { grid-column: 1 / span 12; }
}

.flow {
  position: relative;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
  padding: 48px 0;
}
.flow__svg { position: relative; z-index: 1; width: 100%; height: auto; display: block; }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: 48px;
}
.flow-step {
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 18px;
  position: relative;
}
.flow-step .num {
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--altitude);
}
.flow-step h4 {
  margin: 10px 0 8px; font-size: var(--step-2); font-weight: 500; color: var(--chalk);
}
.flow-step p {
  font-family: var(--font-body); font-size: var(--step-0); line-height: 1.5; color: rgba(250,248,240,.66); margin: 0;
}
.flow-step .pip {
  position: absolute; top: -4px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
}
.flow-step:nth-child(1) .pip { background: var(--altitude); }
.flow-step:nth-child(2) .pip { background: var(--atlantic-2); }
.flow-step:nth-child(3) .pip { background: var(--amber); }
.flow-step:nth-child(4) .pip { background: var(--amber-lite-2); }

@media (max-width: 860px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .flow { display: none; }
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
    padding-left: 22px;
    position: relative;
  }
  .flow-steps::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 14px;
    left: 3px;
    width: 1px;
    background: linear-gradient(180deg, rgba(168,190,220,.45), rgba(245,156,0,.7), rgba(251,215,153,.45));
  }
  .flow-step {
    border-top: 0;
    padding-top: 0;
  }
  .flow-step .pip {
    top: 5px;
    left: -22px;
  }
}

/* ---------- LIVE PROOF / LEDGER ---------- */
.live {
  background: var(--chalk);
  position: relative;
}
.live__head { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; margin-bottom: 56px; }
.live__head .left { grid-column: 1 / span 6; }
.live__head .right { grid-column: 8 / span 5; align-self: end; }
@media (max-width: 860px) {
  .live__head .left, .live__head .right { grid-column: 1 / span 12; }
}

.ledger {
  border: 1px solid var(--rule);
  background: #FCFBF5;
  border-radius: 4px;
  overflow: hidden;
}
.ledger__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--rule);
  background: var(--chalk);
}
.ledger__bar .left { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-size: 0.88rem; font-weight: 500; }
.ledger__bar .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber); position: relative;
  box-shadow: 0 0 0 0 rgba(245,156,0,0.6);
  animation: livepulse 2.4s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) { .ledger__bar .live-dot { animation: none; } }
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0   rgba(245,156,0,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(245,156,0,0); }
  100% { box-shadow: 0 0 0 0   rgba(245,156,0,0); }
}
.ledger__bar .right {
  font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
  display: flex; gap: 22px;
}
.ledger__note {
  margin: 0;
  padding: 8px 22px 10px;
  border-top: 1px solid var(--rule);
  background: rgba(25,41,75,0.02);
  font-family: var(--font-display);
  font-size: 0.62rem;
  line-height: 1.4;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  color: rgba(25,41,75,.52);
}
.ledger__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1fr 0.9fr 1fr;
  font-family: var(--font-display);
  font-size: 0.86rem;
  min-height: 292px;
  align-content: start;
}
.ledger__grid > div { padding: 12px 22px; border-bottom: 1px solid var(--rule-soft); }
.ledger__grid .h {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500;
  background: var(--chalk);
  border-bottom: 1px solid var(--rule);
}
.ledger__grid .v {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum" 1;
  font-size: 0.84rem; color: var(--ink);
}
.ledger__grid .v.amber { color: var(--amber); }
.ledger__grid .v.atlantic { color: var(--atlantic); }
.ledger__grid .v.soft { color: var(--ink-muted); }
.ledger__row { display: contents; }
.ledger__row.new .v { animation: rowin .6s var(--ease-out); }
@media (prefers-reduced-motion: reduce) { .ledger__row.new .v { animation: none; } }
@keyframes rowin {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}

.ledger__footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.ledger__footer > div {
  padding: 22px;
  border-right: 1px solid var(--rule-soft);
}
.ledger__footer > div:last-child { border-right: 0; }
.ledger__footer .l {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted);
  font-family: var(--font-display); margin-bottom: 8px;
}
.ledger__footer .v {
  font-family: var(--font-display); font-size: var(--step-2); font-weight: 400; letter-spacing: -0.02em; color: var(--ink);
}
.ledger__footer .v small { font-size: 0.6em; color: var(--ink-muted); font-weight: 400; }

@media (max-width: 760px) {
  .ledger__grid { font-size: 0.74rem; grid-template-columns: 1.25fr 0.75fr; min-height: 190px; }
  .ledger__grid .h:nth-child(2),
  .ledger__grid .h:nth-child(n+4),
  .ledger__grid .v:nth-child(6n + 8),
  .ledger__grid .v.col-hide { display: none; }
  .ledger__footer { grid-template-columns: repeat(2, 1fr); }
  .ledger__footer > div:nth-child(2) { border-right: 0; }
}

/* ---------- TRUST / PROOF STACK ---------- */
.trust { background: var(--chalk-2); }
.trust__head { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; margin-bottom: 64px; }
.trust__head .left { grid-column: 1 / span 7; }
.trust__head .right { grid-column: 9 / span 4; align-self: end; }
@media (max-width: 860px) {
  .trust__head .left, .trust__head .right { grid-column: 1 / span 12; }
}

.proof-stack {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.proof-stack__cell {
  background: var(--chalk);
  padding: 28px 24px 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  min-height: 220px;
}
.proof-stack__cell .num {
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted);
}
.proof-stack__cell h4 {
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 500; letter-spacing: -0.01em; margin: 0; color: var(--ink);
}
.proof-stack__cell p {
  font-family: var(--font-body); font-size: var(--step-0); line-height: 1.5; margin: 0; color: rgba(25,41,75,.7);
}
.proof-stack__cell .glyph {
  width: 28px; height: 28px;
}
.proof-stack__cell .glyph svg { width: 100%; height: 100%; color: var(--atlantic); }

@media (max-width: 1100px) { .proof-stack { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .proof-stack { grid-template-columns: repeat(2, 1fr); } }

.diligence-strip {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.diligence-strip__intro,
.diligence-card {
  background: var(--chalk);
  padding: 28px 24px;
}
.diligence-strip__intro p,
.diligence-card p {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.5;
  color: rgba(25,41,75,.7);
  margin: 12px 0 0;
}
.diligence-card span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.diligence-card h4 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
}
@media (max-width: 980px) { .diligence-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .diligence-strip { grid-template-columns: 1fr; } }

/* ---------- COMMERCIAL IMPACT ---------- */
.impact { background: var(--chalk); }
.impact__head,
.why-now__head,
.team__head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.impact__head .left,
.why-now__head .left,
.team__head .left { grid-column: 1 / span 7; }
.impact__head .right,
.why-now__head .right,
.team__head .right { grid-column: 9 / span 4; align-self: end; }
@media (max-width: 860px) {
  .impact__head .left,
  .impact__head .right,
  .why-now__head .left,
  .why-now__head .right,
  .team__head .left,
  .team__head .right { grid-column: 1 / span 12; }
}
.impact-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.impact-card,
.why-card {
  background: var(--chalk-2);
  padding: 32px 28px;
  min-height: 240px;
}
.impact-card span,
.why-card span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.impact-card h3,
.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  margin: 22px 0 12px;
}
.impact-card p,
.why-card p {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  color: rgba(25,41,75,.72);
}
.reframe-table {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.reframe-table div {
  padding: 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #FCFBF5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.reframe-item {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 56px;
}
.reframe-item em {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.reframe-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.18;
  font-weight: 500;
  color: var(--ink);
}
.reframe-table b {
  color: var(--amber);
  font-weight: 400;
  text-align: center;
  transform: translateY(9px);
}
@media (max-width: 900px) {
  .impact-grid,
  .why-grid { grid-template-columns: 1fr; }
  .reframe-table { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .reframe-table div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .reframe-table b {
    text-align: left;
    transform: none;
  }
  .reframe-item { min-height: auto; }
}

/* ---------- WHY NOW ---------- */
.why-now {
  background: var(--abyss);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
}
.why-now .eyebrow { color: rgba(250,248,240,.55); }
.why-now h2,
.why-now h3 { color: var(--chalk); }
.why-now p.body { color: rgba(250,248,240,.72); }
.why-grid {
  background: var(--rule-on-dark);
  border-color: var(--rule-on-dark);
}
.why-card {
  background: rgba(250,248,240,.04);
  border: 0;
}
.why-card span { color: var(--altitude); }
.why-card p { color: rgba(250,248,240,.68); }
.why-scale {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-on-dark);
  border: 1px solid var(--rule-on-dark);
}
.why-scale > div {
  padding: 26px 24px;
  background: rgba(250,248,240,.03);
}
.why-scale p {
  font-family: var(--font-body);
  font-size: var(--step-0);
  color: rgba(250,248,240,.68);
  margin: 12px 0 0;
}
@media (max-width: 900px) { .why-scale { grid-template-columns: 1fr; } }

/* ---------- PROJECTS ---------- */
.projects { background: var(--chalk); }
.projects__head { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; margin-bottom: 64px; }
.projects__head .left { grid-column: 1 / span 6; }
.projects__head .right { grid-column: 8 / span 5; align-self: end; }
@media (max-width: 860px) {
  .projects__head .left, .projects__head .right { grid-column: 1 / span 12; }
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .project-grid { grid-template-columns: repeat(1, 1fr); } }

.project-card {
  background: var(--chalk-2);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.project-card__visual {
  aspect-ratio: 4 / 3.2;
  background: var(--abyss);
  position: relative;
  overflow: hidden;
}
.project-card__visual svg { width: 100%; height: 100%; display: block; }
.project-card__meta {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
}
.project-card__body { padding: 24px 22px 26px; }
.project-card__body h3 {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-2); letter-spacing: -0.01em; margin: 0 0 10px;
}
.project-card__body p {
  font-family: var(--font-body); font-size: var(--step-0); line-height: 1.55; color: rgba(25,41,75,.72); margin: 0 0 18px;
}
.project-card__stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule); padding-top: 16px; gap: 16px;
  font-family: var(--font-display);
}
.project-card__stats .k { font-size: var(--step-1); font-weight: 400; letter-spacing: -0.01em; color: var(--ink); }
.project-card__stats .l { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-top: 2px; }

/* ---------- SCALE ---------- */
.scale { background: var(--abyss); color: var(--chalk); position: relative; overflow: hidden; }
.scale .eyebrow { color: rgba(250,248,240,.55); }
.scale h2 { color: var(--chalk); max-width: 20ch; }
.scale p.body { color: rgba(250,248,240,.72); max-width: 52ch; }
.scale__head { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; margin-bottom: 64px; }
.scale__head .left { grid-column: 1 / span 6; }
.scale__head .right { grid-column: 8 / span 5; align-self: end; }
@media (max-width: 860px) {
  .scale__head .left, .scale__head .right { grid-column: 1 / span 12; }
}
.scale__map {
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(168,190,220,0.02) 100%);
}
.scale__map svg { position: relative; z-index: 1; width: 100%; height: auto; display: block; }
.scale__legend {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px;
}
.scale__legend .item .k {
  font-family: var(--font-display); font-size: var(--step-3); font-weight: 400; letter-spacing: -0.025em; color: var(--chalk); margin-bottom: 6px;
}
.scale__legend .item .l {
  font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--altitude);
}
@media (max-width: 760px) { .scale__legend { grid-template-columns: repeat(2, 1fr); row-gap: 24px; } }
@media (max-width: 760px) { .scale__map { display: none; } }

/* ---------- TEAM ---------- */
.team { background: var(--chalk-2); }
.team-subhead {
  margin: 0 0 20px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.team-subhead--advisory { margin-top: 48px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.team-card,
.adviser-card {
  background: var(--chalk);
  padding: 28px 24px;
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.team-card__body .eyebrow { min-height: 2.4em; }
.team-card__body h3 { min-height: 2.35em; }
.team-card__body p { margin-top: auto; }
.team-card__photo,
.adviser-card__photo {
  display: block;
  width: min(100%, 184px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  margin: 0 auto 24px;
  filter: grayscale(1) contrast(1.08);
}
.adviser-card__photo {
  margin-bottom: 24px;
}
.team-card__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.team-card h3,
.adviser-card h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 12px 0;
}
.team-card p,
.adviser-card p {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  color: rgba(25,41,75,.72);
}
.team-card a {
  display: inline-flex;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: var(--atlantic);
}
.adviser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 1100px) {
  .team-grid,
  .adviser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .team-grid,
  .adviser-grid { grid-template-columns: 1fr; }
}

/* ---------- CLOSING CTA ---------- */
.closer { background: var(--chalk); position: relative; }
.closer__inner {
  text-align: left;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; align-items: end;
}
.closer__title { grid-column: 1 / span 8; }
.closer__title h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 1.9rem + 3vw, 4.6rem); letter-spacing: -0.045em; line-height: 0.98; max-width: 18ch;
}
.closer__title h2 em { display: block; margin-top: 6px; font-family: var(--font-body); font-style: italic; font-weight: 400; color: var(--ink); font-size: 0.86em; line-height: 1.02; }
.closer__ctas { grid-column: 9 / span 4; display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; padding-bottom: 12px; }
@media (max-width: 860px) {
  .closer__title, .closer__ctas { grid-column: 1 / span 12; justify-content: flex-start; }
}
.contact-routes {
  margin-top: clamp(42px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.contact-route {
  background: #FCFBF5;
  padding: 28px 24px;
  display: grid;
  gap: 10px;
  width: 100%;
  border: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.contact-route:hover,
.contact-route:focus-visible {
  background: var(--chalk);
  transform: translateY(-2px);
  outline: none;
}
.contact-route span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-route strong {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--ink);
}
.contact-route em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--step-0);
  color: rgba(25,41,75,.72);
}
@media (max-width: 760px) { .contact-routes { grid-template-columns: 1fr; } }
.secure-contact {
  margin-top: clamp(32px, 5vw, 56px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--rule);
  background:
    radial-gradient(circle at 18% 0%, rgba(245,156,0,.11), transparent 34%),
    linear-gradient(135deg, rgba(252,251,245,.94), rgba(250,248,240,.98));
}
.secure-contact__intro {
  max-width: 720px;
  margin-bottom: 28px;
}
.secure-contact__intro h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.secure-contact__intro p {
  max-width: 58ch;
  color: rgba(25,41,75,.72);
}
.secure-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field {
  display: grid;
  gap: 8px;
}
.field--full { grid-column: 1 / -1; }
.field span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(25,41,75,.62);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(25,41,75,.18);
  border-radius: 0;
  background: rgba(255,255,255,.62);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(245,156,0,.82);
  box-shadow: 0 0 0 3px rgba(245,156,0,.13);
  background: rgba(255,255,255,.88);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.secure-contact__actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
}
.turnstile-widget {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(25,41,75,.62);
}
.form-status.is-success { color: rgba(36,96,67,.9); }
.form-status.is-error { color: rgba(138,43,28,.9); }
@media (max-width: 760px) {
  .secure-contact__grid { grid-template-columns: 1fr; }
  .secure-contact__actions { align-items: flex-start; flex-direction: column; }
}
.contact-details {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.contact-details > div {
  background: var(--chalk);
  padding: 22px 24px;
}
.contact-details a,
.contact-details p {
  display: block;
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ink);
}
@media (max-width: 760px) { .contact-details { grid-template-columns: 1fr; } }

/* ---------- LEGAL ---------- */
.legal-hero {
  min-height: auto;
  padding-bottom: clamp(48px, 8vw, 96px);
}
.legal-hero h1 { max-width: 10ch; }
.legal-copy {
  background: var(--chalk-2);
  padding-top: clamp(48px, 7vw, 88px);
}
.legal-copy article {
  max-width: 860px;
  margin-inline: auto;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.legal-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 56px 0 18px;
}
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.015em;
  margin: 28px 0 10px;
}
.legal-copy p,
.legal-copy li {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(25,41,75,.78);
}
.legal-copy p + p { margin-top: 16px; }
.legal-copy ul {
  margin: 14px 0 18px 1.1em;
  padding: 0;
}
.legal-copy li + li { margin-top: 10px; }
.legal-copy a {
  color: var(--atlantic);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ---------- FOOTER ---------- */
.foot {
  background: var(--abyss);
  color: var(--chalk);
  padding: 80px 0 32px;
  font-family: var(--font-display);
}
.foot .eyebrow { color: rgba(250,248,240,.5); }
.foot a {
  color: rgba(250,248,240,.78);
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color .2s, text-decoration-color .2s;
}
.foot a:hover,
.foot a:focus-visible {
  color: var(--chalk);
  text-decoration: underline;
  text-decoration-color: var(--amber);
}
.foot__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; margin-bottom: 64px; }
.foot__brand { grid-column: 1 / span 4; }
.foot__brand p { font-family: var(--font-body); font-size: var(--step-0); line-height: 1.55; color: rgba(250,248,240,.65); max-width: 32ch; margin-top: 18px; }
.foot__col { grid-column: span 2; }
.foot__col h5 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,240,.5); font-weight: 500; margin: 0 0 16px; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.92rem; }
.foot__bottom {
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(250,248,240,.55);
}
@media (max-width: 860px) {
  .foot__brand { grid-column: 1 / span 12; }
  .foot__col { grid-column: span 6; }
}

/* ---------- root motion (page-wide canvas) ---------- */
.root-canvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.0;
  transition: opacity .8s var(--ease-out);
}
.root-canvas.is-on { opacity: 0.55; }
@media (max-width: 760px) {
  .root-canvas { display: none; }
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ledger__row.new .v { animation: none; }
  .ledger__bar .live-dot { animation: none; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .root-canvas { display: none; }
}

/* focus */
:focus-visible { outline: 2px solid var(--atlantic); outline-offset: 3px; border-radius: 4px; }
