:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0c0d0e;
  --panel-2: #141412;
  --text: #f4efe3;
  --muted: #a9a39a;
  --line: rgba(244, 239, 227, 0.16);
  --cyan: #7de7ff;
  --red: #e34032;
  --gold: #d8b36a;
  --green: #8bcf91;
  --headline-font: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(244, 239, 227, 0.08);
  backdrop-filter: blur(18px);
}
.brand, nav { display: flex; align-items: center; }
.brand { gap: 10px; font-weight: 800; text-transform: lowercase; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  background: #111;
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 23px;
  font-style: italic;
}
nav {
  gap: clamp(12px, 2vw, 30px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
nav a:hover { color: var(--text); }

.hero {
  position: relative;
  min-height: calc(100svh - 71px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 64px clamp(18px, 4vw, 56px) 24px;
  background:
    radial-gradient(circle at 74% 24%, rgba(125, 231, 255, .16), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(227, 64, 50, .18), transparent 24%),
    linear-gradient(90deg, #050505 0%, #050505 38%, #111 100%);
}
.hero-art { position: absolute; inset: 0; pointer-events: none; opacity: .95; }
.planet {
  position: absolute;
  right: -8vw;
  top: 1vh;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(125,231,255,.18);
  border-radius: 50%;
  background: radial-gradient(circle at 28% 38%, rgba(125,231,255,.18), transparent 24%), #070909;
  box-shadow: inset 40px 0 80px rgba(125,231,255,.1);
}
.lattice {
  position: absolute;
  right: 6vw;
  top: 16vh;
  width: 260px;
  height: 300px;
  background:
    radial-gradient(circle, #f4efe3 0 3px, transparent 4px) 0 0 / 64px 64px,
    linear-gradient(38deg, transparent 48%, rgba(125,231,255,.42) 49%, rgba(125,231,255,.42) 50%, transparent 51%);
  opacity: .58;
}
.rocket {
  position: absolute;
  left: 8vw;
  bottom: 9vh;
  width: 34px;
  height: 116px;
  border-radius: 24px 24px 6px 6px;
  background: linear-gradient(90deg, #555, #f4efe3, #363636);
  box-shadow: 0 112px 38px rgba(227,64,50,.28);
}
.robot {
  position: absolute;
  right: 36vw;
  bottom: 9vh;
  width: 160px;
  height: 22px;
  border-radius: 24px;
  background: linear-gradient(90deg, #1c2224, #9aa6aa, #121415);
  transform: rotate(-22deg);
}
.vial {
  position: absolute;
  right: 15vw;
  bottom: 8vh;
  width: 46px;
  height: 170px;
  border: 2px solid rgba(244,239,227,.52);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, transparent 56%, rgba(227,64,50,.75));
}
.data-wave {
  position: absolute;
  left: 22vw;
  bottom: 9vh;
  width: 330px;
  height: 90px;
  background: repeating-radial-gradient(circle at 50% 90%, rgba(125,231,255,.7) 0 1px, transparent 2px 9px);
  transform: perspective(220px) rotateX(58deg);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.82) 44%, rgba(5,5,5,.2)),
    linear-gradient(180deg, transparent, rgba(5,5,5,.95));
}
.hero-content, .hero-metrics { position: relative; z-index: 1; }
.hero-content { max-width: 840px; padding-top: 2vh; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--headline-font);
  font-weight: 800;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 116px);
  line-height: .86;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .88;
}
h3 {
  font-family: var(--headline-font);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.05;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d8d1c7;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.button.primary { background: var(--text); color: #050505; border-color: var(--text); }
.button.ghost { color: var(--text); background: rgba(244,239,227,.05); }
.button:hover { border-color: var(--cyan); }

.hero-metrics {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin-top: 64px;
  border: 1px solid var(--line);
  background: var(--line);
}
.hero-metrics article {
  min-height: 150px;
  padding: 22px;
  background: rgba(7, 8, 9, .74);
  backdrop-filter: blur(16px);
}
.hero-metrics span, .thesis-list span { color: var(--red); font-size: 12px; font-weight: 800; }
.hero-metrics strong { display: block; margin: 16px 0 8px; font-size: 18px; }
.hero-metrics p, .allocation-card p, .company-card p, .thesis-list p, .principle-grid p, .intro-grid > p, footer {
  color: var(--muted);
  line-height: 1.6;
}

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: #090909; }
.ticker div { display: flex; width: max-content; animation: drift 28s linear infinite; }
.ticker span {
  padding: 18px 32px;
  color: #d8d1c7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}
.section { padding: clamp(72px, 10vw, 136px) clamp(18px, 4vw, 56px); }
.intro-grid, .contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.intro-grid > p { max-width: 760px; margin: 0; font-size: clamp(20px, 2.4vw, 34px); }
.section-heading {
  display: flex;
  max-width: 1160px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.allocation-grid, .company-grid, .principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.allocation-card, .company-card, .principle-grid article {
  min-height: 260px;
  padding: 24px;
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
}
.companies {
  background: radial-gradient(circle at 80% 0%, rgba(227,64,50,.12), transparent 30%), #060606;
}
.logo-marquee {
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  background: #090909;
}
.lower-logo-marquee {
  margin: 0;
  border-left: 0;
  border-right: 0;
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 1px;
  background: var(--line);
  animation: drift 34s linear infinite;
}
.logo-chip {
  display: grid;
  width: 236px;
  height: 86px;
  place-items: center;
  flex: 0 0 auto;
  background: #f4efe3;
  overflow: hidden;
}
.logo-chip img {
  display: block;
  max-width: 78%;
  max-height: 58px;
  object-fit: contain;
}
.logo-openai {
  background: #f4efe3 url("assets/logos/openai-uploaded.png") center center / 76% auto no-repeat;
}
.logo-erebor {
  background: #153f73 url("assets/logos/erebor-uploaded.jpeg") center center / cover no-repeat;
}
.logo-saronic {
  background: #fff url("assets/logos/saronic-uploaded.png") center center / 76% auto no-repeat;
}
.logo-prometheus {
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .08)),
    url("assets/logos/prometheus.jpg") center 52% / cover;
}
.logo-privateer {
  background: #000 url("assets/logos/privateer-uploaded.png") center center / 78% auto no-repeat;
}
.company-card { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; }
.logo-frame {
  display: grid;
  height: 116px;
  place-items: center;
  margin-bottom: 42px;
  padding: 24px;
  border: 1px solid rgba(244,239,227,.12);
  background: rgba(244,239,227,.96);
  color: #050505;
  font-weight: 800;
}
.logo-frame img {
  display: block;
  width: 100%;
  max-width: 268px;
  max-height: 82px;
  object-fit: contain;
}
.openai-mark {
  padding: 0;
  overflow: hidden;
  background: #f4efe3 url("assets/logos/openai-uploaded.png") center center / 86% auto no-repeat;
}
.databricks-mark { padding: 18px; }
.erebor-mark {
  padding: 0;
  overflow: hidden;
  background: #153f73 url("assets/logos/erebor-uploaded.jpeg") center center / cover no-repeat;
}
.impulse-mark img { max-width: 224px; }
.saronic-mark {
  padding: 0;
  background: #fff url("assets/logos/saronic-uploaded.png") center center / 86% auto no-repeat;
  overflow: hidden;
}
.saronic-mark img {
  display: none;
}
.prometheus-mark {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .08)),
    url("assets/logos/prometheus.jpg") center 52% / cover;
}
.anduril-mark img { max-width: 226px; }
.privateer-mark {
  padding: 0;
  overflow: hidden;
  background: #000 url("assets/logos/privateer-uploaded.png") center center / 86% auto no-repeat;
}
.allocation { border-top: 1px solid var(--line); }
.allocation-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 521px;
  padding: clamp(28px, 4vw, 44px);
  background: radial-gradient(circle at 82% 18%, rgba(125,231,255,.18), transparent 32%), linear-gradient(145deg, #15120d, #080909);
}
.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.card-topline strong { color: var(--gold); font-size: 28px; }
.allocation-card.large .card-topline strong {
  font-family: var(--headline-font);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -.04em;
}
.allocation-card.large h3 {
  max-width: 540px;
  font-size: clamp(36px, 5vw, 64px);
}
.thesis, .principles { background: #090a0a; border-block: 1px solid var(--line); }
.thesis-list { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.thesis-list article {
  display: grid;
  grid-template-columns: 80px minmax(220px, .75fr) minmax(280px, 1fr);
  gap: 24px;
  padding: 28px;
  background: #0d0e0e;
}
.thesis-list p { margin: 0; }
.principle-grid article { min-height: 220px; }
.principle-grid strong {
  display: block;
  margin-bottom: 48px;
  color: var(--text);
  font-family: var(--headline-font);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.05;
  text-transform: uppercase;
}
.contact {
  align-items: center;
  background: linear-gradient(90deg, rgba(227,64,50,.1), transparent 36%), #0b0b0a;
  border-top: 1px solid var(--line);
}
.contact .button { justify-self: end; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  font-size: 13px;
}
footer span:last-child {
  max-width: 760px;
  text-align: right;
}
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1080px) {
  nav { gap: 14px; font-size: 12px; }
  .hero-metrics, .allocation-grid, .company-grid, .principle-grid { grid-template-columns: 1fr 1fr; }
  .allocation-card.large { grid-column: span 2; min-height: 420px; }
}
@media (max-width: 820px) {
  nav { display: none; }
  .hero { min-height: auto; padding-top: 48px; }
  .hero-content { padding-top: 4vh; }
  .hero-metrics, .intro-grid, .contact, .thesis-list article { grid-template-columns: 1fr; }
  .contact .button { justify-self: start; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(48px, 15vw, 76px); }
  .hero-metrics, .allocation-grid, .company-grid, .principle-grid { grid-template-columns: 1fr; }
  .allocation-card.large { grid-column: span 1; }
  .section-heading { display: block; }
  .card-topline { margin-bottom: 40px; }
  footer { flex-direction: column; }
  footer span:last-child {
    text-align: left;
  }
}
