/* ============================================================
   LANDFALL · STELLAR — Design System
   Fonts: Manrope (text) · DM Mono (data/code)
   ============================================================ */

:root {
  --ink:    #061f2d;
  --ink2:   #123442;
  --mint:   #eaf4ef;
  --paper:  #fbfcfa;
  --teal:   #0b9c91;
  --lime:   #c5ee6b;
  --muted:  #65777c;
  --line:   #d9e2dd;
  --coral:  #e55d50;
  --amber:  #c47a00;
  --shadow: 0 32px 70px rgba(6,31,45,.15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
}

a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

/* ============================================================
   LOADER — GSAP Stellar ledger scan
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Stellar settlement card */
.loader__card {
  position: relative;
  width: 340px;
  height: 200px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal) 0%, #08766f 100%);
  padding: 24px 26px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(11,156,145,.4), 0 10px 20px rgba(6,31,45,.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.loader__card::before {
  content: '';
  position: absolute;
  top: -60%; right: -30%;
  width: 200%; height: 220%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.14) 0%, transparent 60%);
  pointer-events: none;
}
.loader__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.loader__card-icon svg {
  width: 36px; height: 36px;
  display: block;
}
.loader__card-badge {
  font: 600 9px 'DM Mono';
  letter-spacing: 1.8px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 4px 8px;
  color: rgba(255,255,255,.9);
}
.loader__card-number {
  display: flex;
  gap: 10px;
  font: 500 14px 'DM Mono';
  letter-spacing: .12em;
  position: relative;
  z-index: 2;
}
.loader__card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: .22em;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.loader__card-brand {
  font: 800 20px Manrope;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.95);
}
/* scan sweep line */
.loader__card-scan {
  position: absolute;
  top: 0; left: -25%;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform: skewX(-12deg);
  pointer-events: none;
  z-index: 3;
}
/* checkmark overlay */
.loader__card-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,135,126,.88);
  color: #fff;
  opacity: 0;
  backdrop-filter: blur(4px);
  z-index: 4;
  border-radius: inherit;
}
.loader__card-check svg { width: 72px; height: 72px; }

/* meta row */
.loader__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 340px;
  font: 500 11px 'DM Mono';
  color: var(--muted);
}
.loader__counter {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--teal);
}

/* progress bar */
.loader__bar {
  width: 340px;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.loader__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, #07877e 100%);
  border-radius: inherit;
  transition: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.page {
  min-height: 745px;
  background: var(--mint);
  overflow: hidden;
  position: relative;
}
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 92px, rgba(6,31,45,.026) 93px 94px);
  pointer-events: none;
}

.nav {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 42px;
  position: relative;
  z-index: 3;
}

.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand svg { width: 29px; height: 29px; }
.brand__dot { color: var(--teal); }

.nav__links { display: flex; gap: 28px; margin-left: 26px; }
.nav__links a, .text-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nav__links a:hover, .text-link:hover { color: var(--teal); }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 25px; }

.button {
  background: var(--teal);
  color: #fff;
  border: 0;
  border-radius: 99px;
  padding: 15px 22px;
  font: 700 14px Manrope;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(11,156,145,.18);
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: #07877e; }
.button span { font-size: 19px; line-height: 10px; }
.button--small { padding: 11px 17px; font-size: 13px; }
.button--light { background: var(--lime); color: var(--ink); margin-top: 15px; box-shadow: none; }
.button--light:hover { background: #d8f58f; }

.menu { display: none; background: transparent; border: 0; cursor: pointer; padding: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 55px;
  min-height: 650px;
  padding: 58px 0 86px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--teal);
  margin: 0 0 18px;
  display: block;
}
.eyebrow__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 0 5px rgba(11,156,145,.14);
}

/* Hero title — GSAP line-mask reveal */
.hero__title {
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -4px;
  margin: 0 0 24px;
  max-width: 650px;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
}
.hero__line-inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.hero__line-inner--em { color: var(--teal); }

