:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-2: #1c1c1c;
  --charcoal-3: #242424;
  --sand: #f0ebe3;
  --sand-dark: #e5ddd2;
  --cream: #faf8f5;
  --warm-white: #f7f4f0;
  --white: #ffffff;
  --text-dark: #0a0a0a;
  --text-mid: #3a3a3a;
  --text-light: #555555;
  --blue: #008a30;
  --blue-dim: #007528;
  --blue-glow: rgba(0, 200, 70, 0.12);
  --blue-glow-md: rgba(0, 200, 70, 0.2);
  --blue-glow-strong: rgba(0, 200, 70, 0.35);
  --cyan: #00c846;
  --accent: #00a83b;
}

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

body {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: 'IBM Plex Mono', monospace; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* ── NAV ────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
nav.scrolled { padding: 0.9rem 3rem; }
.nav-logo img { height: 28px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 0.55rem 1.4rem; background: var(--blue); color: #fff !important;
  border-radius: 6px; font-weight: 700 !important; transition: all 0.3s;
}
.nav-cta:hover { background: #0052cc; box-shadow: 0 0 30px var(--blue-glow-strong); }

/* Mobile menu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ── SHARED ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; z-index: 1; }

.section-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; width: 24px; height: 1px; }
.section-label.center { justify-content: center; }
.section-label.center::after { content: ''; width: 24px; height: 1px; }

/* Dark section labels */
.dark .section-label { color: var(--blue); }
.dark .section-label::before, .dark .section-label.center::after { background: var(--blue); }
/* Light section labels */
.light .section-label { color: var(--blue); }
.light .section-label::before, .light .section-label.center::after { background: var(--blue); }

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1.25rem;
}
.section-desc { font-size: 1.25rem; max-width: 640px; line-height: 1.8; }
.dark .section-desc { color: rgba(255,255,255,0.65); }
.light .section-desc { color: var(--text-mid); }

.btn-primary {
  display: inline-block; padding: 0.9rem 2.2rem; background: var(--blue);
  color: #fff; font-weight: 700; font-size: 0.9rem; border: none;
  border-radius: 6px; cursor: pointer; text-decoration: none; transition: all 0.3s;
}
.btn-primary:hover { background: var(--blue-dim); box-shadow: 0 8px 32px var(--blue-glow-strong); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block; padding: 0.9rem 2.2rem;
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid; border-radius: 6px;
  cursor: pointer; text-decoration: none; transition: all 0.3s;
}
.dark .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.dark .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.light .btn-ghost { background: transparent; color: var(--text-dark); border-color: rgba(0,0,0,0.15); }
.light .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 0 4rem; position: relative; overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  opacity: 0.15;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 100%);
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-gradient {
  position: absolute; top: -30%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.35rem 1rem; border: 1px solid rgba(0,102,255,0.3);
  border-radius: 100px; font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; color: var(--blue); margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px; background: var(--blue); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero h1 {
  font-size: clamp(3.5rem, 6vw, 5.8rem); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.035em; margin-bottom: 1.5rem;
  color: #fff;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--blue); }

.hero .lead {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem); color: rgba(255,255,255,0.7);
  max-width: 540px; line-height: 1.75; margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.2); }
.hero .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── HERO STAT BAR (the 2.19x moment) ──── */
.hero-stats {
  padding: 4rem 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-inner {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap;
}
.hero-stat-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(4rem, 8vw, 7rem); font-weight: 700;
  color: var(--blue); line-height: 1;
  text-shadow: 0 0 80px var(--blue-glow-strong);
}
.hero-stat-text {
  font-size: clamp(1.2rem, 2vw, 1.6rem); color: rgba(255,255,255,0.6);
  line-height: 1.3; max-width: 400px;
}
.hero-stat-text strong { color: #fff; font-weight: 600; }


/* ── VALUE PROP (light warm section) ────── */
.value-prop {
  padding: 7rem 0;
  background: var(--sand);
}
.value-prop .section-title { color: var(--text-dark); }
.vp-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem;
}
.vp-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; padding: 2.5rem 2rem; transition: all 0.4s;
  position: relative; overflow: hidden;
}
.vp-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); opacity: 0; transition: opacity 0.4s;
}
.vp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.vp-card:hover::after { opacity: 1; }
.vp-icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.vp-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }
.vp-card p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; }
.vp-number {
  font-family: 'IBM Plex Mono', monospace; font-size: 2rem;
  font-weight: 700; color: var(--blue); margin-bottom: 0.25rem;
}

