/* ==========================================================================
   Trenton Collective — shared design system
   Brand palette and typefaces carried over from the original site.
   ========================================================================== */

:root {
  /* Brand */
  --navy: #1a2e4a;
  --teal: #2a7fa5;
  --teal-light: #3db3d4;
  --gold: #c9a832;
  --green: #7ab648;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --gray: #6b7a8d;
  --dark: #0e1c2f;

  /* Derived surfaces + lines */
  --sand: #eef3f8;
  --line: rgba(26, 46, 74, 0.12);
  --line-strong: rgba(26, 46, 74, 0.22);
  --line-dark: rgba(255, 255, 255, 0.09);
  --ink-soft: #46586e;

  /* Type */
  --display: 'Barlow Condensed', 'Barlow', sans-serif;
  --body: 'Barlow', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;

  /* Rhythm */
  --gut: 48px;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); }

::selection { background: rgba(61, 179, 212, 0.28); }

:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
  border-radius: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gut);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gut);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--dark);
  padding: 12px 20px; font-family: var(--display);
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── SECTION SHELLS ───────────────────────────────────────────────────── */

.section { padding: 104px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section--light { background: var(--white); }
.section--sand { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--dark { background: var(--dark); color: var(--white); }

.section--navy .section-title,
.section--dark .section-title { color: var(--white); }

/* Hairline grid texture for dark sections */
.grid-texture {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 25%, transparent 78%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: currentColor; opacity: 0.6;
}
.section--navy .eyebrow,
.section--dark .eyebrow { color: var(--teal-light); }

.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.section-title .teal { color: var(--teal); }
.section--navy .section-title .teal,
.section--dark .section-title .teal { color: var(--teal-light); }
.section-title .gold { color: var(--gold); }
.section-title .green { color: var(--green); }

.section-lede {
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 68ch;
  margin-top: 22px;
}
.section--navy .section-lede,
.section--dark .section-lede { color: rgba(255,255,255,0.66); }

/* Asymmetric section head: label rail + content */
.head-split {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 56px;
}
.head-split .head-rail {
  border-left: 2px solid var(--teal);
  padding-left: 20px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--teal);
  line-height: 1.9;
}
.section--navy .head-split .head-rail,
.section--dark .head-split .head-rail {
  border-left-color: var(--teal-light); color: var(--teal-light);
}
.head-split .head-rail span { display: block; color: var(--gray); letter-spacing: 1.4px; }
.section--navy .head-split .head-rail span,
.section--dark .head-split .head-rail span { color: rgba(255,255,255,0.4); }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700; font-size: 15px;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: #e0bc3a; }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-light); color: var(--dark); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-ghost-light {
  background: transparent; color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost-light:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-weight: 700; font-size: 14px;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--teal); text-decoration: none;
}
.link-arrow svg { transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.section--navy .link-arrow,
.section--dark .link-arrow { color: var(--teal-light); }

/* ── NAV ──────────────────────────────────────────────────────────────── */

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gut);
  background: rgba(14, 28, 47, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600; font-size: 14px;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal-light); }
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--teal-light);
}
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 11px 20px;
  border-radius: 4px;
  font-weight: 700;
  border-bottom: none;
}
.nav-links .nav-cta:hover { background: #e0bc3a; color: var(--dark); }
.nav-links .nav-cta[aria-current="page"] { color: var(--dark); border-bottom: none; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px; padding: 9px 11px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--white);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle span + span { margin-top: 4px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13px; letter-spacing: 1px; }
}

@media (max-width: 940px) {
  :root { --gut: 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10, 21, 36, 0.99);
    border-bottom: 1px solid var(--line-dark);
    padding: 8px 24px 24px;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-open .nav-links { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 16px 0; font-size: 16px; border-bottom: none; }
  .nav-links a[aria-current="page"] { color: var(--teal-light); }
  .nav-links li:last-child { border-bottom: none; margin-top: 16px; }
  .nav-links .nav-cta { text-align: center; padding: 15px 20px; }
}

/* ── PAGE HEADER (interior pages) ─────────────────────────────────────── */

