:root {
  --ink: #071624;
  --ink-soft: #132d46;
  --blue: #138fd6;
  --blue-bright: #45b7f4;
  --blue-pale: #eaf7ff;
  --paper: #f7fbfd;
  --white: #ffffff;
  --muted: #5d7080;
  --line: rgba(7, 22, 36, 0.14);
  --max: 1240px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body, button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { color: var(--ink); background: var(--blue-bright); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  height: 84px;
  margin: 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: width .35s var(--ease), height .35s var(--ease), padding .35s var(--ease), background .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  top: 12px;
  width: min(calc(100% - 28px), 1180px);
  height: 62px;
  padding: 0 12px 0 8px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(7,22,36,.09);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(7,22,36,.12);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: .28em;
  text-decoration: none;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand-a { color: var(--blue-bright); }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  position: relative;
  color: inherit;
  font-size: 13px;
  font-weight: 540;
  letter-spacing: .03em;
  text-decoration: none;
  opacity: .82;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-nav a[aria-current="page"] { opacity: 1; }
.site-nav a[aria-current="page"]::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid rgba(69,183,244,.5); outline-offset: 3px; }
.button-small { justify-self: end; min-height: 38px; padding: 0 16px; font-size: 12px; }
.button-ghost { color: inherit; border-color: rgba(255,255,255,.34); }
.scrolled .button-ghost { border-color: rgba(7,22,36,.18); }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.scrolled .button-ghost:hover { color: var(--white); background: var(--ink); }
.button-primary { color: var(--ink); background: var(--white); box-shadow: 0 18px 45px rgba(0,0,0,.18); }
.button-primary:hover { background: var(--blue-pale); box-shadow: 0 22px 54px rgba(0,0,0,.26); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }

.hero {
  position: relative;
  min-height: 880px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 40%, rgba(24,143,214,.34), transparent 31%),
    linear-gradient(126deg, #06111d 0%, #0a2135 55%, #0b3353 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  right: -8vw;
  top: 50%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  transform: translateY(-50%);
}
.orbit-one { width: 61vw; height: 61vw; }
.orbit-two { right: 4vw; width: 38vw; height: 38vw; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  width: min(calc(100% - 80px), var(--max));
  height: 100%;
  margin: 0 auto;
  padding: 120px 0 100px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  margin: 0 0 28px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 6.2vw, 94px);
  font-weight: 450;
  letter-spacing: -.055em;
  line-height: .96;
}
.hero h1 > span { color: var(--blue-bright); }
.hero-intro {
  margin: 35px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.text-link {
  padding: 10px 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
}
.text-link:hover { color: var(--white); }

.hero-mark { position: relative; justify-self: end; width: min(38vw, 520px); aspect-ratio: 1; }
.hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.28));
  animation: breathe 7s ease-in-out infinite;
}
.hero-mark-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: rgba(51,172,239,.27);
  filter: blur(70px);
}
.mark-label {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 16%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .34em;
  writing-mode: vertical-rl;
  opacity: .5;
}
.hero-foot {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.34);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-foot i { width: 22px; height: 1px; background: currentColor; }

