/* =============================================================
   CATALYST — SITE-SPECIFIC STYLES
   ============================================================= */

/* ----- NAV ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: backdrop-filter 300ms, background 300ms, padding 300ms;
}
.nav.scrolled {
  background: rgba(11, 11, 14, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 12px 0;
  border-bottom: 1px solid var(--d-rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  height: 36px;
}
.nav-logo img { height: 28px; width: auto; }
.nav-logo .word {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--d-fg-2);
  position: relative;
  padding: 6px 0;
  transition: color 200ms;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 200ms ease;
}
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; gap: 8px; }
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ----- HERO ----- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1100px) { .hero-grid { grid-template-columns: 1fr; gap: 60px; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--d-fg-2);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--d-rule);
}
.hero-stat .num {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-stat .num em { color: var(--gold); font-style: normal; }
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-fg-3);
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

/* ----- OPPORTUNITY ----- */
.opp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.opp-card {
  grid-column: span 6;
  border: 1px solid var(--d-rule);
  padding: 40px;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.opp-card.tall { grid-column: span 6; min-height: 360px; }
.opp-card.wide { grid-column: span 12; }
@media (max-width: 880px) {
  .opp-card, .opp-card.tall, .opp-card.wide { grid-column: span 12; }
}

.opp-card .big {
  font-family: var(--display);
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 12px;
}
.opp-card .lbl {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-fg-3);
  margin-bottom: 20px;
}
.opp-card .body {
  font-size: 17px;
  line-height: 1.5;
  color: var(--d-fg);
}
.opp-card .body strong { color: var(--gold); font-weight: 500; }

.market-funnel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.funnel-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--d-rule);
  background: var(--ink);
  font-size: 14px;
  position: relative;
}
.funnel-row .v {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--gold);
}
.funnel-row .l { color: var(--d-fg-2); font-size: 14px; }
.funnel-row .pct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--d-fg-3);
  letter-spacing: 0.1em;
}
.funnel-row.target {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.funnel-row.target .v,
.funnel-row.target .l,
.funnel-row.target .pct { color: var(--ink); }

/* ----- THESIS ----- */
.thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--d-rule);
  border-bottom: 1px solid var(--d-rule);
}
.thesis-step {
  padding: 56px 40px;
  border-right: 1px solid var(--d-rule);
  position: relative;
  transition: background 300ms;
}
.thesis-step:last-child { border-right: 0; }
.thesis-step:hover { background: var(--ink-2); }
.thesis-step .step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.thesis-step h3 {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.thesis-step p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--d-fg-2);
  margin-bottom: 28px;
}
.thesis-step .metric {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--d-fg-3);
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 1px solid var(--d-rule);
}
.thesis-step .metric strong {
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 880px) {
  .thesis-grid { grid-template-columns: 1fr; }
  .thesis-step { border-right: 0; border-bottom: 1px solid var(--d-rule); }
  .thesis-step:last-child { border-bottom: 0; }
}

.thesis-formula {
  margin-top: 64px;
  padding: 40px;
  background: var(--ink-2);
  border: 1px solid var(--d-rule);
  text-align: center;
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.thesis-formula em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

/* ----- DIGITAL KAIZEN ----- */
.dk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) { .dk-grid { grid-template-columns: 1fr; gap: 48px; } }

.dk-layers {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--d-rule);
}
.dk-layer {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px;
  border-bottom: 1px solid var(--d-rule);
  align-items: start;
  transition: background 200ms;
}
.dk-layer:last-child { border-bottom: 0; }
.dk-layer:hover { background: var(--ink-2); }
.dk-layer .icon-wrap {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--d-rule);
  color: var(--gold);
}
.dk-layer h4 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.dk-layer p {
  font-size: 15px;
  color: var(--d-fg-2);
  line-height: 1.55;
}