.page-head {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: calc(var(--nav-h) + 88px) 0 88px;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 78% 30%, rgba(42,127,165,0.22) 0%, transparent 68%),
    radial-gradient(ellipse 40% 50% at 12% 90%, rgba(122,182,72,0.11) 0%, transparent 65%);
}
.page-head .container { position: relative; z-index: 2; }
.page-head-inner {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: end;
}
.page-head h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.page-head h1 .teal { color: var(--teal-light); }
.page-head h1 .gold { color: var(--gold); }
.page-head p {
  font-size: 18px; line-height: 1.75;
  color: rgba(255,255,255,0.66);
  max-width: 60ch;
}
.page-head-inner > p { padding-bottom: 6px; }
.page-head .eyebrow { color: var(--teal-light); }

.breadcrumb-note {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,0.34);
  margin-top: 26px;
}

@media (max-width: 940px) {
  .page-head { padding: calc(var(--nav-h) + 56px) 0 60px; }
  .page-head-inner { grid-template-columns: 1fr; gap: 26px; align-items: start; }
}

/* ── COLLECTIVE ACTION MODEL DIAGRAM ──────────────────────────────────── */

.cam {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 44px 40px 36px;
}
.section--navy .cam,
.section--dark .cam {
  background: rgba(255,255,255,0.03);
  border-color: var(--line-dark);
}

.cam-caption {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 34px;
}
.section--navy .cam-caption,
.section--dark .cam-caption { color: rgba(255,255,255,0.42); }
.cam-caption strong {
  font-weight: 600; color: var(--navy); letter-spacing: 2px;
}
.section--navy .cam-caption strong,
.section--dark .cam-caption strong { color: var(--white); }

.cam-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}
/* connecting spine */
.cam-track::before {
  content: '';
  position: absolute;
  top: 17px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 45%, var(--green) 78%, var(--gold) 100%);
  opacity: 0.55;
}

.cam-stage { position: relative; padding-top: 0; text-align: left; }

.cam-node {
  position: relative; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  border: 2px solid var(--teal);
  font-family: var(--mono);
  font-size: 12px; font-weight: 600;
  color: var(--teal);
  margin-bottom: 18px;
}
.section--navy .cam-node,
.section--dark .cam-node { background: var(--dark); }
.cam-stage:nth-child(4) .cam-node { border-color: var(--green); color: var(--green); }
.cam-stage:nth-child(5) .cam-node { border-color: var(--gold); color: var(--gold); }
.cam-stage:nth-child(6) .cam-node { border-color: var(--gold); color: var(--gold); }

.cam-node-dot {
  position: absolute; inset: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s, transform 0.3s;
}
.cam-stage:hover .cam-node-dot { opacity: 0.16; transform: scale(1); }

.cam-label {
  font-family: var(--display);
  font-weight: 800; font-size: 17px;
  line-height: 1.12;
  letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.section--navy .cam-label,
.section--dark .cam-label { color: var(--white); }

.cam-desc {
  font-size: 13.5px; line-height: 1.6;
  color: var(--gray);
  padding-right: 8px;
}
.section--navy .cam-desc,
.section--dark .cam-desc { color: rgba(255,255,255,0.55); }

/* measurement rail beneath the stages */
.cam-rail {
  margin-top: 34px;
  border: 1px dashed rgba(201,168,50,0.5);
  border-radius: 10px;
  background: rgba(201,168,50,0.07);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; line-height: 1.55;
  color: var(--ink-soft);
}
.section--navy .cam-rail,
.section--dark .cam-rail { color: rgba(255,255,255,0.68); }
.cam-rail-tag {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  border-right: 1px solid rgba(201,168,50,0.35);
  padding-right: 14px;
}

/* learning loop back to the start */
.cam-loop { margin-top: 12px; position: relative; padding-top: 26px; }
.cam-loop-line {
  height: 26px;
  border: 2px solid rgba(42,127,165,0.35);
  border-top: none;
  border-radius: 0 0 14px 14px;
  margin: 0 6%;
}
.cam-loop-text {
  position: relative;
  margin: 0 auto;
  margin-top: -13px;
  width: max-content; max-width: 100%;
  background: var(--white);
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--teal);
  text-align: center;
}
.section--navy .cam-loop-text,
.section--dark .cam-loop-text { background: var(--dark); color: var(--teal-light); }