/* ── ORIGIN STORY (dark) ────────────────── */
.origin {
  padding: 7rem 0;
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.origin::before {
  content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: var(--charcoal-2);
  opacity: 0.3;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}
.origin .container { position: relative; z-index: 2; }
.origin .section-title { color: #fff; }
.origin-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 2rem;
}
.origin-text { max-width: 560px; }
.origin-text p { font-size: 1.15rem; color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 1.25rem; }
.origin-text p:first-of-type::first-line { color: rgba(255,255,255,0.8); font-weight: 500; }
.origin-text blockquote {
  font-size: 1.25rem; color: #fff; font-weight: 500; line-height: 1.65;
  border-left: 3px solid var(--blue); padding-left: 1.25rem; margin: 2rem 0;
  font-style: italic;
}

.origin-companies {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.origin-companies span {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem;
  padding: 0.3rem 0.75rem; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; color: rgba(255,255,255,0.4); letter-spacing: 0.03em;
}

/* ── HOW IT WORKS (light) ───────────────── */
.how {
  padding: 7rem 0;
  background: var(--cream);
}
.how-header { text-align: center; margin-bottom: 4rem; }
.how-header .section-title { color: var(--text-dark); }
.how-header .section-desc { margin: 0 auto; text-align: center; color: var(--text-mid); }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; margin-bottom: 4rem; }
.steps::before {
  content: ''; position: absolute; top: 72px; left: 16%; right: 16%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--blue), var(--accent), var(--blue), transparent);
  opacity: 0.2;
}
.step { text-align: center; padding: 0 1.5rem; }
.step-orb {
  width: 144px; height: 144px; border-radius: 50%; margin: 0 auto 2rem;
  position: relative; display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 2px solid var(--blue);
  box-shadow: 0 0 40px var(--blue-glow), 0 8px 32px rgba(0,0,0,0.06);
  transition: all 0.4s;
}
.step:nth-child(2) .step-orb { border-color: var(--accent); box-shadow: 0 0 40px rgba(108,92,231,0.15), 0 8px 32px rgba(0,0,0,0.06); }
.step:hover .step-orb { transform: scale(1.06); }
.step-orb span { font-family: 'IBM Plex Mono', monospace; font-size: 2.2rem; font-weight: 600; color: var(--blue); }
.step:nth-child(2) .step-orb span { color: var(--accent); }
.step h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }
.step p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; max-width: 300px; margin: 0 auto; }
.step-tag {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem;
  padding: 0.25rem 0.7rem; border-radius: 100px; margin-top: 0.75rem;
  letter-spacing: 0.05em;
}
.step:nth-child(1) .step-tag, .step:nth-child(3) .step-tag { background: var(--blue-glow); color: var(--blue); }
.step:nth-child(2) .step-tag { background: rgba(108,92,231,0.1); color: var(--accent); }

/* ── BENCHMARK (dark) ───────────────────── */
.bench {
  padding: 7rem 0; background: var(--black);
}
.bench .section-title { color: #fff; }
.bench-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3.5rem; }

.bar-group { margin-bottom: 2rem; }
.bar-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.bar-head span:first-child { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.bar-head .val { font-family: 'IBM Plex Mono', monospace; font-size: 0.85rem; color: var(--blue); }
.bar-track { height: 40px; background: var(--charcoal-2); border-radius: 8px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 8px; transition: width 1.5s cubic-bezier(0.22,1,0.36,1); width: 0; }
.bar-fill.nv { background: linear-gradient(90deg, #888888, #aaaaaa); }
.bar-fill.abd-bar { background: linear-gradient(90deg, var(--blue-dim), var(--blue)); box-shadow: 0 0 20px var(--blue-glow); }
.bar-fill.nv.go { width: 46%; }
.bar-fill.abd-bar.go { width: 100%; }
.bar-fill.nv-cost.go { width: 100%; }
.bar-fill.abd-cost.go { width: 23%; }

.bench-right h3 { font-size: 1.9rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; line-height: 1.3; }
.bench-right p { color: rgba(255,255,255,0.7); font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.5rem; }

.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.metric-box {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 1.1rem;
}
.metric-box .n { font-family: 'IBM Plex Mono', monospace; font-size: 1.3rem; font-weight: 600; color: var(--blue); }
.metric-box .l { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.15rem; }

/* ── CALCULATOR (light warm) ────────────── */
.calc {
  padding: 7rem 0;
  background: var(--sand);
}
.calc .section-title { color: var(--text-dark); }
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; margin-top: 3rem; }

.calc-group { margin-bottom: 2rem; }
.calc-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-mid); margin-bottom: 0.6rem; }
input[type=range] {
  width: 100%; -webkit-appearance: none; height: 4px;
  background: var(--sand-dark); border-radius: 2px; outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  background: var(--blue); border-radius: 50%; cursor: pointer;
  box-shadow: 0 0 12px var(--blue-glow-strong);
}
.calc-val {
  font-family: 'IBM Plex Mono', monospace; font-size: 1.4rem;
  color: var(--blue); margin-top: 0.4rem;
}

