
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --black: #0A0B0A;
  --white: #FAFAF8;
  --mid: #F2F1EF;
  --teal: #00CBA7;
  --teal-dim: rgba(0,203,167,0.1);
  --teal-border: rgba(0,203,167,0.25);
  --text: #0A0B0A;
  --muted: rgba(10,11,10,0.5);
  --faint: rgba(10,11,10,0.12);
  --border: rgba(10,11,10,0.1);
  --on-dark: #FAFAF8;
  --on-dark-muted: rgba(250,250,248,0.82);
  --on-dark-faint: rgba(250,250,248,0.18);
  --on-dark-border: rgba(250,250,248,0.12);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.serif { font-family: var(--font-serif); }
.mono { font-family: var(--font-mono); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(10,11,10,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--on-dark-border);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo svg { display: block; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--on-dark-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--on-dark); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  white-space: nowrap;
}

.btn-ghost-light {
  background: var(--on-dark-faint);
  color: var(--on-dark-muted);
  border: 1px solid var(--on-dark-border);
}
.btn-ghost-light:hover { color: var(--on-dark); border-color: rgba(250,250,248,0.2); }

.btn-teal {
  background: var(--teal);
  color: var(--black);
  border: 1px solid var(--teal);
}
.btn-teal:hover { background: #00e0b7; }

.btn-black {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.btn-black:hover { background: #1a1c1a; }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal-border);
}
.btn-outline-teal:hover { background: var(--teal-dim); border-color: var(--teal); }

.btn-outline-white {
  background: transparent;
  color: rgba(250,250,248,0.88);
  border: 1px solid rgba(250,250,248,0.35);
}
.btn-outline-white:hover { color: var(--on-dark); border-color: rgba(250,250,248,0.3); }

.btn-outline-teal-light {
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(0,203,167,0.5);
}
.btn-outline-teal-light:hover { background: rgba(0,203,167,0.1); border-color: var(--teal); }

.btn-lg { padding: 13px 26px; font-size: 14px; border-radius: 7px; }

/* ─── HERO ─── */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250,250,248,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,250,248,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Teal glow */
.hero-glow {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,203,167,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: end;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  margin-bottom: 28px;
}

.hero-headline .teal { color: var(--teal); }
.hero-headline .serif-it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--on-dark-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-sub strong {
  color: var(--on-dark);
  font-weight: 500;
}

.hero-btns { display: flex; gap: 10px; }

/* Hero right card */
.hero-card {
  background: rgba(250,250,248,0.04);
  border: 1px solid rgba(250,250,248,0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero-card-top {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(250,250,248,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,203,167,0.1);
  border: 1px solid rgba(0,203,167,0.2);
  padding: 3px 9px;
  border-radius: 100px;
}

.hero-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(250,250,248,0.06);
}
.hero-stat-row:last-child { border-bottom: none; }

.hero-stat-label {
  font-size: 12px;
  color: var(--on-dark-muted);
  font-weight: 400;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: -0.02em;
}

/* Hero bottom bar */
.hero-bottom {
  position: relative;
  border-top: 1px solid rgba(250,250,248,0.07);
}

.hero-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
}

.hero-stat-strip {
  display: flex;
  flex: 1;
  gap: 0;
}

.hero-strip-stat {
  flex: 1;
  padding: 24px 0;
  border-right: 1px solid rgba(250,250,248,0.07);
  padding-right: 32px;
  margin-right: 32px;
}
.hero-strip-stat:last-child { border-right: none; margin-right: 0; }

.hero-strip-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-strip-num .teal { color: var(--teal); }

.hero-strip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* ─── SECTIONS ─── */
section { padding: 96px 40px; }

.container { max-width: 1200px; margin: 0 auto; }

.label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

h2.display {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
}
h2.display .serif-it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  letter-spacing: -0.01em;
}

.body-lg {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── MANIFESTO STRIP ─── */
.manifesto {
  background: var(--teal);
  padding: 0;
  overflow: hidden;
}

.manifesto-scroll {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  padding: 16px 0;
}

.manifesto-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}

.manifesto-sep {
  font-size: 18px;
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── THESIS ─── */
#thesis { background: var(--white); position: relative; overflow: hidden; }
#thesis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1.5px, rgba(0,203,167,0.08) 100%, transparent 0);
  background-size: 60px 60px;
  animation: constellation-move 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}
#thesis .container { position: relative; z-index: 1; }

.thesis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.thesis-copy h2.display { margin-bottom: 24px; }
.thesis-copy .body-lg { margin-bottom: 20px; max-width: 460px; }

.thesis-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--mid);
}

.pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.pillar:last-child { border-bottom: none; }
.pillar:hover { background: var(--white); }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.pillar h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── DATA SECTION ─── */
#data {
  background: var(--black);
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
}

