/* ================================================================
   BLUE BRICK CAPITAL — styles.css
   ================================================================ */

/* ── VARIABLES ── */
:root {
  --brick-blue: #112A45;
  --deep: #0A1A2C;
  --signal: #3E6FA0;
  --clay: #B05A3C;
  --clay-soft: #C9785C;
  --bone: #F4F1E9;
  --bone-2: #EBE7DC;
  --ink: #15202E;
  --slate: #5C6672;
  --line: rgba(17, 42, 69, .12);
  --line-soft: rgba(17, 42, 69, .07);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Hanken Grotesk', -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --hdr-h: 88px;
  --max-w: 1160px;
  --pad-v: 104px;
  --pad-h: clamp(24px, 5vw, 80px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: var(--signal); text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--clay); color: var(--bone); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  display: block;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.32;
  letter-spacing: -.015em;
  color: var(--brick-blue);
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .025em;
  padding: 16px 36px;
  border-radius: 5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
  line-height: 1;
}
.btn-navy {
  background: var(--brick-blue);
  color: var(--bone);
  border-color: var(--brick-blue);
}
.btn-navy:hover { background: #193d5e; border-color: #193d5e; color: var(--bone); }

.btn-bone {
  background: var(--bone);
  color: var(--brick-blue);
  border-color: var(--bone);
}
.btn-bone:hover { background: var(--bone-2); border-color: var(--bone-2); color: var(--brick-blue); }

.btn-outline-bone {
  background: transparent;
  color: rgba(244, 241, 233, .82);
  border-color: rgba(244, 241, 233, .38);
}
.btn-outline-bone:hover { border-color: var(--bone); color: var(--bone); }

.btn-outline-navy {
  background: transparent;
  color: var(--brick-blue);
  border-color: var(--brick-blue);
}
.btn-outline-navy:hover { background: var(--brick-blue); color: var(--bone); }

/* ── SHARED CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hdr-h);
  z-index: 100;
  background: rgba(10, 26, 44, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 241, 233, .09);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--pad-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo lockup */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 0 0 auto;
}
.logo-lockup svg { width: 52px; height: 52px; flex: 0 0 52px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--bone);
  font-weight: 400;
  letter-spacing: -.01em;
}
.logo-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .36em;
  color: rgba(244, 241, 233, .48);
  margin-top: 6px;
  text-transform: uppercase;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
  margin-left: auto;
}
.main-nav a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: rgba(244, 241, 233, .68);
  padding: 7px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--bone); background: rgba(244, 241, 233, .07); }
.main-nav a.active { color: var(--bone); }

.btn-nav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .025em;
  padding: 12px 26px;
  flex: 0 0 auto;
  background: transparent;
  border: 1.5px solid rgba(244, 241, 233, .32);
  color: rgba(244, 241, 233, .82);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  line-height: 1;
}
.btn-nav:hover { border-color: rgba(244,241,233,.7); color: var(--bone); }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative;
  flex: 0 0 auto;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(244, 241, 233, .22);
  color: rgba(244, 241, 233, .72);
  border-radius: 4px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  line-height: 1;
}
.lang-btn:hover { border-color: rgba(244,241,233,.5); color: var(--bone); }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-chevron {
  transition: transform .2s;
  opacity: .6;
}
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--deep);
  border: 1px solid rgba(244,241,233,.12);
  border-radius: 6px;
  overflow: hidden;
  min-width: 148px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  list-style: none;
  z-index: 200;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown [data-lang] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(244,241,233,.72);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.lang-dropdown [data-lang]:hover { background: rgba(244,241,233,.06); color: var(--bone); }
.lang-dropdown [data-lang].active { color: var(--bone); background: rgba(244,241,233,.04); }
.lang-dropdown [data-lang] span { font-size: 18px; }

/* Mobile lang toggle */
.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 16px var(--pad-h) 8px;
  border-top: 1px solid rgba(244,241,233,.08);
}
.mob-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(244,241,233,.2);
  color: rgba(244,241,233,.6);
  border-radius: 4px;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.mob-lang-btn.active { border-color: rgba(244,241,233,.5); color: var(--bone); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bone);
  transition: transform .28s, opacity .28s;
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--hdr-h); left: 0; right: 0;
  background: var(--deep);
  border-top: 1px solid rgba(244, 241, 233, .09);
  padding: 20px var(--pad-h) 32px;
  z-index: 99;
  flex-direction: column;
}
.mobile-nav a {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: rgba(244, 241, 233, .75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 241, 233, .07);
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--bone); }
.mobile-nav .mob-cta {
  margin-top: 22px;
  display: block;
  text-align: center;
  border: 1.5px solid rgba(244, 241, 233, .35);
  color: var(--bone);
  padding: 14px 24px;
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  transition: border-color .2s, background .2s;
}
.mobile-nav .mob-cta:hover { background: rgba(244,241,233,.06); border-color: rgba(244,241,233,.6); }
.mobile-nav.open { display: flex; }

