/* ============================================================
   Profenx site styles (gamma palette)
   Derived from the new wordmark logo and Jaipur Capital family:
   - deep navy (#0b2c69) primary
   - teal (#66c5cf) accent
   - soft yellow (#f6de68) highlight, used sparingly
   ============================================================ */

:root {
  --bg: #0b2c69;
  --bg-soft: #082352;
  --bg-deep: #06173a;
  --bg-light: #ffffff;
  --bg-light-alt: #f6f5f0;
  --ink: #0b2c69;
  --ink-body: #1f2937;
  --ink-muted: #4a5568;
  --ink-soft: #6b7280;
  --line: #e5e7eb;
  --line-dark: #082352;
  --brand: #0b2c69;
  --brand-hover: #1a4080;
  --brand-accent: #66c5cf;
  --brand-accent-deep: #3a8a96;
  --brand-warm: #f6de68;
  --brand-deep: #06173a;
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.78);
  --shadow-card: 0 10px 30px rgba(11, 44, 105, 0.08);
  --radius: 8px;
  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 84px;
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-accent-deep); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-muted); }
.lede { font-size: 1.125rem; color: var(--ink-muted); max-width: 64ch; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--brand-accent-deep); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  position: relative;
}
.btn-arrow {
  width: 16px;
  height: 10px;
  flex-shrink: 0;
  transition: transform .22s cubic-bezier(.4, 0, .2, 1);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-warm); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* Compact header CTA: tighter padding, smaller type, subtler footprint */
.site-header .btn {
  padding: 8px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  gap: 8px;
}
.site-header .btn .btn-arrow { width: 13px; height: 8px; }
/* Override .nav a colour specificity for buttons inside the nav */
.nav .btn-primary,
.nav .btn-primary:hover { color: #fff; }
.nav .btn-outline { color: var(--ink); }
.nav .btn-outline:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 920px) {
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a, .nav .btn {
    width: 100%;
    text-align: left;
    padding: 12px var(--gutter);
    border-radius: 0;
  }
  .nav .btn { margin: 8px var(--gutter) 0; width: calc(100% - var(--gutter)*2); text-align: center; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg-deep);
  color: var(--on-dark);
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 112px);
}
.hero-text { max-width: 920px; position: relative; z-index: 2; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(85% 95% at 90% 10%, rgba(102, 197, 207, 0.55) 0%, rgba(102, 197, 207, 0) 55%),
    radial-gradient(60% 80% at 5% 100%, rgba(246, 222, 104, 0.32) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(70% 70% at 50% 50%, rgba(11, 44, 105, 0.7) 0%, rgba(11, 44, 105, 0) 70%),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 60%, var(--bg-soft) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle at 50% 50%, rgba(246, 222, 104, 0.12) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-warm);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--brand-warm);
}
.hero h1 {
  color: var(--on-dark);
  max-width: 22ch;
  margin-bottom: 22px;
  line-height: 1.05;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
}
.hero h1 .accent { color: var(--brand-warm); }
.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--on-dark-muted);
  max-width: 60ch;
}
.hero p {
  color: var(--on-dark-muted);
  max-width: 56ch;
  font-size: 1.125rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Page header (interior pages) */
.page-header {
  background: var(--bg);
  color: var(--on-dark);
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 80% 30%, rgba(102, 197, 207, 0.22) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--on-dark); margin-bottom: 12px; }
.page-header .crumb {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-warm);
}
.page-header p { color: var(--on-dark-muted); max-width: 64ch; font-size: 1.125rem; }

/* ---------- Sections ---------- */
.section {
  padding: clamp(64px, 9vw, 112px) 0;
}
.section.alt { background: var(--bg-light-alt); }
.section.dark {
  background: var(--bg);
  color: var(--on-dark);
}
.section.dark h2, .section.dark h3 { color: var(--on-dark); }
.section.dark p { color: var(--on-dark-muted); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head .eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(102, 197, 207, 0.5);
}
.card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--brand);
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; }

.section.dark .card {
  background: var(--bg-soft);
  border-color: rgba(255, 255, 255, 0.1);
}
.section.dark .card h3 { color: var(--on-dark); }
.section.dark .card p { color: var(--on-dark-muted); }

