
:root {
  --primary: #8171D0;
  --primary-hover: #6F5DC4;
  --primary-press: #5D4DAD;
  --primary-soft: #F0EDF9;
  --primary-softer: #F6F4FC;

  --bg: #F8F6FB;
  --bg-card: #FFFFFF;
  --bg-alt: #FAF9FC;
  --text: #0F0F12;
  --text-muted: #54545E;
  --text-subtle: #8A8A93;
  --border: #ECEAF1;
  --border-strong: #DAD7E0;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-card: 24px;

  --shadow-sm: 0 1px 2px rgba(15, 15, 18, 0.04);
  --shadow-card: 0 1px 2px rgba(15, 15, 18, 0.04), 0 12px 32px rgba(89, 75, 162, 0.06);
  --shadow-card-hover: 0 1px 2px rgba(15, 15, 18, 0.04), 0 20px 48px rgba(89, 75, 162, 0.08);

  --container: 1180px;
  --gap-cols: 64px;
  --header-col: 260px;

  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ─────────── LAYOUT ─────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-wrap { max-width: var(--container); margin: 0 auto; padding: 12px 24px; }

.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 56px 56px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); }

.row {
  display: grid;
  grid-template-columns: var(--header-col) 1fr;
  gap: var(--gap-cols);
}
.row-header { position: sticky; top: 88px; align-self: start; }
.row-body { min-width: 0; }

.row-stacked { display: block; }
.row-stacked .row-header {
  position: static;
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.row-stacked .row-header .eyebrow::after {
  content: '';
  width: 24px; height: 1.5px;
  background: linear-gradient(-90deg, var(--primary), transparent);
  border-radius: 2px;
}
.row-stacked .row-header h2 { font-size: clamp(28px, 2.8vw, 36px); }
.row-stacked .row-body { width: 100%; }
.row-stacked .capability-grid { grid-template-columns: repeat(3, 1fr); }
.row-stacked .values-grid { grid-template-columns: repeat(3, 1fr); }

/* ─────────── TYPOGRAPHY ─────────── */
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(40px, 5.4vw, 60px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.03; }
h2 { font-size: clamp(26px, 2.6vw, 32px); margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.15; }
h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

p { color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
p strong { color: var(--text); font-weight: 600; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--primary-press); }

.row-header h2 { margin-bottom: 12px; }
.row-header .intro { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--primary); }

/* ─────────── NAV ─────────── */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 246, 251, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(236, 234, 241, 0.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; letter-spacing: -0.02em; color: var(--text); }
.logo-mark {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700; font-family: var(--font-serif); font-style: italic;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(129, 113, 208, 0.25);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 6px; align-items: center; }

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(89, 75, 162, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(89, 75, 162, 0.25);
}
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); background: rgba(15, 15, 18, 0.04); }
.btn-outline { background: var(--bg-card); color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }
.btn-lg { padding: 13px 22px; font-size: 15px; }

/* ─────────── HERO ─────────── */
.hero {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(129, 113, 208, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(129, 113, 208, 0.18) 0%, rgba(129, 113, 208, 0.05) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--primary); }
.hero .lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 30px;
}
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 12.5px;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow-pill .tag {
  color: var(--primary);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--primary-softer);
  padding: 3px 9px;
  border-radius: 999px;
}
.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
  font-size: 12.5px;
  color: var(--text-subtle);
  margin-bottom: 8px;
}
.hero-meta .sep { opacity: 0.4; }
.hero-meta .accent-meta { color: var(--text-muted); font-weight: 500; }

/* ─────────── INTRO PARAGRAPH BLOCK (mission-style) ─────────── */
.intro-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.intro-block p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.intro-block p:last-child { margin-bottom: 0; }
.intro-block .address-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  margin-top: 12px;
}
.intro-block .address-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-softer);
}

/* ─────────── FOUNDER QUOTE ─────────── */
.founder-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 28px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 96px;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
}
.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.founder-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.founder-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(129, 113, 208, 0.28);
}
.founder-info .name { font-size: 14px; font-weight: 600; color: var(--text); }
.founder-info .role { font-size: 12.5px; color: var(--text-subtle); }

/* ─────────── CAPABILITY GRID (What we do) ─────────── */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.capability {
  position: relative;
  padding: 20px 20px 20px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: all 0.2s;
  overflow: hidden;
}
.capability::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0.25;
  transition: opacity 0.2s;
}
.capability:hover {
  background: var(--primary-softer);
  transform: translateY(-2px);
}
.capability:hover::before { opacity: 1; }
.cap-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}
.capability h3 { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.capability p { font-size: 13.5px; line-height: 1.55; margin-bottom: 0; }

/* ─────────── WHY US — feature trio ─────────── */
.feature-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature-tile {
  padding: 26px 22px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.feature-tile:hover { background: var(--primary-softer); transform: translateY(-2px); }
.feature-tile-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 3px 8px rgba(129, 113, 208, 0.25);
}
.feature-tile h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.feature-tile p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 0; }

/* ─────────── MINI CTA BLOCK ─────────── */
.mini-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--primary-softer) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius);
  margin-top: 8px;
}
.mini-cta h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.015em; }
.mini-cta p { font-size: 14px; margin-bottom: 0; }
.mini-cta .btn { white-space: nowrap; }