@media (max-width: 1024px) {
  .cam { padding: 32px 22px 28px; }
  .cam-track { grid-template-columns: 1fr; gap: 0; }
  .cam-track::before {
    top: 8px; bottom: 8px; left: 17px; right: auto;
    width: 2px; height: auto;
    background: linear-gradient(180deg, var(--teal) 0%, var(--teal-light) 45%, var(--green) 78%, var(--gold) 100%);
  }
  .cam-stage { padding: 0 0 26px 56px; }
  .cam-stage:last-child { padding-bottom: 0; }
  .cam-node { position: absolute; left: 0; top: 0; margin-bottom: 0; }
  .cam-desc { padding-right: 0; }
  .cam-loop-line { margin: 0 12%; }
}

/* ── THREE FUNCTIONS ──────────────────────────────────────────────────── */

.fn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.fn-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 40px 34px 44px;
  position: relative;
  transition: background 0.25s ease;
}
.fn-card:first-child { border-left: 1px solid var(--line); }
.fn-card:hover { background: var(--off-white); }
.fn-card::before {
  content: '';
  position: absolute; top: -1px; left: 0; width: 0; height: 3px;
  background: var(--accent, var(--teal));
  transition: width 0.35s ease;
}
.fn-card:hover::before { width: 100%; }
.fn-num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--accent, var(--teal));
  margin-bottom: 26px;
  display: block;
}
.fn-icon { margin-bottom: 20px; color: var(--accent, var(--teal)); }
.fn-title {
  font-family: var(--display);
  font-weight: 900; font-size: 27px;
  line-height: 1.06; letter-spacing: 0.2px; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.fn-desc { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.fn-list {
  list-style: none;
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 9px;
}
.fn-list li {
  font-size: 14px; color: var(--ink-soft);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.fn-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  border: 1.5px solid var(--accent, var(--teal));
}

@media (max-width: 940px) {
  .fn-grid { grid-template-columns: 1fr; }
  .fn-card { border-left: 1px solid var(--line); }
}

/* ── STAT / DATA CARDS ────────────────────────────────────────────────── */

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 20px;
}
.data-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s;
}
.data-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.data-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent, var(--teal));
}
.data-kicker {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent, var(--teal-light));
  margin-bottom: 16px;
}
.data-num {
  font-family: var(--display);
  font-weight: 900; font-size: 54px; line-height: 1;
  color: var(--white);
}
.data-num .unit { font-size: 28px; }
.data-name {
  font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600; color: rgba(255,255,255,0.38);
  margin: 6px 0 18px;
}
.bar-track {
  width: 100%; height: 6px; border-radius: 4px;
  background: rgba(255,255,255,0.09);
  overflow: hidden;
}
.bar-fill { height: 6px; border-radius: 4px; background: var(--accent, var(--teal)); }
.bar-pair { display: flex; gap: 10px; }
.bar-pair > div { flex: 1; }
.bar-caption {
  font-family: var(--mono);
  font-size: 9.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 5px;
}
.data-note {
  font-size: 13.5px; line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}
.data-source {
  display: inline-block; margin-top: 16px;
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.8px;
  color: var(--teal-light); text-decoration: none;
}
.data-source:hover { text-decoration: underline; }
.data-source + .data-source { margin-left: 14px; }

/* Light-surface stat tile */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tile {
  background: var(--white);
  padding: 30px 26px;
}
.tile-num {
  font-family: var(--display);
  font-weight: 900; font-size: 44px; line-height: 1;
  color: var(--navy);
}
.tile-num .unit { font-size: 24px; color: var(--teal); }
.tile-label {
  font-size: 13.5px; line-height: 1.5; color: var(--gray);
  margin-top: 10px;
}
.tile-meta {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(107,122,141,0.7);
  margin-top: 12px;
}

/* ── INITIATIVE CARDS (Our Work) ──────────────────────────────────────── */

