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

/* ── TOKENS — names match what the HTML files actually use ── */
:root {
  --bg-body:        #f7f8fa;
  --bg-surface:     #ffffff;
  --bg-section-alt: #eef1f5;
  --navy:           #0f1f38;
  --navy-mid:       #1a2e4a;
  --navy-light:     #243d5f;
  --gold:           #c9941a;
  --gold-light:     #e8b84b;
  --gold-bg:        #fdf3dc;
  --text-headline:  #0f1f38;
  --text-body:      #3a4a5c;
  --text-dim:       #7a8a9a;
  --text-light:     #ffffff;
  --text-light-dim: #b8c8d8;
  --border:         #dde3ea;
  --content-width:  72%;
  --content-max:    1440px;
  --nav-h:          56px;
  --stats-h:        56px;
  --ticker-h:       40px;
  --copy-h:         20px;
  --foot-total:     calc(var(--stats-h) + var(--copy-h));
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }

/* ── SHELL: light-gray body, colored bands confined to content-width ── */
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  background: var(--bg-body);
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; z-index: 200;
  height: var(--nav-h);
  width: var(--content-width);
  max-width: var(--content-max);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  display: flex; align-items: center;
  border-left: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}
.nav-inner {
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-logo { font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:900; color:var(--gold-light); text-decoration:none; letter-spacing:-0.02em; flex-shrink:0; }
.nav-logo span { color:#fff; }
.nav-links { display:flex; gap:1.5rem; list-style:none; align-items:center; }
.nav-links a { color:rgba(255,255,255,0.72); text-decoration:none; font-size:0.72rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; transition:color 0.2s; white-space:nowrap; }
.nav-links a:hover, .nav-links a.active { color:var(--gold-light); }
.nav-cta { background:transparent!important; border:1px solid var(--gold-light)!important; color:var(--gold-light)!important; padding:0.3rem 0.875rem!important; border-radius:2px; transition:all 0.2s!important; }
.nav-cta:hover { background:var(--gold-light)!important; color:var(--navy)!important; }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; flex-shrink:0; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--gold-light); }
.nav-mobile { display:none; position:fixed; inset:0; background:var(--navy-mid); z-index:199; flex-direction:column; align-items:center; justify-content:center; gap:2rem; }
.nav-mobile.open { display:flex; }
.nav-mobile a { color:#fff; text-decoration:none; font-family:'Playfair Display',serif; font-size:2rem; font-weight:700; }
.nav-mobile a:hover { color:var(--gold-light); }
.nav-mobile-close { position:absolute; top:1.25rem; right:1.5rem; font-size:2rem; color:var(--gold-light); cursor:pointer; background:none; border:none; }

/* ── FOOTER ── */
footer {
  position: fixed; bottom: 0; z-index: 200;
  height: var(--foot-total);
  width: var(--content-width);
  max-width: var(--content-max);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border-left: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  border-top: 2px solid var(--gold);
}
.footer-stats {
  width: 100%;
  height: var(--stats-h);
  display: grid; grid-template-columns: repeat(5,1fr);
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 1rem;
}
.footer-stats > div { padding: 0 0.45rem; border-right: 1px solid rgba(255,255,255,0.06); }
.footer-stats > div:first-child { padding-left: 0; }
.footer-stats > div:last-child { border-right: none; }
.fsn { font-family:'Playfair Display',serif; font-size:0.85rem; font-weight:700; color:var(--gold-light); line-height:1; display:inline-block; }
.fsl { font-size:0.66rem; color:#fff; margin-top:0; display:inline-block; line-height:1.1; margin-left:0.35rem; white-space:nowrap; }
.ticker-row {
  position: fixed;
  top: var(--nav-h);
  width: var(--content-width);
  max-width: var(--content-max);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  height: var(--ticker-h);
  overflow: hidden;
  background: var(--gold);
  display: flex; align-items: center;
  border-left: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}
.ticker-inner { width: 100%; overflow:hidden; white-space:nowrap; }
.ticker-track { display:inline-block; animation:ticker 50s linear infinite; }
.ticker-track span { display:inline-block; font-family:'DM Mono',monospace; font-size:1.16rem; font-weight:600; letter-spacing:0.07em; text-transform:uppercase; color:var(--navy); padding:0 2rem; }
.ticker-track span::before { content:'◆'; margin-right:2rem; opacity:0.35; }
.footer-copy-row { height: var(--copy-h); display:flex; align-items:center; background: var(--navy-mid); }
.footer-copy-inner { width: 100%; padding: 0 1rem; display:flex; justify-content:space-between; font-size:0.825rem; color:rgba(255,255,255,0.35); letter-spacing:0.04em; }

/* ── SCROLL SHELL ── */
.scroll-shell {
  position: fixed;
  top: calc(var(--nav-h) + var(--ticker-h));
  bottom: var(--foot-total);
  width: var(--content-width);
  max-width: var(--content-max);
  left: 50%;
  transform: translateX(-50%);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-body);
  border-left: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  scroll-snap-type: y mandatory;
}

/* Sub-pages (founders, investors, team, about) — normal scroll, no snap */
.page-shell {
  position: fixed;
  top: calc(var(--nav-h) + var(--ticker-h));
  bottom: var(--foot-total);
  width: var(--content-width);
  max-width: var(--content-max);
  left: 50%;
  transform: translateX(-50%);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg-body);
  border-left: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}

