:root {
  --bg: #050608;
  --bg-soft: #080a0f;
  --panel: #0b0e14;
  --panel-2: #0f131b;
  --ink: #f3f6ff;
  --muted: #969fac;
  --quiet: #5d6572;
  --line: rgba(178, 193, 219, 0.13);
  --line-strong: rgba(178, 193, 219, 0.24);
  --blue: #3e70ff;
  --blue-bright: #77a0ff;
  --blue-soft: rgba(62, 112, 255, 0.13);
  --shell: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-height: 88px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: #2b3240 var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--blue); color: #fff; }

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 4px;
  background: #fff;
  color: #050608;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(100%, calc(var(--shell) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #244fdb, #8cb0ff);
  box-shadow: 0 0 14px rgba(79, 127, 255, .65);
  transform: scaleX(0);
  transform-origin: left;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background .35s, border-color .35s, backdrop-filter .35s;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 72px;
  border-color: var(--line);
  background: rgba(5, 6, 8, .8);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }

.brand-mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--blue-bright);
  stroke-width: 1.6;
  stroke-linejoin: round;
  transition: filter .3s, transform .3s var(--ease);
}

.brand:hover .brand-mark { filter: drop-shadow(0 0 8px rgba(87, 135, 255, .6)); transform: scale(1.04); }
.brand-mark .brand-mark-eye { stroke: #f3f6ff; stroke-width: 1.2; stroke-linecap: round; }

.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong { font-family: "Sora", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: -.015em; }
.brand-type small { margin-top: 7px; color: var(--quiet); font-size: 8px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); }

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: #a5adba;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .015em;
  transition: color .25s;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--blue-bright);
  transition: right .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { right: 0; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: #dfe6f6;
  font-size: 12px;
  font-weight: 500;
  transition: border-color .25s, background .25s, color .25s;
}

.header-cta span { color: var(--blue-bright); transition: transform .25s var(--ease); }
.header-cta:hover { border-color: rgba(105, 147, 255, .55); background: var(--blue-soft); color: #fff; }
.header-cta:hover span { transform: translateY(2px); }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  padding: 42px var(--gutter);
  background: rgba(5, 6, 8, .98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  overflow: auto;
}

.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; }

.mobile-menu nav > a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 7vw, 2rem);
  line-height: 1.15;
}

.mobile-menu nav > a > span { color: var(--blue-bright); font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: .1em; }
.mobile-menu .mobile-apply { justify-content: space-between; margin-top: 28px; padding: 18px 20px; border: 1px solid var(--blue); background: var(--blue); font-size: 15px; }

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050608;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #050608 0%, rgba(5, 6, 8, .97) 31%, rgba(5, 6, 8, .46) 58%, rgba(5, 6, 8, .04) 82%),
    linear-gradient(0deg, #050608 0%, transparent 20%, transparent 76%, rgba(5, 6, 8, .72) 100%);
}

.hero-art {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 26%;
  pointer-events: none;
  transform: translate3d(calc(var(--mx, 0) * 7px), calc(var(--my, 0) * 5px), 0) scale(1.025);
  transform-origin: center right;
  transition: transform .35s ease-out;
}

.hero-art picture,
.hero-art img { width: 100%; height: 100%; }
.hero-art img { object-fit: cover; object-position: 61% 50%; filter: contrast(1.03) saturate(.94); }

.hero-glow {
  position: absolute;
  z-index: 0;
  width: 55vw;
  height: 55vw;
  top: 16%;
  right: -12%;
  border-radius: 50%;
  background: rgba(38, 81, 212, .12);
  filter: blur(100px);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(142, 162, 200, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 162, 200, .1) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 64%);
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: max(760px, 100svh);
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 80px;
}