/* ---------- Equation block ---------- */
.equation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  padding: 36px 24px;
  border: 1px dashed rgba(102, 197, 207, 0.6);
  border-radius: var(--radius);
  background: rgba(102, 197, 207, 0.05);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  color: var(--ink);
}
.section.dark .equation { color: var(--on-dark); background: rgba(102, 197, 207, 0.08); }
/* Dark-section variants for our newer layout primitives */
.section.dark { position: relative; overflow: hidden; }
.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 100% 0%, rgba(102, 197, 207, 0.18) 0%, rgba(102, 197, 207, 0) 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(246, 222, 104, 0.10) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.section.dark .container { position: relative; z-index: 1; }
.section.dark .section-marker {
  color: var(--brand-warm);
}
.section.dark .section-marker::before { background: var(--brand-warm); }
.section.dark .pillar { border-top-color: var(--brand-accent); }
.section.dark .pillar h3 { color: var(--on-dark); }
.section.dark .pillar p { color: var(--on-dark-muted); }
.section.dark .driver-list { border-top-color: rgba(255,255,255,0.12); }
.section.dark .driver-row { border-bottom-color: rgba(255,255,255,0.12); }
.section.dark .driver-row .driver-num { color: var(--brand-accent); opacity: 0.5; }
.section.dark .driver-row .driver-content h3 { color: var(--on-dark); }
.section.dark .driver-row .driver-content p { color: var(--on-dark-muted); }
.section.dark .feature-quote {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--brand-warm);
}
.section.dark .feature-quote p { color: var(--on-dark); }
.section.dark .statement { border-color: rgba(255,255,255,0.14); }
.section.dark .statement h2 { color: var(--on-dark); }
.section.dark .statement p { color: var(--on-dark-muted); }
.section.dark .division-card {
  background: var(--bg-soft);
  border-color: rgba(255,255,255,0.1);
}
.section.dark .division-card:hover {
  border-color: rgba(102, 197, 207, 0.6);
}
.section.dark .division-card .division-num { color: var(--brand-accent); }
.section.dark .division-card h3 { color: var(--on-dark); }
.section.dark .division-card p { color: var(--on-dark-muted); }
.equation .op { color: var(--brand); font-weight: 800; }
.equation .var { padding: 4px 10px; border-radius: 6px; background: rgba(102, 197, 207, 0.1); }

/* ---------- Pillars / icon list ---------- */
.pillar {
  border-top: 3px solid var(--brand);
  padding-top: 18px;
}
.pillar h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* ---------- Team ---------- */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.team-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.team-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  width: 55%;
  margin: 28px auto 0;
  border-radius: var(--radius);
}
.team-photo .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.18);
  z-index: 0;
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 30%, rgba(102, 197, 207, 0.22), rgba(0,0,0,0) 70%);
  z-index: 0;
}
.team-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.team-meta { padding: 22px; }
.team-meta h3 { margin-bottom: 4px; font-size: 1.15rem; }
.team-meta .role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-soft) 60%, var(--bg) 100%);
  color: var(--on-dark);
  padding: clamp(48px, 8vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 100% at 90% 50%, rgba(102, 197, 207, 0.32) 0%, rgba(0,0,0,0) 70%);
}
.cta-strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-strip h2 { margin-bottom: 6px; color: var(--on-dark); }
.cta-strip p { margin: 0; color: var(--on-dark-muted); }

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-row input,
.form-row textarea,
.form-row select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(102, 197, 207, 0.25);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.form-status.success { color: #1c7a3e; }
.form-status.error { color: #b91c1c; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: var(--on-dark-muted);
  padding: 56px 0 32px;
  font-size: 0.92rem;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) {
  .site-footer .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .site-footer .container { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--on-dark);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  opacity: 0.95;
}
.site-footer a { color: var(--on-dark-muted); }
.site-footer a:hover { color: var(--brand-warm); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer .tagline { max-width: 36ch; line-height: 1.55; }
.site-footer .legal {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

/* ---------- Misc ---------- */
.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.muted { color: var(--ink-soft); }
.divider {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 48px 0;
}
.section.dark .divider { background: rgba(255,255,255,0.08); }

.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink-muted);
}
.list-clean li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 12px; height: 2px;
  background: var(--brand);
}