#data::after {
  content: '';
  display: none;
  white-space: nowrap;
}

.data-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.data-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.data-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.data-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  line-height: 1.0;
  margin-bottom: 24px;
}

.data-heading .teal { color: var(--teal); }

.data-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--on-dark-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--on-dark-border);
  border: 1px solid var(--on-dark-border);
  border-radius: 10px;
  overflow: hidden;
}

.data-cell {
  background: rgba(250,250,248,0.03);
  padding: 28px 24px;
  transition: background 0.2s;
}
.data-cell:hover { background: rgba(250,250,248,0.06); }

.data-cell-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.data-cell-num .teal { color: var(--teal); }

.data-cell-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.report-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,203,167,0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.report-link:hover { border-color: var(--teal); }

/* ─── VERTICALS ─── */
#verticals { background: var(--white); }

.verticals-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.verticals-header h2.display { margin-bottom: 0; }

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.v-card {
  background: linear-gradient(135deg, rgba(0,203,167,0.16) 0%, rgba(0,203,167,0.08) 100%);
  border: 1px solid rgba(0,203,167,0.22);
  border-radius: 16px;
  padding: 60px 48px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.v-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,203,167,0.08) 0%, rgba(0,203,167,0.02) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.v-card:hover {
  background: linear-gradient(135deg, rgba(0,203,167,0.12) 0%, rgba(0,203,167,0.05) 100%);
  border-color: rgba(0,203,167,0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,203,167,0.1);
}
.v-card:hover::before { opacity: 1; }
.v-card:hover .v-icon svg { filter: drop-shadow(0 0 16px rgba(0,203,167,0.4)); }

.v-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(0,203,167,0.6);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.v-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.v-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}

.v-card-tag {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,203,167,0.08);
  border: 1px solid rgba(0,203,167,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.v-card:hover .v-card-tag {
  background: rgba(0,203,167,0.15);
  border-color: rgba(0,203,167,0.35);
}

.v-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.v-icon svg {
  width: 100%;
  height: 100%;
  transition: filter 0.35s ease;
  filter: drop-shadow(0 0 0px rgba(0,203,167,0));
}
.v-icon { animation: float 4s ease-in-out infinite; }
.v-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,203,167,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.v-card:hover::before { opacity: 1; }

/* ─── PORTFOLIO ─── */
#portfolio {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#portfolio::before {
  content: '';
  position: absolute;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
#portfolio::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1px, rgba(250,250,248,0.15) 100%, transparent 0);
  background-size: 60px 60px;
  animation: constellation-move 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}
#portfolio .container { position: relative; z-index: 1; }
#portfolio .display { color: var(--on-dark); }
#portfolio .portfolio-intro .label { color: var(--teal); }

.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.portfolio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(250,250,248,0.06) 0%, rgba(250,250,248,0.03) 100%);
  border: 1px solid rgba(250,250,248,0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,203,167,0.04) 0%, rgba(0,203,167,0.01) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.portfolio-item:hover {
  background: linear-gradient(135deg, rgba(0,203,167,0.08) 0%, rgba(0,203,167,0.03) 100%);
  border-color: rgba(0,203,167,0.3);
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0,203,167,0.15);
}

.portfolio-item:hover::before { opacity: 1; }

.p-co-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  width: 100%;
}

.p-co-logo-wrap {
  width: 220px;
  height: 120px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  background: var(--white);
  border: 1px solid rgba(0,203,167,0.08);
  transition: all 0.35s ease;
  margin-bottom: 16px;
}

.portfolio-item:hover .p-co-logo-wrap {
  box-shadow: 0 12px 24px rgba(0,203,167,0.2);
  border-color: rgba(0,203,167,0.2);
}

.p-co-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  margin-bottom: 4px;
  text-align: center;
}

.p-co-type {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.p-co-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--on-dark-muted);
  line-height: 1.6;
  text-align: center;
  flex-grow: 1;
}

.p-arrow {
  font-size: 20px;
  color: rgba(0,203,167,0.5);
  transition: all 0.35s ease;
  flex-shrink: 0;
  margin-top: 8px;
  font-weight: 700;
}

.portfolio-item:hover .p-arrow {
  color: var(--teal);
  transform: translateY(-4px);
}

/* ─── CRITERIA ─── */
#criteria { background: var(--white); }

.criteria-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.criteria-items { display: flex; flex-direction: column; }

.criterion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0;
  border: none;
  align-items: start;
}
.criterion:first-child { border-top: none; }

.criterion-box {
  padding: 28px 32px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.criterion-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.criterion-box h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.criterion-box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}
