@keyframes grain-shift {
  0%   { background-position:   0px   0px; }
  10%  { background-position: -50px -100px; }
  20%  { background-position: -150px  50px; }
  30%  { background-position:  60px -80px; }
  40%  { background-position: -100px -60px; }
  50%  { background-position:  30px  80px; }
  60%  { background-position: -120px  20px; }
  70%  { background-position:  80px -40px; }
  80%  { background-position: -70px  120px; }
  90%  { background-position:  40px -120px; }
  100% { background-position:   0px   0px; }
}

/* ============ HUSCARL — Frame System ============ */
:root {
  --navy: #111924;
  --white: #ffffff;
  --arctic: #f2f2f2;
  --arctic-line: #e0e0e0;
  --ink: #323232;
  --muted: #5a6b85;
  --frame-pad: 24px;
  --col-gap: 24px;
  --section-y: 120px;
  --header-h: 92px;
  --border: 1px solid var(--arctic-line);
  --border-soft: 1px solid var(--arctic-line);
  --max-w: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--arctic); color: var(--ink); font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Frame ---------- */
.frame {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--frame-pad) var(--frame-pad) 0;
  min-height: 100vh;
}
.frame--no-top { padding-top: 0; }
.frame-inner {
  background: var(--white);
  border: var(--border);
  position: relative;
  overflow: hidden;
}
/* Hero: navy + canvas go full-bleed. Only background + canvas extend outside
   the central frame; all text/logo stays strictly within it. */
.hero-full {
  width: 100%;
  min-height: 100dvh;
  background: url('images/low/hero-bg.webp') center center / cover no-repeat, url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT/wAARCAAQACADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAgEF/8QAHxAAAgIBBAMAAAAAAAAAAAAAAQIAETEDEyFhMlKR/8QAFgEBAQEAAAAAAAAAAAAAAAAAAwAB/8QAFREBAQAAAAAAAAAAAAAAAAAAAAH/2gAMAwEAAhEDEQA/AMPaHsPsh01GWEColeZlqsPx3EGW2CauB1C9mXk3bQMpGDcq2P/Z') center center / cover var(--navy) no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 0;
  padding-top: var(--header-h);
}
.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' seed='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
/* Hero grid stays framed — text/buttons within the central zone */
.hero-full .hero-grid {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--frame-pad);
  padding-right: var(--frame-pad);
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
}

/* Brand wordmark text */
.brand-wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}
/* Frosted dark background appears once user scrolls away from top */
.site-header.scrolled,
.site-header:not(.site-header--on-hero) {
  background: var(--navy);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ---------- 3-column grid (invisible lines) ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.grid-3::before, .grid-3::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--arctic-line);
  pointer-events: none;
}
.grid-3::before { left: 33.333%; }
.grid-3::after { left: 66.666%; }