.calc-out {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.calc-out h3 {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.calc-row .cl { font-size: 1.05rem; color: var(--text-mid); }
.calc-row .cv { font-family: 'IBM Plex Mono', monospace; font-size: 1.2rem; font-weight: 600; color: var(--text-dark); }
.calc-row.total {
  border-bottom: none; padding-top: 1.25rem; margin-top: 0.5rem;
  border-top: 2px solid var(--blue);
}
.calc-row.total .cv { font-size: 1.6rem; color: var(--blue); }

/* ── AUDIENCE (light) ───────────────────── */
.audience {
  padding: 7rem 0;
  background: var(--cream);
}
.audience .section-title { color: var(--text-dark); }
.aud-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.aud-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; padding: 2.5rem 2rem; text-align: center; transition: all 0.4s;
}
.aud-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.aud-icon {
  width: 60px; height: 60px; border-radius: 14px; background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.6rem;
}
.aud-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }
.aud-card p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.75; }

/* ── GTM (dark) ─────────────────────────── */
.gtm {
  padding: 7rem 0;
  background: var(--charcoal);
}
.gtm .section-title { color: #fff; }
.gtm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.gtm-card {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: all 0.4s;
}
.gtm-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--blue); opacity: 0; transition: opacity 0.4s;
}
.gtm-card:hover { border-color: rgba(0,102,255,0.2); }
.gtm-card:hover::before { opacity: 1; }
.gtm-phase {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem;
}
.gtm-card h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.gtm-card p { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ── TEAM (warm) ────────────────────────── */
.team {
  padding: 7rem 0;
  background: var(--sand);
}
.team-header { text-align: center; margin-bottom: 3.5rem; }
.team-header .section-title { color: var(--text-dark); }
.team-header .section-desc { margin: 0 auto; text-align: center; color: var(--text-mid); }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.t-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; padding: 1.75rem 1.25rem; text-align: center; transition: all 0.4s;
  overflow: hidden;
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.t-photo {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 1rem;
  overflow: hidden; border: 2px solid rgba(0,102,255,0.15);
  box-shadow: 0 0 20px var(--blue-glow);
}
.t-photo img { width: 100%; height: 100%; object-fit: cover; }
.t-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.t-card .t-role { font-size: 0.75rem; color: var(--blue); font-weight: 500; margin-bottom: 0.6rem; }
.t-card .t-cred { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.t-linkedin { display: inline-block; margin-top: 0.5rem; color: var(--text-light); transition: color 0.3s; }
.t-linkedin:hover { color: #0077b5; }

/* ── PARTNERS ───────────────────────────── */
.partners {
  padding: 4rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.04);
}
.partners-title {
  text-align: center; font-size: 0.75rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 2rem;
}
.partner-row { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; }
.partner-name {
  font-size: 1rem; font-weight: 600; color: rgba(0,0,0,0.18);
  letter-spacing: 0.04em; transition: color 0.3s;
}
.partner-name:hover { color: var(--blue); }

/* ── INVESTOR PORTAL (dark) ─────────────── */
.investor {
  padding: 7rem 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.investor-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 60%);
  pointer-events: none;
}
.investor .container { position: relative; z-index: 2; }
.investor-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.investor .section-title { color: #fff; }
.investor p { font-size: 1.2rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 2.5rem; }

.inv-form {
  display: flex; flex-direction: column; gap: 0.75rem; max-width: 480px; margin: 0 auto;
  position: relative; z-index: 10;
}
.inv-form input[type="text"],
.inv-form input[type="email"] {
  flex: 1; min-width: 200px; padding: 0.85rem 1.2rem; background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; outline: none;
  transition: border-color 0.3s;
}
.inv-form input[type="text"]::placeholder,
.inv-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.inv-form input[type="text"]:focus,
.inv-form input[type="email"]:focus { border-color: var(--blue); }
.inv-form button {
  padding: 0.85rem 2rem; background: var(--blue); color: #fff;
  border: none; border-radius: 6px; font-weight: 700; font-size: 0.9rem;
  font-family: 'Space Grotesk', sans-serif; cursor: pointer; transition: all 0.3s;
}
.inv-form button:hover { background: var(--blue-dim); }
.inv-note {
  font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 1rem;
  font-family: 'IBM Plex Mono', monospace;
}

/* ── BLOG/CAREERS TEASER (warm) ─────────── */
.extras {
  padding: 5rem 0;
  background: var(--warm-white);
}
.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.extra-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; padding: 3rem 2.5rem; transition: all 0.4s;
}
.extra-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.extra-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem; background: var(--blue-glow); border-radius: 4px;
  display: inline-block; margin-bottom: 1rem;
}
.extra-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.extra-card p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; }

