/* =====================================================
   LPventures.AI — Launchpad / cosmic design system
   Refined, cinematic, deep-space aesthetic
   ===================================================== */

:root {
  /* Deep space palette */
  --void:          #03050C;
  --space:         #07091A;
  --space-2:       #0B0F26;
  --night:         #121634;
  --line:          rgba(255, 255, 255, 0.07);
  --line-strong:   rgba(255, 255, 255, 0.14);

  /* Warm cream / paper palette (light sections) */
  --cream:         #F4EFE3;
  --cream-2:       #ECE4D2;
  --paper:         #FAF6EC;
  --line-dark:     rgba(20, 18, 12, 0.10);
  --line-dark-strong: rgba(20, 18, 12, 0.20);

  /* Text */
  --ink-0:         #F5F1E6;          /* warm off-white, like moonlight */
  --ink-1:         #C4C1B8;
  --ink-2:         #807D75;
  --ink-3:         #54524D;
  --dark-0:        #14120C;          /* deep warm black for light sections */
  --dark-1:        #3A372E;
  --dark-2:        #6E6A5E;

  /* Accents — fire, ignition, starlight */
  --ignite:        #FF6A2C;          /* engine flame orange */
  --flare:         #FFB452;          /* hot gas yellow-orange */
  --plasma:        #FF3D5A;          /* combustion red */
  --star-cyan:     #9EE7FF;          /* cold starlight */
  --star-blue:     #4D8BFF;
  --gold:          #E8C770;          /* warm beacon */

  --grad-ignite:   linear-gradient(135deg, #FFB452 0%, #FF6A2C 50%, #FF3D5A 100%);
  --grad-starlight: linear-gradient(135deg, #F5F1E6 0%, #9EE7FF 100%);

  --container:     1280px;
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--ink-0);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ====================================================
   THEME · LIGHT — paper / cream sections
   Applied with .theme-light on a <section>
   ==================================================== */
.theme-light {
  background: var(--cream);
  color: var(--dark-0);
  position: relative;
  z-index: 3;
}
.theme-light .section-title,
.theme-light h2,
.theme-light h3,
.theme-light h4 { color: var(--dark-0); }
.theme-light .section-title em,
.theme-light h2 em,
.theme-light h3 em { color: var(--ignite); }
.theme-light .section-sub,
.theme-light p { color: var(--dark-1); }
.theme-light .eyebrow { color: var(--ignite); }
.theme-light .eyebrow::before { background: var(--ignite); }
.theme-light .principle { border-bottom-color: var(--line-dark); }
.theme-light .principles { border-top-color: var(--line-dark); }
.theme-light .principle h4 { color: var(--dark-0); }
.theme-light .principle p { color: var(--dark-1); }
.theme-light .principle__num { color: var(--ignite); }
.theme-light .thesis-lead { color: var(--dark-1); }
.theme-light .thesis-lead em { color: var(--ignite); }

/* Manifesto inside light theme */
.theme-light.manifesto .manifesto__text h2 em { color: var(--ignite); }
.theme-light.manifesto .manifesto__text p { color: var(--dark-1); }
.theme-light.manifesto .manifesto__visual {
  box-shadow:
    0 30px 90px -20px rgba(20, 18, 12, 0.25),
    0 0 0 1px var(--line-dark);
}
.theme-light.manifesto .manifesto__visual-caption {
  color: var(--cream);
}
.theme-light.manifesto .manifesto__visual-caption strong { color: var(--paper); }

/* Gates inside light theme */
.theme-light .gates {
  border-top-color: var(--line-dark);
  border-bottom-color: var(--line-dark);
}
.theme-light .gate {
  border-right-color: var(--line-dark);
}
.theme-light .gate:hover {
  background: var(--cream-2);
}
.theme-light .gate__num { color: var(--ignite); }
.theme-light .gate h4 { color: var(--dark-0); }
.theme-light .gate p { color: var(--dark-1); }

/* Network strip on team page in light theme */
.theme-light .network {
  background: var(--line-dark);
  border-color: var(--line-dark);
}
.theme-light .net {
  background: var(--cream);
}
.theme-light .net:hover { background: var(--cream-2); }
.theme-light .net h4 { color: var(--dark-0); }
.theme-light .net p { color: var(--dark-1); }
.theme-light .section--bordered { border-top-color: var(--line-dark); }

/* ====================================================
   QUOTE · pull-quote between sections
   ==================================================== */
.quote {
  padding: 140px 0;
  background: var(--cream);
  color: var(--dark-0);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 106, 44, 0.06), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 180, 82, 0.05), transparent 60%);
  pointer-events: none;
}
.quote__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.quote__mark {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.6;
  color: var(--ignite);
  margin-bottom: 8px;
  opacity: 0.7;
}
.quote__text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  color: var(--dark-0);
}
.quote__text em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--ignite);
}
.quote__attribution {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dark-2);
}
.quote__line {
  width: 60px;
  height: 1px;
  background: var(--dark-2);
  opacity: 0.4;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

::selection { background: rgba(255, 106, 44, 0.4); color: var(--ink-0); }

/* ====================================================
   GRAIN — subtle film texture overlay
   ==================================================== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.85'/></svg>");
}

/* ====================================================
   NAV — minimal, observatory-style
   ==================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: all .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(3, 5, 12, 0.65);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: 17px;
  color: var(--ink-0);
}
.logo__mark {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 180, 82, 0.4), rgba(255, 106, 44, 0.1) 60%, transparent);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 70%, var(--ignite), transparent 50%);
  opacity: 0.6;
}
.logo__mark svg { position: relative; z-index: 1; }
.logo__text { font-weight: 500; }
.logo__text strong { font-weight: 700; }
.logo__dot {
  color: var(--ignite);
}

/* Logo image (D5-ticks SVG) */
.logo__img {
  height: 84px;
  width: auto;
  display: block;
  transition: transform .35s var(--ease), height .4s var(--ease);
}
.logo:hover .logo__img { transform: scale(1.03); }
.logo__img--foot { height: 104px; }
/* When nav is condensed after scroll, slightly shrink the logo */
.nav.is-scrolled .logo__img { height: 68px; }
@media (max-width: 600px) {
  .logo__img { height: 62px; }
  .nav.is-scrolled .logo__img { height: 52px; }
  .logo__img--foot { height: 80px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 400;
}
.nav__links a {
  color: var(--ink-1);
  position: relative;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--ink-0); }
.nav__cta {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-0) !important;
  transition: all .3s var(--ease);
  font-weight: 500;
}
.nav__cta:hover {
  background: var(--ignite);
  border-color: var(--ignite);
  color: var(--void) !important;
  box-shadow: 0 0 30px rgba(255, 106, 44, 0.4);
}
@media (max-width: 840px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ====================================================
   HERO — cinematic video background, dark vignette
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  z-index: 3;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.9) brightness(0.7);
}
.hero__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 12, 0.5) 0%, rgba(3, 5, 12, 0.1) 30%, rgba(3, 5, 12, 0.65) 70%, var(--void) 100%),
    linear-gradient(90deg, rgba(3, 5, 12, 0.6) 0%, transparent 40%, transparent 60%, rgba(3, 5, 12, 0.3) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(3, 5, 12, 0.4);
  backdrop-filter: blur(12px);
  font-size: 12.5px;
  color: var(--ink-1);
  margin-bottom: 36px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__chip .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ignite);
  box-shadow: 0 0 14px var(--ignite);
  animation: ignite-pulse 2.2s infinite;
}
@keyframes ignite-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 14px var(--ignite); }
  50% { opacity: 0.6; transform: scale(1.4); box-shadow: 0 0 24px var(--flare); }
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 8.2vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
  color: var(--ink-0);
  max-width: 1100px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  background: var(--grad-ignite);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  padding-right: 6px;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line span {
  display: inline-block;
  transform: translateY(110%);
  animation: line-rise 1.1s var(--ease-out) forwards;
}
.hero__line:nth-child(1) span { animation-delay: 0.15s; }
.hero__line:nth-child(2) span { animation-delay: 0.30s; }
.hero__line:nth-child(3) span { animation-delay: 0.45s; }
@keyframes line-rise {
  to { transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.55;
  color: var(--ink-1);
  max-width: 600px;
  margin: 0 0 48px;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.7s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.85s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: all .35s var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink-0);
  color: var(--void);
  box-shadow: 0 0 0 0 rgba(255, 180, 82, 0);
}
.btn--primary:hover {
  background: var(--ignite);
  color: var(--ink-0);
  box-shadow: 0 0 50px rgba(255, 106, 44, 0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-0);
  border-color: var(--line-strong);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--ink-2);
  transform: translateY(-2px);
}