.dk-evidence {
  margin-top: 48px;
  padding: 32px;
  background: var(--ink);
  border: 1px solid var(--gold);
  position: relative;
}
.dk-evidence-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.dk-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dk-ev-item .v {
  font-family: var(--display);
  font-size: 28px;
  color: var(--d-fg);
  line-height: 1;
  margin-bottom: 6px;
}
.dk-ev-item .l {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-fg-3);
}
@media (max-width: 720px) {
  .dk-evidence-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ----- PLAYBOOK ----- */
.playbook-track {
  position: relative;
  padding: 60px 0;
}
.playbook-rail {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: var(--d-rule);
}
.playbook-rail .progress {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--gold);
  width: 0%;
  transition: width 800ms cubic-bezier(.2,.7,.2,1);
}
.playbook-stops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.playbook-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 16px;
}
.playbook-stop .dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--d-rule);
  margin: 24px 0;
  transition: all 300ms;
}
.playbook-stop.active .dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 205, 60, 0.18);
}
.playbook-stop .day {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.playbook-stop .phase {
  font-family: var(--display);
  font-size: 22px;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.playbook-detail {
  margin-top: 56px;
  padding: 48px;
  background: var(--ink-2);
  border: 1px solid var(--d-rule);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  min-height: 320px;
}
.playbook-detail .left .day-range {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.playbook-detail .left .phase-name {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-top: 12px;
  color: var(--d-fg-2);
}
.playbook-detail .right ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.playbook-detail .right li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  color: var(--d-fg-2);
  line-height: 1.5;
}
.playbook-detail .right li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
@media (max-width: 880px) {
  .playbook-stops { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .playbook-detail { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .playbook-detail .right ul { grid-template-columns: 1fr; }
}

/* ----- VALUE CREATION ----- */
.vc-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 64px;
}
.vc-side {
  padding: 40px;
  border: 1px solid var(--d-rule);
  background: var(--ink-2);
}
.vc-side.exit {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.vc-side .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--d-fg-3);
}
.vc-side.exit .label { color: var(--ink); opacity: 0.65; }
.vc-side .year {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.vc-side .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--d-rule);
  font-size: 14px;
}
.vc-side.exit .stat-row { border-color: rgba(11,11,14,0.18); }
.vc-side .stat-row .v { font-family: var(--mono); font-size: 17px; }
.vc-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 100px;
  color: var(--gold);
}
.vc-arrow .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--d-fg-3);
}
@media (max-width: 880px) {
  .vc-flow { grid-template-columns: 1fr; }
  .vc-arrow { transform: rotate(90deg); padding: 12px 0; }
}

.portfolio-state {
  padding: 48px;
  background: var(--ink-2);
  border: 1px solid var(--d-rule);
}
.portfolio-state h4 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.portfolio-item .v {
  font-family: var(--display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.portfolio-item .l {
  font-size: 12px;
  color: var(--d-fg-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 880px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----- TEAM ----- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--d-rule);
}
.team-card {
  padding: 32px 24px;
  border-right: 1px solid var(--d-rule);
  transition: background 300ms;
  position: relative;
  display: flex;
  flex-direction: column;
}
.team-card:last-child { border-right: 0; }
.team-card:hover { background: var(--ink-2); }
.team-portrait {
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--d-rule);
}
.team-portrait .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: -0.04em;
}
.team-portrait .hex-overlay {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--gold);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  opacity: 0.18;
}
.team-card h4 {
  font-family: var(--display);
  font-size: 22px;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-card .bio {
  font-size: 13px;
  line-height: 1.5;
  color: var(--d-fg-2);
  margin-top: auto;
}
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-card { border-right: 1px solid var(--d-rule); border-bottom: 1px solid var(--d-rule); }
  .team-card:nth-child(3n) { border-right: 0; }
}
@media (max-width: 760px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card:nth-child(3n) { border-right: 1px solid var(--d-rule); }
  .team-card:nth-child(2n) { border-right: 0; }
}
@media (max-width: 500px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: 0 !important; }
}

.team-cred {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--d-rule);
  border-bottom: 1px solid var(--d-rule);
}
.team-cred .b {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding: 28px 32px;
  border-right: 1px solid var(--d-rule);
}
.team-cred .b:last-child { border-right: 0; }
@media (max-width: 800px) {
  .team-cred { grid-template-columns: 1fr; }
  .team-cred .b { border-right: 0; border-bottom: 1px solid var(--d-rule); }
  .team-cred .b:last-child { border-bottom: 0; }
}
.team-cred .b em { color: var(--gold); font-style: normal; }

/* ----- TERMS ----- */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--d-rule);
}
.term-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px 32px;
  border-bottom: 1px solid var(--d-rule);
  border-right: 1px solid var(--d-rule);
  align-items: baseline;
  gap: 24px;
}
.term-row:nth-child(2n) { border-right: 0; }
.term-row .key {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-fg-3);
}
.term-row .val {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--d-fg);
}
.term-row.highlight .val { color: var(--gold); }
@media (max-width: 720px) {
  .terms-grid { grid-template-columns: 1fr; }
  .term-row { grid-template-columns: 1fr; gap: 6px; border-right: 0; }
}

