/* ============================================================
   Singularity Ventures — singularity.ventures
   Ported from the design proposal (bundler export) to clean,
   dependency-free CSS. Brand: Singularity.Inc Identity v3/v4.
   ============================================================ */

/* ---------- Webfonts (Inter, self-hosted) ---------- */
/* Brand carries two weights: Light 300 (body) and SemiBold 600 (titles).
   Regular 400 ships as latin/latin-ext subsets for occasional UI needs. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/inter-300.woff2") format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  /* Neutral ramp (Gray 1-10, dark -> light) */
  --gray-1: #1a1a1a;
  --gray-2: #333333;
  --gray-3: #4d4d4d;
  --gray-4: #666666;
  --gray-5: #808080;
  --gray-6: #999999;
  --gray-7: #b2b2b2;
  --gray-8: #cccccc;
  --gray-9: #e5e5e5;
  --gray-10: #fff5f5;

  /* Living accents */
  --orange: #ff6c14;
  --lime: #cfff00;

  /* Page surfaces (this site runs on the dark atmosphere) */
  --bg: #0f0f0f;
  --bg-deep: #0b0b0b;
  --line: rgba(255, 255, 255, 0.10);
  --line-mid: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.14);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 6px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --dur: 200ms;

  --pad-x: clamp(20px, 4.2vw, 40px);
  --header-h: 58px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--gray-10);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 600; color: var(--gray-10); }
p { margin: 0; }

a {
  color: var(--gray-10);
  text-decoration: none;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
a:hover { color: var(--orange); }
a:active { opacity: 0.7; }

::selection { background: var(--lime); color: #0f0f0f; }

img { display: block; max-width: 100%; }

.wrap { max-width: 1440px; margin-inline: auto; padding-inline: var(--pad-x); }

/* Accessible skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 10px 16px; background: var(--orange); color: #0f0f0f;
  border-radius: 0 0 var(--radius) 0; font-weight: 600; font-size: 13px;
}
.skip-link:focus { left: 0; color: #0f0f0f; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

/* ---------- Keyframes ---------- */
@keyframes svBlink { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0.15; } 100% { opacity: 1; } }
@keyframes svFeed { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px var(--pad-x);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 15, 15, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand { display: flex; align-items: baseline; gap: 7px; color: var(--gray-10); }
.brand:hover { color: var(--gray-10); }
.brand__main { font-weight: 600; font-size: 15px; letter-spacing: 0.02em; }
.brand__sub { font-weight: 600; font-size: 15px; color: var(--orange); }

.header-status {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-6); white-space: nowrap;
}
.header-status__sep { color: var(--gray-4); }
.header-status__clock { color: var(--gray-9); font-variant-numeric: tabular-nums; }
.header-status__back { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-6); }
.header-status__back:hover { color: var(--orange); }

.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); flex: none; }
.dot--blink { animation: svBlink 2.4s infinite; }
.dot--orange { background: var(--orange); }

@media (max-width: 620px) {
  .header-status__label, .header-status__sep { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--header-h) + 24px) 0 clamp(28px, 5vh, 44px);
  overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__shade {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 10%, rgba(15, 15, 15, 0) 20%, rgba(15, 15, 15, 0.86) 78%);
}
.hero__inner { position: relative; display: grid; gap: clamp(24px, 3.6vh, 36px); width: 100%; }

.kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-6);
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--orange); flex: none; }

.hero__title {
  font-size: clamp(48px, 10.5vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.hero__deck {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(24px, 3vw, 40px); align-items: end;
  border-top: 1px solid var(--line-mid); padding-top: 28px;
}
.hero__lead { font-size: 18px; line-height: 1.45; color: var(--gray-7); max-width: 52ch; text-wrap: pretty; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--gray-10); border-radius: var(--radius);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--gray-10);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.btn:hover { background: var(--gray-10); color: #0f0f0f; }

.btn--ghost {
  border: none; padding: 14px 18px; color: var(--gray-6); font-weight: 600;
}
.btn--ghost:hover { background: none; color: var(--orange); }

.btn--solid {
  background: var(--orange); border-color: var(--orange); color: #0f0f0f;
  padding: 16px 26px;
}
.btn--solid:hover { background: var(--orange); color: #0f0f0f; filter: brightness(0.94); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.chip {
  padding: 7px 12px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-9);
}
.chip--accent { border-color: rgba(255, 108, 20, 0.5); color: var(--orange); }

/* ============================================================
   Ticker (marquee)
   ============================================================ */
.ticker {
  border-block: 1px solid var(--line); background: var(--bg-deep);
  overflow: hidden; height: 44px; display: flex; align-items: center;
}
.ticker__track { display: flex; width: max-content; animation: svFeed 38s linear infinite; }
.ticker__group {
  display: flex; gap: 56px; padding-right: 56px; white-space: nowrap;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-5);
}
.ticker__group .is-lime { color: var(--lime); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding-block: clamp(70px, 10vh, 140px); }
.section--tall { padding-block: clamp(90px, 14vh, 180px); }
.section--line { border-top: 1px solid var(--line); }
.section--band { background: var(--bg-deep); border-block: 1px solid var(--line); }

.eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-6);
}
.eyebrow--accent { color: var(--orange); }

.section-head {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: baseline; justify-content: space-between;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.h-display { line-height: 1.02; letter-spacing: -0.03em; }

/* Statement */
.statement .eyebrow { margin-bottom: 40px; }
.statement__title {
  font-size: clamp(34px, 5.4vw, 82px); line-height: 1.02; letter-spacing: -0.03em;
  max-width: 20ch; margin-bottom: 48px;
}
.statement__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(28px, 4vw, 48px); max-width: 1120px;
}
.statement__cols p { font-size: 17px; line-height: 1.55; color: var(--gray-7); text-wrap: pretty; }
.statement__cols p.is-strong { color: var(--gray-10); }
.statement__cols .is-lime { color: var(--lime); }

/* Cell grids (1px grid lines via per-cell box-shadow, so rows that are
   not full don't leave a bright patch where no cells exist) */
.cellgrid {
  display: grid; gap: 1px;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.cellgrid > * { background: var(--bg); box-shadow: 0 0 0 1px var(--line-mid); }
.section--band .cellgrid > * { background: var(--bg-deep); }

.cellgrid--engine { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.cell {
  padding: 36px 30px 44px; display: grid; gap: 16px; align-content: start;
  transition: background var(--dur) var(--ease);
}
.cell:hover { background: #151515; }
.section--band .cell:hover { background: #131313; }
.cell__num { font-size: 11px; letter-spacing: 0.2em; color: var(--gray-5); }
.cell__num--accent { color: var(--orange); }
.cell__num--lime { color: var(--lime); }
.cell__title { font-size: 22px; letter-spacing: -0.01em; }
.cell__text { font-size: 15px; line-height: 1.55; color: var(--gray-6); }

/* Engine section heading */
.engine__title { font-size: clamp(30px, 4.4vw, 64px); }

/* Agent layer */
.agents__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(40px, 5vw, 64px); align-items: center;
}
.agents .eyebrow { margin-bottom: 28px; }
.agents__big {
  font-weight: 600; font-size: clamp(96px, 17vw, 240px); line-height: 0.82;
  letter-spacing: -0.05em; color: var(--gray-10);
}
.agents__claim { font-size: clamp(20px, 2.4vw, 34px); font-weight: 600; letter-spacing: -0.02em; margin-top: 24px; }
.agents__side { display: grid; gap: 28px; }
.agents__side > p { font-size: 17px; line-height: 1.55; color: var(--gray-7); max-width: 46ch; text-wrap: pretty; }
.agents__side > p.is-muted { font-size: 15px; color: var(--gray-5); }
.cellgrid--mini { grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr)); }
.cellgrid--mini > div { padding: 18px 14px; font-size: 13px; color: var(--gray-8); }
.cellgrid--mini > .is-lime { color: var(--lime); }
.agents__tags {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-4);
  border-top: 1px solid var(--line); padding-top: 20px;
}

/* Ventures */
.ventures__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 20px;
}
.venture-card {
  position: relative; display: grid; gap: 20px; align-content: space-between;
  min-height: 440px; padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #141414 0%, #0f0f0f 60%);
  color: var(--gray-10);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}