/* Coordinates / telemetry strip */
.telemetry {
  position: absolute;
  bottom: 40px;
  left: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 1.2s var(--ease-out) 1.2s forwards;
}
.telemetry__line {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.telemetry__line span strong { color: var(--ink-0); font-weight: 500; padding-left: 6px; }
.telemetry__bar {
  width: 200px; height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.telemetry__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ignite);
  transform: translateX(-100%);
  animation: bar-fill 4s var(--ease) 1.5s forwards;
}
@keyframes bar-fill {
  to { transform: translateX(0); }
}
@media (max-width: 720px) {
  .telemetry { position: static; margin-top: 60px; flex-direction: column; gap: 16px; align-items: start; }
}

/* ====================================================
   MARQUEE — coordinates / launch ticker
   ==================================================== */
.ticker {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(3, 5, 12, 0.6);
  backdrop-filter: blur(12px);
}
.ticker__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-x 50s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.ticker__track > span { display: inline-flex; align-items: center; gap: 12px; }
.ticker__track > span::before {
  content: "✦";
  color: var(--ignite);
  font-size: 10px;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ====================================================
   SECTIONS
   ==================================================== */
.section {
  position: relative;
  z-index: 3;
  padding: 140px 0;
  background: var(--void);
}
.section--bordered { border-top: 1px solid var(--line); }
.section.theme-light { background: var(--cream); }

.section-head {
  margin-bottom: 80px;
  max-width: 920px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ignite);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--ignite);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
}
.section-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--ignite);
}
.section-sub {
  color: var(--ink-1);
  font-size: 18px;
  line-height: 1.55;
  margin-top: 24px;
  max-width: 640px;
}