/* ── HERO ── */
.hero {
  background: var(--deep);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--hdr-h);
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}
.hero-sm {
  min-height: 62vh;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0 88px;
}
.hero .eyebrow {
  color: var(--clay-soft);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  color: var(--bone);
  margin-bottom: 26px;
  letter-spacing: -.03em;
  font-weight: 300;
  max-width: 14ch;
}
.hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(244, 241, 233, .76);
  max-width: 52ch;
  line-height: 1.62;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Blueprint grid texture */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 75% at 28% 42%, #000 28%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 28% 42%, #000 28%, transparent 78%);
  pointer-events: none;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -200px;
  top: -180px;
  background: radial-gradient(circle, rgba(62,111,160,.3), transparent 62%);
  pointer-events: none;
  z-index: 1;
}

/* Photo background (subtle overlay in hero) */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .28;
  mix-blend-mode: luminosity;
}

/* ── SECTIONS ── */
.section {
  padding: var(--pad-v) var(--pad-h);
}
.section-inner {}
.bg-bone   { background: var(--bone); }
.bg-white  { background: #fff; }
.bg-bone-2 { background: var(--bone-2); }

/* Hairline rule */
.hairline {
  height: 1px;
  background: var(--line);
  margin: 52px 0;
}
.hairline-sm { margin: 32px 0; }

/* Section header */
.sec-hd {
  margin-bottom: 52px;
}
.sec-hd .eyebrow { margin-bottom: 22px; }
.sec-hd h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--brick-blue);
  max-width: 20ch;
}

/* Lede block */
.lede-block { margin-bottom: 44px; }
.lede-block .lede { margin-bottom: 20px; }
.lede-block p,
.body-copy {
  font-size: 17px;
  color: var(--slate);
  max-width: 62ch;
  line-height: 1.72;
}
.body-copy + .body-copy { margin-top: 16px; }

/* Closing line / emphasis copy */
.closing-copy {
  font-size: 17px;
  color: var(--brick-blue);
  font-weight: 500;
  max-width: 58ch;
  line-height: 1.6;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* ── PILLAR CARDS (3-up) ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.pillar {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  background: rgba(255,255,255,.55);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar-accent {
  width: 24px;
  height: 2px;
  background: var(--clay);
  margin-bottom: 22px;
  border-radius: 1px;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 23px;
  color: var(--brick-blue);
  font-weight: 400;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.68;
}

/* ── AUDIENCE CARDS (2-up) ── */
.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.audience-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px 34px;
  background: var(--bone-2);
  display: flex;
  flex-direction: column;
}
.audience-card .card-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
  display: block;
}
.audience-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--brick-blue);
  font-weight: 400;
  margin-bottom: 14px;
}
.audience-card p {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.card-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--signal);
  letter-spacing: .015em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap .18s;
}
.card-link::after { content: '→'; }
.card-link:hover { gap: 10px; }

/* ── POSITIONING STATEMENT ── */
.position-statement {
  background: var(--brick-blue);
  padding: var(--pad-v) var(--pad-h);
}
.position-statement .inner {}
.position-statement p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.38;
  font-weight: 300;
  letter-spacing: -.018em;
  color: rgba(244,241,233,.88);
  max-width: 52ch;
}

/* ── STATS ROW ── */
.stats-band {
  background: var(--bone-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0 var(--pad-h);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--line);
}
.stat-item {
  background: var(--bone-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-key {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.4;
}
.stat-val {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--brick-blue);
  font-weight: 400;
}

/* ── POINTS GRID (2-col, 4-up) ── */
.points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-top: 48px;
}
.point {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.point h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--brick-blue);
  font-weight: 400;
  margin-bottom: 10px;
}
.point p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── CRITERIA LIST ── */
.criteria-lead {
  font-size: 17px;
  color: var(--slate);
  max-width: 58ch;
  line-height: 1.7;
  margin-bottom: 32px;
}
.criteria-list {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.criteria-list li {
  font-size: 16px;
  color: var(--ink);
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  line-height: 1.55;
}
.criteria-list li:first-child { border-top: 1px solid var(--line); }
.criteria-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--clay);
  border-radius: 50%;
  flex: 0 0 5px;
  margin-top: 8px;
}

/* ── PROCESS STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--line);
}
.step {
  background: #fff;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
}
.step-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--clay);
  margin-bottom: 18px;
}
.step h4 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--brick-blue);
  font-weight: 400;
  margin-bottom: 12px;
}
.step p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.68;
}

/* ── COUNTER-PARTY SECTION (full-width text) ── */
.full-copy {
  max-width: 72ch;
}
.full-copy p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.75;
}

/* ── INVESTOR POINTS (3-up) ── */
.inv-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.inv-point {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 26px;
  background: rgba(255,255,255,.55);
}
.inv-point h4 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--brick-blue);
  font-weight: 400;
  margin-bottom: 10px;
}
.inv-point p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.68;
}

/* ── STRUCTURE BLOCK ── */
.structure-block {
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px;
  margin-top: 12px;
  max-width: 72ch;
}
.structure-block p {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.72;
}
.structure-block .placeholder {
  display: block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--clay);
  background: rgba(176,90,60,.07);
  border: 1px dashed var(--clay);
  border-radius: 4px;
  padding: 10px 14px;
}