/* ---------- Header ---------- */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: var(--header-h);
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  color: var(--white);
  transition: background 0.3s, backdrop-filter 0.3s;
  padding-left: max(var(--frame-pad), calc((100vw - var(--max-w)) / 2 + var(--frame-pad)));
  padding-right: max(var(--frame-pad), calc((100vw - var(--max-w)) / 2 + var(--frame-pad)));
}
.brand {
  padding: 20px 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.brand-logo {
  display: block;
  height: 42px;
  width: auto;
}
.nav-cta {
  padding: 20px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}
.nav-cta > a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.nav-cta > a:not(.btn):hover,
.nav-cta > a:not(.btn).active { border-bottom-color: var(--white); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--navy);
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: var(--white); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
/* Stripe-style arrow: slides out to the right, replacement slides in from the left */
.btn-arrow {
  position: relative;
  display: inline-block;
  width: 0.9em;
  height: 1em;
  overflow: hidden;
  line-height: 1;
  vertical-align: middle;
}
.btn-arrow::before,
.btn-arrow::after {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  transition: transform .35s cubic-bezier(.65, .05, .36, 1);
}
.btn-arrow::after { transform: translateX(-120%); }
.btn:hover .btn-arrow::before { transform: translateX(120%); }
.btn:hover .btn-arrow::after { transform: translateX(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  border-bottom: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 620px;
  position: relative;
  z-index: 2;
}
.hero-content {
  grid-column: 1 / span 2;
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--arctic);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--arctic);
  opacity: 0.5;
}
h1.hero-title {
  font-size: clamp(18px, 5.22vw, 75px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
h1.hero-title span.line { display: block; white-space: nowrap; }
h1.hero-title span.accent { color: var(--arctic); }
h1.hero-title span.ice { color: #5E8C61; }
.hero-actions { display: flex; gap: 16px; margin-top: 8px; }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ---------- Section base ---------- */
section { border-bottom: var(--border); }
.section-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border-soft);
  position: relative;
}
.section-head::before, .section-head::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--arctic-line);
}
.section-head::before { left: 33.333%; }
.section-head::after { left: 66.666%; }
.section-label {
  padding: 24px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.section-label .num {
  font-weight: 600;
  color: var(--navy);
  background: var(--arctic);
  border: 1px solid var(--arctic-line);
  padding: 2px 8px;
  font-size: 11px;
}
.section-title {
  padding: 24px 32px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  grid-column: 2 / span 2;
}

/* ---------- Cards section ---------- */
.cards-section { background: var(--arctic); }

.cards-intro {
  padding: 80px 48px 56px;
}
.cards-intro p {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 66.666%;
  margin: 0;
}
.cards-intro p + p {
  margin-top: 1em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 48px 64px;
}

.card {
  background: var(--white);
  border: 1px solid var(--arctic-line);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  position: relative;
  transition: transform .35s ease;
}
.card:hover {
  transform: scale(1.02);
}
/* Border-only spotlight: gradient masked to the 2px border ring */
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 11px;
  padding: 2px;
  background: radial-gradient(
    300px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(17, 25, 36, 1) 0%,
    transparent 65%
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover::before {
  opacity: 1;
}
.card.span-2 { grid-column: span 2; }
.cards-grid .card:nth-child(1),
.cards-grid .card:nth-child(2) { min-height: 660px; }
.cards-grid .card:nth-child(3),
.cards-grid .card:nth-child(4) { min-height: 440px; }
.card.span-1 { grid-column: span 1; }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.card-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
}
.card-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  flex: 1;
  margin: 0;
}
.card-subtitle {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 560px;
}

/* ---------- Card viz preview (Risk Map) ---------- */
.card-viz {
  flex: 1;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  margin: 16px -32px -32px -32px;
  border-radius: 0 0 10px 10px;
  min-height: 420px;
}
.card-viz-hrm {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
.card-viz-hrm iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
  display: block;
  pointer-events: none;
  transform: scale(0.9);
  transform-origin: center center;
}
.card-viz-bullets {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 32px 40px 32px 24px;
}
.card-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}
.bullet-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-top: 2px;
}
.bullet-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
}
.bullet-icon .icon-rest  { opacity: 1; }
.bullet-icon .icon-hover { opacity: 0; }
.card:hover .icon-rest  { opacity: 0; }
.card:hover .icon-hover { opacity: 1; }

/* Card 2: icon then text, spread evenly, centered */
[data-card="1"] .card-bullets {
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  gap: 0;
  margin-top: 20px;
}
[data-card="1"] .card-bullets li {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
[data-card="1"] .bullet-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  margin-top: 0;
}
[data-card="1"] .bullet-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-bullet-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.card-bullet-icon--x {
  background: rgba(115, 40, 40, 0.12);
  color: rgb(115, 40, 40);
}
.card-bullet-icon--tick {
  background: rgba(25, 100, 50, 0.12);
  color: rgb(25, 100, 50);
}
.bullet-main {
  display: block;
  font-weight: 500;
  color: var(--ink);
}
.bullet-sub {
  display: block;
  font-size: 13px;
  color: var(--navy);
  margin-top: 3px;
}

/* ---------- Card 2: map frame + compact bullets ---------- */
.cards-grid .card:nth-child(2) { overflow: hidden; }
.card-map-content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.card-map-frame {
  flex: 1;
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(17, 25, 36, 0.1);
  box-shadow: 0 2px 14px rgba(17, 25, 36, 0.09);
  overflow: hidden;
  background: #fff;
}
.card-map-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-bullets--compact {
  gap: 12px;
  flex-shrink: 0;
}
.bullet-body {
  display: flex;
  flex-direction: column;
}

.card-tag {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid var(--arctic-line);
}