/* ====================================================
   MANIFESTO — split with launchpad imagery
   ==================================================== */
.manifesto {
  position: relative;
  z-index: 3;
  padding: 140px 0;
  overflow: hidden;
  background: var(--void);
}
.manifesto.theme-light { background: var(--cream); }
.manifesto__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}
.manifesto__text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.manifesto__text h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--flare);
}
.manifesto__text p {
  color: var(--ink-1);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 580px;
}
.manifesto__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--space);
  box-shadow:
    0 40px 120px -30px rgba(255, 106, 44, 0.25),
    0 0 0 1px var(--line-strong);
}
.manifesto__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.85);
  transition: transform 1.2s var(--ease);
}
.manifesto__visual:hover img { transform: scale(1.04); }
.manifesto__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 5, 12, 0.7));
  z-index: 1;
}
.manifesto__visual-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.manifesto__visual-caption strong { color: var(--ink-0); font-weight: 500; }

@media (max-width: 980px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 60px; }
  .manifesto__visual { aspect-ratio: 16 / 10; }
}

/* ====================================================
   THREE PILLARS
   ==================================================== */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.pillar {
  background: var(--void);
  padding: 48px 40px;
  position: relative;
  transition: background .5s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.pillar:hover {
  background: var(--space);
}
.pillar__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.pillar__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.15em;
}
.pillar__symbol {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  color: var(--ignite);
  opacity: 0.5;
  transition: all .5s var(--ease);
}
.pillar:hover .pillar__symbol {
  opacity: 1;
  transform: translateX(4px);
  color: var(--flare);
}
.pillar__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.pillar__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ignite);
}
.pillar__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-2);
  margin: 0 0 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pillar__body {
  color: var(--ink-1);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 32px;
}
.pillar__list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  font-size: 13.5px;
  color: var(--ink-1);
}
.pillar__list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  letter-spacing: 0.01em;
}
.pillar__list li::before {
  content: "↗";
  color: var(--ignite);
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 980px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { min-height: auto; padding: 40px 32px; }
}