.manifesto { padding: 160px 40px; background: var(--white); }
.manifesto-inner { width: min(100%, 1020px); margin: 0 auto; }
.manifesto-line {
  margin: 0;
  font-size: clamp(48px, 7.2vw, 104px);
  font-weight: 470;
  letter-spacing: -.06em;
  line-height: .99;
}
.manifesto-line.muted { color: #b8c5cd; }

.convictions { padding: 150px 40px; background: var(--paper); }
.section-heading { width: min(100%, var(--max)); margin: 0 auto 100px; }
.section-heading h2, .approach h2, .early-access h2 {
  margin: 0;
  font-size: clamp(46px, 5.8vw, 82px);
  font-weight: 470;
  letter-spacing: -.055em;
  line-height: 1.01;
}
.conviction {
  display: grid;
  grid-template-columns: 110px minmax(140px, .45fr) minmax(0, 1fr);
  gap: 40px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 70px 0 90px;
  border-top: 1px solid var(--line);
}
.conviction:last-child { border-bottom: 1px solid var(--line); }
.conviction-index { color: var(--blue); font-size: 13px; font-weight: 720; letter-spacing: .16em; }
.conviction-label { font-size: 14px; font-weight: 680; }
.conviction-copy { max-width: 740px; }
.conviction-copy h3 {
  margin: -10px 0 28px;
  font-size: clamp(31px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.conviction-copy p { max-width: 630px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.conviction-copy p strong { color: var(--ink-soft); font-weight: 750; }
.conviction-pause { display: block; margin-top: 22px; color: var(--ink-soft); font-weight: 650; }
.conviction-punchline {
  grid-column: 2 / -1;
  display: block;
  margin: 20px 0 0;
  color: var(--blue);
  font-size: clamp(45px, 5.45vw, 77px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .92;
}

.approach {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  min-height: 820px;
  padding: 130px max(40px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6,17,29,.98) 10%, rgba(8,38,61,.94) 100%),
    var(--ink);
}
.approach::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -30vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
}
.approach-symbol { position: relative; z-index: 1; width: min(38vw, 460px); opacity: .9; }
.approach-symbol::before {
  content: "";
  position: absolute;
  inset: 18%;
  background: rgba(31,157,225,.3);
  border-radius: 50%;
  filter: blur(75px);
}
.approach-symbol img { position: relative; }
.approach-copy { position: relative; z-index: 2; max-width: 760px; }
.section-kicker-light { color: var(--blue-bright); }
.approach h2 span { color: var(--blue-bright); }
.approach-copy > p:not(.section-kicker) { max-width: 690px; margin: 35px 0 0; color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.75; }
.approach-principles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.approach-principles span { padding: 10px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }

.early-access {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
  align-items: end;
  padding: 150px max(40px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.62), transparent 24%),
    linear-gradient(135deg, #dff4ff, #73c8f5 110%);
}
.access-copy > p:not(.section-kicker) { max-width: 540px; margin: 30px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.access-panel { padding: 42px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.9); border-radius: 18px; box-shadow: 0 30px 80px rgba(7,22,36,.13); backdrop-filter: blur(12px); }
.field label { display: block; margin-bottom: 11px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.input-row { display: flex; gap: 10px; }
.input-row input {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(7,22,36,.16);
  border-radius: 8px;
  outline: none;
}
.input-row input::placeholder { color: #8b9ba7; }
.input-row input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(19,143,214,.1); }
.field-note { margin: 13px 0 0; color: var(--muted); font-size: 12px; }
.form-error { margin: 12px 0 0; color: #a31d2d; font-size: 13px; }
.form-success { display: flex; align-items: center; gap: 18px; min-height: 118px; }
.form-success[hidden] { display: none; }
.success-icon { display: grid; place-items: center; flex: 0 0 52px; width: 52px; height: 52px; color: var(--white); background: var(--ink); border-radius: 50%; font-weight: 800; }
.form-success h3 { margin: 0 0 7px; font-size: 23px; }
.form-success p { margin: 0; color: var(--muted); line-height: 1.5; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 34px max(28px, calc((100vw - var(--max)) / 2));
  color: rgba(255,255,255,.58);
  background: var(--ink);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand-footer { color: var(--white); font-size: 15px; }
.brand-footer img { width: 31px; height: 31px; }
.site-footer p { margin: 0; }
.site-footer p:last-child { justify-self: end; }

.details-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 36%, rgba(24,143,214,.34), transparent 30%),
    linear-gradient(126deg, #06111d 0%, #0a2135 55%, #0b3353 100%);
}
.details-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: -17vw;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.details-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: center;
  gap: 80px;
  width: min(calc(100% - 80px), var(--max));
  min-height: 720px;
  margin: 0 auto;
  padding: 145px 0 90px;
}
.details-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(58px, 7.1vw, 104px);
  font-weight: 460;
  letter-spacing: -.06em;
  line-height: .94;
}
.details-hero h1 span { color: var(--blue-bright); }
.details-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 35px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1.7;
}
.details-hero-mark { position: relative; justify-self: end; width: min(31vw, 410px); }
.details-hero-mark::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: rgba(50,170,235,.28);
  filter: blur(70px);
}
.details-hero-mark img { position: relative; width: 100%; filter: drop-shadow(0 30px 70px rgba(0,0,0,.25)); }

.details-statement { padding: 145px 40px; background: var(--white); }
.details-statement-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; width: min(100%, var(--max)); margin: 0 auto; }
.details-statement h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 480;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.details-statement-copy { align-self: end; max-width: 590px; }
.details-statement-copy p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.details-statement-copy strong { display: block; margin-top: 25px; color: var(--ink); font-size: 20px; line-height: 1.5; }