.hero-copy { width: min(660px, 55vw); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #abb4c3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow i { width: 18px; height: 1px; background: var(--line-strong); }
.signal-dot { width: 6px; height: 6px; border-radius: 50%; background: #5280ff; box-shadow: 0 0 0 4px rgba(62,112,255,.08), 0 0 14px #3e70ff; animation: signal 2.6s ease-in-out infinite; }

.hero h1,
.section-heading h2,
.limit-copy h2,
.context-copy h2,
.join-heading h2,
.apply-inner h2,
.faq-heading h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .99;
}

.hero h1 {
  max-width: 12ch;
  margin-top: 28px;
  font-size: clamp(3.35rem, 6.25vw, 6.55rem);
}

h1 em,
h2 em { color: var(--blue-bright); font-style: normal; font-weight: inherit; }

.hero-lede {
  max-width: 55ch;
  margin: 30px 0 0;
  color: #aab2c0;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 38px; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.16) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}

.button:hover::before { transform: translateX(120%); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .3s var(--ease); }
.button:hover svg { transform: translateX(4px); }

.button-primary { background: var(--blue); color: #fff; box-shadow: 0 16px 40px -20px rgba(62,112,255,.9); }
.button-primary:hover { background: #4a79ff; box-shadow: 0 18px 50px -17px rgba(62,112,255,.8); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #b7bfcc;
  font-size: 12px;
  font-weight: 500;
  transition: color .25s;
}

.text-link span { color: var(--blue-bright); transition: transform .3s var(--ease); }
.text-link:hover { color: #fff; }
.text-link:hover span { transform: translateY(4px); }

.hero-index {
  width: min(790px, 66%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 13, .56);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-index-item {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px 24px;
  border-right: 1px solid var(--line);
}

.hero-index-item:last-child { border-right: 0; }
.index-label { color: var(--quiet); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.hero-index-item strong { margin-top: 10px; color: #dfe5f1; font-family: "Sora", sans-serif; font-size: 12px; font-weight: 500; }
.hero-index-item strong b { margin-right: 7px; color: var(--blue-bright); font-size: 18px; font-weight: 500; }

.scroll-mark {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #666f7d;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-mark i { position: relative; display: block; width: 48px; height: 1px; overflow: hidden; background: var(--line); }
.scroll-mark i::after { content: ""; position: absolute; inset: 0; background: var(--blue-bright); transform: translateX(-100%); animation: scroll-line 2.4s ease-in-out infinite; }

.hero-reveal { opacity: 1; transform: translateY(22px); animation: hero-in .9s var(--ease) forwards; }
.hero-reveal.r1 { animation-delay: .08s; }
.hero-reveal.r2 { animation-delay: .18s; }
.hero-reveal.r3 { animation-delay: .31s; }
.hero-reveal.r4 { animation-delay: .43s; }
.hero-reveal.r5 { animation-delay: .57s; }

/* Factual ticker */
.fact-tape {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080a0e;
}

.fact-tape-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  height: 52px;
  padding-left: 34px;
  color: #767f8c;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  animation: tape 36s linear infinite;
}

.fact-tape-track i { color: #355ec8; font-size: 6px; }

/* Shared section styles */
.section { position: relative; padding-block: clamp(110px, 12vw, 190px); }
.section-heading { margin-bottom: clamp(64px, 8vw, 110px); }
.split-heading, .model-heading, .reviews-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10%; align-items: start; }

.section-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 7px 0 0;
  color: #8e97a4;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker span { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--blue-bright); font-size: 8px; letter-spacing: 0; }

.section-heading h2,
.limit-copy h2,
.context-copy h2,
.join-heading h2,
.apply-copy h2,
.faq-heading h2 { font-size: clamp(2.55rem, 5vw, 5.35rem); }

.section-intro {
  max-width: 54ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.3vw, 1.12rem);
  line-height: 1.75;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js-ready [data-reveal].in-view { opacity: 1; transform: none; }

/* Domain */
.domain-section {
  background:
    radial-gradient(700px 500px at 100% 62%, rgba(44, 82, 183, .08), transparent 70%),
    var(--bg);
}

.domain-layout { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(50px, 8vw, 110px); align-items: center; }

.domain-principles { border-top: 1px solid var(--line); }
.principle { position: relative; display: grid; grid-template-columns: 68px 52px 1fr; grid-template-areas: "num icon title" "num icon copy"; gap: 5px 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.principle::after { content: ""; position: absolute; inset: auto 100% -1px 0; height: 1px; background: var(--blue); transition: right .5s var(--ease); }
.principle:hover::after { right: 0; }
.principle-number { grid-area: num; padding-top: 7px; color: var(--quiet); font-size: 8px; font-weight: 600; letter-spacing: .1em; }
.principle svg { grid-area: icon; width: 30px; margin-top: 2px; fill: none; stroke: #618cff; stroke-width: 1.2; }
.principle h3 { grid-area: title; margin: 0; font-family: "Sora", sans-serif; font-size: clamp(1.05rem, 1.5vw, 1.28rem); font-weight: 500; letter-spacing: -.025em; }
.principle p { grid-area: copy; max-width: 45ch; margin: 4px 0 0; color: #858e9b; font-size: 13px; line-height: 1.65; }

.dossier-wrap { position: relative; padding: 12px; }
.dossier-glow { position: absolute; inset: 18% -10% 0 14%; background: rgba(49, 91, 211, .24); filter: blur(80px); }
.dossier {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(144, 164, 207, .22);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 35%),
    #0b0e14;
  box-shadow: 0 40px 100px -35px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.025);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform .6s var(--ease), border-color .4s;
}

.dossier-wrap:hover .dossier { transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-5px); border-color: rgba(106,145,255,.35); }

.dossier::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .19;
  background-image: linear-gradient(rgba(112,137,188,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(112,137,188,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(#000, transparent 62%);
  mask-image: linear-gradient(#000, transparent 62%);
}

.dossier-head { position: relative; display: flex; align-items: flex-start; justify-content: space-between; padding: 28px 30px; border-bottom: 1px solid var(--line); }
.dossier-head div { display: flex; flex-direction: column; }
.dossier-head small { color: var(--quiet); font-size: 8px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.dossier-head strong { margin-top: 5px; font-family: "Sora", sans-serif; font-size: 13px; font-weight: 500; }
.status { display: flex; align-items: center; gap: 8px; color: #9ca9bb; font-size: 8px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.status i { width: 5px; height: 5px; border-radius: 50%; background: #4f7cff; box-shadow: 0 0 9px #4f7cff; }

.dossier-id { position: relative; min-height: 180px; display: flex; flex-direction: column; justify-content: center; padding: 30px; border-bottom: 1px solid var(--line); }
.dossier-id > span { color: var(--quiet); font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.dossier-id > strong { margin-top: 8px; font-family: "Sora", sans-serif; font-size: clamp(1.7rem, 3vw, 2.65rem); font-weight: 500; letter-spacing: -.05em; }
.dossier-id > strong b { color: #262d39; font-weight: 400; letter-spacing: -.12em; }
.dossier-id svg { position: absolute; right: 29px; width: 82px; fill: none; stroke: rgba(105, 145, 255, .45); stroke-width: 1; }

.dossier-data { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.dossier-data div { min-height: 84px; display: flex; flex-direction: column; justify-content: center; padding: 18px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dossier-data div:nth-child(even) { border-right: 0; }
.dossier-data dt { color: var(--quiet); font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.dossier-data dd { margin: 7px 0 0; color: #dce2ed; font-family: "Sora", sans-serif; font-size: 13px; }
.dossier-data .accent-row dd { color: var(--blue-bright); font-size: 16px; }
.dossier-foot { display: flex; justify-content: space-between; gap: 10px; padding: 19px 28px; color: #68717f; font-size: 7px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.dossier-foot span::before { content: "✓"; margin-right: 6px; color: #557ce5; }
.scan-line { position: absolute; z-index: 2; left: 0; right: 0; top: -1px; height: 1px; opacity: 0; background: linear-gradient(90deg, transparent, #729aff, transparent); box-shadow: 0 0 12px #3e70ff; }
.dossier-wrap:hover .scan-line { opacity: .65; animation: dossier-scan 2.4s ease-in-out infinite; }

.snapshot-panel {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 36px 8%;
  align-items: end;
  margin-top: clamp(72px, 10vw, 130px);
  padding-block: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(620px 240px at 90% 0%, rgba(62,112,255,.12), transparent 68%),
    #080b11;
}
.snapshot-panel::before { content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: linear-gradient(rgba(134,157,211,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(134,157,211,.07) 1px, transparent 1px); background-size: 38px 38px; -webkit-mask-image: linear-gradient(90deg, transparent, #000); mask-image: linear-gradient(90deg, transparent, #000); }
.snapshot-copy, .snapshot-metrics, .snapshot-detail, .snapshot-note { position: relative; }
.snapshot-label { display: flex; align-items: center; gap: 10px; margin: 0; color: #8995a8; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.snapshot-label i, .snapshot-detail i { width: 18px; height: 1px; background: rgba(119,160,255,.48); }
.snapshot-copy h3 { max-width: 12ch; margin: 25px 0 0; font-family: "Sora", sans-serif; font-size: clamp(1.65rem, 3vw, 2.7rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; }
.snapshot-copy > p:last-child { max-width: 53ch; margin: 19px 0 0; color: #8994a4; font-size: 12px; line-height: 1.75; }
.snapshot-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-block: 1px solid var(--line); }
.snapshot-metrics div { min-height: 132px; display: flex; flex-direction: column-reverse; justify-content: center; padding: 22px clamp(13px, 2vw, 25px); border-right: 1px solid var(--line); }
.snapshot-metrics div:last-child { border-right: 0; }
.snapshot-metrics dt { margin-top: 9px; color: #8793a6; font-size: 9px; font-weight: 600; letter-spacing: .11em; line-height: 1.45; text-transform: uppercase; }
.snapshot-metrics dd { margin: 0; color: var(--blue-bright); font-family: "Sora", sans-serif; font-size: clamp(1.55rem, 3vw, 2.45rem); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.snapshot-detail { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; margin: 2px 0 0; color: #a7b1c0; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.snapshot-note { grid-column: 1 / -1; margin: -15px 0 0; color: #8994a5; font-size: 11px; line-height: 1.65; }

/* 12-step build */
.build-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(rgba(5,6,8,.91), rgba(5,6,8,.97)),
    radial-gradient(circle at 20% 20%, #15295d, transparent 35%),
    #07090d;
}

.build-section::before { content: "12"; position: absolute; top: 85px; right: -1.5vw; color: rgba(108, 139, 209, .035); font-family: "Sora", sans-serif; font-size: min(34vw, 520px); font-weight: 700; line-height: .8; letter-spacing: -.13em; pointer-events: none; }
.build-heading { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 12%; align-items: end; }
.build-heading .section-kicker { margin-bottom: 32px; }
.build-heading .section-intro { margin-bottom: 8px; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.build-step { position: relative; min-height: 205px; padding: 27px 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: background .35s, transform .35s var(--ease); }
.build-step::before { content: ""; position: absolute; inset: 100% 0 0; background: linear-gradient(180deg, rgba(62,112,255,.16), rgba(62,112,255,.03)); transition: inset .45s var(--ease); }
.build-step:hover { transform: translateY(-4px); }
.build-step:hover::before { inset: 0; }
.build-step > * { position: relative; }
.build-step > span { color: #527be2; font-size: 9px; font-weight: 600; letter-spacing: .16em; }
.build-step h3 { margin: 62px 0 0; font-family: "Sora", sans-serif; font-size: 15px; font-weight: 500; letter-spacing: -.02em; }
.build-step p { margin: 10px 0 0; color: #747d8a; font-size: 11px; line-height: 1.55; }
.build-step.launch-step { background: var(--blue); }
.build-step.launch-step::before { background: rgba(255,255,255,.08); }
.build-step.launch-step > span, .build-step.launch-step p { color: rgba(255,255,255,.68); }

/* Eight limit */
.limit-section { overflow: hidden; background: #07090d; }
.limit-section::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(circle at center, rgba(82,116,197,.16) 0 1px, transparent 1px); background-size: 28px 28px; -webkit-mask-image: radial-gradient(circle at 30% 50%, #000, transparent 45%); mask-image: radial-gradient(circle at 30% 50%, #000, transparent 45%); }
.limit-layout { position: relative; display: grid; grid-template-columns: 1.05fr .75fr; gap: 13%; align-items: center; }
.limit-visual { position: relative; width: min(100%, 610px); aspect-ratio: 1; display: grid; place-items: center; }
.limit-visual::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(40,80,191,.11); filter: blur(60px); }
.orbit { position: absolute; border: 1px solid rgba(108,140,211,.18); border-radius: 50%; }
.orbit-one { inset: 9%; }
.orbit-two { inset: 23%; border-style: dashed; animation: orbit-spin 32s linear infinite; }
.limit-visual::after { content: ""; position: absolute; inset: 36%; border: 1px solid rgba(108,140,211,.1); border-radius: 50%; }
.orbit-node { position: absolute; width: 8px; height: 8px; border: 2px solid #0b0e14; border-radius: 50%; background: #6790ff; box-shadow: 0 0 14px #3e70ff; }
.orbit-node::after { content: ""; position: absolute; inset: -8px; border: 1px solid rgba(105,145,255,.18); border-radius: 50%; }
.orbit-node.n1 { top: 8.5%; left: 49%; }.orbit-node.n2 { top: 21%; right: 18%; }.orbit-node.n3 { top: 49%; right: 8.5%; }.orbit-node.n4 { right: 18%; bottom: 21%; }
.orbit-node.n5 { bottom: 8.5%; left: 49%; }.orbit-node.n6 { bottom: 21%; left: 18%; }.orbit-node.n7 { top: 49%; left: 8.5%; }.orbit-node.n8 { top: 21%; left: 18%; }
.limit-number { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.limit-number strong { font-family: "Sora", sans-serif; font-size: clamp(6rem, 15vw, 12rem); font-weight: 500; letter-spacing: -.11em; line-height: .8; text-shadow: 0 0 80px rgba(55,104,233,.2); }
.limit-number span { margin-top: 24px; color: #758090; font-size: 9px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.limit-copy .section-kicker { margin-bottom: 34px; }
.plain-fact { display: flex; flex-direction: column; gap: 8px; margin-top: 46px; padding: 22px 0; border-block: 1px solid var(--line); }
.plain-fact span { color: var(--quiet); font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.plain-fact strong { font-family: "Sora", sans-serif; font-size: 13px; font-weight: 500; }

/* Semantic content */
.context-section { border-top: 1px solid var(--line); background: var(--bg); }
.context-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10%; align-items: center; }
.context-copy .section-kicker { margin-bottom: 34px; }
.check-list { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); color: #a0a9b6; font-size: 12px; }
.check-list li span { color: #547ce5; font-size: 8px; letter-spacing: .1em; }

.semantic-map { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(62,112,255,.055), transparent 45%), #080a0e; }
.map-grid { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(139,157,195,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(139,157,195,.08) 1px, transparent 1px); background-size: 36px 36px; }
.map-label { position: absolute; z-index: 3; top: 24px; left: 25px; color: #66707f; font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.semantic-map > svg { position: absolute; inset: 8% 0 0; width: 100%; height: 80%; overflow: visible; }
.map-path { fill: none; stroke: rgba(83,127,240,.55); stroke-width: 1.25; stroke-dasharray: 5 7; }
.map-path.path-a { animation: dash 18s linear infinite; }
.map-path.path-b { opacity: .35; animation: dash-reverse 21s linear infinite; }
.map-path.faint { opacity: .13; stroke-dasharray: none; }
.map-node { position: absolute; z-index: 4; width: 126px; display: flex; flex-direction: column; padding: 18px; border: 1px solid rgba(122,151,219,.22); background: rgba(10,13,19,.9); box-shadow: 0 18px 45px -25px #000; }
.map-node > i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #6892ff; box-shadow: 0 0 12px #3e70ff; }
.map-node small { color: #5d76b7; font-size: 8px; }
.map-node strong { margin-top: 20px; font-family: "Sora", sans-serif; font-size: 11px; font-weight: 500; }
.map-node span { margin-top: 3px; color: #636d7b; font-size: 8px; }
.node-site { left: 7%; top: 41%; }.node-site > i { right: -4px; top: 50%; }
.node-article { left: 50%; top: 38%; transform: translateX(-50%); border-color: rgba(104,145,255,.43); background: rgba(14,20,33,.94); }.node-article > i { left: 50%; bottom: -4px; }
.node-target { right: 7%; top: 41%; }.node-target > i { left: -4px; top: 50%; }
.map-readout { position: absolute; left: 25px; right: 25px; bottom: 24px; display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); }
.map-readout > span { color: #626c7b; font-size: 8px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.map-readout strong { display: flex; align-items: center; gap: 8px; color: #95a2b5; font-size: 8px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.map-readout strong i { width: 5px; height: 5px; border-radius: 50%; background: #5e89fa; box-shadow: 0 0 8px #3e70ff; }

/* Model */
.model-section { border-block: 1px solid var(--line); background: #080a0e; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choice-card { position: relative; min-height: 390px; padding: clamp(28px, 4vw, 50px); overflow: hidden; border: 1px solid var(--line); background: #0b0e13; transition: transform .4s var(--ease), border-color .4s; }
.choice-card::after { content: ""; position: absolute; width: 280px; height: 280px; right: -150px; bottom: -180px; border: 1px solid rgba(109,142,218,.12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(109,142,218,.025), 0 0 0 90px rgba(109,142,218,.018); }
.choice-card:hover { transform: translateY(-6px); border-color: rgba(113,146,223,.34); }
.choice-top { display: flex; align-items: center; justify-content: space-between; }
.choice-top > span { color: #6f7886; font-size: 8px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.choice-top svg { width: 28px; fill: none; stroke: #638bf2; stroke-width: 1.2; }
.choice-card h3 { margin: 74px 0 0; font-family: "Sora", sans-serif; font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 500; letter-spacing: -.045em; }
.choice-card > p { max-width: 48ch; margin: 17px 0 0; color: #929ba9; font-size: 13px; line-height: 1.7; }
.choice-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 34px 0 0; padding: 0; list-style: none; }
.choice-card li { padding: 8px 11px; border: 1px solid var(--line); color: #757f8d; font-size: 8px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.cobalt-card { background: linear-gradient(145deg, rgba(65,107,220,.18), transparent 58%), #0c1018; }

.commercial-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 16px; border: 1px solid var(--line); }
.commercial-strip > div { min-height: 122px; display: flex; flex-direction: column; justify-content: center; padding: 22px 32px; border-right: 1px solid var(--line); }
.commercial-strip > div:last-child { border-right: 0; }
.commercial-strip span { color: #656f7d; font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.commercial-strip strong { margin-top: 9px; font-family: "Sora", sans-serif; font-size: clamp(1.15rem, 2vw, 1.6rem); font-weight: 500; letter-spacing: -.035em; }
.commercial-strip small { color: #727c8a; font-family: "Inter", sans-serif; font-size: 9px; font-weight: 500; letter-spacing: .02em; }

/* Public comments */
.reviews-section { border-bottom: 1px solid var(--line); background: radial-gradient(750px 430px at 18% 42%, rgba(43,81,182,.08), transparent 70%), #07090d; }
.reviews-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.review-card { position: relative; grid-column: span 2; min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: clamp(28px, 3.5vw, 45px); overflow: hidden; border: 1px solid var(--line); background: #0a0d13; transition: transform .4s var(--ease), border-color .4s, background .4s; }
.review-card::after { content: ""; position: absolute; right: -80px; bottom: -115px; width: 230px; aspect-ratio: 1; border: 1px solid rgba(109,142,218,.1); border-radius: 50%; box-shadow: 0 0 0 42px rgba(109,142,218,.02); }
.review-card:hover { border-color: rgba(113,146,223,.34); background: #0c1018; transform: translateY(-3px); }
.review-card > * { position: relative; z-index: 1; }
.review-featured { grid-column: span 6; min-height: 360px; background: linear-gradient(120deg, rgba(62,112,255,.15), transparent 55%), #0a0d13; }
.review-mark { color: var(--blue-bright); font-family: Georgia, serif; font-size: 58px; line-height: .7; opacity: .7; }
.review-card blockquote { max-width: 31ch; margin: 45px 0 54px; color: #dce3ef; font-family: "Sora", sans-serif; font-size: clamp(1.05rem, 1.75vw, 1.35rem); font-weight: 400; letter-spacing: -.025em; line-height: 1.55; }
.review-featured blockquote { max-width: 30ch; margin-top: 62px; font-size: clamp(1.75rem, 4vw, 3.8rem); line-height: 1.25; }
.review-card figcaption { display: flex; flex-direction: column; gap: 7px; }
.review-card figcaption a { width: max-content; color: #aebad0; font-size: 10px; font-weight: 600; transition: color .25s; }
.review-card figcaption a:hover { color: var(--blue-bright); }
.review-card figcaption span { display: flex; align-items: center; gap: 9px; color: #8b96a7; font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.review-card figcaption i { width: 14px; height: 1px; background: #354364; }
.review-disclosure { max-width: 93ch; margin-top: 24px; color: #8b96a6; font-size: 11px; line-height: 1.7; }

/* Joining */
.join-section { background: var(--bg); }
.join-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 12%; align-items: start; }
.join-heading { position: sticky; top: 130px; }
.join-heading .section-kicker { margin-bottom: 34px; }

.join-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); counter-reset: none; }
.join-steps li { position: relative; display: grid; grid-template-columns: 88px 1fr; gap: 24px; padding: 37px 0; border-bottom: 1px solid var(--line); }
.join-steps li::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 1px; background: var(--blue); transition: right .55s var(--ease); }
.join-steps li:hover::after { right: 0; }
.join-steps li > span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 50%; color: #658df3; font-size: 9px; }
.join-steps h3 { margin: 2px 0 0; font-family: "Sora", sans-serif; font-size: 18px; font-weight: 500; letter-spacing: -.025em; }
.join-steps p { max-width: 49ch; margin: 8px 0 0; color: #858e9b; font-size: 12px; line-height: 1.7; }

/* Application */
.apply-section { position: relative; overflow: hidden; scroll-margin-top: var(--header-height); border-block: 1px solid rgba(140,170,239,.28); background: #1f50d8; }
.apply-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, #285ce9, #173db2 58%, #102d8a); }
.apply-grid { position: absolute; inset: 0; z-index: 1; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 68px 68px; -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%); mask-image: radial-gradient(circle at center, #000, transparent 72%); }
.apply-orb { position: absolute; z-index: 1; left: -210px; top: 17%; width: 620px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018), inset 0 0 120px rgba(22,55,157,.5); }
.apply-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 8vw, 110px); align-items: start; padding-block: clamp(100px, 11vw, 160px); }
.apply-copy { position: sticky; top: 130px; padding-top: 25px; }
.apply-copy .eyebrow { color: rgba(255,255,255,.68); }
.apply-copy .eyebrow .signal-dot { background: #fff; box-shadow: 0 0 14px rgba(255,255,255,.8); }
.apply-copy .eyebrow i { background: rgba(255,255,255,.28); }
.apply-copy h2 { margin-top: 34px; color: #fff; }
.apply-copy h2 em { color: #fff; opacity: .62; }
.apply-copy > p { max-width: 43ch; margin: 29px 0 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.75; }
.apply-copy > small { display: block; margin-top: 28px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: .06em; }
.application-card { position: relative; overflow: hidden; border: 1px solid rgba(206,220,255,.2); border-radius: 5px; background: #08122f; box-shadow: 0 44px 110px -38px rgba(2,11,42,.78), inset 0 1px 0 rgba(255,255,255,.04); }
.application-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(440px 190px at 100% 0%, rgba(84,128,255,.18), transparent 70%); }
.application-form { position: relative; padding: clamp(28px, 4vw, 52px); }
.form-heading { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 26px; border-bottom: 1px solid rgba(188,207,255,.15); }
.form-heading > span { font-family: "Sora", sans-serif; font-size: 14px; font-weight: 500; }
.form-heading > small { color: #a0adca; font-size: 9px; letter-spacing: .05em; }
.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 16px; margin-top: 30px; }
.form-field { display: flex; flex-direction: column; min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { margin-bottom: 8px; color: #b9c4dc; font-size: 10px; font-weight: 600; letter-spacing: .06em; }
.form-field label span { color: #8dadff; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid rgba(182,203,255,.16); border-radius: 2px; outline: none; background: rgba(2,8,28,.48); color: #f3f6ff; font-size: 13px; line-height: 1.55; transition: border-color .25s, background .25s, box-shadow .25s; }
.form-field input { height: 49px; padding: 0 15px; }
.form-field textarea { min-height: 112px; padding: 13px 15px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #586581; }
.form-field input:focus, .form-field textarea:focus { border-color: rgba(126,163,255,.68); background: rgba(4,12,38,.7); box-shadow: 0 0 0 3px rgba(78,122,241,.12); }
.form-field input[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: #ff8f9d; }
.field-help { margin-top: 7px; color: #9aa8c6; font-size: 10px; line-height: 1.5; }
.field-error { min-height: 0; margin-top: 0; color: #ffadb7; font-size: 8px; line-height: 1.5; }
.field-error:not(:empty) { min-height: 12px; margin-top: 6px; }
.form-privacy { margin: 25px 0 0; color: #9aa8c6; font-size: 10px; line-height: 1.65; }
.form-privacy a { color: #b9c9ef; text-decoration: underline; text-decoration-color: rgba(185,201,239,.35); text-underline-offset: 3px; }
.form-message { min-height: 0; margin: 18px 0 0; color: #aab8d7; font-size: 10px; line-height: 1.55; }
.form-message:not(:empty) { min-height: 16px; }
.form-message.is-error { color: #ffb3bd; }
.button-light { min-width: 244px; margin-top: 40px; background: #fff; color: #0b1b4b; box-shadow: 0 16px 60px -20px rgba(3,17,55,.65); }
.button-light:hover { background: #f2f5ff; }
.form-submit { width: 100%; margin-top: 18px; border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.form-result { position: relative; min-height: 590px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(38px, 6vw, 72px); }
.form-result[hidden] { display: none; }
.result-icon { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(156,184,255,.38); border-radius: 50%; color: #bcd0ff; font-size: 18px; box-shadow: 0 0 30px rgba(54,102,230,.18); }
.form-result h3 { max-width: 11ch; margin: 38px 0 0; font-family: "Sora", sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; letter-spacing: -.05em; line-height: 1.08; }
.form-result p { max-width: 45ch; margin: 22px 0 0; color: #9daac8; font-size: 13px; line-height: 1.75; }
.form-result [data-result-email]:not(:empty)::before { content: "at "; }

/* FAQ */
.faq-section { background: #07090c; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 12%; align-items: start; }
.faq-heading .section-kicker { margin-bottom: 34px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 0; cursor: pointer; list-style: none; font-family: "Sora", sans-serif; font-size: clamp(.98rem, 1.6vw, 1.15rem); font-weight: 500; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 24px; width: 24px; height: 24px; border: 1px solid var(--line-strong); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 7px; top: 11px; width: 8px; height: 1px; background: #8192b8; transition: transform .3s var(--ease); }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--blue-bright); }
.faq-list details p { max-width: 65ch; margin: -4px 0 29px; color: #858f9d; font-size: 13px; line-height: 1.75; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #050608; }
.footer-main { min-height: 260px; display: grid; grid-template-columns: 1.1fr 1fr auto; align-items: center; gap: 8%; }
.footer-main > p { margin: 0; color: #6e7784; font-size: 11px; line-height: 1.75; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 36px; }
.footer-links a { color: #8c95a2; font-size: 10px; transition: color .25s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #828c9a; font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom b { font-weight: 600; }
.footer-bottom a { display: flex; gap: 10px; transition: color .25s; }
.footer-bottom a:hover { color: var(--blue-bright); }

/* Motion */
@keyframes hero-in { to { transform: none; } }
@keyframes signal { 0%, 100% { opacity: 1; } 50% { opacity: .38; } }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }
@keyframes tape { to { transform: translateX(-50%); } }
@keyframes dossier-scan { 0% { top: 0; } 50%, 100% { top: 100%; } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -240; } }
@keyframes dash-reverse { to { stroke-dashoffset: 240; } }

/* Responsive */
@media (max-width: 1100px) {
  :root { --header-height: 78px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-copy { width: min(650px, 67vw); }
  .hero-index { width: 75%; }
  .domain-layout { gap: 7%; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .context-layout { grid-template-columns: .9fr 1.1fr; gap: 7%; }
  .apply-layout { grid-template-columns: .68fr 1.32fr; gap: 6%; }
}

@media (max-width: 860px) {
  .hero { min-height: 900px; align-items: flex-end; }
  .hero::before { background: linear-gradient(0deg, #050608 0%, rgba(5,6,8,.92) 47%, rgba(5,6,8,.16) 74%, rgba(5,6,8,.35) 100%); }
  .hero-art { inset: 0 -21% 31% -10%; transform: translate3d(calc(var(--mx, 0) * 4px), calc(var(--my, 0) * 3px), 0) scale(1.02); }
  .hero-art img { object-position: 65% 48%; }
  .hero-grid { -webkit-mask-image: linear-gradient(0deg, #000, transparent 60%); mask-image: linear-gradient(0deg, #000, transparent 60%); }
  .hero-content { min-height: 900px; justify-content: flex-end; padding-top: 340px; padding-bottom: 56px; }
  .hero-copy { width: min(680px, 100%); }
  .hero h1 { max-width: 12ch; font-size: clamp(3.2rem, 10vw, 5.3rem); }
  .hero-lede { max-width: 50ch; }
  .hero-index { width: 100%; margin-top: 48px; }
  .scroll-mark { display: none; }
  .split-heading, .model-heading, .reviews-heading, .build-heading { grid-template-columns: 1fr; gap: 32px; }
  .split-heading .section-kicker, .model-heading .section-kicker, .reviews-heading .section-kicker { margin-bottom: 8px; }
  .domain-layout { grid-template-columns: 1fr; gap: 70px; }
  .dossier-wrap { width: min(100%, 570px); margin-inline: auto; }
  .snapshot-panel { grid-template-columns: 1fr; align-items: start; }
  .snapshot-copy h3 { max-width: none; }
  .snapshot-note { margin-top: -12px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .limit-layout { grid-template-columns: 1fr; gap: 70px; }
  .limit-visual { order: 2; width: min(100%, 560px); margin-inline: auto; }
  .context-layout { grid-template-columns: 1fr; gap: 70px; }
  .semantic-map { min-height: 500px; }
  .review-card { grid-column: span 3; }
  .review-featured, .review-card:last-child { grid-column: span 6; }
  .join-layout { grid-template-columns: 1fr; gap: 65px; }
  .join-heading { position: static; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-copy { position: static; max-width: 620px; padding-top: 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 60px; }
  .footer-main { grid-template-columns: 1fr 1fr; min-height: 300px; padding-block: 50px; }
  .footer-links { grid-column: 2; grid-row: 1 / span 2; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .site-header, .site-header.scrolled, .site-header.menu-active { height: 68px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-type strong { font-size: 10px; }
  .brand-type small { font-size: 7px; }
  .mobile-menu { top: 68px; }
  .hero { min-height: 880px; }
  .hero-art { inset: 0 -46% 40% -28%; }
  .hero-art img { object-position: 70% 45%; }
  .hero-content { min-height: 880px; padding-top: 285px; padding-bottom: 32px; }
  .eyebrow { font-size: 8px; gap: 8px; }
  .eyebrow i { width: 12px; }
  .hero h1 { margin-top: 21px; font-size: clamp(2.72rem, 13vw, 4.15rem); line-height: .98; }
  .hero-lede { margin-top: 22px; font-size: .94rem; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; margin-top: 28px; }
  .button { width: 100%; justify-content: space-between; }
  .text-link { justify-content: center; }
  .hero-index { grid-template-columns: 1fr; margin-top: 31px; }
  .hero-index-item { min-height: 68px; padding: 13px 17px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-index-item:last-child { border-bottom: 0; }
  .hero-index-item.featured { display: none; }
  .fact-tape-track { height: 46px; }
  .section { padding-block: 100px; }
  .section-heading { margin-bottom: 60px; }
  .section-heading h2, .limit-copy h2, .context-copy h2, .join-heading h2, .apply-copy h2, .faq-heading h2 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .section-intro { margin-top: 22px; font-size: .95rem; }
  .principle { grid-template-columns: 47px 1fr; grid-template-areas: "num icon" "title title" "copy copy"; gap: 13px; padding: 27px 0; }
  .principle svg { width: 27px; }
  .principle h3 { margin-top: 5px; }
  .dossier-wrap { padding: 0; }
  .dossier { transform: none; }
  .dossier-head, .dossier-id { padding-inline: 20px; }
  .dossier-id svg { right: 18px; width: 65px; }
  .dossier-data div { padding-inline: 19px; }
  .dossier-foot { display: grid; grid-template-columns: 1fr; gap: 8px; padding-inline: 20px; }
  .snapshot-panel { padding: 30px 20px; }
  .snapshot-metrics { grid-template-columns: 1fr 1fr; }
  .snapshot-metrics div { min-height: 112px; border-bottom: 1px solid var(--line); }
  .snapshot-metrics div:nth-child(2n) { border-right: 0; }
  .snapshot-metrics div:nth-last-child(-n+2) { border-bottom: 0; }
  .snapshot-detail { flex-wrap: wrap; line-height: 1.65; }
  .snapshot-detail i { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .build-step { min-height: 165px; padding: 21px 18px; }
  .build-step h3 { margin-top: 41px; font-size: 13px; }
  .build-step p { font-size: 10px; }
  .limit-visual { width: 112%; margin-left: -6%; }
  .limit-number strong { font-size: 7.2rem; }
  .semantic-map { min-height: 560px; }
  .semantic-map > svg { display: none; }
  .map-node { width: calc(100% - 48px); left: 24px; right: auto; transform: none; }
  .node-site { top: 75px; }.node-article { top: 218px; }.node-target { top: 361px; }
  .map-node > i { left: 50%; right: auto; top: auto; bottom: -4px; }
  .map-node::after { content: ""; position: absolute; left: 50%; top: 100%; width: 1px; height: 37px; background: linear-gradient(#648cf2, transparent); }
  .node-target::after { display: none; }
  .map-readout { bottom: 18px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 350px; }
  .choice-card h3 { margin-top: 58px; }
  .commercial-strip { grid-template-columns: 1fr; }
  .commercial-strip > div { min-height: 97px; border-right: 0; border-bottom: 1px solid var(--line); }
  .commercial-strip > div:last-child { border-bottom: 0; }
  .review-card, .review-featured, .review-card:last-child { grid-column: span 6; min-height: 310px; }
  .review-featured blockquote { font-size: clamp(1.65rem, 8.5vw, 2.6rem); }
  .join-steps li { grid-template-columns: 58px 1fr; gap: 14px; }
  .join-steps li > span { width: 43px; height: 43px; }
  .apply-orb { left: -55vw; width: 150vw; }
  .apply-layout { padding-block: 95px; }
  .application-form { padding: 27px 20px; }
  .form-heading { flex-direction: column; gap: 6px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .button-light { width: 100%; }
  .form-result { min-height: 520px; padding-inline: 28px; }
  .faq-list summary { font-size: .96rem; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main > p { margin-top: 0; }
  .footer-links { grid-column: auto; grid-row: auto; }
  .footer-bottom { gap: 20px; }
  .footer-bottom span { max-width: 190px; }
}

@media (max-width: 390px) {
  .hero { min-height: 910px; }
  .hero-content { min-height: 910px; }
  .hero-art { bottom: 43%; }
  .hero h1 { font-size: 2.68rem; }
  .process-grid { grid-template-columns: 1fr; }
  .build-step { min-height: 150px; }
  .build-step h3 { margin-top: 35px; }
}

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