.criterion-box-1 {
  background: rgba(0,203,167,0.15);
  border-left-color: #00CBA7;
}
.criterion-box-1 h3 { color: #00a386; }
.criterion-box-2 {
  background: rgba(0,203,167,0.12);
  border-left-color: rgba(0,203,167,0.7);
}
.criterion-box-2 h3 { color: #00a386; }
.criterion-box-3 {
  background: rgba(0,203,167,0.10);
  border-left-color: rgba(0,203,167,0.5);
}
.criterion-box-3 h3 { color: #00a386; }
.criterion-box-4 {
  background: rgba(0,203,167,0.08);
  border-left-color: rgba(0,203,167,0.35);
}
.criterion-box-4 h3 { color: #00a386; }

.c-icon { flex-shrink: 0; padding-top: 0; font-size: 32px; }
.c-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(10,11,10,0.07);
  line-height: 1;
  display: none;
}

.criterion h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.criterion p {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
}

.criteria-sidebar {
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-card {
  background: linear-gradient(135deg, rgba(0,203,167,0.04) 0%, rgba(0,203,167,0.01) 100%);
  border: 1px solid rgba(0,203,167,0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.check-card:hover {
  background: linear-gradient(135deg, rgba(0,203,167,0.08) 0%, rgba(0,203,167,0.02) 100%);
  border-color: rgba(0,203,167,0.2);
  box-shadow: 0 12px 24px rgba(0,203,167,0.08);
}

.check-card-head {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,203,167,0.1);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0,203,167,0.05);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,203,167,0.08);
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}
.check-row:last-child { border-bottom: none; }
.ck { color: var(--teal); font-size: 14px; flex-shrink: 0; font-weight: 700; }
.cx { color: #D94A4A; font-size: 14px; flex-shrink: 0; font-weight: 700; }

/* ─── LP / INVESTORS ─── */
#investors { background: var(--black); padding: 96px 40px; }

.investors-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.inv-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.inv-label::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 1px; }

.inv-h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  line-height: 1.0;
  margin-bottom: 24px;
}

.inv-h2 .serif-it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  letter-spacing: -0.01em;
}

.inv-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--on-dark-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.lp-points {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--on-dark-border);
}

.lp-point {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--on-dark-border);
  font-size: 14px;
  font-weight: 300;
  color: var(--on-dark-muted);
  line-height: 1.65;
  align-items: start;
}

.lp-point-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.lp-point strong { color: var(--on-dark); font-weight: 600; }

.inv-card {
  background: rgba(250,250,248,0.04);
  border: 1px solid var(--on-dark-border);
  border-radius: 12px;
  padding: 36px;
  position: sticky;
  top: 76px;
}

.inv-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.inv-card > p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--on-dark-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.inv-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; display: flex; }
.inv-card .btn:last-of-type { margin-bottom: 0; }

.inv-disclaimer {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(250,250,248,0.55);
  line-height: 1.6;
}

/* ─── REPORT SECTION ─── */
.report-section {
  background: var(--teal);
  padding: 64px 40px;
}

.report-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.report-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,11,10,0.5);
  margin-bottom: 10px;
}

.report-inner h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.1;
}

.report-inner p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(10,11,10,0.6);
  line-height: 1.65;
  max-width: 520px;
}

.btn-report-black {
  background: var(--black);
  color: var(--teal);
  border: 1px solid var(--black);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 7px;
  white-space: nowrap;
}
.btn-report-black:hover { background: #1a1c1a; }

.report-cover {
  width: 360px;
  aspect-ratio: 0.75;
  flex-shrink: 0;
}
.report-cover-inner {
  background: #0d0e0d;
  border-radius: 8px;
  padding: 40px 32px 28px;
  color: #FAFAF8;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.report-cover-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.rc-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.3;
}
.rc-logo span {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.4em;
}
.rc-main-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 20px;
}
.rc-teal {
  color: #00CBA7;
}
.rc-subtitle {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  color: rgba(250,250,248,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.rc-subtitle-italic {
  font-family: var(--font-serif);
  font-size: 10px;
  font-style: italic;
  text-align: center;
  color: rgba(250,250,248,0.5);
  margin-bottom: 28px;
  line-height: 1.5;
}
.rc-stats-bar {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(250,250,248,0.1);
  padding-top: 16px;
}
.rc-stat { text-align: center; flex: 1; }
.rc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #00CBA7;
  margin-bottom: 2px;
}
.rc-label {
  display: block;
  font-size: 7px;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.5);
  line-height: 1.4;
}

.report-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.report-text h3 {
  text-align: center;
}
.report-text p {
  text-align: center;
  max-width: 480px;
}

/* ─── APPLY ─── */
#apply {
  background: linear-gradient(160deg, #080908 0%, #0b0d0b 100%);
  text-align: center;
}

