:root {
  --ink: #070a0f;
  --ink-2: #0b1018;
  --ink-3: #111823;
  --paper: #f3f5f7;
  --white: #ffffff;
  --muted: #8993a2;
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(7, 10, 15, 0.13);
  --blue: #3e64af;
  --blue-bright: #3898ff;
  --blue-soft: #a9ccff;
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --shell: min(1280px, calc(100vw - 96px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: 150px; }

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 92px;
  padding-inline: max(48px, calc((100vw - 1280px) / 2));
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  height: 76px;
  border-color: var(--line);
  background: rgba(7, 10, 15, .83);
  backdrop-filter: blur(18px);
}
.brand { display: block; width: 176px; }
.brand img { width: 100%; height: 58px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255,255,255,.72);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .25s ease;
}
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-nav > a:not(.nav-cta):hover { color: var(--white); }
.site-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  min-height: 43px;
  padding: 0 18px;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .25s ease, border-color .25s ease;
}
.nav-cta:hover { border-color: var(--blue-bright); background: rgba(56,152,255,.12); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 850px;
  height: max(850px, 100svh);
  overflow: hidden;
  place-items: center;
  color: var(--white);
  background: var(--ink);
}
#forge-canvas { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; opacity: .65; pointer-events: none; }
.hero__art { position: absolute; z-index: 1; inset: 0; }
.hero__art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,10,15,1) 0%, rgba(7,10,15,.9) 31%, rgba(7,10,15,.28) 63%, rgba(7,10,15,.18) 100%),
    linear-gradient(180deg, rgba(7,10,15,.56) 0%, transparent 35%, rgba(7,10,15,.78) 100%);
  content: "";
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.06); transform: scale(1.025); animation: hero-breathe 14s ease-in-out infinite alternate; }
.hero__glow {
  position: absolute;
  z-index: 2;
  top: 20%;
  left: 32%;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  background: rgba(31,126,255,.08);
  filter: blur(70px);
}
@keyframes hero-breathe { to { transform: scale(1.065); } }
.hero__content { position: relative; z-index: 4; padding-top: 88px; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; background: var(--blue-bright); content: ""; }
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 7.8vw, 122px);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .88;
}
.hero h1 em { color: var(--blue-bright); font-style: normal; }
.hero__lead { max-width: 580px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.65; }
.hero__actions { display: flex; margin-top: 40px; align-items: center; gap: 16px; }
.button {
  position: relative;
  display: inline-flex;
  min-height: 57px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 42px;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: color .3s ease, border-color .3s ease, transform .25s var(--ease), background .3s ease;
}
.button--primary { color: var(--white); background: var(--blue); }
.button--primary::before {
  position: absolute;
  inset: 0;
  background: var(--blue-bright);
  content: "";
  transform: translateX(-102%);
  transition: transform .45s var(--ease);
}
.button--primary > * , .button--primary { isolation: isolate; }
.button--primary span { position: relative; z-index: 1; }
.button--primary:hover::before { transform: translateX(0); }
.button--ghost { border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.82); background: rgba(255,255,255,.025); backdrop-filter: blur(10px); }
.button--ghost:hover { border-color: rgba(255,255,255,.48); color: var(--white); background: rgba(255,255,255,.07); }
.play-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 6px rgba(56,152,255,.1); }
.hero__footer { position: absolute; z-index: 4; right: 0; bottom: 36px; left: 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.hero__principle { display: flex; align-items: center; gap: 12px; }
.pulse { position: relative; width: 7px; height: 7px; border-radius: 50%; background: #57dca3; }
.pulse::before { position: absolute; inset: -5px; border: 1px solid rgba(87,220,163,.4); border-radius: 50%; content: ""; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 70%, 100% { opacity: 0; transform: scale(1.8); } }
.hero__coordinates { display: flex; gap: 22px; }

.signal-strip { overflow: hidden; border-block: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.7); background: var(--ink-2); }
.signal-track { display: flex; width: max-content; height: 74px; align-items: center; gap: 30px; animation: ticker 36s linear infinite; }
.signal-track span { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; }
.signal-track i { width: 5px; height: 5px; transform: rotate(45deg); background: var(--blue-bright); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-kicker { color: #546276; }
.section-kicker span { color: var(--blue); }
.section-kicker::after { width: 44px; height: 1px; background: currentColor; content: ""; opacity: .38; }
.section-kicker--light { color: rgba(255,255,255,.5); }
.section-kicker--light span { color: var(--blue-bright); }
.display { margin: 0; font-family: var(--font-display); font-size: clamp(46px, 5.4vw, 82px); font-weight: 500; letter-spacing: -.062em; line-height: 1.02; }
.display span { color: var(--blue); }
.display--large { font-size: clamp(50px, 5.8vw, 88px); }
.manifesto__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, .5fr); gap: 90px; align-items: end; }
.manifesto__copy { padding-bottom: 4px; }
.manifesto__copy p { margin: 0 0 20px; color: #505b68; font-size: 17px; }
.text-link { display: inline-flex; margin-top: 14px; align-items: center; gap: 32px; color: var(--ink); border-bottom: 1px solid var(--ink); font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.text-link span { color: var(--blue); transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(6px); }
.principles { display: grid; margin-top: 110px; border-top: 1px solid var(--dark-line); grid-template-columns: repeat(4, 1fr); }
.principles article { min-height: 230px; padding: 30px 28px 20px 0; border-right: 1px solid var(--dark-line); }
.principles article:not(:first-child) { padding-left: 28px; }
.principles article:last-child { border-right: 0; }
.principles strong { color: var(--blue); font-family: var(--font-display); font-size: 11px; letter-spacing: .14em; }
.principles h3 { margin: 62px 0 12px; font-family: var(--font-display); font-size: 18px; }
.principles p { margin: 0; color: #64707e; font-size: 14px; line-height: 1.55; }

.capabilities { color: var(--white); background: var(--ink); }
.section-heading { display: grid; margin-bottom: 72px; grid-template-columns: 1fr auto; }
.section-heading .section-kicker { grid-column: 1 / -1; }
.section-intro { max-width: 410px; margin: 10px 0 0; align-self: end; color: #687486; font-size: 17px; }
.capabilities .section-intro { color: rgba(255,255,255,.45); }
.capabilities .display span { color: var(--blue-bright); }
.capability-grid { display: grid; gap: 1px; background: var(--line); grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.capability-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 450px;
  padding: 30px;
  overflow: hidden;
  background: var(--ink-2);
}
.capability-card::before { position: absolute; inset: 0; background: radial-gradient(500px circle at var(--mx) var(--my), rgba(56,152,255,.15), transparent 42%); content: ""; opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.capability-card:hover::before { opacity: 1; }
.capability-card--wide { grid-column: span 2; }
.card-index { color: rgba(255,255,255,.32); font-family: var(--font-display); font-size: 10px; letter-spacing: .12em; }
.card-icon { display: grid; width: 58px; height: 58px; margin-top: 76px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; place-items: center; transition: border-color .3s ease, background .3s ease, transform .3s var(--ease); }
.card-icon svg { width: 27px; fill: none; stroke: var(--blue-bright); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.capability-card:hover .card-icon { border-color: var(--blue-bright); background: rgba(56,152,255,.08); transform: translateY(-5px); }
.capability-card h3 { max-width: 380px; margin: 29px 0 14px; font-family: var(--font-display); font-size: 23px; font-weight: 600; letter-spacing: -.025em; }
.capability-card p { max-width: 500px; margin: 0; color: rgba(255,255,255,.48); font-size: 14px; line-height: 1.65; }
.capability-card ul { display: flex; margin: 28px 0 0; padding: 0; flex-wrap: wrap; gap: 7px; list-style: none; }
.capability-card li, .card-tag { display: inline-block; padding: 6px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.card-tag { position: absolute; right: 30px; bottom: 27px; }

.system-section { overflow: hidden; color: var(--white); background: var(--ink-3); }
.system-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: center; }
.system-copy > p { max-width: 580px; margin: 32px 0; color: rgba(255,255,255,.55); font-size: 17px; }
.system-list { border-top: 1px solid var(--line); }
.system-list > div { display: grid; padding: 20px 0; border-bottom: 1px solid var(--line); grid-template-columns: 52px 1fr; }
.system-list span { color: var(--blue-bright); font-family: var(--font-display); font-size: 10px; }
.system-list p { margin: 0; color: rgba(255,255,255,.48); font-size: 14px; }
.system-list strong { display: block; margin-bottom: 2px; color: var(--white); font-family: var(--font-display); font-size: 15px; }
.orbit-stage { position: relative; min-height: 660px; overflow: hidden; border: 1px solid var(--line); background: #080d15; isolation: isolate; }
.orbit-stage::before { position: absolute; z-index: -1; inset: 15%; border-radius: 50%; background: rgba(39,130,255,.18); content: ""; filter: blur(80px); }
.orbit-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle, #000 10%, transparent 72%); }
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(91,166,255,.27); border-radius: 50%; transform: translate(-50%, -50%) rotate(-12deg); }
.orbit::before { position: absolute; top: 50%; left: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 18px var(--blue-bright); content: ""; }
.orbit--outer { width: 76%; aspect-ratio: 1; animation: orbit-spin 22s linear infinite; }
.orbit--inner { width: 48%; aspect-ratio: 1; animation: orbit-spin-reverse 15s linear infinite; }
@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(348deg); } }
@keyframes orbit-spin-reverse { to { transform: translate(-50%, -50%) rotate(-372deg); } }
.core-node { position: absolute; top: 50%; left: 50%; display: grid; width: 190px; aspect-ratio: 1; border: 1px solid rgba(93,170,255,.5); border-radius: 50%; place-items: center; background: radial-gradient(circle, rgba(41,129,246,.35), rgba(10,18,30,.95) 65%); box-shadow: inset 0 0 35px rgba(48,139,255,.22), 0 0 80px rgba(32,123,255,.14); transform: translate(-50%, -50%); }
.core-node span { font-family: var(--font-display); font-size: 54px; font-weight: 700; letter-spacing: -.08em; }
.core-node small { position: absolute; top: 115px; color: rgba(255,255,255,.45); font-family: var(--font-display); font-size: 8px; letter-spacing: .18em; line-height: 1.5; text-align: center; }
.satellite { position: absolute; display: grid; width: 78px; height: 34px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.62); background: rgba(7,12,20,.9); font-family: var(--font-display); font-size: 8px; letter-spacing: .16em; place-items: center; box-shadow: 0 9px 30px rgba(0,0,0,.3); }
.satellite::after { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-bright); content: ""; }
.satellite--one { top: 18%; left: 15%; }
.satellite--one::after { right: -3px; }
.satellite--two { top: 21%; right: 13%; }
.satellite--two::after { left: -3px; }
.satellite--three { right: 12%; bottom: 18%; }
.satellite--three::after { left: -3px; }
.satellite--four { bottom: 20%; left: 14%; }
.satellite--four::after { right: -3px; }
.status-pill { position: absolute; right: 18px; bottom: 18px; display: flex; padding: 9px 12px; align-items: center; gap: 8px; border: 1px solid var(--line); color: rgba(255,255,255,.55); background: rgba(8,13,21,.8); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: #57dca3; box-shadow: 0 0 10px rgba(87,220,163,.8); }

.section-heading--split { grid-template-columns: 1.3fr .7fr; gap: 70px; }
.section-heading--split .section-kicker { grid-column: auto; }
.section-heading--split .section-intro { grid-column: 2; grid-row: 1; margin-top: 50px; }
.industry-list { border-top: 1px solid var(--dark-line); }
.industry { display: grid; width: 100%; min-height: 104px; padding: 0; align-items: center; border: 0; border-bottom: 1px solid var(--dark-line); color: var(--ink); background: transparent; grid-template-columns: 70px 1.2fr 1fr 32px; text-align: left; transition: padding .35s var(--ease), color .25s ease, background .25s ease; }
.industry:hover, .industry.active { padding-inline: 18px; color: var(--white); background: var(--ink); }
.industry > span { color: var(--blue); font-family: var(--font-display); font-size: 10px; }
.industry strong { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -.035em; }
.industry em { color: #7e8996; font-size: 12px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.industry b { color: var(--blue); font-weight: 400; }
.industry:hover b, .industry.active b { color: var(--blue-bright); }
.industry-detail { display: grid; min-height: 150px; padding: 32px 38px; align-items: start; color: var(--white); background: var(--blue); grid-template-columns: 170px 1fr 1.25fr; }
.industry-detail > span { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; opacity: .68; }
.industry-detail h3 { margin: 0; font-family: var(--font-display); font-size: 21px; }
.industry-detail p { margin: 0; opacity: .8; font-size: 14px; line-height: 1.6; }
.ecosystem { margin-top: 110px; padding-top: 28px; border-top: 1px solid var(--dark-line); }
.ecosystem > p { margin: 0 0 28px; color: #7e8996; font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.ecosystem > div { display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #303946; }
.ecosystem > div span { font-family: var(--font-display); font-size: clamp(16px, 2vw, 23px); font-weight: 700; letter-spacing: -.035em; }
.ecosystem small { display: block; margin-top: 22px; color: #9aa3ae; font-size: 10px; }

.blueprints { color: var(--white); background: var(--ink); }
.blueprints__heading { display: grid; margin-bottom: 70px; grid-template-columns: 1fr .6fr; gap: 80px; }
.blueprints__heading .display span { color: var(--blue-bright); }
.blueprints__heading > p { max-width: 410px; margin: auto 0 8px; color: rgba(255,255,255,.48); font-size: 17px; }
.blueprint-grid { display: grid; gap: 1px; background: var(--line); grid-template-columns: repeat(3, 1fr); }
.blueprint { position: relative; min-height: 510px; padding: 30px; overflow: hidden; background: var(--ink-2); }
.blueprint--accent { background: #102750; }
.blueprint__top { display: flex; justify-content: space-between; color: rgba(255,255,255,.34); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.blueprint__top span { color: var(--blue-bright); }
.blueprint h3 { margin: 135px 0 18px; font-family: var(--font-display); font-size: 32px; font-weight: 500; letter-spacing: -.045em; }
.blueprint p { max-width: 350px; margin: 0; color: rgba(255,255,255,.52); font-size: 14px; }
.mini-ui { position: absolute; right: 30px; bottom: 26px; left: 30px; display: grid; height: 76px; padding: 14px; gap: 8px; border: 1px solid var(--line); background: rgba(255,255,255,.02); grid-template-columns: 1fr 1fr 1fr 48px; }
.mini-ui i { align-self: end; background: rgba(56,152,255,.24); }
.mini-ui i:nth-child(1) { height: 28%; }.mini-ui i:nth-child(2) { height: 52%; }.mini-ui i:nth-child(3) { height: 82%; background: var(--blue-bright); }
.mini-ui b { align-self: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.doc-stack { position: absolute; right: 32px; bottom: 33px; left: 32px; height: 96px; }
.doc-stack i { position: absolute; bottom: 0; left: 50%; width: 130px; height: 78px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.07); transform-origin: bottom; }
.doc-stack i:nth-child(1) { transform: translateX(-70%) rotate(-8deg); }.doc-stack i:nth-child(2) { transform: translateX(-30%) rotate(8deg); }.doc-stack i:nth-child(3) { background: rgba(56,152,255,.2); transform: translateX(-50%); }
.signal-chart { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; height: 82px; align-items: end; justify-content: space-between; border-bottom: 1px solid var(--line); }
.signal-chart i { width: 12%; background: rgba(56,152,255,.28); }
.signal-chart i:nth-child(1) { height: 20%; }.signal-chart i:nth-child(2) { height: 38%; }.signal-chart i:nth-child(3) { height: 31%; }.signal-chart i:nth-child(4) { height: 72%; }.signal-chart i:nth-child(5) { height: 94%; background: var(--blue-bright); }

.process { margin: 0; padding: 0; border-top: 1px solid var(--dark-line); list-style: none; }
.process li { display: grid; min-height: 176px; padding: 34px 0; align-items: start; border-bottom: 1px solid var(--dark-line); grid-template-columns: 110px 1fr 110px; transition: padding .35s var(--ease), background .3s ease; }
.process li:hover { padding-inline: 24px; background: rgba(62,100,175,.06); }
.process li > span { color: var(--blue); font-family: var(--font-display); font-size: 11px; letter-spacing: .13em; }
.process small { color: #7e8996; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.process h3 { margin: 8px 0 8px; font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: -.035em; }
.process p { max-width: 600px; margin: 0; color: #677381; font-size: 14px; }
.process b { justify-self: end; color: #7e8996; font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }

.founder { position: relative; overflow: hidden; color: var(--white); background: var(--blue); }
.founder::after { position: absolute; top: -35%; right: -8%; width: 55vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; content: ""; box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 200px rgba(255,255,255,.018); }
.founder__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .42fr 1fr; gap: 100px; align-items: center; }
.founder__mark { position: relative; display: grid; width: 310px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.25); place-items: center; }
.founder__mark::before, .founder__mark::after { position: absolute; background: rgba(255,255,255,.22); content: ""; }
.founder__mark::before { top: 50%; right: -70px; width: 140px; height: 1px; }.founder__mark::after { top: -70px; left: 50%; width: 1px; height: 140px; }
.founder__mark > span { font-family: var(--font-display); font-size: 118px; font-weight: 800; letter-spacing: -.13em; }
.founder__pixels i { position: absolute; width: 12px; height: 12px; background: var(--white); opacity: .9; }
.founder__pixels i:nth-child(1) { top: 35px; left: 45px; }.founder__pixels i:nth-child(2) { top: 53px; left: 25px; width: 7px; height: 7px; }.founder__pixels i:nth-child(3) { top: 20px; left: 76px; width: 8px; height: 8px; }.founder__pixels i:nth-child(4) { right: 28px; bottom: 35px; }.founder__pixels i:nth-child(5) { right: 58px; bottom: 18px; width: 7px; height: 7px; }.founder__pixels i:nth-child(6) { right: 20px; bottom: 70px; width: 5px; height: 5px; }
.founder blockquote { margin: 0; }
.founder blockquote > p { margin: 40px 0 44px; font-family: var(--font-display); font-size: clamp(32px, 3.4vw, 51px); font-weight: 500; letter-spacing: -.048em; line-height: 1.2; }
.founder blockquote em { color: #b9d9ff; font-style: normal; }
.founder blockquote footer { display: flex; flex-direction: column; }
.founder blockquote strong { font-family: var(--font-display); font-size: 15px; }.founder blockquote footer span { opacity: .62; font-size: 12px; }

.jobs { border-top: 1px solid var(--dark-line); }
.job { display: grid; min-height: 165px; padding: 30px 0; align-items: center; border-bottom: 1px solid var(--dark-line); grid-template-columns: 70px 1fr 1fr 100px; gap: 28px; transition: padding .35s var(--ease), background .3s ease; }
.job:hover { padding-inline: 20px; background: var(--white); }
.job__number { color: var(--blue); font-family: var(--font-display); font-size: 10px; }
.job div > span { color: #8993a0; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.job h3 { margin: 5px 0 0; font-family: var(--font-display); font-size: 22px; letter-spacing: -.025em; }
.job p { margin: 0; color: #697481; font-size: 13px; line-height: 1.6; }
.job > a { justify-self: end; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--ink); font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.job > a span { color: var(--blue); }
.careers__note { margin: 30px 0 0; color: #75808d; font-size: 13px; }.careers__note a { color: var(--ink); border-bottom: 1px solid var(--ink); }

.contact { position: relative; overflow: hidden; color: var(--white); background: var(--ink-2); }
.contact__ambient { position: absolute; top: -30%; left: -10%; width: 65vw; aspect-ratio: 1; border-radius: 50%; background: rgba(33,116,225,.12); filter: blur(100px); }
.contact__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.contact__copy > p { max-width: 540px; margin: 30px 0; color: rgba(255,255,255,.5); font-size: 17px; }
.contact .display span { color: var(--blue-bright); }
.contact__details { margin-top: 62px; border-top: 1px solid var(--line); }
.contact__details > * { display: grid; padding: 17px 0; border-bottom: 1px solid var(--line); grid-template-columns: 100px 1fr; font-style: normal; }
.contact__details small { color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.contact__details strong { color: rgba(255,255,255,.85); font-family: var(--font-display); font-size: 13px; font-weight: 500; }
.contact__details a strong { transition: color .25s ease; }.contact__details a:hover strong { color: var(--blue-bright); }
.contact-form { padding: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.035); backdrop-filter: blur(10px); }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.contact-form label { display: block; margin-bottom: 22px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.46); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.17); border-radius: 0; outline: 0; color: var(--white); background: transparent; font-size: 14px; transition: border-color .25s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-bright); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form select option { color: var(--ink); background: var(--white); }
.contact-form textarea { resize: vertical; }
.form-footer { display: flex; margin-top: 12px; align-items: center; justify-content: space-between; gap: 30px; }
.form-footer p { max-width: 200px; margin: 0; color: rgba(255,255,255,.3); font-size: 10px; line-height: 1.5; }
.form-status { min-height: 20px; margin: 14px 0 0; color: var(--blue-soft); font-size: 12px; }

.site-footer { padding: 55px 0 28px; color: var(--white); border-top: 1px solid var(--line); background: var(--ink); }
.footer__top { display: grid; padding-bottom: 50px; align-items: center; grid-template-columns: 1fr 1fr 1fr; }
.brand--footer { width: 190px; }
.footer__top > p { margin: 0; color: rgba(255,255,255,.48); font-size: 14px; }
.back-top { justify-self: end; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.7); font-family: var(--font-display); font-size: 12px; }
.back-top span { display: grid; width: 36px; height: 36px; border: 1px solid var(--line); place-items: center; transition: border-color .25s ease, transform .25s var(--ease); }.back-top:hover span { border-color: var(--blue-bright); transform: translateY(-4px); }
.footer__bottom { display: grid; padding-top: 20px; border-top: 1px solid var(--line); color: rgba(255,255,255,.27); font-size: 9px; letter-spacing: .09em; grid-template-columns: 1fr 1fr 1fr; text-transform: uppercase; }
.footer__bottom span:nth-child(2) { text-align: center; }.footer__bottom span:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 56px, 1000px); }
  .site-header { padding-inline: 28px; }
  .site-nav { gap: 20px; }
  .manifesto__grid, .system-grid, .founder__grid, .contact__grid { gap: 55px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-card--wide { grid-column: span 1; }
  .orbit-stage { min-height: 560px; }
  .founder__mark { width: 260px; }
  .job { grid-template-columns: 55px 1fr 1fr 80px; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100% - 40px); }
  .section { padding-block: 100px; }
  .site-header { height: 76px; padding-inline: 20px; }
  .brand { width: 150px; }
  .nav-toggle { position: relative; z-index: 102; display: grid; width: 45px; height: 45px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; place-content: center; gap: 6px; }
  .nav-toggle span { display: block; width: 18px; height: 1px; background: var(--white); transition: transform .3s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 101; inset: 0; display: flex; padding: 110px 28px 45px; align-items: flex-start; flex-direction: column; gap: 4px; background: rgba(7,10,15,.98); opacity: 0; pointer-events: none; transform: translateY(-15px); transition: opacity .3s ease, transform .3s var(--ease); }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a:not(.nav-cta) { width: 100%; padding: 14px 0; color: var(--white); border-bottom: 1px solid var(--line); font-size: 25px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 28px; }
  .hero { min-height: 760px; height: 100svh; }
  .hero__art img { object-position: 62% center; }
  .hero__art::after { background: linear-gradient(90deg, rgba(7,10,15,.98), rgba(7,10,15,.68)), linear-gradient(180deg, rgba(7,10,15,.35), transparent 32%, rgba(7,10,15,.85)); }
  .hero h1 { font-size: clamp(53px, 12vw, 88px); }
  .hero__lead { max-width: 530px; font-size: 16px; }
  .hero__coordinates { display: none; }
  .manifesto__grid, .system-grid, .founder__grid, .contact__grid { grid-template-columns: 1fr; }
  .manifesto__grid { gap: 42px; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principles article:nth-child(2) { border-right: 0; }.principles article:nth-child(3), .principles article:nth-child(4) { border-top: 1px solid var(--dark-line); }
  .section-heading, .section-heading--split, .blueprints__heading { grid-template-columns: 1fr; gap: 34px; }
  .section-heading .section-kicker, .section-heading--split .section-kicker { grid-column: 1; }
  .section-heading--split .section-intro { grid-column: 1; grid-row: auto; margin-top: 0; }
  .section-intro { margin-top: 0; }
  .industry-detail { grid-template-columns: 100px 1fr; gap: 22px; }.industry-detail p { grid-column: 2; }
  .ecosystem > div { flex-wrap: wrap; justify-content: flex-start; gap: 22px 34px; }
  .blueprint-grid { grid-template-columns: 1fr; }
  .blueprint { min-height: 420px; }
  .founder__mark { margin: 0 auto; }
  .job { grid-template-columns: 45px 1fr auto; gap: 18px; }.job p { grid-column: 2 / -1; }.job > a { grid-column: 3; grid-row: 1; }
  .contact__grid { gap: 65px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding-block: 82px; }
  .hero { min-height: 730px; }
  .hero__content { padding-top: 58px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(48px, 15.3vw, 76px); letter-spacing: -.07em; }
  .hero__lead { margin-top: 25px; font-size: 15px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero__footer { bottom: 20px; }
  .hero__principle { font-size: 9px; }
  .display, .display--large { font-size: clamp(39px, 12vw, 58px); }
  .manifesto__copy p, .system-copy > p, .section-intro, .blueprints__heading > p, .contact__copy > p { font-size: 15px; }
  .principles { grid-template-columns: 1fr; }
  .principles article, .principles article:not(:first-child) { min-height: 190px; padding: 25px 0; border-right: 0; border-top: 1px solid var(--dark-line); }
  .principles article:first-child { border-top: 0; }.principles h3 { margin-top: 45px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 410px; }
  .orbit-stage { min-height: 430px; }.core-node { width: 140px; }.core-node span { font-size: 42px; }.core-node small { top: 87px; }.satellite { width: 66px; font-size: 7px; }.satellite--one { left: 5%; }.satellite--two { right: 5%; }.satellite--three { right: 4%; }.satellite--four { left: 4%; }
  .industry { min-height: 98px; grid-template-columns: 42px 1fr 22px; }.industry em { display: none; }.industry strong { font-size: 19px; }.industry:hover, .industry.active { padding-inline: 10px; }
  .industry-detail { padding: 26px 22px; grid-template-columns: 1fr; gap: 9px; }.industry-detail p { grid-column: 1; }
  .ecosystem { margin-top: 75px; }
  .blueprint h3 { margin-top: 96px; }
  .process li { padding: 28px 0; grid-template-columns: 42px 1fr; }.process li > b { grid-column: 2; grid-row: 2; justify-self: start; margin-top: 13px; }.process li:hover { padding-inline: 10px; }
  .founder__mark { width: 215px; }.founder__mark > span { font-size: 84px; }.founder blockquote > p { font-size: 30px; }
  .job { padding: 26px 0; grid-template-columns: 35px 1fr; }.job > a { grid-column: 2; grid-row: auto; justify-self: start; }.job p { grid-column: 2; }
  .contact-form { padding: 25px 20px; }.form-row { grid-template-columns: 1fr; gap: 0; }.form-footer { align-items: stretch; flex-direction: column; }.form-footer p { max-width: none; }.contact__details > * { grid-template-columns: 70px 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }.back-top { justify-self: start; }.footer__bottom { grid-template-columns: 1fr; gap: 10px; }.footer__bottom span:nth-child(2), .footer__bottom span:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