/* ── CTA ────────────────────────────────── */
.cta {
  padding: 7rem 0; text-align: center; position: relative; overflow: hidden;
  background: var(--charcoal);
}
.cta-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta .container { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 700; color: #fff; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.cta p { font-size: 1.2rem; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.2); }
.cta .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ── FOOTER ─────────────────────────────── */
footer {
  padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); background: var(--black);
}
.foot-inner { display: flex; justify-content: space-between; align-items: center; }
.foot-inner img { height: 20px; opacity: 0.4; }
.foot-inner span { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
@media (max-width:768px) {
  .foot-inner { flex-direction: column; text-align: center; gap: 1rem; }
}

/* ── REVEAL ─────────────────────────────── */
.rv { opacity: 0; transform: translateY(32px); transition: all 0.7s cubic-bezier(0.22,1,0.36,1); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.1s; } .rv-d2 { transition-delay: 0.2s; } .rv-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width:1080px) {
  .nav-links { display: none; }
  .nav-links.show { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-toggle { display: flex; }
}
@media (max-width:1024px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .bench-grid, .origin-grid, .calc-wrap, .extras-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .hero-bg { width: 100%; opacity: 0.08; }
  .origin::before { width: 100%; opacity: 0.04; }
}
@media (max-width:768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.show { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-toggle { display: flex; }
  .vp-grid, .aud-grid, .gtm-grid, .market-grid, .fabric-features { grid-template-columns: 1fr; }
  .fabric-features { gap: 2rem; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stat-inner { flex-direction: column; text-align: center; }
  .inv-form input[type="text"], .inv-form input[type="email"] { min-width: auto; }
}


/* ── EXTRACTED FROM INLINE STYLES ─────── */
.fabric-sub { margin-top: 8rem; }
.fabric-features { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width:768px) {
  .fabric-features { grid-template-columns: 1fr; gap: 2rem; }
  .fabric-sub { margin-top: 4rem; }
}
.fabric-title { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; }
.fabric-desc { font-size: 1.1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.fabric-list { list-style: none; }
.fabric-list li { padding: 0.65rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 1.05rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 0.75rem; }
.fabric-list li:last-child { border-bottom: none; }
.fabric-list .arrow { color: var(--blue); font-family: 'IBM Plex Mono', monospace; font-weight: 600; flex-shrink: 0; }
.img-wrap { border-radius: 12px; overflow: hidden; }
.img-wrap-border { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.img-responsive { width: 100%; height: auto; display: block; }
.img-card { width: 100%; height: auto; display: block; border-radius: 12px; border: 1px solid rgba(0,0,0,0.06); }
.how-images { display: flex; flex-direction: column; gap: 1.5rem; }
.bar-group-mt { margin-top: 2.5rem; }
.section-title-center { text-align: center; color: var(--text-dark); }
.section-desc-center { text-align: center; margin: 0 auto; color: var(--text-mid); }
.inv-dropdown { position: relative; flex: 1; min-width: 200px; z-index: 10; }
.inv-dropdown-toggle {
  padding: 0.85rem 1.2rem; background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
  color: rgba(255,255,255,0.3); font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; cursor: pointer; transition: border-color 0.3s;
  user-select: none;
}
.inv-dropdown-toggle.has-selection { color: #fff; }
.inv-dropdown-toggle:hover,
.inv-dropdown.open .inv-dropdown-toggle { border-color: var(--blue); }
.inv-dropdown-toggle::after {
  content: '▾'; float: right; color: rgba(255,255,255,0.4);
}
.inv-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 0.5rem 0; z-index: 20;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.inv-dropdown.open .inv-dropdown-menu { display: block; }
.inv-dropdown-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem; font-size: 0.88rem; color: rgba(255,255,255,0.7);
  cursor: pointer; transition: background 0.15s;
}
.inv-dropdown-item:hover { background: rgba(255,255,255,0.05); }
.inv-dropdown-item input[type="checkbox"] {
  accent-color: var(--blue); width: 15px; height: 15px;
  cursor: pointer; margin: 0; flex-shrink: 0;
}
.inv-success { display: none; margin-top: 1.5rem; padding: 1rem; background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.3); border-radius: 8px; color: var(--blue); font-size: 0.9rem; }
.careers-link { display: inline-block; margin-top: 1rem; font-size: 0.85rem; color: var(--blue); text-decoration: none; font-weight: 600; }
.careers-link:hover { text-decoration: underline; }