.apply-inner { max-width: 660px; margin: 0 auto; }
.apply-inner .label {
  justify-content: center;
  color: var(--teal);
  background: rgba(0,203,167,0.08);
  border-color: rgba(0,203,167,0.2);
}
.apply-inner .label::before { display: none; }
.apply-inner h2.display {
  margin-bottom: 20px;
  color: var(--on-dark);
}
.apply-inner .body-lg {
  margin: 0 auto 32px;
  color: var(--on-dark-muted);
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.tag {
  padding: 7px 16px;
  background: rgba(250,250,248,0.05);
  border: 1px solid rgba(250,250,248,0.1);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  color: var(--on-dark-muted);
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
}
.tag:hover {
  background: rgba(0,203,167,0.1);
  border-color: rgba(0,203,167,0.3);
  color: var(--teal);
}

.apply-btns { display: flex; gap: 12px; justify-content: center; }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 60px 40px 36px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--on-dark-border);
  margin-bottom: 32px;
}

.footer-brand {}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark);
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--on-dark-muted);
  line-height: 1.65;
  max-width: 220px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.65);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--on-dark); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  font-size: 11.5px;
  color: rgba(250,250,248,0.55);
  line-height: 1.6;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 12px;
  color: rgba(250,250,248,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--on-dark-muted); }


/* ── Vertical card icons ── */
.v-icon { margin-bottom: 20px; }

/* ── Pillar icons ── */
.pillar-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  flex-shrink: 0;
}

/* ── Hero canvas ── */
#heroCanvas { z-index: 0; }
.hero-inner { z-index: 1; position: relative; }

/* ── Thesis visual ── */
.thesis-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Data section visual bars ── */
.data-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 32px;
  height: 80px;
}
.data-bar {
  flex: 1;
  background: rgba(0,203,167,0.15);
  border-radius: 4px 4px 0 0;
  border-top: 2px solid rgba(0,203,167,0.5);
  position: relative;
  transition: background 0.3s;
}
.data-bar:hover { background: rgba(0,203,167,0.3); }
.data-bar-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(250,250,248,0.78);
  white-space: nowrap;
}


/* ── Updated logo styles ── */
.footer-logo-mark { display: none; }
.footer-logo-text { display: none; }
.footer-logo-link { text-decoration: none; display: flex; align-items: center; }
.footer-logo-link svg { display: block; }


/* ─── TEAM (redesigned) ─── */
#team {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#team::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,203,167,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,203,167,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
#team .container { position: relative; z-index: 1; }
#team .display { color: var(--on-dark); }
#team .label { color: var(--teal); }

.team-header {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 56px;
}
.team-header h2 { margin-top: 10px; }
.team-subline {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 480px;
  line-height: 1.6;
}

.team-grid-new {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card-new {
  background: rgba(250,250,248,0.03);
  border: 1px solid rgba(250,250,248,0.06);
  border-radius: 12px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.team-card-new:hover {
  background: rgba(0,203,167,0.05);
  border-color: rgba(0,203,167,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,203,167,0.1);
}

.team-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0,203,167,0.3);
}
.team-portrait svg, .team-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.portrait-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,203,167,0.04) 2px,
    rgba(0,203,167,0.04) 4px
  );
  border-radius: 50%;
  pointer-events: none;
}
.team-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(0,203,167,0.15);
  pointer-events: none;
}

.team-name-new {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  margin-bottom: 3px;
}

.team-role-new {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--on-dark-muted);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(250,250,248,0.1);
  border-radius: 6px;
  transition: all 0.25s ease;
}
.team-linkedin:hover {
  color: var(--teal);
  border-color: rgba(0,203,167,0.3);
  background: rgba(0,203,167,0.05);
}

@media (max-width: 900px) {
  .team-grid-new { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .team-grid-new { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .team-card-new { padding: 20px 14px 18px; }
  .team-portrait { width: 80px; height: 80px; }
}


/* ── "informed" word treatment ── */
.hero-word-informed {
  position: relative;
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}
.hero-word-informed::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(0,203,167,0.3) 100%);
  border-radius: 2px;
}

/* ─── ANIMATIONS ─── */
/* Content visible by default — JS adds .js-ready to enable animations */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-ready .reveal.visible { opacity: 1; transform: none; }
.js-ready .d1 { transition-delay: 0.1s; }
.js-ready .d2 { transition-delay: 0.2s; }
.js-ready .d3 { transition-delay: 0.3s; }
.js-ready .d4 { transition-delay: 0.4s; }

/* Counter animation */
.count-num { display: inline-block; }