/* ─────────── TRACTION — stat strip ─────────── */
.traction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.traction-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.traction-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0.25;
  transition: opacity 0.2s;
}
.traction-card:hover { background: var(--primary-softer); transform: translateY(-2px); }
.traction-card:hover::before { opacity: 1; }
.traction-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: block;
}
.traction-label {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.traction-tag {
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}
.traction-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--text-muted);
}
.traction-callout-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-softer);
  flex-shrink: 0;
}

/* ─────────── TRUST GRID (audience-style) ─────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust-cell {
  position: relative;
  background: var(--bg-alt);
  padding: 20px 18px 20px 22px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.trust-cell::before {
  content: '';
  position: absolute;
  left: 12px; top: 26px;
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary-softer);
}
.trust-cell:hover { background: var(--primary-softer); transform: translateY(-2px); }
.trust-cell h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; padding-left: 14px; }
.trust-cell p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; line-height: 1.5; padding-left: 14px; }

/* ─────────── MISSION & VISION (compare style) ─────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mv-col {
  padding: 28px 26px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.2s;
}
.mv-col:hover { transform: translateY(-2px); }
.mv-col.vision {
  background: linear-gradient(135deg, var(--primary-softer) 0%, var(--primary-soft) 100%);
}
.mv-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-subtle);
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mv-col.vision .mv-label { color: var(--primary); }
.mv-label::before {
  content: '';
  width: 18px; height: 1.5px;
  background: linear-gradient(90deg, currentColor, transparent);
  border-radius: 2px;
  opacity: 0.6;
}
.mv-col h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.mv-col p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

/* ─────────── CORE VALUES (3x2 grid) ─────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.value-card {
  padding: 22px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.value-card:hover { background: var(--primary-softer); transform: translateY(-2px); }
.value-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}
.value-card h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ─────────── FUTURE OF DATA (pull-quote style hero) ─────────── */
.future-block {
  background: linear-gradient(135deg, var(--primary-softer) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.future-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(129, 113, 208, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
}
.future-block > * { position: relative; z-index: 1; }
.future-block .eyebrow { justify-content: center; }
.future-block h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 580px;
  margin: 0 auto 14px;
}
.future-block h3 .serif-accent { color: var(--primary); }
.future-block p {
  font-size: 14.5px;
  max-width: 520px;
  margin: 0 auto 22px;
}
.future-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card);
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.future-toggle .row-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.future-toggle .row-line .x {
  color: var(--text-subtle);
  font-weight: 700;
  width: 18px;
  text-align: center;
}
.future-toggle .row-line .check {
  color: var(--primary);
  font-weight: 700;
  width: 18px;
  text-align: center;
}
.future-toggle .row-line.muted { color: var(--text-subtle); text-decoration: line-through; text-decoration-color: rgba(138, 138, 147, 0.4); }

/* ─────────── FAQ ─────────── */
.faq-list {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 22px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--primary); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 20px; font-weight: 300;
  color: var(--text-subtle);
  transition: all 0.2s;
  line-height: 1;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
details[open] .faq-q { color: var(--primary); }
details[open] .faq-q::after { content: '−'; color: var(--primary); background: var(--primary-softer); }
.faq-a {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
}

/* ─────────── FINAL CTA ─────────── */
.final-cta-wrap { padding: 12px 24px 36px; max-width: var(--container); margin: 0 auto; }
.final-cta {
  text-align: center;
  padding: 80px 32px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(129, 113, 208, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(129, 113, 208, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, #FAF8FE 0%, #F2EFFA 100%);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(129, 113, 208, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.final-cta h2 .accent { font-family: var(--font-serif); font-style: italic; color: var(--primary); font-weight: 400; }
.final-cta p { font-size: 16px; max-width: 480px; margin: 0 auto 28px; }
.final-cta .btn-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ─────────── FOOTER ─────────── */
footer { background: var(--bg); padding: 48px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--text-muted); max-width: 300px; }
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { font-size: 13.5px; color: var(--text-muted); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--text-subtle);
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 940px) {
  :root { --gap-cols: 40px; --header-col: 200px; }
  .card { padding: 40px 36px; }
  .nav-links { display: none; }
  .feature-trio, .traction-grid, .trust-grid, .values-grid,
  .row-stacked .capability-grid, .row-stacked .values-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .card { padding: 32px 24px; border-radius: 20px; }
  .row { grid-template-columns: 1fr; gap: 24px; }
  .row-header { position: static; margin-bottom: 4px; }
  .row-stacked .row-header { margin-bottom: 28px; }
  .capability-grid, .feature-trio, .traction-grid, .trust-grid, .values-grid,
  .mv-grid, .row-stacked .capability-grid, .row-stacked .values-grid { grid-template-columns: 1fr; }
  .mini-cta { grid-template-columns: 1fr; gap: 18px; padding: 22px 22px; text-align: center; }
  .mini-cta .btn { justify-self: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .final-cta { padding: 56px 24px; }
  .future-block { padding: 32px 22px; }
  .founder-quote { font-size: 19px; }
}
@media (max-width: 480px) {
  .trust-grid, .traction-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 36px; }
}
