/* =========================================================
   Level 7 Investors — Page Stylesheet
   Adapted from design_handoff_level7_website/styles/system.css
   Pure CSS, no build tools required.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── 1. Custom Properties ──────────────────────────────── */
:root {
  --ink:       #0a0a0a;
  --ink-2:     #1a1a1a;
  --ink-3:     #2b2b2b;
  --line:      #e6e3dc;
  --line-2:    #d6d2c8;
  --paper:     #fafaf7;
  --paper-2:   #f3f0e9;
  --white:     #ffffff;
  --muted:     #6b665d;
  --muted-2:   #8b8579;
  --accent:    #a01828;
  --accent-2:  #c8102e;
  --accent-ink:#6e0f1d;

  --display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:        1240px;
  --container-narrow: 980px;
  --gutter:           28px;
  --nav-height:       72px;
  --transition-fast:  0.15s ease;

  --shadow-sm: 0 1px 2px rgba(10,10,10,.04), 0 1px 1px rgba(10,10,10,.03);
  --shadow-md: 0 6px 20px rgba(10,10,10,.06), 0 2px 6px rgba(10,10,10,.04);
}

/* ─── 2. Reset + Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0 0 1em; text-wrap: pretty; }
svg { display: block; }

/* ─── 3. Typography ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}
.eyebrow.muted { color: var(--muted); }
.eyebrow.light { color: rgba(255,255,255,.7); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.06; letter-spacing: -0.028em; }
h3 { font-size: clamp(20px, 2.0vw, 26px); line-height: 1.18; letter-spacing: -0.02em; }
h4 { font-size: 17px; line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; }

.lede    { font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 62ch; }
.small   { font-size: 13px; color: var(--muted); }
.disclaim{ font-size: 12px; line-height: 1.6; color: var(--muted-2); }

/* ─── 4. Layout ─────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.narrow    { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

.section       { padding: clamp(64px, 9vw, 112px) 0; }
.section.tight { padding: clamp(48px, 6vw, 72px) 0; }
.section.dark  { background: var(--ink); color: var(--white); }
.section.dark h1,
.section.dark h2,
.section.dark h3,
.section.dark h4 { color: var(--white); }
.section.paper   { background: var(--paper); }
.section.paper-2 { background: var(--paper-2); }

.row    { display: flex; align-items: center; gap: 16px; }
.row.between { justify-content: space-between; }
.col    { display: flex; flex-direction: column; }

.gap-8  { gap: 8px;  } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; } .gap-48 { gap: 48px; }

.mt-8   { margin-top: 8px;  } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-20  { margin-top: 20px; } .mt-24 { margin-top: 24px; } .mt-28 { margin-top: 28px; }
.mt-32  { margin-top: 32px; } .mt-40 { margin-top: 40px; } .mt-48 { margin-top: 48px; }

.mb-16  { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }

.tac { text-align: center; }
.muted  { color: var(--muted); }
.accent { color: var(--accent); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* ─── 5. Header / Nav ───────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: border-color var(--transition-fast);
}
.site-header.scrolled { border-bottom-color: rgba(255,255,255,.18); }
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--accent);
  color: white;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  border-radius: 2px;
  flex-shrink: 0;
}
.brand-name { font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: white; }
.brand-name .seven { color: var(--accent-2); }

.nav {
  display: flex; align-items: center; gap: 4px;
}
.nav a {
  display: inline-block;
  padding: 10px 13px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  font-weight: 450;
  border-radius: 2px;
  transition: color var(--transition-fast);
}
.nav a:hover,
.nav a.active { color: var(--white); }
.nav a.active { position: relative; }
.nav a.active::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 1px; background: var(--accent-2);
}

.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer; padding: 6px;
  border-radius: 2px;
}
.nav-toggle .bar-line {
  width: 20px; height: 1.5px;
  background: rgba(255,255,255,.85);
  border-radius: 1px;
  transition: all 0.2s ease;
  display: block;
}
.nav-toggle[aria-expanded="true"] .bar-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .bar-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── 6. Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn.primary   { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn.primary:hover  { background: var(--accent-ink); border-color: var(--accent-ink); }
.btn.ghost     { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover    { border-color: var(--ink); }
.btn.ghost-light    { background: transparent; color: var(--white); border-color: rgba(255,255,255,.25); }
.btn.ghost-light:hover { border-color: var(--white); }
.btn.text      { padding: 8px 0; background: transparent; border: 0; color: var(--ink); border-bottom: 1px solid var(--ink); border-radius: 0; }
.btn.sm        { padding: 9px 14px; font-size: 13px; }
.btn .arrow    { display: inline-block; transition: transform .2s; }
.btn:hover .arrow   { transform: translateX(3px); }

/* ─── 7. Cards ───────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
}
.card.paper { background: var(--paper); }
.card.dark  { background: var(--ink-2); border-color: rgba(255,255,255,.08); color: var(--white); }

.tag {
  display: inline-block; padding: 4px 10px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--paper-2); color: var(--ink-2); border-radius: 2px;
}
.tag.accent { background: rgba(160,24,40,.08); color: var(--accent); }
.tag.dark   { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); }

/* ─── 8. Stats ───────────────────────────────────────────── */
.stat .num {
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.stat.dark .num { color: var(--white); }
.stat .num em { font-style: normal; color: var(--accent); }
.stat .lab { margin-top: 8px; font-size: 13px; color: var(--muted); line-height: 1.4; }
.stat.dark .lab { color: rgba(255,255,255,.6); }

/* ─── 9. Property / Image Placeholder ───────────────────── */
.property-img {
  background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.4);
  display: grid;
  place-items: center;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
}
.property-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(135deg, transparent 30%, rgba(160,24,40,.12) 50%, transparent 70%);
  pointer-events: none;
}