.venture-card:hover { transform: translateY(-3px); color: var(--gray-10); }
.venture-card--airis:hover { border-color: rgba(255, 108, 20, 0.6); }
.venture-card--aivy {
  background: radial-gradient(120% 90% at 20% 100%, rgba(26, 61, 46, 0.55) 0%, #0f0f0f 62%);
}
.venture-card--aivy:hover { border-color: rgba(207, 255, 0, 0.5); }
.venture-card__grid-bg {
  position: absolute; inset: 0; opacity: 0.7; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 42px);
}
.venture-card__top { position: relative; display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.venture-card__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-5); }
.venture-card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: svBlink 2.4s infinite; flex: none; }
.venture-card__body { position: relative; display: grid; gap: 18px; }
.venture-card__name { font-weight: 600; font-size: clamp(44px, 6.4vw, 86px); line-height: 0.9; letter-spacing: -0.04em; }
.venture-card__claim { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--gray-10); max-width: 24ch; }
.venture-card__text { font-size: 15px; line-height: 1.55; color: var(--gray-6); max-width: 42ch; }
.venture-card__link { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.venture-card__link--lime { color: var(--lime); }

.venture-next {
  margin-top: 20px; display: flex; align-items: center; gap: 16px;
  padding: 24px 30px; border: 1px dashed rgba(255, 255, 255, 0.18); border-radius: var(--radius);
  color: var(--gray-5); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
}
.venture-next .dot { width: 8px; height: 8px; animation-duration: 1.8s; }

/* Why */
.why__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(40px, 5vw, 64px);
}
.why__title { font-size: clamp(32px, 5vw, 74px); line-height: 1; letter-spacing: -0.035em; }
.why__title .is-accent { color: var(--orange); }
.why__side { display: grid; gap: 24px; align-content: center; }
.why__side > p { font-size: 17px; line-height: 1.55; color: var(--gray-7); max-width: 46ch; text-wrap: pretty; }
.pullquote {
  border-left: 2px solid var(--lime); padding-left: 22px;
  font-size: clamp(20px, 2.4vw, 30px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2;
  color: var(--gray-10);
}

/* Build model */
.model__title { font-size: clamp(28px, 3.8vw, 54px); line-height: 1; letter-spacing: -0.03em; }
.cellgrid--model { grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); }
.cellgrid--model .cell { padding: 30px 22px 40px; gap: 14px; }
.cellgrid--model .cell__title { font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; }
.cellgrid--model .cell__text { font-size: 14px; line-height: 1.5; }

/* Backed by */
.backed__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(40px, 5vw, 64px); align-items: start;
}
.backed .eyebrow { margin-bottom: 28px; }
.backed__title { font-size: clamp(32px, 5vw, 74px); line-height: 1; letter-spacing: -0.035em; }
.backed__side { display: grid; gap: 26px; }
.backed__side > p { font-size: 17px; line-height: 1.55; color: var(--gray-7); max-width: 46ch; text-wrap: pretty; }
.backed__side > p.is-strong { color: var(--gray-10); }
.btn--outline {
  justify-self: start;
  border-color: rgba(255, 255, 255, 0.28); color: var(--gray-10);
  padding: 13px 20px; font-size: 12px; letter-spacing: 0.16em;
}
.btn--outline:hover { background: none; border-color: var(--orange); color: var(--orange); }

/* Partners */
.partners .eyebrow { margin-bottom: 44px; }
.partners__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 20px;
}
.partner-card {
  display: grid; border: 1px solid var(--line-strong); border-radius: var(--radius);
  overflow: hidden; transition: border-color 240ms var(--ease);
}
.partner-card:hover { border-color: rgba(255, 255, 255, 0.34); }
.partner-card__media { aspect-ratio: 4 / 5; background: var(--bg); position: relative; overflow: hidden; }
.partner-card__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;
  filter: grayscale(0.15) contrast(1.03);
}
.partner-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 55%, rgba(15, 15, 15, 0.85) 100%);
}
.partner-card__body { padding: 26px 24px 30px; display: grid; gap: 12px; align-content: start; }
.partner-card__name { font-size: 24px; letter-spacing: -0.02em; }
.partner-card__role { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.partner-card__text { font-size: 15px; line-height: 1.5; color: var(--gray-6); }
.partner-card__social {
  justify-self: start; display: inline-flex; align-items: center; gap: 8px; margin-top: 2px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-5);
}
.partner-card__social:hover { color: var(--gray-10); }

/* Closing */
.closing {
  position: relative; min-height: 88vh; min-height: 82svh;
  display: flex; align-items: center; overflow: hidden;
}
.closing__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 70% at 80% 20%, rgba(255, 108, 20, 0.14) 0%, rgba(15, 15, 15, 0) 60%);
}
.closing__inner { position: relative; width: 100%; display: grid; gap: clamp(32px, 5vh, 44px); }
.closing__title {
  font-size: clamp(40px, 7.6vw, 124px); line-height: 0.94; letter-spacing: -0.04em; max-width: 16ch;
}
.closing__deck {
  display: flex; flex-wrap: wrap; gap: 24px 32px; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line-mid); padding-top: 28px;
}
.closing__deck p { font-size: 16px; line-height: 1.5; color: var(--gray-6); max-width: 40ch; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { padding: 56px 0 40px; background: var(--bg-deep); border-top: 1px solid var(--line); }
.footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 40px; align-items: start;
}
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__brand { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.footer__tag { font-size: 14px; line-height: 1.5; color: var(--gray-6); }
.footer__loc { font-size: 14px; color: var(--gray-6); line-height: 1.5; }
.footer__icons { display: flex; gap: 10px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius); color: var(--gray-7);
}
.icon-btn:hover { color: var(--orange); border-color: rgba(255, 108, 20, 0.6); }
.footer__links { display: grid; gap: 10px; font-size: 14px; justify-items: start; }
.footer__links a { color: var(--gray-8); }
.footer__links a:hover { color: var(--orange); }
.footer__bottom {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: baseline; justify-content: space-between;
  font-size: 12px; color: var(--gray-4);
}