/* ─── HAMBURGER MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-dark-muted);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--on-dark-border);
  z-index: 999;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--on-dark-border);
  font-size: 16px;
  font-weight: 500;
  color: var(--on-dark-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--on-dark); }
.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.mobile-menu-ctas .btn { justify-content: center; padding: 13px 20px; font-size: 14px; }

/* ─── TABLET (max-width: 900px) ─── */
@media (max-width: 900px) {
  /* Nav */
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Sections */
  section { padding: 64px 20px; }
  #data { padding: 64px 20px; }
  #investors { padding: 64px 20px; }
  .report-section { padding: 52px 20px; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 52px 20px 36px;
    gap: 36px;
  }
  .hero-label { font-size: 10px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { justify-content: center; }

  /* Hero stats strip — 2×2 grid */
  .hero-bottom-inner { padding: 0 20px; }
  .hero-stat-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .hero-strip-stat {
    border-right: none;
    margin-right: 0;
    border-bottom: 1px solid rgba(250,250,248,0.07);
    padding: 20px 0;
  }
  .hero-strip-stat:nth-child(odd) { padding-right: 16px; border-right: 1px solid rgba(250,250,248,0.07); }
  .hero-strip-stat:nth-child(3), .hero-strip-stat:nth-child(4) { border-bottom: none; }
  .hero-strip-num { font-size: 28px; }

  /* Thesis */
  .thesis-layout { grid-template-columns: 1fr; gap: 36px; }

  /* Data */
  .data-inner { grid-template-columns: 1fr; gap: 40px; }
  .data-grid { grid-template-columns: 1fr 1fr; }
  #data::after { display: none; }

  /* Verticals */
  .verticals-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .verticals-grid { grid-template-columns: 1fr; }

  /* Portfolio */
  .portfolio-intro { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .portfolio-item {
    grid-template-columns: 1fr 32px;
    gap: 16px;
    padding: 24px 20px;
  }
  .p-co-name { font-size: 18px; }
  .p-co-desc { grid-column: 1 / -1; }

  /* Criteria */
  .criteria-layout { grid-template-columns: 1fr; gap: 36px; }
  .criteria-sidebar { position: relative; top: auto; }
  .criterion { grid-template-columns: 52px 1fr; gap: 16px; padding: 28px 0; }
  .c-icon { flex-shrink: 0; padding-top: 2px; }
.c-num { font-size: 44px; }

  /* LP */
  .investors-layout { grid-template-columns: 1fr; gap: 40px; }
  .inv-card { position: relative; top: auto; }
  .lp-point { font-size: 13.5px; }

  /* Report */
  .report-inner { grid-template-columns: 1fr; gap: 28px; }
  .btn-report-black { width: 100%; justify-content: center; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; }

  /* Apply */
  .apply-btns { flex-direction: column; gap: 10px; }
  .apply-btns .btn { justify-content: center; }
}

/* ─── MOBILE (max-width: 480px) ─── */
@media (max-width: 480px) {
  /* Nav */
  .nav-logo { font-size: 13px; }
  .nav-logo-iv { width: 24px; height: 24px; font-size: 10px; }

  /* Hero */
  .hero-inner { padding: 44px 16px 28px; }
  .hero-headline { font-size: 40px; line-height: 0.98; }
  .hero-sub { font-size: 14.5px; }
  .hero-card { display: none; } /* Hide fund card on small mobile — stats strip covers it */

  /* Hero strip — 2×2, tighter */
  .hero-bottom-inner { padding: 0 16px; }
  .hero-strip-num { font-size: 26px; }
  .hero-strip-label { font-size: 9px; letter-spacing: 0.06em; }
  .hero-strip-stat { padding: 16px 0; }

  /* Sections */
  section { padding: 56px 16px; }
  #data { padding: 56px 16px; }
  #investors { padding: 56px 16px; }
  .report-section { padding: 48px 16px; }

  /* Displays */
  h2.display { font-size: 32px; }
  .inv-h2 { font-size: 32px; }
  .data-heading { font-size: 30px; }
  .body-lg { font-size: 15px; }
  .inv-body { font-size: 15px; }

  /* Manifesto ticker — slightly slower/bigger on small screens */
  .manifesto-item { font-size: 11.5px; padding: 0 20px; }

  /* Thesis */
  .thesis-layout { gap: 28px; }
  .pillar { gap: 14px; padding: 22px 20px; }
  .pillar h4 { font-size: 13.5px; }
  .pillar p { font-size: 13px; }

  /* Data */
  .data-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .data-cell { padding: 20px 16px; }
  .data-cell-num { font-size: 28px; }
  .data-body { font-size: 14.5px; }

  /* Verticals */
  .v-card { padding: 24px 20px; }
  .v-card h3 { font-size: 16px; }

  /* Portfolio */
  .portfolio-item { padding: 20px 16px; gap: 12px; }
  .p-co-name { font-size: 17px; }
  .p-co-desc { font-size: 13.5px; }

  /* Criteria */
  .criterion { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .c-icon { flex-shrink: 0; padding-top: 2px; }
.c-num { font-size: 36px; }
  .criterion h3 { font-size: 14px; }
  .criterion p { font-size: 13.5px; }

  /* Check cards */
  .check-row { font-size: 12px; padding: 11px 16px; }
  .check-card-head { padding: 11px 16px; }

  /* LP */
  .inv-h2 { font-size: 30px; }
  .inv-card { padding: 24px 20px; }
  .inv-card h3 { font-size: 19px; }
  .inv-card .btn { font-size: 13.5px; padding: 12px 20px; }
  .lp-point { font-size: 13px; gap: 12px; }

  /* Report */
  .report-inner h3 { font-size: 22px; }
  .report-inner p { font-size: 13.5px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  footer { padding: 48px 16px 28px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom p { font-size: 11px; }

  /* Tags */
  .tag { font-size: 9.5px; padding: 6px 12px; }

  /* Buttons full-width on mobile apply section */
  .apply-btns .btn { width: 100%; font-size: 13.5px; padding: 13px 20px; }

  /* Mobile menu */
  .mobile-menu { padding: 12px 16px 20px; }
  .mobile-menu a { font-size: 15px; padding: 13px 0; }
}

/* ════════════════════════════════════════════
   PREMIUM LAYER — Expensive Refinements
════════════════════════════════════════════ */

/* 1. GRAIN TEXTURE — the single biggest thing */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* 2. CUSTOM CURSOR — removed, using default */

/* 3. NAV — thinner, tighter, more refined */
nav {
  height: 52px;
  border-bottom: 1px solid rgba(250,250,248,0.05);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(10,11,10,0.88);
}

/* 4. SECTION TRANSITIONS — generous breathing room */
section { scroll-margin-top: 52px; }

/* 5. BUTTONS — more refined geometry, better motion */
.btn {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  letter-spacing: 0.015em;
}
.btn-teal {
  box-shadow: 0 0 0 0 rgba(0,203,167,0);
}
.btn-teal:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,203,167,0.22), 0 2px 8px rgba(0,203,167,0.15);
}
.btn-outline-white:hover,
.btn-ghost-light:hover {
  transform: translateY(-1px);
}

/* 6. TYPOGRAPHY TIGHTENING */
.display {
  letter-spacing: -0.05em !important;
  line-height: 0.95 !important;
}
h1.hero-headline {
  letter-spacing: -0.05em !important;
  line-height: 0.93 !important;
}

/* 7. HERO DEPTH — deeper atmospheric gradient */
.hero {
  background: radial-gradient(ellipse 120% 80% at 60% 0%, #0e1a17 0%, var(--black) 55%) !important;
}

/* 8. PORTFOLIO ITEMS — richer hover */
.portfolio-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* 9. VERTICAL CARDS — premium hover lift */
.v-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.v-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* 10. HAIRLINE SECTION SEPARATOR */
section + section::before {
  content: none;
}

/* 11. DATA SECTION depth */
#data {
  background: #080908 !important;
  background-image: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,203,167,0.04) 0%, transparent 60%) !important;
}
#data::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1px, rgba(0,203,167,0.12) 100%, transparent 0);
  background-size: 80px 80px;
  animation: drift-slow 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}