/* ---------- Cards scroll-entrance animation ---------- */
.cards-animate .card {
  opacity: 0;
  translate: 0 24px;
  transition: transform .35s ease,
              translate .6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cards-animate .card.card-visible {
  opacity: 1;
  translate: 0 0;
}

/* ---------- Outcomes card (card 4): left bullets + right framed map ---------- */
.card-outcomes {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-top: 20px;
  gap: 28px;
}
.card-outcomes-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-outcomes-body .card-bullets--compact {
  gap: 32px;
}
.card-outcomes-side {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}
.card-outcomes-side .card-map-frame {
  flex: 0 0 auto;
  min-height: 0;
  max-height: 260px;
}

/* ---------- TCOR Card ---------- */
.card-tcor {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 0;
}
.tcor-svg {
  width: 100%;
  height: auto;
  display: block;
  font-family: 'Inter', sans-serif;
  max-height: 210px;
}
.tcor-before {
  fill: rgba(17,25,36,0.05);
  stroke: rgba(17,25,36,0.22);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
}
.tcor-after {
  fill: rgba(39,196,106,0.15);
  stroke: #27c46a;
  stroke-width: 2;
}
.tcor-dot { fill: #27c46a; }
.tcor-label {
  font-weight: 400;
  fill: var(--navy);
  font-family: 'Inter', sans-serif;
}
.tcor-legend {
  font-size: 9.5px;
  fill: var(--navy);
}
.tcor-metrics {
  display: flex;
  border-top: 1px solid var(--arctic-line);
  margin-top: auto;
}
.tcor-metric {
  flex: 1;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tcor-metric + .tcor-metric { border-left: 1px solid var(--arctic-line); }
.tcor-metric-label {
  font-size: 13px;
  color: var(--navy);
}
.tcor-metric-value {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ---------- Proof / Stats ---------- */
.proof-section { background: var(--white); }
.proof-intro {
  padding: 80px 48px 56px;
  border-bottom: 1px solid var(--arctic-line);
}
.proof-intro p {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 66.666%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.stats-grid::before, .stats-grid::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--arctic-line);
}
.stats-grid::before { left: 33.333%; }
.stats-grid::after { left: 66.666%; }
.stat {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  justify-content: center;
}
.stat-figure {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 15px;
  color: var(--navy);
}
/* ---------- CTA section ---------- */
.cta-section {
  background: url('images/low/cta-bg.webp') center 30% / cover no-repeat;
  color: var(--white);
  border-bottom: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  min-height: 360px;
}
.cta-body {
  grid-column: 1 / span 2;
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.cta-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-side {
  padding: 96px 48px;
  display: flex;
  align-items: center;
}
.cta-sub {
  color: rgba(242,242,242,0.70);
  max-width: 480px;
  font-size: 17px;
  line-height: 1.65;
}
.cta-side-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cta-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-checks li {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cta-checks li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  flex-shrink: 0;
  position: relative;
  top: -2px;
}

/* ---------- Footer ---------- */
.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  background: var(--white);
}
.site-footer::before, .site-footer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--arctic-line);
}
.site-footer::before { left: 33.333%; }
.site-footer::after { left: 66.666%; }
.foot-cell {
  padding: 32px;
  font-size: 13px;
  color: var(--navy);
  display: flex;
  align-items: center;
}
.foot-cell.right { justify-content: flex-end; align-items: center; gap: 8px; }
.foot-cell.right img { height: 28px; width: auto; max-width: 100%; display: block; flex-shrink: 0; }
.foot-cell.center { justify-content: center; gap: 18px; }
.foot-cell a:hover { color: var(--navy); }

/* ---------- About page ---------- */
.page-hero {
  background: var(--white);
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  min-height: 360px;
}
.page-hero-body {
  grid-column: 1 / span 2;
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.page-hero-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}

.about-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  border-bottom: var(--border);
}
.about-meta {
  padding: 64px 48px;
  border-right: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-meta .num { font-size: 12px; letter-spacing: 0.2em; color: var(--muted); }
.about-meta h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.about-body {
  grid-column: 2 / span 2;
  padding: 64px 48px;
  display: grid;
  gap: 24px;
  font-size: 16px;
  color: var(--ink);
}
.about-body p { color: var(--muted); max-width: 680px; line-height: 1.75; }
.about-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.mission-pull {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-left: 3px solid #5E8C61;
  padding-left: 24px;
  max-width: 600px;
}
.investor-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.investor-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
}
.team-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy);
}
.team-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }
.team-info {
  position: absolute;
  inset: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(6,16,34,0.82) 0%, transparent 55%);
  transition: background 0.35s;
}
.team-card:hover .team-info {
  background: rgba(6, 16, 34, 0.84);
}
.team-name {
  position: absolute;
  bottom: 40px; left: 28px; right: 28px;
  font-size: 18px; font-weight: 600; color: #fff;
}
.team-role {
  position: absolute;
  bottom: 22px; left: 28px; right: 28px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.team-bio {
  position: absolute;
  top: 28px; left: 28px; right: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.team-card:hover .team-bio {
  opacity: 1;
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.investor-card {
  border: 1px solid var(--arctic-line);
  margin: -1px 0 0 -1px;
  padding: 32px;
  min-height: 140px;
  display: flex;
  align-items: center;
  background: var(--white);
}
.investor-card .name { font-size: 18px; font-weight: 600; }

/* ---------- Logo marquee band ---------- */
.logos-band {
  border-bottom: var(--border);
  background: var(--white);
  overflow: hidden;
}
.logos-band-head {
  padding: 56px 48px 56px;
}
.logos-band-head p {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 66.666%;
}
.logos-track-wrap {
  overflow: hidden;
  padding: 0 0 52px;
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: logos-scroll 30s linear infinite;
  padding: 0 40px;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.25s;
}
.logo-item:hover { opacity: 0.85; }
.logo-item img {
  height: 20px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: grayscale(1);
}
/* Heights calibrated so every logo's ink content renders at exactly 20px */
.logo-item img[src*="Airbnb"]   { height: 20px; }
.logo-item img[src*="openai"]   { height: 44px; }
.logo-item img[src*="Stripe"]   { height: 20px; }
.logo-item img[src*="Coinbase"] { height: 20px; }
.logo-item img[src*="DoorDash"] { height: 100px; }
.logo-item img[src*="Dropbox"]  { height: 20px; }
.logo-item img[src*="Reddit"]   { height: 44px; }
.logo-item img[src*="instacart"]{ height: 100px; }
.logo-item img[src*="Twitch"]   { height: 20px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  border-bottom: var(--border);
}
.contact-info {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.contact-info p { color: var(--muted); max-width: 320px; }
.contact-info .pair { display: grid; gap: 4px; }
.contact-info .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info .value { font-size: 15px; }

.contact-image {
  background: url('images/low/contact-bg.webp') 85% 30% / cover no-repeat;
  min-height: 480px;
}
.form-direct {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--arctic-line);
  margin-bottom: 4px;
}
.form-direct a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form {
  grid-column: 2 / span 2;
  padding: 64px 48px;
  display: grid;
  gap: 24px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  border: 1px solid var(--arctic-line);
  background: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--navy);
}
.field textarea { min-height: 140px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; flex-wrap: wrap; }
.form-feedback { font-size: 14px; margin: 0; }
.form-footnote {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  margin-top: -8px;
}
.form-footnote a { color: var(--navy); }
.form-footnote a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root { --frame-pad: 12px; }
  .grid-3, .hero-grid, .cards-grid, .stats-grid, .cta-grid,
  .site-footer, .page-hero-grid, .about-section, .contact-grid, .section-head {
    grid-template-columns: 1fr !important;
  }
  .site-header { grid-template-columns: 1fr auto !important; }
  .site-header::before, .grid-3::before, .hero-grid::before, .cards-grid::before, .stats-grid::before,
  .cta-grid::before, .site-footer::before, .section-head::before,
  .site-header::after, .grid-3::after, .hero-grid::after, .cards-grid::after, .stats-grid::after,
  .cta-grid::after, .site-footer::after, .section-head::after { display: none; }
  .card.span-2, .card.span-1, .hero-content, .cta-body, .page-hero-body, .about-body,
  .contact-form, .section-title { grid-column: 1 !important; }
  .nav-cta { gap: 16px; }
  .brand { border-right: 0; }
  .hero-content, .cta-body, .page-hero-body, .about-meta, .about-body, .contact-info,
  .contact-form, .stat, .card { padding: 40px 24px; }
  .row-2 { grid-template-columns: 1fr; }
  .team-grid, .investor-grid { grid-template-columns: 1fr; }
  .foot-cell, .foot-cell.center, .foot-cell.right {
    justify-content: flex-start;
    padding: 16px 24px;
  }
  .foot-cell:first-child { padding-top: 32px; }
  .foot-cell:last-child  { padding-bottom: 32px; }
  .card-outcomes {
    flex-direction: column;
  }
  .card-outcomes-side {
    flex: 0 0 auto;
    width: 100%;
    padding-top: 0;
  }
  .card-outcomes-side .card-map-frame {
    max-height: 220px;
  }
}