/* ====================================================
   ENGINE — full-bleed video section
   ==================================================== */
.engine {
  position: relative;
  z-index: 3;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0;
  background: var(--void);
}
.engine__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.engine__video video,
.engine__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.1) brightness(0.75);
}
.engine__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at right center, transparent 0%, rgba(3, 5, 12, 0.5) 50%, var(--void) 100%),
    linear-gradient(90deg, rgba(3, 5, 12, 0.95) 0%, rgba(3, 5, 12, 0.7) 35%, transparent 70%);
}
.engine__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.engine__content {
  max-width: 560px;
}
.engine h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.engine h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--flare);
  font-weight: 400;
}
.engine p {
  color: var(--ink-1);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 16px;
}
.engine__metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line-strong);
}
.engine__metric strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--ink-0);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
}
.engine__metric span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .engine__metric-row { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ====================================================
   THESIS / PRINCIPLES
   ==================================================== */
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.thesis-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-1);
  margin-top: 24px;
}
.thesis-lead em {
  color: var(--ignite);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
}
.principles {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.principle {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease);
}
.principle:hover {
  padding-left: 12px;
}
.principle__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ignite);
  letter-spacing: 0.12em;
  padding-top: 6px;
}
.principle h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink-0);
}
.principle p {
  margin: 0;
  color: var(--ink-1);
  font-size: 14.5px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .thesis-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ====================================================
   VENTURES — constellation
   ==================================================== */
.ventures-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.ventures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.venture {
  background: var(--void);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.venture::after {
  content: "→";
  position: absolute;
  top: 32px; right: 32px;
  color: var(--ink-3);
  font-size: 18px;
  transition: all .4s var(--ease);
}
.venture:hover {
  background: var(--space);
}
.venture:hover::after {
  color: var(--ignite);
  transform: translate(6px, -2px);
}
.venture__tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.venture h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--ink-0);
}
.venture p {
  color: var(--ink-1);
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.55;
  flex: 1;
}
.venture__status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto;
}
.venture__status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
}
.status--ignition {
  color: var(--ignite);
  border: 1px solid rgba(255, 106, 44, 0.4);
  background: rgba(255, 106, 44, 0.08);
}
.status--ignition::before { background: var(--ignite); box-shadow: 0 0 8px var(--ignite); }
.status--countdown {
  color: var(--gold);
  border: 1px solid rgba(232, 199, 112, 0.35);
  background: rgba(232, 199, 112, 0.06);
}
.status--countdown::before { background: var(--gold); }
.status--orbit {
  color: var(--star-cyan);
  border: 1px solid rgba(158, 231, 255, 0.3);
  background: rgba(158, 231, 255, 0.05);
}
.status--orbit::before { background: var(--star-cyan); }

/* Locked / coming-soon venture cards */
.venture--locked {
  opacity: 0.6;
  filter: grayscale(0.4);
  pointer-events: auto;
  transition: opacity .4s var(--ease), filter .4s var(--ease), background .5s var(--ease);
}
.venture--locked::after { display: none; }
.venture--locked:hover {
  opacity: 0.85;
  filter: grayscale(0);
  background: var(--space);
}
.venture--locked .venture__tag { color: var(--ink-3); }
.venture--locked h3 { color: var(--ink-3); }
.venture__locked-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: auto;
  transition: all .3s var(--ease);
}
.venture__locked-cta::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-3);
}
.venture--locked:hover .venture__locked-cta {
  border-color: var(--ink-2);
  color: var(--ink-1);
}

@media (max-width: 900px) {
  .ventures__grid { grid-template-columns: 1fr; }
  .ventures-head { grid-template-columns: 1fr; }
}

/* ====================================================
   GATES / PROCESS
   ==================================================== */