/* ----- WHY NOW ----- */
.whynow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.whynow-card {
  padding: 32px 24px;
  border: 1px solid var(--d-rule);
  background: var(--ink-2);
  transition: all 300ms;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.whynow-card:hover {
  border-color: var(--gold);
  background: var(--ink-3);
  transform: translateY(-4px);
}
.whynow-card .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 32px;
}
.whynow-card h4 {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
}
.whynow-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--d-fg-2);
  margin-top: auto;
}
@media (max-width: 1100px) { .whynow-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .whynow-grid { grid-template-columns: 1fr; } }

/* ----- CONTACT ----- */
.contact {
  background:
    radial-gradient(ellipse at top right, rgba(255, 205, 60, 0.08), transparent 60%),
    var(--ink);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.contact h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.contact h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.contact-card {
  padding: 32px;
  background: var(--ink-2);
  border: 1px solid var(--d-rule);
}
.contact-person {
  padding: 18px 0;
  border-bottom: 1px solid var(--d-rule);
}
.contact-person:last-child { border-bottom: 0; }
.contact-person .name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.contact-person .role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-fg-3);
  margin-top: 4px;
}
.contact-person .email {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gold);
  margin-top: 8px;
  display: inline-block;
}
.contact-person .email:hover { text-decoration: underline; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ----- FOOTER ----- */
.footer {
  padding: 96px 0 48px;
  border-top: 1px solid var(--d-rule);
  font-size: 13px;
  color: var(--d-fg-3);
  background: var(--ink);
}
.footer-manifesto { max-width: 880px; }
.footer-manifesto-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-manifesto-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--d-fg);
  margin-bottom: 32px;
  font-weight: 400;
}
.footer-manifesto-title em { color: var(--gold); font-style: italic; font-weight: 300; }
.footer-manifesto p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--d-fg-2);
  margin-bottom: 20px;
}
.footer-manifesto-close {
  font-family: var(--display);
  font-size: 24px !important;
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 32px !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 48px;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--d-fg-2);
  padding: 6px 0;
  line-height: 1.4;
  transition: color 200ms;
}
.footer-col a span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--d-fg-3);
}
.footer-col a:hover { color: var(--gold); }
.footer-col a:hover span { color: var(--gold); }
.footer-addr { font-size: 13px; color: var(--d-fg-2); line-height: 1.55; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--d-fg-3);
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--d-fg-3); transition: color 200ms; }
.footer-legal-links a:hover { color: var(--gold); }

.footer-disclaimer {
  margin-top: 24px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--d-fg-3);
  max-width: 980px;
}

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer { padding: 56px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-manifesto p { font-size: 15px; }
}

/* ----- NAV (additions) ----- */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { right: 0; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-burger span {
  width: 22px; height: 2px; background: var(--d-fg);
  transition: all 200ms;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--ink-2);
  border-top: 1px solid var(--d-rule);
  padding: 24px;
  gap: 16px;
}
.nav-mobile a {
  font-size: 16px;
  color: var(--d-fg-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--d-rule);
}
.nav-mobile a.active { color: var(--gold); }
@media (max-width: 880px) {
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  .nav-cta { display: none; }
}

/* ----- PAGE HERO (subpages) ----- */
.pagehero {
  padding: 180px 0 100px;
  position: relative;
  border-bottom: 1px solid var(--d-rule);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 205, 60, 0.06), transparent 60%),
    var(--ink);
}
.pagehero .eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--d-rule);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.pagehero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-wrap: balance;
  max-width: 18ch;
}
.pagehero h1 em { color: var(--gold); font-style: italic; font-weight: 300; }
.pagehero .lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--d-fg-2);
  max-width: 720px;
  margin-top: 32px;
}

/* ----- PROSE BLOCKS ----- */
.prose {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--d-fg-2);
}
.prose p { margin-bottom: 20px; }
.prose strong { color: var(--gold); font-weight: 500; }
.prose em { color: var(--d-fg); font-style: italic; }
.prose h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--d-fg);
  margin: 48px 0 20px;
  font-weight: 400;
}
.prose h3 em { color: var(--gold); font-style: italic; font-weight: 300; }

.pullquote {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--d-fg);
  padding: 48px 0 48px 32px;
  border-left: 3px solid var(--gold);
  margin: 56px 0;
  font-style: italic;
  font-weight: 300;
}

/* ----- ICON ROW ----- */
.icon-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0;
}
.icon-tile {
  padding: 40px 32px;
  border: 1px solid var(--d-rule);
  background: var(--ink-2);
  text-align: left;
  transition: border-color 200ms, background 200ms;
}
.icon-tile:hover { border-color: var(--gold); background: var(--ink-3); }
.icon-tile .ic {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}
.icon-tile h4 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  font-weight: 400;
}
.icon-tile p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--d-fg-2);
}
@media (max-width: 880px) { .icon-row-3 { grid-template-columns: 1fr; } }