.details-domains { padding: 130px 40px 160px; background: var(--paper); }
.details-domains-heading { width: min(100%, var(--max)); margin: 0 auto 80px; }
.details-domains-heading h2 { margin: 0; font-size: clamp(42px, 4.8vw, 68px); font-weight: 480; letter-spacing: -.05em; line-height: 1.04; }
.detail-domain {
  display: grid;
  grid-template-columns: 90px minmax(160px, .45fr) minmax(0, 1fr);
  gap: 42px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px 0 74px;
  border-top: 1px solid var(--line);
}
.detail-domain:last-child { border-bottom: 1px solid var(--line); }
.detail-number { color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: .16em; }
.detail-name { font-size: 14px; font-weight: 700; }
.detail-body { max-width: 720px; }
.detail-body h3 { margin: -8px 0 22px; font-size: clamp(31px, 3.4vw, 49px); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; }
.detail-body p { max-width: 640px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.detail-result { display: block; margin-top: 28px; color: var(--blue); font-size: 17px; font-weight: 720; }

.details-unity {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 120px 40px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: linear-gradient(128deg, #06111d, #0a2b47);
}
.details-unity::before {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.details-unity-inner { position: relative; z-index: 2; width: min(100%, 940px); }
.details-unity-mark { width: 90px; margin: 0 auto 34px; opacity: .92; }
.details-unity h2 { margin: 0; font-size: clamp(48px, 6.4vw, 88px); font-weight: 470; letter-spacing: -.058em; line-height: .98; }
.details-unity h2 span { color: var(--blue-bright); }
.details-unity p:not(.section-kicker) { max-width: 710px; margin: 32px auto 0; color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.7; }

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

@keyframes breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.012); }
}

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { height: auto; min-height: 860px; }
  .hero-inner { grid-template-columns: 1fr; width: min(calc(100% - 48px), 720px); padding-top: 150px; }
  .hero-mark { position: absolute; right: -150px; bottom: 18px; width: 460px; opacity: .28; }
  .mark-label { display: none; }
  .hero-copy { align-self: center; }
  .conviction { grid-template-columns: 70px minmax(110px, .3fr) 1fr; gap: 24px; }
  .approach { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; padding-bottom: 120px; }
  .approach-symbol { position: absolute; right: -90px; bottom: -70px; width: 440px; opacity: .16; }
  .approach-copy { max-width: 760px; }
  .early-access { grid-template-columns: 1fr; gap: 58px; }
}

@media (max-width: 700px) {
  .site-header { width: calc(100% - 28px); height: 70px; }
  .site-header.scrolled { top: 8px; width: calc(100% - 16px); }
  .brand { font-size: 16px; letter-spacing: .21em; }
  .brand img { width: 34px; height: 34px; }
  .button-small { min-height: 36px; padding: 0 12px; }
  .hero { min-height: 790px; }
  .hero-inner { width: calc(100% - 36px); padding-top: 125px; padding-bottom: 90px; }
  .hero h1 { font-size: clamp(47px, 14vw, 70px); }
  .hero-intro br { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-mark { right: -190px; bottom: 20px; width: 410px; }
  .hero-foot { display: none; }
  .manifesto, .convictions { padding: 100px 20px; }
  .section-heading { margin-bottom: 64px; }
  .conviction { grid-template-columns: 48px 1fr; gap: 15px; padding: 48px 0 62px; }
  .conviction-label { grid-column: 2; grid-row: 1; }
  .conviction-copy { grid-column: 2; }
  .conviction-copy h3 { margin-top: 0; }
  .conviction-punchline { grid-column: 2; font-size: clamp(35px, 11.2vw, 51px); }
  .approach, .early-access { padding: 100px 20px; }
  .access-panel { padding: 25px; }
  .input-row { flex-direction: column; }
  .input-row .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p:nth-child(2) { display: none; }
}

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

@media (max-width: 960px) {
  .details-hero-inner { grid-template-columns: 1fr; width: min(calc(100% - 48px), 760px); }
  .details-hero-mark { position: absolute; right: -130px; bottom: 0; width: 430px; opacity: .2; }
  .details-statement-inner { grid-template-columns: 1fr; gap: 42px; }
  .detail-domain { grid-template-columns: 70px minmax(130px, .35fr) 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  .details-hero, .details-hero-inner { min-height: 700px; }
  .details-hero-inner { width: calc(100% - 36px); padding-top: 125px; }
  .details-hero h1 { font-size: clamp(49px, 14vw, 72px); }
  .details-hero-mark { right: -170px; width: 390px; }
  .details-statement, .details-domains, .details-unity { padding-left: 20px; padding-right: 20px; }
  .details-statement { padding-top: 100px; padding-bottom: 100px; }
  .details-domains { padding-top: 100px; padding-bottom: 110px; }
  .detail-domain { grid-template-columns: 46px 1fr; gap: 14px; padding: 48px 0 58px; }
  .detail-name { grid-column: 2; grid-row: 1; }
  .detail-body { grid-column: 2; }
}