#data .container { position: relative; z-index: 1; }

/* 12. SMOOTH SCROLL */
html { scroll-behavior: smooth; }

/* 13. INVESTORS section depth */
#investors {
  background: linear-gradient(135deg, #080908 0%, #0c0f0c 100%);
}

/* 14. FOOTER — richer separation */
footer {
  border-top: 1px solid rgba(250,250,248,0.06) !important;
}

/* 15. LP POINTS — refined left border */
.lp-point {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.lp-point:hover { transform: translateX(4px); }

/* 16. CRITERION hover */
.criterion {
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1) !important;
  border-radius: 6px;
}
.criterion:hover {
  background: rgba(0,203,167,0.025);
  transform: translateX(3px);
}

/* 17. PILLAR hover */
.pillar {
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1) !important;
  border-radius: 6px;
}
.pillar:hover {
  background: rgba(0,0,0,0.02) !important;
}

/* 18. HERO card — glass refinement */
.hero-card {
  border: 1px solid rgba(250,250,248,0.1) !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 1px 0 rgba(250,250,248,0.06) inset !important;
  backdrop-filter: blur(20px) !important;
}

/* 19. TEAL GLOW — more atmospheric */
.hero-glow {
  background: radial-gradient(circle, rgba(0,203,167,0.09) 0%, transparent 60%) !important;
  width: 900px !important;
  height: 900px !important;
}