/* ─── 10. Hero ───────────────────────────────────────────── */
.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: end;
  padding: 92px 0 0;
}
.hero-copy { padding-bottom: 92px; }
.hero-actions { margin-top: 36px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
  gap: 32px;
}
.hero-stat-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero-stat-value {
  font-size: 14px; color: white; margin-top: 6px; font-weight: 500;
}
.hero-image {
  position: relative;
  min-height: 540px;
  align-self: stretch;
}
.hero-image .property-img {
  position: absolute; inset: 0; top: 0; bottom: -1px; border-radius: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-asset-tag {
  position: absolute; left: 24px; bottom: 24px;
  color: white; z-index: 2;
  padding: 12px 16px;
  background: rgba(10,10,10,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 2px;
}
.hero-asset-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero-asset-name  { font-size: 14px; font-weight: 500; margin-top: 4px; }

/* ─── 11. Trust Strip ───────────────────────────────────── */
.trust-strip {
  background: var(--ink-2);
  color: rgba(255,255,255,.7);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-strip .container {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  font-size: 13px; letter-spacing: .04em;
}
.trust-item { display: flex; align-items: center; gap: 10px; }

/* ─── 12. Problem / Solution ────────────────────────────── */
.ps-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.ps-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.ps-trio-item {
  padding: 24px 24px 4px 0;
}
.ps-trio-item + .ps-trio-item { border-left: 1px solid var(--line); padding-left: 24px; padding-right: 0; }
.ps-trio-head {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin: 0;
  font-family: var(--body);
}

/* ─── 13. Stats Block ───────────────────────────────────── */
.stats-header {
  margin-bottom: 40px;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.stats-grid { border-top: 1px solid rgba(255,255,255,.12); padding-top: 40px; }

/* ─── 14. Five Ts ────────────────────────────────────────── */
.fivet-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.fivet-tabs { background: var(--paper); border-right: 1px solid var(--line); }
.fivet-tab {
  width: 100%; text-align: left;
  padding: 24px 28px;
  background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex; align-items: center; gap: 16px;
}
.fivet-tab:last-child { border-bottom: none; }
.fivet-tab:hover { background: rgba(255,255,255,.6); }
.fivet-tab.active { background: white; border-left-color: var(--accent); }
.fivet-tab-letter {
  font-family: var(--display); font-size: 32px; font-weight: 300;
  color: var(--muted-2); width: 24px; line-height: 1;
  transition: color var(--transition-fast);
}
.fivet-tab.active .fivet-tab-letter { color: var(--accent); }
.fivet-tab-word {
  font-family: var(--display); font-size: 20px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em;
}
.fivet-panel {
  padding: 48px 56px;
  background: white;
}
.fivet-big-letter {
  font-family: var(--display); font-size: 96px; font-weight: 300;
  color: var(--accent); line-height: 1; margin-bottom: 8px; letter-spacing: -0.05em;
}
.fivet-panel h3 { font-size: 34px; margin-bottom: 16px; }
.fivet-detail-list { list-style: none; margin-top: 32px; }
.fivet-detail-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

/* ─── 15. GrowthSync Stepper ─────────────────────────────── */
.gs-intro {
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}
.gs-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 48px;
}
.gs-step {
  background: transparent; border: none; cursor: pointer;
  text-align: left;
  padding: 24px 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  position: relative;
  color: white;
  transition: opacity var(--transition-fast);
}
.gs-step-bar {
  position: absolute; top: -1px; left: 0;
  height: 2px; width: 0%;
  background: var(--accent-2);
  transition: width 0.4s ease;
}
.gs-step.active .gs-step-bar,
.gs-step.past   .gs-step-bar { width: 100%; }
.gs-step-inner { display: flex; align-items: baseline; gap: 12px; }
.gs-step-num {
  font-family: var(--display); font-size: 13px; font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  transition: color var(--transition-fast);
}
.gs-step.active .gs-step-num { color: var(--accent-2); }
.gs-step-title {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}
.gs-step.active .gs-step-title { color: white; }
.gs-step-sub {
  margin-top: 6px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.gs-panels { }
.gs-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.gs-big-num {
  font-family: var(--display); font-size: 140px; font-weight: 200;
  line-height: 1; color: rgba(255,255,255,.08); letter-spacing: -0.05em;
  margin-bottom: -32px;
  pointer-events: none;
}
.gs-panel h3 { font-size: 38px; color: white; }
.gs-practice-label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 20px; font-weight: 600;
}
.gs-bullets { list-style: none; }
.gs-bullets li {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.gs-bullet-num {
  font-family: var(--display); color: var(--accent-2); font-size: 13px;
  font-weight: 500; min-width: 28px;
}

/* ─── 16. Deal Criteria ──────────────────────────────────── */
.criteria-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.criteria-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-2);
  margin: 0;
}
.criteria-item {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--line-2);
}
.criteria-item:nth-child(even) {
  border-left: 1px solid var(--line-2);
  padding-left: 24px;
  padding-right: 0;
}
.criteria-item dt {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.criteria-item dd {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  margin-top: 6px; letter-spacing: -0.02em; margin-inline-start: 0;
}
.criteria-levers { margin-top: 32px; border-color: var(--line-2); }
.levers-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }

/* ─── 17. Markets ────────────────────────────────────────── */
.markets-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.markets-map-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
}
#markets-map {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  background: #e8e0d8;
}
.markets-map-footer {
  margin-top: 10px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.market-map-tip {
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}
.market-map-tip::before { display: none !important; }
.leaflet-control-attribution { font-size: 9px; }

/* City dot markers */
.city-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.city-label {
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  padding: 3px 8px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.25) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}
.city-label::before { display: none !important; }
.leaflet-div-icon { background: none !important; border: none !important; }
.market-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.market-tab {
  padding: 8px 14px; font-size: 13px; font-weight: 500;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 2px;
  cursor: pointer; transition: all var(--transition-fast);
  font-family: var(--body);
}
.market-tab.active,
.market-tab:hover { background: var(--ink); color: white; border-color: var(--ink); }
.market-panel { padding: 36px; }
.market-panel h3 { font-size: clamp(20px, 2vw, 26px); }
.market-code {
  font-family: var(--display); font-size: 32px; font-weight: 300;
  color: var(--accent); letter-spacing: -0.04em;
}
.market-panel .eyebrow.muted { margin-top: 20px; margin-bottom: 6px; }