.gates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.gate {
  padding: 48px 32px 56px;
  position: relative;
  border-right: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.gate:last-child { border-right: none; }
.gate:hover { background: var(--space); }
.gate__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ignite);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.gate h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.gate p {
  color: var(--ink-1);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.gate__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--ignite);
  width: 0;
  transition: width .8s var(--ease);
}
.gate:hover .gate__bar { width: 100%; }
@media (max-width: 900px) {
  .gates { grid-template-columns: 1fr; }
  .gate { border-right: none; border-bottom: 1px solid var(--line); }
  .gate:last-child { border-bottom: none; }
}

/* ====================================================
   CTA — final call
   ==================================================== */
.cta {
  position: relative;
  z-index: 3;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
  background: var(--void);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 106, 44, 0.15), transparent 60%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta__caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ignite);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
}
.cta h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--ignite);
}
.cta p {
  font-size: 18px;
  color: var(--ink-1);
  margin: 0 0 48px;
}
.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================
   FOOTER
   ==================================================== */
.foot {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--void);
}
.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
}
.foot__brand .logo { margin-bottom: 20px; }
.foot__brand p {
  color: var(--ink-2);
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.foot__cols h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  margin: 0 0 20px;
  font-weight: 400;
}
.foot__cols a {
  display: block;
  color: var(--ink-1);
  font-size: 14.5px;
  padding: 6px 0;
  letter-spacing: 0.01em;
}
.foot__cols a:hover { color: var(--ignite); }
.foot__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 32px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}
@media (max-width: 820px) {
  .foot__inner { grid-template-columns: 1fr; gap: 50px; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

/* ====================================================
   TEAM PAGE
   ==================================================== */
.page-team .nav { padding-top: 24px; }

.team-hero {
  position: relative;
  z-index: 3;
  padding: 220px 0 100px;
  background: var(--void);
}
.team-hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 24px 0 0;
}
.team-hero__title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--ignite);
}
.team-hero__sub {
  color: var(--ink-1);
  font-size: 18px;
  max-width: 680px;
  margin: 28px 0 0;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.member {
  background: var(--void);
  padding: 56px 40px;
  position: relative;
  transition: background .5s var(--ease);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.member:hover { background: var(--space); }
.member__avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 36px;
  background: radial-gradient(circle at 30% 30%, var(--space-2), var(--void));
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.member__avatar::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--ignite) 30deg, transparent 60deg, transparent 360deg);
  animation: orbit 8s linear infinite;
  z-index: -1;
  filter: blur(1px);
}
@keyframes orbit { to { transform: rotate(360deg); } }
.member__initials {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  background: var(--grad-ignite);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

/* Photo variant of the avatar: bigger circle, zoomed-out crop showing the LP Ventures flight suit. */
.member__avatar--photo {
  width: 200px; height: 200px;
  background: var(--space-2);
  border-color: var(--line-strong);
  overflow: hidden;
}
.member__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Position so the face sits in the upper third and the LP Ventures patch / suit reads */
  object-position: center 18%;
  filter: contrast(1.04) saturate(0.92) brightness(1.02);
  transition: transform .8s var(--ease);
}
.member:hover .member__avatar--photo img { transform: scale(1.05); }
.member__avatar--photo::before {
  inset: -3px;
}
.member__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  color: var(--ink-0);
}
.member__role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ignite);
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.member__bio {
  color: var(--ink-1);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.65;
  flex: 1;
}
.member__bio em {
  color: var(--ink-3);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05em;
}
.member__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.member__tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-1);
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
  .member { min-height: auto; padding: 48px 32px; }
}

.aside {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.aside p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}

/* Network strip */
.network {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.net {
  background: var(--void);
  padding: 48px 36px;
  transition: background .4s var(--ease);
}
.net:hover { background: var(--space); }
.net__code {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  background: var(--grad-ignite);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 24px;
  line-height: 1;
}
.net h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.net p { color: var(--ink-1); margin: 0; font-size: 14.5px; line-height: 1.6; }
@media (max-width: 900px) {
  .network { grid-template-columns: 1fr; }
}

/* ====================================================
   Reveal animations
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__line span { transform: translateY(0); }
  .hero__sub, .hero__cta, .telemetry { opacity: 1; transform: none; }
}