/* 20. APPLY SECTION — handled in base styles */


/* ─── PORTFOLIO: ANIMATED DATA ORBIT ─── */
.portfolio-orbit {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
.portfolio-orbit .orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(0,203,167,0.25);
}
.portfolio-orbit .orbit-ring:nth-child(1) {
  width: 100%; height: 100%; top: 0; left: 0;
}
.portfolio-orbit .orbit-ring:nth-child(2) {
  width: 66%; height: 66%; top: 17%; left: 17%;
  border-color: rgba(0,203,167,0.35);
}
.portfolio-orbit .orbit-ring:nth-child(3) {
  width: 33%; height: 33%; top: 33.5%; left: 33.5%;
  border-color: rgba(0,203,167,0.45);
}
.portfolio-orbit .orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,203,167,0.6);
}
.portfolio-orbit .orbit-dot:nth-child(4) {
  top: 50%; left: 50%;
  margin-top: -5px; margin-left: -5px;
  animation: orbit-outer 12s linear infinite;
}
.portfolio-orbit .orbit-dot:nth-child(5) {
  top: 50%; left: 50%;
  margin-top: -5px; margin-left: -5px;
  animation: orbit-mid 8s linear infinite;
}
.portfolio-orbit .orbit-dot:nth-child(6) {
  top: 50%; left: 50%;
  margin-top: -5px; margin-left: -5px;
  animation: orbit-inner 5s linear infinite reverse;
}
.portfolio-orbit .orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(0,203,167,0.2);
  border: 2px solid var(--teal);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}
@keyframes drift {
  0% { transform: translate(0, 0); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translate(30px, -40px); opacity: 0; }
}
@keyframes drift-slow {
  0% { transform: translateY(100%); opacity: 0; }
  20% { opacity: 0.3; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-100%); opacity: 0; }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 0px rgba(0,203,167,0)); }
  50% { opacity: 0.6; filter: drop-shadow(0 0 8px rgba(0,203,167,0.5)); }
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes constellation-move {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -15px); }
  66% { transform: translate(-15px, 10px); }
}
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(0,203,167,0.3)); }
  50% { filter: drop-shadow(0 0 8px rgba(0,203,167,0.6)); }
}
@keyframes heartbeat {
  0%, 100% { transform: scaleX(1) scaleY(1); }
  25% { transform: scaleX(1.05) scaleY(0.95); }
  50% { transform: scaleX(0.95) scaleY(1.05); }
  75% { transform: scaleX(1.03) scaleY(0.97); }
}
@keyframes dash-animate {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}
@keyframes chart-rise {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbit-outer {
  from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}
@keyframes orbit-mid {
  from { transform: rotate(0deg) translateX(66px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(66px) rotate(-360deg); }
}
@keyframes orbit-inner {
  from { transform: rotate(0deg) translateX(33px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(33px) rotate(-360deg); }
}

/* ─── INVESTORS: ANIMATED NETWORK GRAPH ─── */
#investors {
  position: relative;
  overflow: hidden;
}
#investors .network-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
#investors .network-bg .net-node {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,203,167,0.4);
  box-shadow: 0 0 6px rgba(0,203,167,0.2);
  animation: net-breathe 3s ease-in-out infinite;
}
#investors .network-bg .net-edge {
  position: absolute;
  height: 1px;
  background: rgba(0,203,167,0.15);
  transform-origin: left center;
  animation: edge-pulse 4s ease-in-out infinite;
}
#investors .investors-layout { position: relative; z-index: 1; }

@keyframes net-breathe {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(2); }
}
@keyframes edge-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.4; }
}

/* ─── APPLY: EKG HEARTBEAT TRACE ─── */
#apply {
  position: relative;
  overflow: hidden;
}
#apply .ekg-trace {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
#apply .ekg-trace svg {
  width: 200%;
  height: 100%;
  animation: ekg-scroll 6s linear infinite;
}
#apply .ekg-trace svg path {
  fill: none;
  stroke: rgba(0,203,167,0.35);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(0,203,167,0.25));
}
#apply .apply-inner { position: relative; z-index: 1; }

@keyframes ekg-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── News Section ── */
.news-feed { display: flex; flex-direction: column; gap: 0; }

.news-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}
.news-card:hover { opacity: 0.82; }

.news-card-thumb {
  width: 100%;
  border-radius: 8px;
  background: var(--black);
}

.news-card-body { display: flex; flex-direction: column; gap: 8px; }

.news-card-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.news-card-meta .news-tag {
  color: var(--teal);
  font-weight: 500;
}

.news-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.news-card-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}

.news-card-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 4px;
}

.news-card-cta-row {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}
.news-card-cta-row a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}
.news-card-cta-row a:hover { opacity: 0.7; }