.init {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}
.init + .init { margin-top: 28px; }
.init-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 26px 34px;
  border-bottom: 1px solid var(--line);
  background: var(--off-white);
}
.init-title {
  font-family: var(--display);
  font-weight: 900; font-size: 27px; line-height: 1.08;
  text-transform: uppercase; color: var(--navy);
}
.init-domain {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 8px;
}
.status-pill {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px;
  white-space: nowrap;
}
.status-active { background: rgba(122,182,72,0.14); color: #4d8a1f; border: 1px solid rgba(122,182,72,0.35); }
.status-forming { background: rgba(42,127,165,0.12); color: var(--teal); border: 1px solid rgba(42,127,165,0.32); }
.status-scoping { background: rgba(107,122,141,0.12); color: var(--gray); border: 1px solid rgba(107,122,141,0.3); }

.init-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.init-cell {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.init-cell:nth-child(3n) { border-right: none; }
.init-cell:nth-last-child(-n+3) { border-bottom: none; }
.init-cell h4 {
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.init-cell h4::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.init-cell p { font-size: 14.5px; line-height: 1.68; color: var(--ink-soft); }
.init-cell ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.init-cell ul li {
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
  padding-left: 15px; position: relative;
}
.init-cell ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 1px; background: var(--line-strong);
}
.progress-meter { margin-top: 14px; }
.progress-meter .bar-track { background: rgba(26,46,74,0.09); }
.progress-meter .bar-fill { background: var(--green); }
.progress-caption {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gray); margin-top: 8px;
}

@media (max-width: 940px) {
  .init-body { grid-template-columns: 1fr; }
  .init-cell { border-right: none; }
  .init-cell:last-child { border-bottom: none; }
  .init-top { padding: 22px 24px; }
  .init-cell { padding: 22px 24px; }
}

/* ── APPLICATION AREAS ────────────────────────────────────────────────── */

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.area {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, var(--teal));
  border-radius: 0 12px 12px 0;
  padding: 28px 28px 30px;
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.area:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -24px rgba(26,46,74,0.35); }
.area-name {
  font-family: var(--display);
  font-weight: 900; font-size: 22px; text-transform: uppercase;
  letter-spacing: 0.3px; color: var(--navy);
  margin-bottom: 10px;
}
.area-desc { font-size: 14.5px; line-height: 1.68; color: var(--ink-soft); }
.area-q {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  font-family: var(--mono);
  font-size: 11.5px; line-height: 1.7; letter-spacing: 0.3px;
  color: var(--gray);
}

/* ── PARTNER AUDIENCES ────────────────────────────────────────────────── */

.aud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
}
.aud {
  background: rgba(255,255,255,0.02);
  padding: 30px 28px;
  transition: background 0.24s;
}
.aud:hover { background: rgba(255,255,255,0.06); }
.aud-who {
  font-family: var(--display);
  font-weight: 800; font-size: 20px; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--white);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.aud-who i {
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent, var(--teal-light));
  flex-shrink: 0;
  transform: rotate(45deg);
}
.aud-what { font-size: 14.5px; line-height: 1.68; color: rgba(255,255,255,0.58); }

/* ── STEP LIST (Our Model detail, How we work) ────────────────────────── */

.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 40px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--line); }
.step-mark {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal);
}
.step-mark .step-big {
  display: block;
  font-family: var(--display);
  font-weight: 900; font-size: 56px; line-height: 0.9;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-title {
  font-family: var(--display);
  font-weight: 900; font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05; text-transform: uppercase; letter-spacing: 0.2px;
  color: var(--navy);
  margin-bottom: 14px;
}
.step-title .sub {
  display: block;
  font-family: var(--body);
  font-weight: 500; font-size: 15px;
  letter-spacing: 0; text-transform: none;
  color: var(--teal);
  margin-top: 8px;
}
.step-body p { font-size: 16px; line-height: 1.78; color: var(--ink-soft); }
.step-body p + p { margin-top: 14px; }
.step-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 1.3px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  background: var(--off-white);
  border: 1px solid var(--line);
  color: var(--gray);
}
.section--navy .tag,
.section--dark .tag {
  background: rgba(255,255,255,0.05);
  border-color: var(--line-dark);
  color: rgba(255,255,255,0.55);
}

@media (max-width: 780px) {
  .step { grid-template-columns: 1fr; gap: 16px; padding: 34px 0; }
  .step-mark { display: flex; align-items: baseline; gap: 14px; }
  .step-mark .step-big { font-size: 40px; margin-bottom: 0; }
}

/* ── CALLOUT / QUOTE ──────────────────────────────────────────────────── */

.callout {
  border-left: 3px solid var(--gold);
  background: linear-gradient(100deg, rgba(201,168,50,0.09), rgba(201,168,50,0.02));
  padding: 28px 32px;
  border-radius: 0 12px 12px 0;
}
.callout p { font-size: 16.5px; line-height: 1.76; color: var(--navy); }
.callout .callout-label {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: #967d13; margin-bottom: 10px;
}
.section--navy .callout,
.section--dark .callout {
  background: linear-gradient(100deg, rgba(201,168,50,0.12), rgba(201,168,50,0.03));
}
.section--navy .callout p,
.section--dark .callout p { color: rgba(255,255,255,0.8); }
.section--navy .callout .callout-label,
.section--dark .callout .callout-label { color: var(--gold); }