/* ─── 18. Team Preview ───────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.team-card {
  background: white; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 4px;
  transition: transform .25s ease, border-color .15s;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.team-photo {
  height: 180px; border-radius: 0;
  display: grid; place-items: center;
}
.team-initials {
  font-family: var(--display); font-size: 36px;
  color: rgba(255,255,255,.4); letter-spacing: -0.02em;
}
.team-info { padding: 18px; }
.team-name { font-size: 15px; margin: 0; }
.team-role { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ─── 19. Education Teaser ───────────────────────────────── */
.edu-card {
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .15s, transform .25s ease;
  padding: 0; overflow: hidden;
}
.edu-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.edu-thumb { height: 160px; border-radius: 0; }
.edu-body  { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.edu-card h3 { font-size: 22px; }
.edu-cta { margin-top: auto; font-size: 13px; color: var(--accent); font-weight: 500; }

/* ─── 20. Final CTA ──────────────────────────────────────── */
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(160,24,40,.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: white;
  padding: 32px;
}
.cta-card h4 { color: white; font-size: 16px; margin-bottom: 6px; }
.cta-full {
  width: 100%; justify-content: space-between;
  display: flex;
}
.cta-full + .cta-full { margin-top: 10px; }

/* ─── 21. Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
  font-size: 13px;
}
.site-footer h4 {
  color: var(--white); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 500;
}
.site-footer a {
  color: rgba(255,255,255,.65); display: block; padding: 4px 0;
  transition: color var(--transition-fast);
}
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-disclosures {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal-links { display: flex; gap: 24px; }

/* ─── 22. Divider Rule ───────────────────────────────────── */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule.dark { background: rgba(255,255,255,.12); }

/* ─── 23. Responsive — Tablet (≤ 900px) ─────────────────── */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 72px 0 0; }
  .hero-image { display: none; }
  .ps-grid { grid-template-columns: 1fr; gap: 40px; }
  .ps-trio { grid-template-columns: 1fr; }
  .ps-trio-item + .ps-trio-item { border-left: none; padding-left: 0; border-top: 1px solid var(--line); }
  .criteria-grid { grid-template-columns: 1fr; gap: 40px; }
  .markets-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .gs-stepper { grid-template-columns: 1fr; }
  .gs-panel { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── 24. Responsive — Mobile (≤ 640px) ─────────────────── */
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .fivet-wrapper { grid-template-columns: 1fr; }
  .fivet-tabs {
    display: flex; flex-direction: row; overflow-x: auto;
    border-right: none; border-bottom: 1px solid var(--line);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fivet-tabs::-webkit-scrollbar { display: none; }
  .fivet-tab {
    flex: 0 0 auto;
    border-bottom: 3px solid transparent;
    border-left: none !important;
    padding: 16px 20px;
  }
  .fivet-tab.active { border-bottom-color: var(--accent); background: white; }
  .fivet-panel { padding: 32px 24px; }
  .fivet-big-letter { font-size: 64px; }
  .gs-big-num { font-size: 80px; }
  .gs-panel h3 { font-size: 28px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .section-intro { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .row.between { flex-direction: column; align-items: flex-start; }
  .criteria-spec { grid-template-columns: 1fr; }
  .criteria-item:nth-child(even) { border-left: none; padding-left: 0; }
}

/* ─── 25. Mobile Nav Open State ──────────────────────────── */
@media (max-width: 900px) {
  .nav.nav-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 8px 0 16px;
    z-index: 49;
    gap: 0;
  }
  .nav.nav-open a {
    width: 100%;
    padding: 12px var(--gutter);
    border-radius: 0;
  }
}

/* ─── 26. Focus / Accessibility ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; }