h1 {
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -4px;
  margin: 0 0 24px;
  max-width: 650px;
}
em { font-style: normal; color: var(--teal); }

.hero__lede {
  max-width: 520px;
  line-height: 1.7;
  color: var(--muted);
  font-size: 17px;
}
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }

.watch-link { text-decoration: none; font-weight: 800; font-size: 14px; }
.watch-link b {
  display: inline-grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 10px;
  margin-right: 7px;
}

.trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: #547078;
  margin-top: 42px;
}
.trust div { width: 3px; height: 3px; border-radius: 50%; background: #92a69e; }

/* ============================================================
   VISUAL / HERO RIGHT COLUMN
   ============================================================ */
.visual { height: 470px; position: relative; }

.orbit {
  position: absolute;
  border: 1px solid rgba(11,156,145,.18);
  border-radius: 50%;
  transform: rotate(-35deg);
}
.orbit--a { width: 510px; height: 275px; left: 0; top: 70px; }
.orbit--b { width: 360px; height: 190px; left: 78px; top: 115px; }

/* Ledger panel — replaces the bank card completely */
.ledger-panel {
  position: absolute;
  right: 5px;
  top: 8px;
  width: 310px;
  border-radius: 18px;
  padding: 22px 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 23px 35px rgba(6,31,45,.35);
  z-index: 2;
  transform: rotate(3deg);
}
.ledger-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.ledger-panel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(11,156,145,.22);
}
.ledger-panel__label {
  font: 500 9px 'DM Mono';
  letter-spacing: 1.4px;
  color: #7dadb4;
  flex: 1;
}
.ledger-panel__badge {
  font: 700 9px 'DM Mono';
  letter-spacing: 1px;
  background: rgba(197,238,107,.15);
  color: var(--lime);
  border-radius: 4px;
  padding: 3px 6px;
}
.ledger-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.ledger-panel__row span { font-size: 11px; color: #7dadb4; }
.ledger-panel__row strong {
  font: 500 22px 'DM Mono';
  letter-spacing: -1px;
  color: #fff;
}
.ledger-panel__row--muted span { font-size: 10px; color: #4d7680; }
.ledger-panel__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 14px 0;
}
.ledger-panel__metric { display: flex; justify-content: space-between; margin-bottom: 5px; }
.ledger-panel__metric span { font-size: 11px; color: #7dadb4; }
.ledger-panel__dark {
  font: 700 12px 'DM Mono';
  color: var(--coral);
}
.ledger-panel__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ledger-panel__footer span {
  font: 700 12px Manrope;
  letter-spacing: -.5px;
}
.ledger-panel__footer em { color: var(--teal); font-style: normal; }
.ledger-panel__cta {
  font: 700 11px Manrope;
  color: var(--lime);
  text-decoration: none;
}
.ledger-panel__cta:hover { text-decoration: underline; }

.record {
  position: absolute;
  width: 355px;
  right: 55px;
  top: 110px;
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  z-index: 1;
  box-shadow: var(--shadow);
}
.record__head { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.record__head div:nth-child(2) { display: flex; flex-direction: column; }
.record__head span { font-size: 10px; color: var(--muted); }
.avatar {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--lime);
  font-weight: 800;
  flex-shrink: 0;
}
.status { margin-left: auto !important; color: var(--teal) !important; font-weight: 800; }
.status i { width: 7px; height: 7px; background: var(--teal); display: inline-block; border-radius: 50%; }

.record__metric {
  margin: 18px 0 14px;
  padding: 14px;
  background: #f3f8f5;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.record__metric span, .record__metric small, .record__rows span { font-size: 11px; color: var(--muted); }
.record__metric strong { font: 500 27px 'DM Mono'; }
.record__metric small { grid-column: 1/3; }
.record__rows { display: grid; gap: 10px; }
.record__rows div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #edf0ee;
  padding-bottom: 8px;
}
.record__rows b { font: 500 13px 'DM Mono'; color: var(--teal); }
.record__rows .danger { color: var(--coral); }
.record__button {
  margin-top: 16px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
}

.float-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 12px;
  border-radius: 10px;
  box-shadow: 0 9px 18px rgba(6,31,45,.08);
  font-size: 11px;
  font-weight: 800;
}
.float-chip--one { left: 8px; top: 190px; color: var(--teal); }
.float-chip--two { right: -2px; bottom: 40px; }
.float-chip--two b { color: var(--teal); font-size: 16px; }

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos { background: #fff; border-bottom: 1px solid var(--line); padding: 25px 0; }
.logos .wrap { display: flex; align-items: center; justify-content: space-between; }
.logos span { font-size: 12px; color: var(--muted); }
.logos__items { display: flex; gap: 40px; }
.logos b { font-size: 14px; color: #64777c; }

/* ============================================================
   FINDING BANNER
   ============================================================ */
.finding-banner {
  background: #fff7ed;
  border-top: 1px solid #f5d9a8;
  border-bottom: 1px solid #f5d9a8;
  padding: 18px 0;
}
.finding-banner__in {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.finding-banner__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.finding-banner p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5c3a00;
  min-width: 200px;
}
.finding-banner strong { color: #3d2500; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 118px 0; }
.section--tint { background: #f1f7f4; }

.section__intro { max-width: 700px; }
.section__intro h2, .developer h2, .contact h2, .caveat-box h2 {
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -2.8px;
  margin-bottom: 21px;
}
.section__intro > p:last-child { max-width: 580px; color: var(--muted); line-height: 1.7; }
.section__intro--center { text-align: center; margin: auto; }

/* ============================================================
   DATA GRID
   ============================================================ */
.data-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 17px;
  margin-top: 54px;
}
.data-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.data-card p { font-size: 13px; color: var(--muted); }
.data-card strong { font: 500 43px 'DM Mono'; letter-spacing: -2px; margin: auto 0 8px; }
.data-card > span { font-size: 12px; color: var(--muted); line-height: 1.5; }
.data-card--feature { background: var(--ink); color: #fff; border: 0; }
.data-card--feature p, .data-card--feature > span { color: #a8c5c5; }
.data-card__icon { font-size: 28px !important; color: var(--lime) !important; }
.mini-bars { display: flex; align-items: end; gap: 5px; height: 35px; margin-top: 13px; }
.mini-bars i { display: block; background: var(--lime); width: 14px; border-radius: 3px; }
.mini-bars i:nth-child(1) { height: 28%; }
.mini-bars i:nth-child(2) { height: 48%; }
.mini-bars i:nth-child(3) { height: 36%; }
.mini-bars i:nth-child(4) { height: 76%; }
.mini-bars i:nth-child(5) { height: 57%; }
.mini-bars i:nth-child(6) { height: 92%; }
.mini-bars i:nth-child(7) { height: 68%; }
.meter { height: 7px; background: #e7efeb; border-radius: 9px; margin-top: 19px; }
.meter i { display: block; background: var(--teal); height: 100%; width: 55%; border-radius: 9px; transition: width 1s; }
.text-value { font-family: Manrope !important; font-size: 31px !important; line-height: 1.1; }
.data-card a { font-size: 12px; color: var(--teal); font-weight: 800; text-decoration: none; margin-top: auto; }

/* ============================================================
   PRODUCT GRID — what's actually running, one card per real page
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 54px;
}
.product-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.product-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.product-card__tag {
  display: inline-block;
  font: 700 11px/1 'DM Mono', monospace;
  letter-spacing: 0.02em;
  color: var(--teal);
  background: #e6f5f3;
  padding: 4px 9px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.product-card__tag--partial { color: #92620a; background: #fdf1dc; }
.product-card h3 { font-size: 18px; margin: 0 0 8px; }
.product-card p { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 0; }
.product-card code { font: 12px 'DM Mono', monospace; background: #eef4f1; padding: 1px 5px; border-radius: 4px; }

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 62px;
}
.steps article { border-top: 1px solid #b9d1c5; padding-top: 24px; }
.steps span { font: 500 13px 'DM Mono'; color: var(--teal); }
.steps h3 { font-size: 21px; margin: 16px 0 10px; }
.steps p { font-size: 14px; line-height: 1.7; color: var(--muted); }
.steps code { font: 12px 'DM Mono'; background: #e4f0eb; padding: 2px 5px; border-radius: 4px; }

/* ============================================================
   COMPARE GRID — Observed vs Interrogated
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 54px;
}
.compare-card {
  border-radius: 14px;
  padding: 28px 32px;
  border: 1px solid var(--line);
}
.compare-card--bad { background: #fdf5f5; border-color: #f5c8c5; }
.compare-card--good { background: var(--ink); color: #fff; border-color: var(--ink); }
.compare-card__label {
  font: 700 10px 'DM Mono';
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.compare-card--bad .compare-card__label { color: var(--coral); }
.compare-card--good .compare-card__label { color: var(--lime); }
.compare-card ul { margin: 0; padding: 0 0 0 18px; }
.compare-card li { font-size: 14px; line-height: 1.8; color: var(--muted); }
.compare-card--good li { color: #a8c5c5; }

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.metric-item {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.metric-item:last-child { border-right: 0; }
.metric-item > span {
  display: block;
  font: 700 11px 'DM Mono';
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.metric-item p { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ============================================================
   DEVELOPERS
   ============================================================ */
.developer { background: var(--ink); color: #fff; padding: 105px 0; }
.developer__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.developer .eyebrow { color: var(--lime); }
.developer p:not(.eyebrow) { color: #a6c0c3; line-height: 1.7; max-width: 475px; }
.developer pre {
  margin: 0; padding: 28px; overflow: auto;
  border: 1px solid #274752;
  border-radius: 15px;
  background: #092a38;
  color: #f5fbf5;
  font: 13px/1.7 'DM Mono';
}
.code__muted { color: #77949a; }
.code__blue  { color: #8ecbff; }
.code__green { color: #c5ee6b; }
.code__gold  { color: #ffcd76; }

/* ============================================================
   CAVEAT BOX
   ============================================================ */
.caveat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px 56px;
  box-shadow: 0 12px 28px rgba(6,31,45,.05);
}
.caveat-box .eyebrow { color: var(--muted); }
.caveat-box h2 { margin-bottom: 28px; }
.caveat-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.caveat-body p { font-size: 14px; line-height: 1.75; color: var(--muted); margin: 0; }
.caveat-body b { color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin: 54px auto 0; }
.qa {
  border-bottom: 1px solid var(--line);
}
.qa summary {
  padding: 22px 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qa summary::after {
  content: '+';
  font-size: 22px;
  color: var(--teal);
  font-weight: 400;
  transition: transform .25s;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p {
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
}
.contact > div > p { color: var(--muted); line-height: 1.7; max-width: 540px; }
.contact form { align-self: start; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 15px;
  font: 14px Manrope;
  outline-color: var(--teal);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--teal);
}
.field textarea { resize: vertical; min-height: 110px; }
.form__ok {
  display: none;
  margin-top: 12px;
  font-size: 13px;
  color: var(--teal);
  background: #eafaf8;
  padding: 12px;
  border-radius: 8px;
}
.form__ok.visible { display: block; }
.form__note { font-size: 12px; color: var(--muted); margin: 10px 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #f1f7f4;
  border-top: 1px solid var(--line);
  padding: 48px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.foot-brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}
.foot-grid > div > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
}
.foot-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s;
}
.foot-col a:hover { color: var(--teal); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   ANIMATIONS (kept in styles.css, subtle versions in motion.css)
   ============================================================ */
@keyframes shine {
  20%, 100% { transform: translateX(120%); }
}

/* ============================================================
   RESPONSIVE — 850px
   ============================================================ */
/* Nav collapse: its own, wider breakpoint. The header's natural content
   width (logo + 7 links + the "Developer Portal" button) measures ~1263px,
   so anything narrower than that was already cramping the links together
   well before 850px — a 13" laptop with the browser at, say, 1152px got a
   nav squeezed into less space than it needed rather than a working menu
   bar. Kept separate from the 850px block below, which is genuine
   phone/tablet content reflow (hero columns, card grids) and has no reason
   to fire just because the nav also needs to collapse. */
@media (max-width: 1300px) {
  /* The hamburger toggles .is-open on .nav__links (app.js). That class was
     never styled, so the button reported aria-expanded="true" and the menu
     stayed display:none — it could not open at all. */
  .nav__links { display: none; }
  .nav__actions .text-link { display: none; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 8px;
    background: var(--paper, #fff);
    border-bottom: 1px solid var(--line, #e5e7eb);
    box-shadow: 0 12px 24px rgba(6, 31, 45, 0.08);
    z-index: 60;
  }
  .nav__links.is-open a { padding: 12px 14px; }
  .nav { position: relative; }
  .nav { gap: 0; }
  .nav__actions { margin-left: auto; margin-right: 16px; }
  .menu { display: grid; gap: 5px; }
  .menu i { width: 22px; height: 2px; background: var(--ink); display: block; }
}

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; padding-top: 52px; }
  .visual { max-width: 550px; width: 100%; margin: auto; }

  .data-grid, .developer__grid, .contact, .compare-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: 1fr 1fr; }
  .metric-item:nth-child(even) { border-right: 0; }
  .metric-item { border-bottom: 1px solid var(--line); }
  .metric-item:last-child, .metric-item:nth-last-child(2):nth-child(odd) { border-bottom: 0; }

  .caveat-body { grid-template-columns: 1fr; gap: 16px; }
  .caveat-box { padding: 32px 28px; }

  .foot-grid { grid-template-columns: 1fr 1fr; }
  .logos .wrap { display: block; }
  .logos__items { margin-top: 15px; gap: 20px; flex-wrap: wrap; }
  .developer__grid, .contact { gap: 38px; }
}

/* ============================================================
   RESPONSIVE — 560px
   ============================================================ */
@media (max-width: 560px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .page { min-height: auto; }
  .nav { height: 76px; }
  .nav__actions .button { padding: 9px 12px; font-size: 11px; }

  .hero { padding: 40px 0 52px; gap: 20px; }
  h1 { letter-spacing: -2.6px; font-size: 48px; }
  .hero__lede { font-size: 15px; }
  .hero__actions { gap: 15px; }
  .trust { display: none; }

  .visual { height: 395px; transform: scale(.87); transform-origin: top center; margin-bottom: -50px; }
  .record { right: 5px; }
  .ledger-panel { right: 0; }
  .float-chip--one { left: -6px; }

  .logos { padding: 20px 0; }
  .logos__items { font-size: 12px; }

  .section { padding: 72px 0; }
  .data-grid, .steps { grid-template-columns: 1fr; }
  .data-grid { margin-top: 35px; }
  .steps { gap: 24px; margin-top: 40px; }
  .metrics-strip { grid-template-columns: 1fr; }
  .metric-item { border-right: 0; border-bottom: 1px solid var(--line); }

  .developer { padding: 72px 0; }
  .developer pre { font-size: 11px; padding: 18px; }

  .contact { padding: 72px 0; grid-template-columns: 1fr; gap: 36px; }

  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 8px; }

  .finding-banner__in { gap: 14px; }
  .finding-banner .button { width: 100%; justify-content: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