@media (max-width: 720px) {
  .news-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-card-thumb { max-width: 280px; }
}

/* ─── ACCELERATOR BLOCK ─── */
.accel-section { background: var(--black); padding: 96px 0; }
.accel-intro { max-width: 720px; }
.accel-logo { display: block; width: 380px; max-width: 100%; height: auto; margin-bottom: 40px; }
.accel-intro h2 { color: var(--on-dark); font-size: clamp(36px,3.8vw,56px); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 24px; }
.accel-intro h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.08em; }
.accel-intro .body-lg { color: var(--on-dark-muted); font-weight: 300; font-size: 17px; line-height: 1.75; max-width: 640px; }
.accel-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin: 56px 0 48px; padding: 40px 0; border-top: 1px solid var(--on-dark-border); border-bottom: 1px solid var(--on-dark-border); }
.accel-stat-num { font-weight: 800; font-size: 36px; letter-spacing: -0.03em; color: var(--teal); }
.accel-stat-cap { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 4px; }
.accel-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .accel-stats { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .accel-logo { width: 280px; }
}


/* ═══════════════════════════════════════════════
   SUBPAGE + EFFECTS + EMPTY-STATE (GeekHealth additions)
   ═══════════════════════════════════════════════ */
.subpage-wrap > section:first-child { padding-top: 56px; }

/* EKG heartbeat trace (Apply) */
.ekg-trace { position: absolute; bottom: 80px; left: 0; right: 0; height: 80px; pointer-events: none; z-index: 0; overflow: hidden; }
.ekg-trace svg { width: 200%; height: 100%; animation: ekg-scroll 6s linear infinite; }
.ekg-trace path { fill: none; stroke: rgba(0,203,167,0.28); stroke-width: 1.5; }
#apply .apply-inner { position: relative; z-index: 1; }
@keyframes ekg-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Accelerator callout (Apply) */
.accel-callout { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--on-dark-border); }
.accel-callout-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 28px 32px; border: 1px solid var(--on-dark-border); border-radius: 10px; background: rgba(250,250,248,0.03); text-align: left; }
.accel-callout-label { font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 8px; }
.accel-callout-text p { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--on-dark-muted); margin: 0; max-width: 420px; }
.accel-callout-inner .btn { flex-shrink: 0; }

/* Deal-flow network graph (Investors) */
.network-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.net-node { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: rgba(0,203,167,0.4); box-shadow: 0 0 6px rgba(0,203,167,0.2); animation: net-breathe 3s ease-in-out infinite; }
.net-edge { position: absolute; height: 1px; background: rgba(0,203,167,0.15); transform-origin: left center; animation: edge-pulse 4s ease-in-out infinite; }
.investors-layout { position: relative; z-index: 1; }
@keyframes net-breathe { 0%,100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.5; transform: scale(2); } }
@keyframes edge-pulse { 0%,100% { opacity: 0; } 50% { opacity: 0.4; } }

/* Empty state (News & Research, Portfolio — intentionally blank) */
#emptystate { background: var(--black); position: relative; overflow: hidden; min-height: calc(100vh - 56px); display: flex; align-items: center; }
#emptystate::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(250,250,248,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(250,250,248,0.03) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
#emptystate::after { content: ''; position: absolute; top: 20%; right: -8%; width: 640px; height: 640px; background: radial-gradient(circle, rgba(0,203,167,0.07) 0%, transparent 65%); pointer-events: none; }
.empty-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; padding: 80px 40px; }
.empty-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); background: rgba(0,203,167,0.08); border: 1px solid rgba(0,203,167,0.2); padding: 6px 14px; border-radius: 100px; margin-bottom: 32px; }
.empty-badge::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.empty-inner h1 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; color: var(--on-dark); margin-bottom: 22px; }
.empty-inner h1 .serif-it { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.06em; color: var(--teal); }
.empty-inner p { font-size: 16px; font-weight: 300; color: var(--on-dark-muted); line-height: 1.75; max-width: 480px; margin: 0 auto 36px; }
.empty-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 480px) { .empty-inner { padding: 60px 20px; } .empty-btns { flex-direction: column; } .empty-btns .btn { justify-content: center; } }

/* Team single-founder centering */
.team-grid-solo { max-width: 360px; margin: 0 auto; grid-template-columns: 1fr; }
.team-card-solo { padding: 40px 32px 32px; }
.team-card-solo .team-portrait { width: 132px; height: 132px; }
.team-card-solo .team-name-new { font-size: 19px; }
.team-card-solo .team-role-new { font-size: 10px; margin-bottom: 18px; }

/* Framed portrait: ring/scanlines/glow baked into the image itself */
.team-portrait.framed { border: none; }
.team-portrait.framed::after { display: none; }