.pull {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.42;
  color: var(--navy);
}
.pull em { font-style: italic; color: var(--teal); }
.section--navy .pull,
.section--dark .pull { color: var(--white); }
.section--navy .pull em,
.section--dark .pull em { color: var(--teal-light); }

/* ── RESOURCE / LIBRARY LIST ──────────────────────────────────────────── */

.res-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.res {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 26px 28px;
  background: var(--white);
  display: flex; flex-direction: column;
  transition: border-color 0.22s, transform 0.22s;
}
.res:hover { border-color: var(--teal); transform: translateY(-2px); }
.res-type {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--teal);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
}
.res-status {
  font-family: var(--mono);
  font-size: 9.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--line);
  border-radius: 100px; padding: 4px 9px;
}
.res-title {
  font-family: var(--display);
  font-weight: 800; font-size: 21px; line-height: 1.16;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 10px;
}
.res-desc { font-size: 14px; line-height: 1.66; color: var(--ink-soft); flex: 1; }
.res-foot {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gray);
}

/* ── PARTNER BADGES ───────────────────────────────────────────────────── */

.badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  font-family: var(--display);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.8px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.badge:hover { border-color: var(--teal); color: var(--teal); }
.section--navy .badge,
.section--dark .badge {
  background: rgba(255,255,255,0.04);
  border-color: var(--line-dark);
  color: rgba(255,255,255,0.78);
}

/* ── CTA BAND ─────────────────────────────────────────────────────────── */

.cta-band {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 96px 0;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 40%, rgba(42,127,165,0.24) 0%, transparent 66%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,50,0.12) 0%, transparent 64%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-inner {
  display: grid; grid-template-columns: 1.2fr auto;
  gap: 56px; align-items: center;
}
.cta-title {
  font-family: var(--display);
  font-weight: 900; font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.02; text-transform: uppercase; letter-spacing: -0.4px;
}
.cta-title .teal { color: var(--teal-light); }
.cta-text {
  font-size: 17px; line-height: 1.74;
  color: rgba(255,255,255,0.62);
  max-width: 58ch; margin-top: 18px;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 940px) {
  .cta-inner { grid-template-columns: 1fr; gap: 30px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ── FORM ─────────────────────────────────────────────────────────────── */

.form-shell {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 36px;
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 6px;
  padding: 13px 15px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--dark); color: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.28); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-light);
  background: rgba(255,255,255,0.08);
}
.field input:not(:placeholder-shown):invalid { border-color: rgba(226,110,90,0.7); }
.field-hint {
  font-size: 12.5px; color: rgba(255,255,255,0.34); line-height: 1.5;
}
.form-submit {
  font-family: var(--display);
  font-weight: 700; font-size: 16px;
  letter-spacing: 1.6px; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  border: none; border-radius: 4px;
  padding: 16px 30px; cursor: pointer; width: 100%;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: #e0bc3a; transform: translateY(-2px); }

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .form-shell { padding: 24px; }
}

/* ── SPLIT (two-column content) ───────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: start;
}
.split-tight { gap: 48px; }
.prose p { font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); }
.prose p + p { margin-top: 18px; }
.prose strong { color: var(--navy); font-weight: 600; }
.section--navy .prose p,
.section--dark .prose p { color: rgba(255,255,255,0.66); }
.section--navy .prose strong,
.section--dark .prose strong { color: var(--white); }

@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 72px 0; }
}

/* ── TEAM ─────────────────────────────────────────────────────────────── */

.founder {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.founder-img { height: 100%; min-height: 420px; object-fit: cover; object-position: center top; width: 100%; }
.founder-body { padding: 44px 44px 48px; }
.founder-role {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.founder-name {
  font-family: var(--display);
  font-weight: 900; font-size: 40px; line-height: 1;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 18px;
}
.founder-body p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }
.founder-body p + p { margin-top: 14px; }
.li-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--teal); text-decoration: none;
  border: 1px solid var(--line-strong); border-radius: 4px;
  padding: 9px 16px; margin-bottom: 22px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.li-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.people-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.person { background: var(--white); padding: 26px; }