/* ============================================================
   Legal page
   ============================================================ */
.legal-hero { padding-block: calc(var(--header-h) + clamp(48px, 9vh, 96px)) clamp(28px, 5vh, 48px); }
.legal-hero h1 { font-size: clamp(34px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -0.03em; margin-top: 28px; max-width: 18ch; }
.legal-hero__meta { margin-top: 20px; font-size: 13px; color: var(--gray-5); }

.legal-nav {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-block: 1px solid var(--line);
}
.legal-nav__inner {
  display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
  padding-block: 10px;
}
.legal-nav__inner::-webkit-scrollbar { display: none; }
.legal-nav a {
  flex: none; padding: 8px 14px; border-radius: var(--radius);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--gray-6);
}
.legal-nav a:hover { color: var(--gray-10); background: rgba(255, 255, 255, 0.06); }

.legal-doc { padding-block: clamp(48px, 8vh, 88px); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 56px); }
.legal-doc:first-of-type { border-top: none; }
.legal-doc__kind { margin-bottom: 18px; }
.legal-doc__title { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.legal-doc__sub { margin-top: 14px; font-size: 13px; color: var(--gray-5); line-height: 1.5; }
.legal-doc__body { margin-top: 36px; max-width: 76ch; }

.legal-doc__body h3 {
  font-size: 17px; letter-spacing: -0.01em; margin: 40px 0 12px; line-height: 1.3;
}
.legal-doc__body h4 { font-size: 15px; font-weight: 600; color: var(--gray-9); margin: 26px 0 8px; }
.legal-doc__body p { font-size: 15px; line-height: 1.65; color: var(--gray-7); margin: 0 0 12px; }
.legal-doc__body li { font-size: 15px; line-height: 1.65; color: var(--gray-7); margin-bottom: 6px; }
.legal-doc__body ul { margin: 0 0 14px; padding-left: 20px; }
.legal-doc__body strong { color: var(--gray-9); font-weight: 600; }
.legal-doc__body a { color: var(--orange); }
.legal-doc__body a:hover { text-decoration: underline; text-underline-offset: 2px; }

.fact-list { display: grid; gap: 0; margin: 20px 0 8px; border: 1px solid var(--line-mid); border-radius: var(--radius); overflow: hidden; }
.fact-list > div {
  display: grid; grid-template-columns: minmax(180px, 240px) 1fr; gap: 16px;
  padding: 12px 16px; background: var(--bg-deep);
}
.fact-list > div:nth-child(even) { background: #101010; }
.fact-list dt { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-5); font-weight: 600; padding-top: 2px; }
.fact-list dd { margin: 0; font-size: 15px; line-height: 1.5; color: var(--gray-9); overflow-wrap: anywhere; }
@media (max-width: 560px) {
  .fact-list > div { grid-template-columns: 1fr; gap: 4px; }
}

.note-box {
  margin: 20px 0; padding: 16px 18px;
  border: 1px solid rgba(207, 255, 0, 0.25); border-radius: var(--radius);
  background: rgba(207, 255, 0, 0.04);
}
.note-box p { color: var(--gray-8); margin: 0; }

.legal-form-block {
  margin: 16px 0; padding: 18px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2); border-radius: var(--radius);
}
.legal-form-block p { margin-bottom: 8px; }

/* ============================================================
   Reveal on scroll (JS adds html.js; visible by default without JS)
   ============================================================ */
html.js .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .dot--blink, .venture-card__dot, .venture-next .dot { animation: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .venture-card:hover { transform: none; }
  *, *::before, *::after { transition-duration: 1ms !important; }
}

/* ============================================================
   Small-screen refinements
   ============================================================ */
@media (max-width: 720px) {
  .hero { padding-bottom: 24px; }
  .hero__lead { font-size: 16px; }
  .venture-card { min-height: 400px; }
  .section-head { margin-bottom: 36px; }
  .cell { padding: 28px 22px 34px; }
  .statement__title { margin-bottom: 36px; }
  .statement .eyebrow { margin-bottom: 28px; }
  .closing { min-height: 72svh; }
  .footer__bottom { justify-content: flex-start; }
}

@media (max-width: 400px) {
  .btn { padding: 13px 16px; }
  .chips .chip { letter-spacing: 0.12em; }
}
