/* ─── TOKENS ─── */
:root {
  --bg: #07080A;
  --bg-2: #0D0F11;
  --bg-3: #131518;
  --border: #1C1F22;
  --border-2: #252829;
  --text: #EDE8E2;
  --text-2: #888480;
  --text-3: #52504E;
  --gold: #C08A4E;
  --gold-light: #D4A06A;
  --gold-dim: rgba(192,138,78,0.12);
  --gold-dim-2: rgba(192,138,78,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { padding-top: 68px; }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(7,8,10,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant', serif; font-weight: 500; font-size: 20px;
  letter-spacing: 0.12em; color: var(--text); text-transform: uppercase; transition: color 0.2s;
}
.nav-logo:hover { color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-2); transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(192,138,78,0.35); padding: 9px 20px;
  cursor: pointer; transition: all 0.2s; background: transparent; display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold-light); }

/* ─── TYPOGRAPHY ─── */
.display {
  font-family: 'Cormorant', serif; font-weight: 400;
  font-size: clamp(42px, 6vw, 80px); line-height: 1.08; letter-spacing: -0.01em;
}
.display em { font-style: italic; color: var(--gold-light); }
.heading-1 {
  font-family: 'Cormorant', serif; font-weight: 400;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.12; letter-spacing: -0.01em;
}
.heading-1 em { font-style: italic; color: var(--gold-light); }
.heading-2 {
  font-family: 'Cormorant', serif; font-weight: 400;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.2;
}
.heading-2 em { font-style: italic; color: var(--gold-light); }
.label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.label-dim { font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
.body-text { font-size: 15px; line-height: 1.75; color: var(--text-2); font-weight: 300; }
.body-text strong { color: var(--text); font-weight: 500; }

/* ─── LAYOUT ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 48px; }
.divider { width: 100%; height: 1px; background: var(--border); }
.divider-gold { width: 48px; height: 1px; background: var(--gold); margin-bottom: 32px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg); background: var(--gold); padding: 14px 28px;
  cursor: pointer; transition: all 0.2s; border: none; font-family: 'Figtree', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); color: var(--bg); }
.btn-primary::after { content: '\2192'; font-size: 13px; letter-spacing: 0; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text); background: transparent; padding: 13px 28px;
  cursor: pointer; border: 1px solid var(--border-2); transition: all 0.2s; font-family: 'Figtree', sans-serif;
}
.btn-secondary:hover { border-color: var(--text-2); color: var(--text); }
.btn-secondary::after { content: '\2192'; font-size: 13px; letter-spacing: 0; color: var(--text-2); }

/* ════ HOMEPAGE ════ */
.home-hero { padding: 100px 0 80px; position: relative; overflow: hidden; }
.home-hero::before {
  content: ''; position: absolute; top: -120px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(192,138,78,0.055) 0%, transparent 70%); pointer-events: none;
}
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.home-hero .display { max-width: 840px; margin-bottom: 32px; }
.home-hero .body-text { max-width: 560px; font-size: 16px; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 56px; padding-top: 56px; border-top: 1px solid var(--border); }
.hero-stat-value { font-family: 'Cormorant', serif; font-size: 38px; font-weight: 300; color: var(--text); line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }

.who-section { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.who-header { margin-bottom: 56px; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.who-item { background: var(--bg); padding: 40px 36px; display: flex; flex-direction: column; transition: background 0.25s; }
.who-item:hover { background: var(--bg-2); }
.who-item-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.who-item-heading { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 400; color: var(--text); line-height: 1.25; margin-bottom: 18px; }
.who-item-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.7; font-weight: 300; margin-bottom: 24px; flex: 1; }
.who-item-points { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--border); }
.who-item-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-2); line-height: 1.5; font-weight: 300; }
.who-item-points li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.who-cta { display: flex; gap: 16px; margin-top: 48px; }

.intro-strip { padding: 72px 0; border-top: 1px solid var(--border); }
.intro-strip-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.intro-strip .body-text { margin-bottom: 24px; }
.intro-strip .body-text:last-child { margin-bottom: 0; }

.how-strip { padding: 80px 0; border-top: 1px solid var(--border); background: var(--bg-2); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 56px; }
.how-item { background: var(--bg-2); padding: 40px 36px; }
.how-number { font-family: 'Cormorant', serif; font-size: 52px; font-weight: 300; color: var(--border-2); line-height: 1; margin-bottom: 20px; }
.how-title { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.how-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; font-weight: 300; }