/* ----- FACT GRID (home 1.5) ----- */
.factgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--d-rule);
}
.factgrid .cell {
  padding: 36px 32px;
  border-right: 1px solid var(--d-rule);
  border-bottom: 1px solid var(--d-rule);
}
.factgrid .cell:nth-child(3n) { border-right: 0; }
.factgrid .cell:nth-last-child(-n+3) { border-bottom: 0; }
.factgrid .cell .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--d-fg-3);
  margin-bottom: 12px;
}
.factgrid .cell .v {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.factgrid .cell .v.small {
  font-size: 18px;
  color: var(--d-fg);
  letter-spacing: -0.005em;
}
@media (max-width: 880px) {
  .factgrid { grid-template-columns: 1fr 1fr; }
  .factgrid .cell:nth-child(3n) { border-right: 1px solid var(--d-rule); }
  .factgrid .cell:nth-child(2n) { border-right: 0; }
  .factgrid .cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--d-rule); }
  .factgrid .cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .factgrid { grid-template-columns: 1fr; }
  .factgrid .cell { border-right: 0 !important; border-bottom: 1px solid var(--d-rule) !important; }
  .factgrid .cell:last-child { border-bottom: 0 !important; }
}

/* ----- BUY BUILD EXIT FLOW ----- */
.bbe-flow {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  margin: 56px 0;
}
.bbe-step {
  padding: 40px 32px;
  border: 1px solid var(--d-rule);
  background: var(--ink-2);
}
.bbe-step.middle { background: var(--ink); border-color: var(--gold); }
.bbe-step.exit { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.bbe-step .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.bbe-step.exit .label { color: var(--ink); }
.bbe-step h4 {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 400;
}
.bbe-step .v {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--d-fg-2);
}
.bbe-step.exit .v { color: var(--ink); }
.bbe-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 24px;
}
@media (max-width: 880px) {
  .bbe-flow { grid-template-columns: 1fr; }
  .bbe-arrow { transform: rotate(90deg); padding: 12px 0; }
}

/* ----- TEAM PROFILE (full bios) ----- */
.profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--d-rule);
  align-items: start;
}
.profile:last-child { border-bottom: 0; }
.profile-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--d-rule);
  position: relative;
  overflow: hidden;
}
.profile-portrait .initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 96px;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: -0.04em;
}
.profile-portrait .hex-overlay {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  background: var(--gold);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  opacity: 0.18;
}
.profile-body .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.profile-body h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 400;
}
.profile-body .creds {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--d-fg-3);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.profile-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--d-fg-2);
  margin-bottom: 16px;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.profile-tags .ptag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border: 1px solid var(--d-rule);
  color: var(--d-fg-2);
  text-transform: uppercase;
}
.profile-tags .ptag.gold { color: var(--gold); border-color: var(--gold); }
@media (max-width: 720px) {
  .profile { grid-template-columns: 1fr; gap: 24px; }
  .profile-portrait { max-width: 240px; }
}

/* ----- TIMELINE ----- */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px; left: 8px;
  width: 1px; background: var(--d-rule);
}
.timeline-step {
  position: relative;
  padding: 24px 0 32px 24px;
}
.timeline-step::before {
  content: "";
  position: absolute;
  left: -32px; top: 28px;
  width: 17px; height: 17px;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.timeline-step .stage {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-step h4 {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  font-weight: 400;
}
.timeline-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--d-fg-2);
  max-width: 720px;
}

/* ----- IMPACT TILES ----- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.impact-tile {
  padding: 32px 24px;
  border: 1px solid var(--d-rule);
  background: var(--ink-2);
}
.impact-tile .v {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 12px;
}
.impact-tile .l {
  font-size: 13px;
  line-height: 1.4;
  color: var(--d-fg-2);
}
@media (max-width: 880px) { .impact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .impact-grid { grid-template-columns: 1fr; } }

/* ----- SPECS LIST (provider stack) ----- */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--d-rule);
}
.specs .row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  padding: 18px 24px;
  border-right: 1px solid var(--d-rule);
  border-bottom: 1px solid var(--d-rule);
  gap: 16px;
  align-items: baseline;
}
.specs .row:nth-child(2n) { border-right: 0; }
.specs .row .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--d-fg-3);
}
.specs .row .v {
  font-size: 15px;
  color: var(--d-fg);
  font-weight: 500;
}
@media (max-width: 720px) {
  .specs { grid-template-columns: 1fr; }
  .specs .row { grid-template-columns: 1fr; gap: 4px; border-right: 0; }
}