/* ---------- News: featured story card ---------- */
.news-feature {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-accent);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: inherit;
}
.news-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-left-color: var(--brand);
  color: inherit;
}
.news-feature-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.news-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(11, 44, 105, 0.08);
  color: var(--brand);
}
.news-feature-meta time {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.news-feature h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  color: var(--ink);
}
.news-feature p {
  margin: 0 0 18px;
  color: var(--ink-muted);
  max-width: 70ch;
}
.news-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.news-feature:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Press release page typography ---------- */
.press-release {
  max-width: 720px;
}
.press-release p { font-size: 1.05rem; line-height: 1.7; color: var(--ink-body); }
.press-release p.lede { font-size: 1.2rem; color: var(--ink); font-weight: 500; }
.press-release h3 {
  margin-top: 36px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}
.press-release ul.list-clean { margin: 16px 0 24px; }
.press-release ul.list-clean li { margin-bottom: 14px; line-height: 1.6; color: var(--ink-body); }
.press-release ul.list-clean li strong { color: var(--ink); }
.press-quote {
  margin: 20px 0 28px;
  padding: 18px 24px;
  background: var(--bg-light-alt);
  border-left: 3px solid var(--brand-accent);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- Investors page: text + JC logo card layout ---------- */
.investor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  grid-template-rows: auto auto auto;
  gap: 24px clamp(28px, 5vw, 56px);
  align-items: start;
  max-width: 920px;
}
.investor-grid .investor-lede,
.investor-grid .investor-body {
  margin: 0;
  grid-column: 1;
  max-width: 60ch;
}
.investor-grid .investor-lede { font-size: 1.125rem; color: var(--ink-body); }
.investor-grid .investor-body { color: var(--ink-muted); }
.investor-logo-card {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.investor-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.investor-logo-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
@media (max-width: 720px) {
  .investor-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 24px;
  }
  .investor-grid .investor-lede { grid-row: 1; }
  .investor-logo-card {
    grid-column: 1;
    grid-row: 2;
    max-width: 240px;
    padding: 24px 20px;
  }
  .investor-grid .investor-body:first-of-type { grid-row: 3; }
  .investor-grid .investor-body:last-of-type { grid-row: 4; }
}
.section.dark .list-clean li { color: var(--on-dark-muted); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ---------- Asymmetric two-column splits ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.split.reverse {
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
}
@media (max-width: 820px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 28px; }
}
.split .section-head { margin-bottom: 0; }

/* ---------- Driver rows (horizontal layout instead of cards) ---------- */
.driver-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.driver-row {
  display: grid;
  grid-template-columns: minmax(120px, 18%) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: baseline;
  padding: clamp(28px, 4.5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}
.driver-row .driver-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand);
  opacity: 0.18;
}
.driver-row .driver-content h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  margin-bottom: 12px;
  color: var(--ink);
}
.driver-row .driver-content p {
  margin: 0;
  max-width: 64ch;
}
@media (max-width: 640px) {
  .driver-row { grid-template-columns: 1fr; gap: 8px; }
  .driver-row .driver-num { opacity: 0.5; }
}

/* ---------- Feature pull-quote (centred, large) ---------- */
.feature-quote {
  margin: 0;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px) clamp(36px, 5vw, 56px);
  background: var(--bg-light-alt);
  border-left: 4px solid var(--brand-accent);
  border-radius: 4px;
}
.feature-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 820px) {
  .system-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Statement banner (Growth Pathways) ---------- */
.statement {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 64px);
  background: linear-gradient(135deg, #dff3f5 0%, #c6e8ec 100%);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(11, 44, 105, 0.08);
  position: relative;
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(102, 197, 207, 0.5);
  pointer-events: none;
}
.statement .accent-bar {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--brand-warm);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.statement h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--ink);
}
.statement p {
  margin: 0 auto;
  max-width: 60ch;
  font-size: 1.075rem;
  color: var(--ink-body);
}

/* ---------- Section number marker (ghost number behind headings) ---------- */
.section-marker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.section-marker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--brand-accent-deep);
  display: inline-block;
}

/* ---------- Division cards (richer than generic .card) ---------- */
.division-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.division-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(102, 197, 207, 0.5);
}
.division-card .division-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brand);
  opacity: 0.85;
}
.division-card .division-num::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--brand-warm);
  margin-top: 12px;
  border-radius: 2px;
}
.division-card h3 {
  margin: 0;
  font-size: 1.3rem;
}
.division-card p {
  margin: 0;
  color: var(--ink-muted);
}
.tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(102, 197, 207, 0.14);
  color: var(--brand-accent-deep);
  border: 1px solid rgba(102, 197, 207, 0.4);
}