/* ════ SHARED ════ */
.page-hero { padding: 80px 0 72px; border-bottom: 1px solid var(--border); }
.page-hero .label { margin-bottom: 24px; display: block; }
.page-hero .heading-1 { margin-bottom: 24px; max-width: 700px; }
.page-hero .body-text { max-width: 580px; }
.section-header { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 64px; align-items: start; }
.section-header .heading-2, .section-header .body-text { margin-bottom: 0; }

/* ════ VCP PAGE ════ */
.phases-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.phase-note { margin-top: -32px; margin-bottom: 40px; font-size: 13px; color: var(--text-3); border-left: 2px solid var(--border-2); padding-left: 16px; line-height: 1.6; }
.phases-list { display: flex; flex-direction: column; }
.phase-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 32px; align-items: start; padding: 36px 0; border-bottom: 1px solid var(--border); }
.phase-item:first-child { border-top: 1px solid var(--border); }
.phase-num { font-family: 'Cormorant', serif; font-size: 28px; font-weight: 300; color: var(--text-3); line-height: 1; padding-top: 4px; }
.phase-name { font-family: 'Cormorant', serif; font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.phase-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; font-weight: 300; }
.phase-output { font-size: 12px; color: var(--text-2); margin-top: 16px; padding: 10px 14px; border: 1px solid var(--border); background: var(--bg-2); display: inline-block; }
.phase-output span { font-weight: 600; color: var(--gold); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 3px; }
.phase-days { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; color: var(--text-3); text-transform: uppercase; white-space: nowrap; padding-top: 6px; }

.intelligence-section { padding: 80px 0; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.intelligence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 56px; }
.intel-item { background: var(--bg-2); padding: 36px; }
.intel-item-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.intel-item-traditional { font-size: 14px; color: var(--text-3); margin-bottom: 16px; padding-left: 12px; border-left: 1px solid var(--border-2); font-style: italic; line-height: 1.5; }
.intel-item-vcp { font-size: 14px; color: var(--text); padding-left: 12px; border-left: 1px solid var(--gold); line-height: 1.5; }

.team-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.team-phases { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
.team-phase { background: var(--bg); display: grid; grid-template-columns: 180px 1fr 1fr; }
.team-phase-label { padding: 28px 32px; border-right: 1px solid var(--border); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); display: flex; align-items: center; }
.team-phase-comp { padding: 28px 32px; border-right: 1px solid var(--border); font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.5; display: flex; align-items: center; }
.team-phase-focus { padding: 28px 32px; font-size: 13.5px; color: var(--text-2); font-weight: 300; line-height: 1.5; display: flex; align-items: center; }
.team-anchor-note { margin-top: 32px; padding: 24px 32px; border: 1px solid var(--border); background: var(--bg-2); font-family: 'Cormorant', serif; font-size: 20px; font-style: italic; color: var(--text-2); font-weight: 300; }

.deliverable-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.deliverable-note { margin: 40px 0; padding: 32px 40px; border-left: 2px solid var(--gold); background: var(--gold-dim-2); }
.deliverable-note p { font-family: 'Cormorant', serif; font-size: 22px; font-style: italic; color: var(--text); line-height: 1.45; font-weight: 300; }
.requirements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
.req-item { background: var(--bg); padding: 28px 32px; }
.req-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.02em; }
.req-desc { font-size: 13px; color: var(--text-2); line-height: 1.55; font-weight: 300; }