/* ----- PIPELINE GRID (illustrative) ----- */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.pipeline-card {
  padding: 24px;
  border: 1px solid var(--d-rule);
  background: var(--ink-2);
}
.pipeline-card .sector {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pipeline-card .size {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--d-fg);
}
.pipeline-card .stage {
  font-size: 12px;
  color: var(--d-fg-3);
  margin-top: 8px;
}
@media (max-width: 880px) { .pipeline-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pipeline-grid { grid-template-columns: 1fr; } }

/* ----- VIDEO LINK ----- */
.video-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--ink-2);
  border: 1px solid var(--d-rule);
  font-size: 13px;
  color: var(--d-fg-2);
  margin-top: 20px;
  width: fit-content;
  transition: all 200ms;
}
.video-banner:hover {
  border-color: var(--gold);
  color: var(--d-fg);
}
.video-banner .play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-banner .play svg { width: 12px; height: 12px; color: var(--ink); }

/* =============================================================
   RESPONSIVE PATCHES — utility classes for inline grids
   ============================================================= */

/* Generic auto-fit grids used inline across the site.
   These replace hardcoded inline `gridTemplateColumns: repeat(N, 1fr)`
   and degrade gracefully across viewports. */
.grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-5   { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

@media (max-width: 1100px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
}

/* Page-hero (subpages) — kill empty space on mobile */
@media (max-width: 720px) {
  .pagehero { padding: 140px 0 56px !important; }
  .pagehero .lead { font-size: 17px !important; margin-top: 24px !important; }
}

/* Sections — tighten vertical rhythm on small screens */
@media (max-width: 720px) {
  section { padding: 64px 0 !important; }
}

/* Hero visual hides cleanly on narrow */
@media (max-width: 1100px) {
  .hero-visual { max-width: 100%; aspect-ratio: 1.4 / 1; margin: 24px 0 0; }
}

/* Strategy / opportunity tables and rows */
@media (max-width: 600px) {
  .funnel-row {
    grid-template-columns: 70px 1fr;
    gap: 12px;
    font-size: 13px;
  }
  .funnel-row .pct { display: none; }
}

/* Why-now cards: don't force 280px min-height on mobile */
@media (max-width: 600px) {
  .whynow-card { min-height: 0; padding: 24px; }
}

/* Playbook detail readability */
@media (max-width: 600px) {
  .playbook-stop { padding: 0 6px; }
  .playbook-stop .phase { font-size: 18px; }
  .playbook-detail .left .day-range { font-size: 48px; }
}

/* DK evidence label spacing on mobile */
@media (max-width: 600px) {
  .dk-evidence { padding: 24px; }
  .dk-evidence-grid { gap: 16px; }
  .dk-ev-item .v { font-size: 22px; }
}

/* VC sides — scale down arrow padding */
@media (max-width: 880px) {
  .vc-side { padding: 28px; }
  .vc-side .year { font-size: 48px; }
  .portfolio-state { padding: 28px; }
}

/* Section headers on tiny screens */
@media (max-width: 600px) {
  .sec-head { margin-bottom: 40px; }
}

/* Form responsive on contact page */
@media (max-width: 600px) {
  .form-grid { gap: 32px !important; padding: 32px 0 64px !important; }
  .info-card { padding: 24px !important; }
}

/* Footer wraps cleanly */
@media (max-width: 600px) {
  .footer { padding: 32px 0; font-size: 11px; }
  .footer-inner { gap: 16px; }
}

/* Insights articles */
@media (max-width: 720px) {
  .article { padding: 28px 0 !important; }
  .article:hover { padding-left: 0 !important; padding-right: 0 !important; background: transparent !important; }
}

/* Nav: mobile menu trigger */
@media (max-width: 880px) {
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { padding: 12px 16px; font-size: 13px; }
}

/* Container padding tighter on tiny screens (keep brand var rhythm but cap) */
@media (max-width: 480px) {
  :root { --gutter: 18px; }
}

/* Honeycomb decorative SVGs that overflow on mobile */
.hero-visual svg { max-width: 100%; height: auto; }

/* Anything using inline `gridTemplateColumns: "1fr 1fr"` for short rows */
.row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .row-2col { grid-template-columns: 1fr; gap: 16px; } }

.row-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
@media (max-width: 720px) { .row-1-2 { grid-template-columns: 1fr; gap: 16px; } }
/* v2 cache bust */