/* ── VALUES (About) ── */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  background: rgba(255,255,255,.5);
}
.value-accent {
  width: 24px; height: 2px;
  background: var(--clay);
  border-radius: 1px;
  margin-bottom: 22px;
}
.value-card h4 {
  font-family: var(--serif);
  font-size: 23px;
  color: var(--brick-blue);
  font-weight: 400;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.68;
}

/* ── FOUNDERS ── */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.founder-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: var(--bone-2);
}
.founder-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--brick-blue);
  font-weight: 400;
  margin-bottom: 8px;
}
.founder-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 18px;
}
.founder-card p {
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.7;
}
.founder-placeholder {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--clay);
  background: rgba(176,90,60,.07);
  border: 1px dashed var(--clay);
  border-radius: 3px;
  padding: 6px 12px;
}

/* ── PARTNER NOTE ── */
.partner-note {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--slate);
}

/* ── IMAGE SECTION ── */
.img-section {
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.img-section img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px var(--pad-h);
  background: linear-gradient(transparent, rgba(10,26,44,.6));
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,233,.65);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--deep);
  color: var(--bone);
  padding: 96px var(--pad-h);
  position: relative;
  overflow: hidden;
}
.cta-band .grid-bg {
  mask-image: radial-gradient(ellipse 65% 80% at 80% 50%, #000 22%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 80% at 80% 50%, #000 22%, transparent 72%);
}
.cta-band-glow {
  position: absolute;
  width: 500px; height: 500px;
  left: -80px; top: -180px;
  background: radial-gradient(circle, rgba(62,111,160,.22), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-size: clamp(38px, 5vw, 66px);
  color: var(--bone);
  font-weight: 300;
  margin-bottom: 18px;
}
.cta-band .cta-sub {
  font-size: 17px;
  color: rgba(244,241,233,.76);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 38px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--deep);
  padding: 64px var(--pad-h) 44px;
  border-top: 1px solid rgba(244,241,233,.07);
}
.footer-inner {}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(244,241,233,.09);
}
.footer-brand .logo-lockup { margin-bottom: 18px; }
.footer-tagline {
  font-size: 13.5px;
  color: rgba(244,241,233,.48);
  line-height: 1.68;
  max-width: 36ch;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,233,.32);
  margin-bottom: 18px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav ul a {
  font-size: 14px;
  color: rgba(244,241,233,.6);
  text-decoration: none;
  transition: color .18s;
}
.footer-nav ul a:hover { color: var(--bone); }
.footer-contact p {
  font-size: 14px;
  color: rgba(244,241,233,.6);
  line-height: 1.85;
}
.footer-contact a {
  color: rgba(244,241,233,.6);
  text-decoration: none;
  transition: color .18s;
}
.footer-contact a:hover { color: var(--bone); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: rgba(244,241,233,.28);
}

/* ── DISCLAIMER ── */
.disclaimer {
  padding: 40px var(--pad-h);
  background: var(--bone-2);
  border-top: 1px solid var(--line);
}
.disclaimer .inner {}
.disclaimer .eyebrow { margin-bottom: 14px; font-size: 9.5px; }
.disclaimer p {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.78;
  max-width: 84ch;
}
.disclaimer .placeholder-inline {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--clay);
  background: rgba(176,90,60,.07);
  border: 1px dashed var(--clay);
  border-radius: 3px;
  padding: 2px 8px;
  display: inline-block;
  margin-top: 8px;
}

/* ── CONTACT FORM ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 15px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(62,111,160,.1);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.65;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%235C6672' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-confirmation {
  display: none;
  background: rgba(17,42,69,.05);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 28px;
  margin-top: 4px;
}
.form-confirmation p {
  font-size: 16px;
  color: var(--brick-blue);
  line-height: 1.65;
}
.contact-aside {
  padding-top: 6px;
}
.contact-aside h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--brick-blue);
  font-weight: 400;
  margin-bottom: 26px;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-detail-item .key {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-bottom: 5px;
}
.contact-detail-item .val {
  font-size: 15.5px;
  color: var(--ink);
}
.contact-detail-item .val a {
  color: var(--ink);
  text-decoration: none;
  transition: color .18s;
}
.contact-detail-item .val a:hover { color: var(--signal); }
.contact-note {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* ── REVEAL ANIMATIONS ── */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .78s cubic-bezier(.2,.7,.3,1), transform .78s cubic-bezier(.2,.7,.3,1);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .17s; }
.js .reveal.d3 { transition-delay: .26s; }
.js .reveal.d4 { transition-delay: .35s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .inv-points { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --pad-v: 72px; }
  .main-nav, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .pillars { grid-template-columns: 1fr; }
  .audience-cards { grid-template-columns: 1fr; }
  .points { grid-template-columns: 1fr; gap: 30px; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { max-width: none; }
  .hero-sub { max-width: none; }
}

@media (max-width: 540px) {
  .stats-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .steps { border-radius: 0; }
  .img-section img { max-height: 320px; }
}