/* Each section default = 50% of scroll-shell = 2 rows per page */
.scroll-shell > * {
  height: 50%;
  overflow: hidden;
}
.scroll-shell > :nth-child(odd) {
  scroll-snap-align: start;
}

/* Investor model should take a full page, push CTA to the next page */
#model {
  height: 100% !important;
  scroll-snap-align: start !important;
}
#model .two-col > .card { display:flex; flex-direction:column; flex:1; }

#apply {
  height: 50% !important;
  scroll-snap-align: start;
}

/* On free-scroll sub-pages (page-shell) the snap heights must not apply */
.page-shell #model { height: auto !important; }
.page-shell #apply { height: auto !important; }
/* On tablet/mobile within scroll-shell, allow sections to grow to content height */
@media (max-width:900px) {
  .scroll-shell #model { height: auto !important; }
  .scroll-shell #apply { height: auto !important; }
}

/* ── INVESTOR YEAR PROJECTION CARDS ── */
#model h3 { font-family:'Playfair Display',serif; font-size:1rem; color:var(--text-headline); margin:0.75rem 0 0.625rem; }
#model .three-col > .card > div:first-child { font-family:'DM Mono',monospace; font-size:0.55rem; color:var(--gold); letter-spacing:0.2em; text-transform:uppercase; margin-bottom:0.5rem; }
#model .three-col > .card > div:nth-child(2) { font-family:'Playfair Display',serif; font-size:2.2rem; font-weight:900; color:var(--text-headline); line-height:1; }
#model .three-col > .card > div:nth-child(3) { font-size:0.75rem; color:var(--text-body); margin-bottom:0.625rem; }
#model .three-col > .card > div:nth-child(n+4) { display:flex; justify-content:space-between; gap:0.5rem; font-size:0.75rem; color:var(--text-body); padding:0.25rem 0; border-top:1px solid var(--border); }
#model .three-col > .card > div:nth-child(n+4) span:last-child { font-weight:600; color:var(--text-headline); text-align:right; }

/* ── CONTENT WIDTH ── */
.section-full { width: 100%; background: #f2f4f7; }
.section-full .inner,
.inner {
  width: 100%;
  padding: 0.35rem 1.5rem;
  display: flex;
  flex-direction: column;
}

/* Fill snap-section height so images aren't clipped */
.scroll-shell > * > .inner { height: 100%; }
.scroll-shell > * > .inner > .two-col { flex: 1; min-height: 0; align-items: stretch; }
.scroll-shell > * .two-col > div:last-child { display:flex; flex-direction:column; min-height:0; overflow:hidden; }
.scroll-shell > * .two-col > div:last-child img { flex:0 1 auto; min-height:0; max-height:100%; object-fit:contain; width:100%; }
.section-alt { background: var(--bg-section-alt); }
.section-dark { background: var(--navy); color: var(--text-light); }
.cta-section { background: var(--navy); color: #fff; padding: 1.5rem 1.5rem 0.5rem; text-align: center; display: flex; flex-direction: column; justify-content: center; }

/* Hero wrapper fills full width, inner is the content */
.hero-section { background: #f2f4f7; }
.hero {
  width: 100%;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: start;
}

/* Photo break: full width inside scroll-shell */
.photo-break-wrap {
  width: 100%; padding: 2px 1.5rem;
  display: flex; flex-direction: column;
}
.photo-break { position:relative; overflow:hidden; width:100%; aspect-ratio:21/7; min-height:140px; max-height:280px; border-radius:4px; }
.divider { display: none; }
.photo-break img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 18%; filter:brightness(0.78); }
.photo-break-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(15,31,56,0.88) 0%,rgba(15,31,56,0.25) 55%,transparent 100%); display:flex; align-items:center; padding:0 clamp(1rem,4%,3rem); }
.photo-break-text { max-width:min(500px,85%); }
.photo-break-text blockquote { font-family:'Playfair Display',serif; font-size:clamp(1rem,1.8vw,1.6rem); font-weight:700; color:#fff; line-height:1.3; font-style:italic; margin-bottom:0.5rem; }
.photo-break-text blockquote em { color:var(--gold-light); }
.photo-break-text cite { font-family:'DM Mono',monospace; font-size:0.6rem; color:var(--gold-light); letter-spacing:0.15em; text-transform:uppercase; font-style:normal; }

/* Page hero (interior) */
.page-hero { background:var(--navy); color:var(--text-light); position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px); background-size:48px 48px; }
.page-hero-inner { width:100%; position:relative; z-index:1; padding:2.5rem 1.5rem; }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,4rem); font-weight:900; line-height:1.0; color:#fff; letter-spacing:-0.03em; margin-bottom:0.875rem; }
.page-hero h1 em { font-style:italic; color:var(--gold-light); }
.page-hero p { font-size:0.9rem; color:var(--text-light-dim); max-width:560px; line-height:1.7; }
.page-hero-tag { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--gold-light); margin-bottom:0.875rem; display:inline-flex; align-items:center; gap:0.5rem; background:var(--navy); padding:0.3rem 1rem 0.3rem 0.6rem; border-radius:2px; }
.page-hero-tag::before { content:''; display:block; width:20px; height:1px; background:var(--gold-light); }