.person-name {
  font-family: var(--display); font-weight: 800; font-size: 20px;
  text-transform: uppercase; color: var(--navy);
}
.person-role {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--gray); margin-top: 6px;
}

@media (max-width: 940px) {
  .founder { grid-template-columns: 1fr; }
  .founder-img { min-height: 300px; }
  .founder-body { padding: 30px 24px 34px; }
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--dark);
  padding: 72px var(--gut) 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 20px; }
.footer-about {
  font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.45);
  max-width: 42ch;
}
.footer-meta {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 18px;
}
.footer-col h4 {
  font-family: var(--display);
  font-weight: 800; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 14.5px; color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-soon {
  font-size: 14.5px; color: rgba(255,255,255,0.24);
  font-style: italic;
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 26px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
}
.footer-bottom p, .footer-bottom span {
  font-size: 12.5px; color: rgba(255,255,255,0.3);
}

@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

/* ── REVEAL ANIMATION ─────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-delay: 0ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   HOMEPAGE
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: calc(var(--nav-h) + 64px) 0 72px;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 62% at 72% 46%, rgba(42,127,165,0.24) 0%, transparent 68%),
    radial-gradient(ellipse 36% 40% at 92% 12%, rgba(122,182,72,0.13) 0%, transparent 62%),
    radial-gradient(ellipse 46% 46% at 8% 86%, rgba(201,168,50,0.10) 0%, transparent 62%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 68px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(42,127,165,0.14);
  border: 1px solid rgba(42,127,165,0.42);
  border-radius: 100px;
  padding: 7px 16px 7px 11px;
  margin-bottom: 26px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.35); }
}
.hero-badge span {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-light);
}

.hero-logo {
  width: auto; height: 84px; max-width: 100%;
  margin-bottom: 26px;
  animation: fadeUp 0.9s 0.05s ease both;
}

.hero-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(46px, 5.7vw, 82px);
  line-height: 0.94;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  color: var(--white);
}
.hero-h1 span { display: block; animation: fadeUp 0.9s ease both; }
.hero-h1 span:nth-child(1) { animation-delay: 0.12s; }
.hero-h1 span:nth-child(2) { animation-delay: 0.22s; color: var(--teal-light); }
.hero-h1 span:nth-child(3) { animation-delay: 0.32s; color: var(--gold); }

.hero-lede {
  font-size: 19px; line-height: 1.72;
  color: rgba(255,255,255,0.68);
  max-width: 54ch;
  margin-top: 26px;
  animation: fadeUp 0.9s 0.42s ease both;
}
.hero .btn-row { animation: fadeUp 0.9s 0.52s ease both; }

.hero-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line-dark);
  animation: fadeUp 0.9s 0.62s ease both;
}
.hero-strip div {
  padding: 18px 26px 0 0;
  margin-right: 26px;
  border-right: 1px solid var(--line-dark);
}
.hero-strip div:last-child { border-right: none; margin-right: 0; }
.hero-strip dt {
  font-family: var(--display);
  font-weight: 900; font-size: 15px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--white);
}
.hero-strip dd {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,0.34); margin-top: 5px;
}

/* Network visual */
.hero-visual {
  position: relative;
  animation: fadeUp 1s 0.35s ease both;
}
.hero-visual svg { width: 100%; height: auto; overflow: visible; }
.net-link {
  stroke: rgba(61,179,212,0.34);
  stroke-width: 1.2;
  fill: none;
}
.net-link-strong { stroke: rgba(61,179,212,0.6); stroke-width: 1.6; }
.net-pulse {
  stroke: var(--teal-light);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6 210;
  animation: netFlow 4.4s linear infinite;
}
@keyframes netFlow {
  from { stroke-dashoffset: 216; }
  to { stroke-dashoffset: 0; }
}
.net-node { fill: var(--dark); stroke: rgba(61,179,212,0.85); stroke-width: 1.6; }
.net-node-core { fill: rgba(42,127,165,0.2); stroke: var(--gold); stroke-width: 2; }
.net-dot { fill: var(--teal-light); }
.net-dot-gold { fill: var(--gold); }
.net-dot-green { fill: var(--green); }
.net-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.4px; letter-spacing: 1.1px; text-transform: uppercase;
  fill: rgba(255,255,255,0.5);
}
.net-text-core {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 15px; letter-spacing: 1.2px;
  text-transform: uppercase; fill: var(--white);
}
.net-ring {
  fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 1;
  stroke-dasharray: 3 6;
}
.net-ring-spin { animation: ringSpin 46s linear infinite; transform-origin: 260px 240px; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 46px; }
  .hero { min-height: 0; padding: calc(var(--nav-h) + 48px) 0 64px; }
  .hero-visual { max-width: 520px; }
}