.exit-section { padding: 80px 0; }
.exit-items { display: flex; flex-direction: column; margin-top: 48px; border: 1px solid var(--border); }
.exit-item { display: flex; align-items: flex-start; border-bottom: 1px solid var(--border); }
.exit-item:last-child { border-bottom: none; }
.exit-item-icon { width: 64px; flex-shrink: 0; display: flex; justify-content: center; padding-top: 26px; border-right: 1px solid var(--border); align-self: stretch; }
.exit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 2px; }
.exit-item-body { padding: 24px 32px; }
.exit-item-title { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.exit-item-desc { font-size: 13.5px; color: var(--text-2); font-weight: 300; line-height: 1.55; }

/* ════ READOUT PAGE ════ */
.readout-hero { padding: 80px 0 72px; border-bottom: 1px solid var(--border); }
.readout-hero .heading-1 { max-width: 680px; margin-bottom: 24px; margin-top: 20px; }
.readout-hero .body-text { max-width: 560px; }
.readout-universal { padding: 72px 0; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.readout-output-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
.readout-output-item { background: var(--bg-2); padding: 36px 32px; }
.readout-output-num { font-family: 'Cormorant', serif; font-size: 44px; font-weight: 300; color: var(--border-2); line-height: 1; margin-bottom: 16px; }
.readout-output-title { font-family: 'Cormorant', serif; font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.readout-output-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; font-weight: 300; }

.readout-paths { padding: 80px 0; }
.readout-how-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.readout-how-left { position: sticky; top: 96px; }
.path-steps { display: flex; flex-direction: column; border: 1px solid var(--border); }
.path-step { padding: 28px 32px; border-bottom: 1px solid var(--border); }
.path-step:last-child { border-bottom: none; }
.path-step-header { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.path-step-num { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 300; color: var(--gold); width: 28px; flex-shrink: 0; }
.path-step-title { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.path-step-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.6; font-weight: 300; padding-left: 44px; }
.path-cta-block { margin-top: 40px; padding: 32px 36px; background: var(--bg-2); border: 1px solid var(--border); }
.path-cta-heading { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.path-cta-desc { font-size: 13.5px; color: var(--text-2); margin-bottom: 24px; font-weight: 300; line-height: 1.6; }

/* ════ CONTACT PAGE ════ */
.contact-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); }
.contact-hero .heading-1 { max-width: 600px; margin-bottom: 20px; margin-top: 20px; }
.contact-hero .body-text { max-width: 520px; }
.contact-paths { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.contact-card-4th, .contact-card-5th { border-top: 1px solid var(--border); }
.contact-card {
  background: var(--bg); padding: 48px 44px; display: flex; flex-direction: column;
  transition: background 0.25s; cursor: pointer; border: none; color: inherit;
  text-align: left; font-family: 'Figtree', sans-serif; width: 100%;
}
.contact-card:hover { background: var(--bg-2); }
.contact-card-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.contact-card-title { font-family: 'Cormorant', serif; font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 14px; }
.contact-card-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; font-weight: 300; flex: 1; margin-bottom: 32px; }
.contact-card-action { display: flex; align-items: center; gap: 10px; font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2); transition: color 0.2s; }
.contact-card:hover .contact-card-action { color: var(--text); }
.contact-card-action::after { content: '\2192'; font-size: 14px; letter-spacing: 0; }

/* ════ ABOUT PAGE ════ */
.about-hero { padding: 80px 0 72px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.about-hero::before {
  content: ''; position: absolute; top: -80px; left: -160px; width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(192,138,78,0.045) 0%, transparent 70%); pointer-events: none;
}
.about-hero .heading-1 { max-width: 720px; margin-bottom: 24px; margin-top: 20px; }
.about-hero .body-text { max-width: 580px; }

.origin-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.origin-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.origin-sticky { position: sticky; top: 96px; }
.origin-sticky .heading-2 { margin-bottom: 20px; }
.origin-sticky .body-text { font-size: 14px; }
.origin-body { display: flex; flex-direction: column; }
.origin-block { padding: 40px 0; border-bottom: 1px solid var(--border); }
.origin-block:first-child { border-top: 1px solid var(--border); }
.origin-block-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.origin-block-heading { font-family: 'Cormorant', serif; font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 16px; line-height: 1.25; }
.origin-block-heading em { font-style: italic; color: var(--gold-light); }
.origin-block-body { font-size: 15px; color: var(--text-2); line-height: 1.75; font-weight: 300; }
.origin-block-body + .origin-block-body { margin-top: 16px; }
.origin-block-body strong { color: var(--text); font-weight: 500; }

.founder-section { padding: 80px 0; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.founder-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.founder-card { background: var(--bg-3); border: 1px solid var(--border); padding: 48px 44px; }
.founder-name { font-family: 'Cormorant', serif; font-size: 32px; font-weight: 400; color: var(--text); margin-bottom: 4px; }
.founder-title { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; display: block; }
.founder-bio { font-size: 14px; color: var(--text-2); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
.founder-bio strong { color: var(--text); font-weight: 500; }
.founder-credentials { display: flex; flex-direction: column; margin-top: 32px; border-top: 1px solid var(--border); }
.credential-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.credential-item:last-child { border-bottom: none; }
.credential-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.credential-text { font-size: 13.5px; color: var(--text-2); line-height: 1.55; font-weight: 300; }
.credential-text strong { color: var(--text); font-weight: 500; }
.founder-right { display: flex; flex-direction: column; gap: 32px; }
.founder-principle { padding: 32px 36px; border: 1px solid var(--border); background: var(--bg); position: relative; }
.founder-principle::before { content: '\201C'; position: absolute; top: 16px; left: 28px; font-family: 'Cormorant', serif; font-size: 64px; color: var(--border-2); line-height: 1; }
.founder-principle-text { font-family: 'Cormorant', serif; font-size: 20px; font-style: italic; color: var(--text); line-height: 1.45; font-weight: 300; padding-top: 28px; }
.founder-principle-attr { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-top: 16px; }

.proof-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.proof-card { margin-top: 48px; border: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; }
.proof-body { padding: 48px; border-right: 1px solid var(--border); }
.proof-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.proof-heading { font-family: 'Cormorant', serif; font-size: 28px; font-weight: 400; color: var(--text); margin-bottom: 20px; line-height: 1.25; }
.proof-heading em { font-style: italic; color: var(--gold-light); }
.proof-desc { font-size: 14.5px; color: var(--text-2); line-height: 1.75; font-weight: 300; margin-bottom: 14px; }
.proof-desc strong { color: var(--text); font-weight: 500; }
.proof-meta { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.proof-meta-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.proof-meta-item:first-child { border-top: 1px solid var(--border); }
.proof-meta-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.proof-meta-value { font-family: 'Cormorant', serif; font-size: 18px; font-weight: 400; color: var(--text); }

.model-section { padding: 80px 0; }
.model-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
.model-pillar { background: var(--bg); padding: 40px 36px; }
.model-pillar-icon { width: 36px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.model-pillar-title { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 14px; }
.model-pillar-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; font-weight: 300; }

/* ════ MODAL ════ */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(7,8,10,0.92); z-index: 200; backdrop-filter: blur(8px); align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--bg-2); border: 1px solid var(--border); width: 100%; max-width: 560px; padding: 56px; position: relative; }
.modal-close { position: absolute; top: 20px; right: 24px; font-size: 22px; color: var(--text-3); cursor: pointer; background: none; border: none; line-height: 1; transition: color 0.2s; font-family: inherit; }
.modal-close:hover { color: var(--text); }
.modal-label { margin-bottom: 8px; display: block; }
.modal-title { font-family: 'Cormorant', serif; font-size: 32px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.modal-subtitle { font-size: 14px; color: var(--text-2); margin-bottom: 36px; font-weight: 300; line-height: 1.6; }
.modal-success { display: none; padding: 40px 0 20px; }
.modal-success.visible { display: block; }
.modal-success-heading { font-family: 'Cormorant', serif; font-size: 28px; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.modal-success-body { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.modal-error-msg { font-size: 13px; color: #e07070; margin-bottom: 16px; display: none; }
.modal-error-msg.visible { display: block; }
.form-row { margin-bottom: 20px; }
.form-label { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--border); color: var(--text); font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 300; padding: 12px 16px; outline: none; transition: border-color 0.2s; resize: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { height: 100px; }
.form-submit { margin-top: 28px; width: 100%; padding: 15px; background: var(--gold); color: var(--bg); border: none; font-family: 'Figtree', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { font-size: 12px; color: var(--text-3); margin-top: 16px; text-align: center; line-height: 1.5; }

/* ════ FOOTER ════ */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'Cormorant', serif; font-weight: 500; font-size: 16px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a { font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); transition: color 0.2s; }
.footer-nav a:hover { color: var(--text-2); }
.footer-copy { font-size: 12px; color: var(--text-3); letter-spacing: 0.04em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav.site-nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: 10.5px; }
  .container, .container-narrow { padding: 0 24px; }
  .home-hero { padding: 72px 0 60px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .who-grid, .how-grid, .intelligence-grid, .requirements-grid, .model-pillars { grid-template-columns: 1fr; }
  .intro-strip-inner, .section-header, .origin-layout, .founder-layout { grid-template-columns: 1fr; gap: 32px; }
  .section-header { margin-bottom: 40px; }
  .phase-item { grid-template-columns: 36px 1fr; }
  .phase-days { grid-column: 2; padding-top: 0; margin-top: 8px; }
  .team-phase { grid-template-columns: 1fr; }
  .team-phase-label, .team-phase-comp { border-right: none; border-bottom: 1px solid var(--border); }
  .readout-how-layout { grid-template-columns: 1fr; gap: 40px; }
  .readout-how-left { position: static; }
  .readout-output-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card-4th, .contact-card-5th { border-top: none; }
  .origin-sticky { position: static; }
  .proof-card { grid-template-columns: 1fr; }
  .proof-body { border-right: none; border-bottom: 1px solid var(--border); }
  .modal-box { padding: 36px 24px; margin: 16px; }
  .footer-nav { display: none; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 24px; }
}