/* ── BUTTONS ── */
.btn-primary { background:var(--navy); color:#fff; padding:0.5rem 1.2rem; font-family:'DM Sans',sans-serif; font-size:0.72rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; text-decoration:none; border:none; cursor:pointer; transition:all 0.2s; display:inline-block; border-radius:2px; }
.btn-primary:hover { background:var(--navy-light); transform:translateY(-1px); }
.btn-secondary { background:transparent; color:var(--navy); padding:0.5rem 1.2rem; font-family:'DM Sans',sans-serif; font-size:0.72rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; text-decoration:none; border:1.5px solid var(--navy); cursor:pointer; transition:all 0.2s; display:inline-block; border-radius:2px; }
.btn-secondary:hover { background:var(--navy); color:#fff; }
.btn-gold { background:var(--gold); color:#fff; padding:0.7rem 1.5rem; font-family:'DM Sans',sans-serif; font-size:0.75rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; text-decoration:none; border:none; cursor:pointer; transition:all 0.2s; display:inline-block; border-radius:2px; }
.btn-gold:hover { background:var(--gold-light); transform:translateY(-1px); }
.btn-outline-light { background:transparent; color:#fff; padding:0.7rem 1.5rem; font-family:'DM Sans',sans-serif; font-size:0.75rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; text-decoration:none; border:1.5px solid rgba(255,255,255,0.4); cursor:pointer; transition:all 0.2s; display:inline-block; border-radius:2px; }
.btn-outline-light:hover { border-color:#fff; background:rgba(255,255,255,0.08); }

/* ── SECTION TYPE ── */
.section-eyebrow { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--gold-light); margin-bottom:0.625rem; display:inline-flex; align-items:center; gap:0.5rem; background:var(--navy); padding:0.3rem 1rem 0.3rem 0.6rem; border-radius:2px; font-weight:700; align-self:flex-start; width:fit-content; }
.section-eyebrow::before { content:''; display:block; width:20px; height:1px; background:var(--gold-light); }
.section-eyebrow.center { justify-content:center; align-self:center; }
.section-eyebrow.center::before { display:none; }
.section-eyebrow.light { color:var(--gold-light); }
.section-eyebrow.light::before { background:var(--gold-light); }
.section-headline, .hero-headline { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,2.4vw,2.4rem); font-weight:700; color:var(--text-headline); line-height:1.15; letter-spacing:-0.02em; }
.section-headline em, .hero-headline em { color:var(--gold); font-style:italic; }
.section-headline.light, .hero-headline.light { color:#fff; }
.section-headline.light em, .hero-headline.light em { color:var(--gold-light); }
.section-headline.center { text-align:center; }

/* ── GRIDS ── */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; align-items:start; }
.two-col.align-center { align-items:start; }
.two-col img { width:100%; height:auto; max-height:480px; object-fit:contain; border-radius:4px; display:block; }
.three-col { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.four-col { display:grid; grid-template-columns:repeat(4,1fr); gap:1.1rem; }

/* ── INFO TABS ── */
.info-tabs { display:flex; flex-direction:column; gap:0.5rem; }
.tab-bar { display:flex; gap:0.35rem; flex-wrap:wrap; }
.tab-btn {
  font-family:'DM Sans',sans-serif; font-size:0.62rem; font-weight:600;
  letter-spacing:0.06em; text-transform:uppercase;
  padding:0.3rem 0.75rem; border:1.5px solid var(--border);
  background:var(--bg-surface); color:var(--text-body);
  cursor:pointer; border-radius:2px; transition:all 0.2s;
}
.tab-btn:hover { border-color:var(--gold); color:var(--gold); }
.tab-btn.active { background:var(--navy); color:var(--gold-light); border-color:var(--navy); }
.tab-panel { display:none; }
.tab-panel.active { display:block; }
.tab-panel ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0.3rem; }
.tab-panel li { font-size:0.95rem; color:var(--text-headline); line-height:1.6; display:flex; align-items:baseline; gap:0.5rem; }
.tab-panel li span { color:var(--gold); flex-shrink:0; font-size:0.8rem; font-weight:700; }

/* ── COMPACT STEP CARDS (2 rows of 3 in 50% snap height) ── */
#how-steps .inner { gap:0.4rem; justify-content:center; }
#how-steps .card { padding:0.6rem 0.9rem; }
#how-steps .card-num { font-family:'DM Mono',monospace; font-size:0.98rem; font-weight:700; color:var(--gold); display:inline-block; min-width:7ch; text-align:right; margin-right:0.5rem; }
#how-steps .card-title { font-family:'DM Mono',monospace; font-size:0.98rem; font-weight:700; color:#111; text-align:right; display:inline-block; vertical-align:middle; }
#how-steps .card-header { display:flex; justify-content:flex-start; align-items:center; width:100%; gap:0.4rem; }
#how-steps .card-title { margin-top:0.35rem; text-align:left; }
#how-steps .card ul { gap:0.25rem; margin-top:0.6rem; padding-left:1rem; }
#how-steps .card li { font-size:0.95rem; line-height:1.5; margin-bottom:0.35rem; }
.steps-row-2 { margin-top:0.4rem; }

/* ── CARDS ── */
.card { background:var(--bg-surface); border:1px solid var(--border); border-radius:4px; padding:1.5rem; transition:box-shadow 0.2s,transform 0.2s; }
.card:hover { box-shadow:0 6px 24px rgba(15,31,56,0.09); transform:translateY(-2px); }
.card-accent { border-top:3px solid var(--gold); }
.card-num { font-family:'DM Mono',monospace; font-size:0.58rem; color:var(--gold); letter-spacing:0.2em; margin-bottom:0.625rem; }
.card-title { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--text-headline); margin-bottom:0.45rem; }
.card p { font-size:0.8rem; color:var(--text-body); line-height:1.7; }
.card-dark { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:4px; padding:1.5rem; transition:border-color 0.2s; }
.card-dark:hover { border-color:rgba(232,184,75,0.35); }
.card-dark .card-title { color:#fff; }
.card-dark p { color:var(--text-light-dim); font-size:0.8rem; line-height:1.7; }
.stat-card { background:var(--bg-surface); border:1px solid var(--border); border-left:3px solid var(--gold); padding:0.55rem 0.8rem; border-radius:2px; display:flex; gap:0.75rem; align-items:center; }
.stat-card + .stat-card { margin-top:0.35rem; }
.stat-card-num { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:800; color:var(--gold); line-height:1; flex-shrink:0; }
.stat-card-body { flex:1; min-width:0; line-height:1.4; }
.stat-card-label { font-size:0.82rem; color:var(--text-headline); }
.stat-card-source { font-size:0.72rem; color:var(--text-dim); font-weight:500; letter-spacing:0.02em; white-space:nowrap; margin-left:0.5em; }

/* ── MISC ── */
.hero-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:4rem; align-items:center; }
.hero-intro { margin-top:1.25rem; }
.hero-cta { margin-top:2rem; }
.hero-img { width:100%; aspect-ratio:4/3; object-fit:cover; object-position:center top; border-radius:4px; box-shadow:0 16px 48px rgba(15,31,56,0.25); }
.hero-caption { background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); padding:1rem 1.5rem; margin-top:-0.1rem; border-radius:0 0 4px 4px; }
.hero-caption strong { color:#fff; font-family:'Playfair Display',serif; }
.hero-caption span { color:var(--text-light-dim); font-size:0.85rem; display:block; margin-top:0.2rem; }
.section-headline { margin:0.25rem 0 0.35rem; }
.section-text { color:var(--text-body); font-size:1rem; line-height:1.8; margin-bottom:1.5rem; }
.features-list { display:flex; flex-direction:column; gap:0.75rem; }
.feature-card { display:flex; align-items:flex-start; gap:1rem; padding:1.1rem 1.25rem; background:var(--bg-surface); border:1px solid var(--border); border-radius:3px; }
.feature-card-icon { color:var(--gold); font-size:1.1rem; flex-shrink:0; margin-top:0.1rem; }
.feature-card-text strong { display:block; color:var(--text-headline); font-size:0.9rem; margin-bottom:0.2rem; }
.feature-card-text span { font-size:0.84rem; color:var(--text-body); }
.callout { background:var(--gold-bg); border:1px solid rgba(201,148,26,0.25); border-left:4px solid var(--gold); padding:1.1rem 1.3rem; border-radius:2px; }
.callout h4 { font-family:'Playfair Display',serif; font-size:0.95rem; color:var(--text-headline); margin-bottom:0.3rem; }
.callout p { font-size:0.8rem; color:var(--text-body); line-height:1.7; }
.benefits-callout { background:var(--gold-bg); border:1px solid rgba(201,148,26,0.25); border-left:4px solid var(--gold); padding:0.8rem 1rem; border-radius:2px; margin-top:0.75rem; }
.benefits-callout h4 { font-family:'Playfair Display',serif; font-size:0.85rem; color:var(--text-headline); margin-bottom:0.2rem; }
.benefits-callout p { font-size:0.72rem; color:var(--text-body); line-height:1.6; }
.role-tag { background:var(--bg-section-alt); border:1px solid var(--border); color:var(--text-body); padding:0.25rem 0.65rem; font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.06em; text-transform:uppercase; border-radius:2px; display:inline-block; transition:all 0.2s; }
.role-tag:hover { background:var(--gold-bg); border-color:var(--gold); color:var(--gold); }
.rev-tier { display:flex; align-items:flex-start; gap:0.75rem; padding:0.75rem 0; border-bottom:1px solid var(--border); }
.rev-tier:last-child { border-bottom:none; }
.rev-tier-marker { width:3px; min-height:40px; background:var(--gold); opacity:0.2; flex-shrink:0; margin-top:0.15rem; }
.rev-tier-marker.active { opacity:1; }
.rev-tier-label { font-family:'DM Mono',monospace; font-size:0.58rem; color:var(--gold); letter-spacing:0.12em; text-transform:uppercase; margin-bottom:0.15rem; }
.rev-tier-title { font-family:'Playfair Display',serif; font-size:0.95rem; color:var(--text-headline); margin-bottom:0.15rem; }
.rev-tier-desc { font-size:0.77rem; color:var(--text-body); line-height:1.6; }
.rev-tier-split { display:inline-block; margin-top:0.3rem; background:var(--gold-bg); border:1px solid rgba(201,148,26,0.25); color:var(--gold); padding:0.1rem 0.4rem; font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.06em; border-radius:2px; }
.compare-table { width:100%; border-collapse:collapse; border:1px solid var(--border); border-radius:4px; overflow:hidden; }
.compare-table th { background:var(--bg-section-alt); color:var(--text-headline); font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.12em; text-transform:uppercase; padding:0.625rem 0.875rem; text-align:left; border-bottom:1px solid var(--border); }
.compare-table th.highlight { background:var(--navy); color:var(--gold-light); }
.compare-table td { padding:0.625rem 0.875rem; border-bottom:1px solid var(--border); font-size:0.8rem; color:var(--text-body); }
.compare-table td.highlight { background:rgba(201,148,26,0.04); font-weight:600; color:var(--text-headline); }
.compare-table tr:last-child td { border-bottom:none; }
.budget-heading { font-family:'Playfair Display',serif; font-size:0.9rem; color:var(--text-headline); margin:0.75rem 0 0.35rem; }
.budget-note { font-size:0.72rem; color:var(--text-dim); font-style:italic; margin-top:0.35rem; }
.budget-note-row { display:flex; align-items:center; gap:0.75rem; flex-wrap:wrap; margin-top:0.75rem; }
.budget-note-row .budget-note { margin-top:0; }
.tool-item { display:flex; align-items:flex-start; gap:0.5rem; padding:0.35rem 0.875rem; background:var(--bg-surface); border:1px solid var(--border); border-radius:3px; transition:border-color 0.2s; margin-bottom:0.35rem; }
.tool-item:hover { border-color:var(--gold); }
.tool-icon { font-size:0.85rem; flex-shrink:0; margin-top:0.1rem; }
.tool-name { font-size:0.78rem; font-weight:600; color:var(--text-headline); display:inline; }
.tool-desc { font-size:0.72rem; color:var(--text-body); line-height:1.4; display:inline; margin-left:0.3rem; }

/* Founder tools: 3-col flat grid — all items same size */
.founder-tools-row { display:grid; grid-template-columns:repeat(3,1fr); gap:0.3rem; }
.founder-tools-row .tool-item { margin-bottom:0; padding:0.25rem 0.5rem; white-space:nowrap; }
.founder-tools-row .tool-name { font-size:0.7rem; }
.founder-tool-btn { display:flex; align-items:center; justify-content:center; padding:0.25rem 0.5rem; font-size:0.68rem; border-radius:3px; text-align:center; white-space:nowrap; }
.geo-card { border:1px solid var(--border); padding:1.1rem; background:var(--bg-surface); position:relative; border-radius:3px; }
.geo-card.launch { border-color:var(--gold); border-top:3px solid var(--gold); }
.geo-card.launch::before { content:'LAUNCHING'; position:absolute; top:-0.45rem; left:0.75rem; background:var(--gold); color:#fff; font-family:'DM Mono',monospace; font-size:0.5rem; font-weight:600; letter-spacing:0.15em; padding:0.08rem 0.3rem; border-radius:1px; }
.geo-card.next::before { content:'NEXT'; position:absolute; top:-0.45rem; left:0.75rem; background:var(--bg-section-alt); color:var(--gold); font-family:'DM Mono',monospace; font-size:0.5rem; letter-spacing:0.15em; padding:0.08rem 0.3rem; border:1px solid var(--gold); border-radius:1px; }
.geo-state { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--text-headline); margin-bottom:0.25rem; }
.geo-note { font-size:0.72rem; color:var(--text-dim); line-height:1.5; }
.stream-card { background:var(--bg-surface); border:1px solid var(--border); border-top:3px solid var(--gold); padding:1.5rem; border-radius:3px; display:flex; flex-direction:column; }
.stream-num { font-family:'DM Mono',monospace; font-size:0.55rem; color:var(--gold); letter-spacing:0.2em; margin-bottom:0.75rem; }
.stream-title { font-family:'Playfair Display',serif; font-size:1rem; color:var(--text-headline); margin-bottom:0.5rem; }
.stream-desc { font-size:0.78rem; color:var(--text-body); line-height:1.7; flex:1; }
.stream-tag { display:inline-block; margin-top:0.875rem; background:var(--gold-bg); border:1px solid rgba(201,148,26,0.25); color:var(--gold); padding:0.18rem 0.45rem; font-family:'DM Mono',monospace; font-size:0.55rem; letter-spacing:0.08em; text-transform:uppercase; border-radius:2px; }
#faq { overflow:visible !important; }
#faq > .inner { height:auto; }
#faq .two-col { flex:none; }
#faq .two-col > div { overflow:visible !important; }
.faq-header { display:flex; align-items:center; gap:1rem; margin-bottom:0.25rem; }
.faq-header .section-headline { margin:0; flex:1; text-align:center; }
.section-header-inline { display:flex; align-items:center; gap:1rem; margin-bottom:0.25rem; }
.section-header-inline .section-headline { margin:0; flex:1; text-align:center; }
#why > .inner > .section-headline { text-align:center; margin-top:0.75rem; }

.faq-item { transition: background-color 0.25s ease, color 0.25s ease; }
.faq-item.open { background: rgba(6, 25, 47, 0.92); color: #fff; border-radius: 0.5rem; box-shadow: 0 12px 30px rgba(0,0,0,0.2); z-index:1; }
.faq-item.open .faq-q, .faq-item.open .faq-a { color: #fff; }
.faq-item.open .faq-q::after { color: #fff; }
.faq-item:not(.open) { background: rgba(255,255,255,0.94); }
.faq-item:not(.open) .faq-q::after { color: var(--gold); }
.faq-item + .faq-item { margin-top: 0.35rem; }
.faq-item { border-top:1px solid var(--border); padding:0.65rem 1rem; }
.faq-q { font-family:'Playfair Display',serif; font-size:0.9rem; color:var(--text-headline); margin-bottom:0; display:flex; justify-content:space-between; align-items:start; gap:0.875rem; cursor:pointer; -webkit-user-select:none; user-select:none; }
.faq-q::after { content:'+'; color:var(--gold); font-family:'DM Sans',sans-serif; font-size:1.15rem; font-weight:300; flex-shrink:0; transition:transform 0.2s; }
.faq-item.open .faq-q { margin-bottom:0.5rem; }
.faq-item.open .faq-q::after { content:'\2212'; }
.faq-a { font-size:0.8rem; color:var(--text-body); line-height:1.75; display:none; }
.faq-item.open .faq-a { display:block; }
.process-step { text-align:center; padding:1rem; }
.process-step-circle { width:3rem; height:3rem; border:2px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 0.875rem; background:var(--bg-body); }
.process-step-circle span { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:var(--gold); }
.process-step-title { font-family:'Playfair Display',serif; font-size:0.95rem; color:var(--text-headline); margin-bottom:0.4rem; }
.process-step p { font-size:0.77rem; color:var(--text-body); line-height:1.65; }
.cta-buttons { display:flex; gap:0.75rem; justify-content:center; flex-wrap:wrap; margin-bottom:1rem; }
.cta-note { font-family:'DM Mono',monospace; font-size:0.58rem; color:rgba(255,255,255,0.3); letter-spacing:0.08em; text-align:center; }

/* Golden ticket CTA card — certificate frame */
.golden-ticket {
  background: var(--navy);
  padding: 2.5rem 3rem;
  text-align: center;
  color: #fff;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(15,31,56,0.35);
  border: 40px solid transparent;
  border-image: url('cert-border.svg') 40 stretch;
}
.golden-ticket-headline { font-family:'Playfair Display',serif; font-size:clamp(1.2rem,1.6vw,1.6rem); color:#fff; margin-bottom:0.5rem; }
.golden-ticket-headline em { color:var(--gold-light); font-style:italic; }
.golden-ticket p { font-size:0.85rem; color:var(--text-light-dim); line-height:1.6; margin-bottom:1rem; max-width:42rem; margin-left:auto; margin-right:auto; }
.form-group { margin-bottom:1rem; }
.form-label { display:block; font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--text-body); margin-bottom:0.3rem; font-weight:500; }
.form-input, .form-select, .form-textarea { width:100%; background:var(--bg-surface); border:1.5px solid var(--border); color:var(--text-headline); padding:0.6rem 0.8rem; font-family:'DM Sans',sans-serif; font-size:0.85rem; transition:border-color 0.2s; outline:none; -webkit-appearance:none; border-radius:3px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color:var(--text-dim); }
.form-select { cursor:pointer; }
.form-textarea { resize:vertical; min-height:90px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:0.875rem; }
.form-submit { width:100%; margin-top:0.4rem; padding:0.8rem; }
.form-success { background:#f0fdf4; border:1px solid #86efac; color:#166534; padding:0.875rem 1.1rem; text-align:center; display:none; border-radius:3px; margin-bottom:0.875rem; font-family:'Playfair Display',serif; }
.radio-group { display:flex; flex-direction:column; gap:0.45rem; margin-top:0.3rem; }
.radio-item { display:flex; align-items:center; gap:0.55rem; cursor:pointer; padding:0.5rem 0.75rem; border:1.5px solid var(--border); border-radius:3px; transition:border-color 0.2s; }
.radio-item:hover { border-color:var(--gold); }
.radio-item input { accent-color:var(--gold); width:13px; height:13px; cursor:pointer; flex-shrink:0; }
.radio-item span { font-size:0.8rem; color:var(--text-body); }
.form-checkbox-group { display:flex; flex-wrap:wrap; gap:0.45rem; margin-top:0.3rem; }
.form-checkbox-item { display:flex; align-items:center; gap:0.45rem; cursor:pointer; }
.form-checkbox-item input { accent-color:var(--gold); width:13px; height:13px; }
.form-checkbox-item span { font-size:0.8rem; color:var(--text-body); }

/* ── HERO ── */
.hero-eyebrow, .section-eyebrow { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--gold-light); margin-bottom:0.4rem; display:inline-flex; align-items:center; gap:0.5rem; background:var(--navy); padding:0.3rem 1rem 0.3rem 0.6rem; border-radius:2px; font-weight:700; align-self:flex-start; width:fit-content; }
.hero-eyebrow::before { content:''; display:block; width:20px; height:1px; background:var(--gold-light); }
.hero-headline { font-family:'Playfair Display',serif; font-size:clamp(1.65rem,2vw,2rem); font-weight:700; line-height:1.05; color:var(--text-headline); letter-spacing:-0.02em; margin-bottom:0.4rem; white-space:nowrap; overflow-wrap:normal; }
.hero-headline em { color:var(--gold); font-style:italic; }
.section-headline { font-family:'Playfair Display',serif; font-size:clamp(1.4rem,1.8vw,1.8rem); font-weight:700; line-height:1.1; letter-spacing:-0.02em; white-space:nowrap; overflow-wrap:normal; }
.section-headline em { color:var(--gold); font-style:italic; }
#how-steps .card-header { white-space:nowrap; }
#how-steps .card-num, #how-steps .card-title { white-space:nowrap; overflow-wrap:normal; }
.hero-sub, .hero-sub-strong { font-family:'DM Sans',sans-serif; font-size:1.02rem; color:var(--text-headline); line-height:1.5; margin-bottom:0.8rem; max-width:40rem; font-weight:700; }
.hero-sub-strong { text-transform:none; }
.hero-actions { display:flex; gap:0.75rem; flex-wrap:wrap; }
.hero-image-wrap { position:relative; }
.hero-image-wrap img { width:100%; aspect-ratio:16/9; object-fit:cover; object-position:center top; display:block; border-radius:4px; box-shadow:0 12px 40px rgba(15,31,56,0.12); }
.hero-image-badge { position:absolute; bottom:1rem; left:-0.75rem; background:var(--gold); color:var(--navy); padding:0.75rem 1.1rem; font-family:'Playfair Display',serif; border-radius:2px; box-shadow:0 6px 20px rgba(201,148,26,0.3); }
.hero-image-badge strong { display:block; font-size:1.4rem; font-weight:900; line-height:1; }
.hero-image-badge span { font-size:0.68rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.fade-up { opacity:0; animation:fadeUp 0.65s ease forwards; }

/* ── RESPONSIVE WIDTHS ── */
@media (max-width:1600px) { :root { --content-width:80%; } }
@media (max-width:1200px) { :root { --content-width:88%; } }
@media (max-width:900px)  { :root { --content-width:92%; } }
@media (max-width:600px)  { :root { --content-width:98%; } }

/* ── TABLET ── */
@media (max-width:900px) {
  .scroll-shell { scroll-snap-type: none; }
  .scroll-shell > * { height: auto; overflow: visible; }
  .scroll-shell > :nth-child(odd) { scroll-snap-align: none; }
  .inner { flex: none; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .two-col { grid-template-columns:1fr; gap:1.75rem; }
  .three-col { grid-template-columns:1fr 1fr; }
  .hero { grid-template-columns:1fr; gap:1.5rem; }
  .form-row { grid-template-columns:1fr; gap:0; }
}

/* ── MOBILE FOOTER ── */
@media (max-width:600px) {
  :root { --stats-h:64px; --ticker-h:22px; --copy-h:14px; }

  /* Stats: horizontal carousel, ~1.4 visible = bleed hints there's more */
  .footer-stats {
    display:flex; flex-direction:row;
    overflow-x:auto; overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none; -ms-overflow-style:none;
    width:100%; max-width:100%;
    padding-left:0.75rem;
  }
  .footer-stats::-webkit-scrollbar { display:none; }
  .footer-stats > div {
    flex:0 0 70%; scroll-snap-align:start;
    padding:0 0.75rem;
    border-right:1px solid rgba(255,255,255,0.07);
    display:flex; flex-direction:row; align-items:center; gap:0.4rem;
    white-space:nowrap;
  }
  .footer-stats > div:last-child { border-right:none; }
  .fsn { font-size:1.05rem!important; white-space:nowrap; }
  .fsl { font-size:0.82rem!important; white-space:nowrap; line-height:1.2; }

  /* Right-fade swipe indicator */
  footer { position:fixed; overflow:hidden; }
  footer::after {
    content:'';
    position:absolute;
    top:0; right:0;
    width:48px;
    height:var(--stats-h);
    background:linear-gradient(to right, transparent, var(--navy-mid) 90%);
    pointer-events:none;
    z-index:10;
  }

  /* Ticker: full width on mobile */
  .ticker-inner { width:100%; max-width:100%; }
  .ticker-track span { font-size:0.52rem; padding:0 1rem; }

  /* Copyright: centered, no URL */
  .footer-copy-inner { justify-content:center; }
  .footer-copy-inner span:last-child { display:none; }

  /* Layout */
  .three-col { grid-template-columns:1fr; }
  .four-col { grid-template-columns:1fr 1fr; }
  .hero-actions { flex-direction:column; }
  .cta-buttons { flex-direction:column; align-items:center; }
  .photo-break { aspect-ratio:4/3; }
  .photo-break img { object-position:center 10%; }
  .nav-links { display:none!important; }
  .nav-hamburger { display:flex!important; }

  /* Mobile: text overlaid on images, PowerPoint-style */
  .two-col { position:relative; }
  .two-col > div:last-child { display:none; }
  /* Revenue & Ownership Model has real content in both columns — keep it visible */
  #model .two-col > div:last-child { display:block !important; }
  /* Investor contact form is in the right column — must stay visible */
  #contact .two-col > div:last-child { display:block !important; }
  .two-col.has-bg {
    background-size:cover; background-position:center;
    border-radius:4px; overflow:hidden;
  }
  .two-col.has-bg > div:first-child {
    position:relative; z-index:1;
    background:linear-gradient(180deg, rgba(15,31,56,0.88) 0%, rgba(15,31,56,0.72) 100%);
    padding:1.5rem;
    color:#fff;
  }
  .two-col.has-bg .section-headline { color:#fff; }
  .two-col.has-bg .section-headline em { color:var(--gold-light); }
  .two-col.has-bg p { color:rgba(255,255,255,0.85); }
  .two-col.has-bg .btn-primary { background:var(--gold); }

  /* ── MOBILE TYPOGRAPHY: kill nowrap, allow wrapping ── */
  .section-headline, .hero-headline {
    white-space:normal;
    overflow-wrap:break-word;
    word-break:break-word;
    font-size:clamp(1.2rem,5.5vw,1.6rem);
  }
  .hero-headline { font-size:clamp(1.1rem,5vw,1.4rem); }
  .page-hero h1 { font-size:clamp(1.3rem,6vw,2rem); white-space:normal; word-break:break-word; }
  #how-steps .card-header, #how-steps .card-num, #how-steps .card-title { white-space:normal; overflow-wrap:break-word; }

  /* ── MOBILE LAYOUT: tighter inner padding ── */
  .inner { padding:0.35rem 0.5rem; }
  .hero { padding:0 0.5rem; }
  .photo-break-wrap { padding:2px 0.5rem; }
  .page-hero-inner { padding:1.5rem 0.75rem; }

  /* ── MOBILE OVERFLOW: prevent right-bleed ── */
  .stat-card-source { white-space:normal; }
  .stat-card { flex-wrap:wrap; }
  .compare-table { display:block; overflow-x:auto; font-size:0.7rem; }
  .founder-tools-row { grid-template-columns:1fr 1fr; }
  .founder-tools-row .tool-item { white-space:normal; }
  .golden-ticket { padding:1.5rem 1rem; border-width:20px; width:100%; }
  .photo-break-text { max-width:92%; }
  .photo-break-text blockquote { font-size:clamp(0.85rem,3.5vw,1.2rem); }
  .hero-image-badge { left:0; padding:0.45rem 0.75rem; }
  .hero-image-badge strong { font-size:1rem; }
  .hero-image-badge span { font-size:0.58rem; display:block; margin-top:0.1rem; max-width:60vw; white-space:normal; }
  .tab-bar { gap:0.25rem; }
  .tab-btn { font-size:0.56rem; padding:0.25rem 0.5rem; }
  .section-eyebrow { font-size:0.56rem; max-width:100%; white-space:normal; }
}

@media (max-width:380px) {
  .footer-stats > div { flex:0 0 75%; }
}