/* Marquee band of principles */
.marquee {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  padding: 15px 0;
  display: flex;
}
.marquee-track {
  display: flex; align-items: center; gap: 44px;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  flex-shrink: 0; padding-right: 44px;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-weight: 700; font-size: 14px;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.marquee-item::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* "Why collective action" — interconnection visual */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 10px;
}
.why-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 28px;
  background: var(--white);
  position: relative;
}
.why-card-q {
  font-family: var(--serif);
  font-size: 20px; line-height: 1.4; font-style: italic;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-card p { font-size: 14.5px; line-height: 1.68; color: var(--ink-soft); }
.why-chain {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.why-chain-item {
  font-family: var(--display);
  font-weight: 700; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 16px;
  background: var(--white);
}
.why-chain-link { color: var(--teal); font-size: 15px; }

@media (max-width: 780px) {
  .why-grid { grid-template-columns: 1fr; }
}

.net-link-soft { stroke: rgba(255,255,255,0.13); stroke-width: 1; stroke-dasharray: 2 5; fill: none; }
.net-text-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.6px; letter-spacing: 1.7px; fill: var(--teal-light);
}
.hero-visual-note {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  text-align: center; margin-top: 14px;
}

/* ── SERVICE BLOCKS (What We Do) ──────────────────────────────────────── */

.svc { padding-top: 38px; border-top: 2px solid var(--accent, var(--teal)); }
.svc + .svc { margin-top: 84px; }
.svc-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 56px; align-items: start;
}
.svc-num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--accent, var(--teal));
  margin-bottom: 16px;
}
.svc-title {
  font-family: var(--display);
  font-weight: 900; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.02; letter-spacing: -0.3px; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.svc-desc { font-size: 16.5px; line-height: 1.78; color: var(--ink-soft); }
.svc-desc + .svc-desc { margin-top: 14px; }

.svc-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-item {
  background: var(--white);
  padding: 22px 22px 24px;
  transition: background 0.22s;
}
.svc-item:hover { background: var(--off-white); }
.svc-item-idx {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.6px;
  color: var(--accent, var(--teal));
  margin-bottom: 10px;
}
.svc-item-name {
  font-family: var(--display);
  font-weight: 800; font-size: 18px; line-height: 1.12;
  text-transform: uppercase; letter-spacing: 0.3px;
  color: var(--navy); margin-bottom: 7px;
}
.svc-item-desc { font-size: 13.5px; line-height: 1.6; color: var(--gray); }

@media (max-width: 940px) {
  .svc-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc + .svc { margin-top: 60px; }
}

/* ── INDICATOR TABLE ──────────────────────────────────────────────────── */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
table.indicators { width: 100%; border-collapse: collapse; min-width: 680px; }
table.indicators caption {
  text-align: left; padding: 20px 24px 0;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gray);
}
table.indicators th, table.indicators td {
  text-align: left; padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px; color: var(--ink-soft);
  vertical-align: top;
}
table.indicators thead th {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--gray);
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
table.indicators tbody tr:last-child td { border-bottom: none; }
table.indicators tbody tr:hover { background: var(--off-white); }
table.indicators td.metric {
  font-family: var(--display); font-weight: 900; font-size: 24px;
  color: var(--navy); white-space: nowrap; line-height: 1;
}
table.indicators td.what { font-weight: 500; color: var(--navy); }
table.indicators td.src {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.6px;
  color: var(--gray);
}

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-lines { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.contact-lines li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15.5px; color: rgba(255,255,255,0.72);
}
.contact-lines a { color: var(--teal-light); text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.contact-lines svg { color: var(--teal-light); flex-shrink: 0; }

/* ── RESPONSIVE CORRECTIONS ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .head-split { grid-template-columns: minmax(150px, 210px) 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .head-split { grid-template-columns: 1fr; gap: 20px; padding-bottom: 38px; }
  .head-split .head-rail {
    border-left: none; border-top: 2px solid var(--teal);
    padding: 12px 0 0; line-height: 1.6;
  }
  .section--navy .head-split .head-rail,
  .section--dark .head-split .head-rail { border-top-color: var(--teal-light); }
  .head-split .head-rail span { display: inline; }
  .head-split .head-rail span::before { content: ' · '; }
}

@media (max-width: 600px) {
  .section-title { font-size: clamp(28px, 8.4vw, 40px); }
  .section-lede { font-size: 16.5px; }
  .page-head h1 { font-size: clamp(36px, 11vw, 56px); }
  .hero-h1 { font-size: clamp(38px, 12vw, 60px); letter-spacing: -0.8px; }
  .hero-strip div { padding-right: 18px; margin-right: 18px; }
  .btn { font-size: 14px; padding: 14px 22px; }
  .btn-row .btn { flex: 1 1 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .fn-card, .area, .why-card { padding-left: 22px; padding-right: 22px; }
  .founder-body, .svc-item { padding-left: 20px; padding-right: 20px; }
  .cam-loop-line { margin: 0 18%; }
  .cam-loop-text { font-size: 10px; letter-spacing: 1.2px; }
  .cam-rail { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cam-rail-tag { border-right: none; padding-right: 0; }
  .step-mark .step-big { font-size: 34px; }
}

/* ── QA CORRECTIONS ───────────────────────────────────────────────────── */

/* Hero fact strip: three equal columns instead of an uneven wrap */
.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-strip div { padding: 18px 22px 0 0; margin-right: 22px; }

@media (max-width: 600px) {
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip div {
    padding: 14px 0; margin-right: 0;
    border-right: none; border-bottom: 1px solid var(--line-dark);
  }
  .hero-strip div:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Indicator cards: four across on wide screens so none is orphaned */
@media (min-width: 1080px) {
  .data-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .data-card { padding: 28px 22px; }
}

/* Source citations stack cleanly instead of hanging indented */
.data-source { display: block; margin-top: 9px; }
.data-source:first-of-type { margin-top: 16px; }
.data-source + .data-source { margin-left: 0; }

/* Collective Action Model: spine and loop end on the node centres */
@media (min-width: 1025px) {
  .cam-track::before { left: 18px; right: calc(16.6667% - 28px); }
  .cam-label { min-height: 2.24em; }
  .cam-loop-line { margin: 0 calc(16.6667% - 28px) 0 18px; }
}

/* Direction cue on the learning loop */
.cam-loop-line { position: relative; }
.cam-loop-line::before {
  content: ''; position: absolute;
  left: -2px; top: -1px; width: 9px; height: 9px;
  border-left: 2px solid rgba(42,127,165,0.35);
  border-top: 2px solid rgba(42,127,165,0.35);
  transform: rotate(45deg); transform-origin: top left;
}

/* Indicator table restacks into readable blocks on small screens
   (explicit roles in the markup keep the table semantics intact) */
@media (max-width: 700px) {
  .table-wrap { overflow-x: visible; }
  table.indicators { min-width: 0; }
  table.indicators caption { padding: 18px 20px 2px; }
  table.indicators thead { position: absolute; left: -9999px; }
  table.indicators tbody tr {
    display: block;
    padding: 18px 20px 20px;
    border-bottom: 1px solid var(--line);
  }
  table.indicators tbody tr:last-child { border-bottom: none; }
  table.indicators td {
    display: block; padding: 0; border-bottom: none;
  }
  table.indicators td.metric { font-size: 30px; margin-bottom: 8px; }
  table.indicators td.what { font-size: 16.5px; line-height: 1.4; margin-bottom: 7px; }
  table.indicators td.src { margin-top: 10px; }
}

/* Learning loop reads as a full arc on small screens: the caption sits below
   the line instead of punching a hole through it */
@media (max-width: 600px) {
  .cam-loop-line { margin: 0 8%; height: 20px; }
  .cam-loop-text {
    margin-top: 9px; background: none; padding: 0;
    line-height: 1.5;
  }
}

/* Brand mark keeps its own proportions at every size */
.hero-logo, .nav-logo img, .footer-logo { width: auto; object-fit: contain; }
@media (max-width: 600px) { .hero-logo { height: 64px; } }
