:root {
  --bg: #050608;
  --bg-soft: #080a0f;
  --panel: #0b0e14;
  --panel-2: #0f131b;
  --ink: #f3f6ff;
  --muted: #a4b2c6;
  --quiet: #8290a4;
  --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, 3.2vw, 44px);
  --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;
  -moz-osx-font-smoothing: grayscale;
  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 {
  display: none;
}

.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: 13px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.brand-type small {
  margin-top: 5px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: #c4cddc;
  font-size: 13.5px;
  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 16px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: #dfe6f6;
  font-size: 13.5px;
  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(580px, 84svh);
  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(580px, 84svh);
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 40px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #b8c4d8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  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: 600;
  letter-spacing: -.03em;
  line-height: .99;
}

.hero h1 {
  max-width: 16ch;
  margin-top: 20px;
  font-size: clamp(2.35rem, 3.6vw, 3.6rem);
}

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

.hero-lede {
  max-width: 55ch;
  margin: 18px 0 0;
  color: #c4cddc;
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.7;
}

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

.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: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  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: linear-gradient(135deg, #5a83ff, #2e5ceb);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(133, 166, 255, .4), 0 18px 46px -16px rgba(62, 112, 255, 1), 0 4px 18px -6px rgba(62, 112, 255, .55);
}

.button-primary:hover {
  background: linear-gradient(135deg, #6b90ff, #3d69f5);
  box-shadow: 0 0 0 1px rgba(150, 178, 255, .55), 0 20px 55px -15px rgba(62, 112, 255, 1), 0 5px 22px -6px rgba(62, 112, 255, .6);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #c4d0e2;
  font-size: 13.5px;
  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-ps {
  margin-top: 22px;
  color: #a4b3c7;
  font-size: 13.5px;
  line-height: 1.6;
}

.hero-ps small {
  font-size: inherit;
  color: inherit;
}

.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: #8fa0b8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-index-item strong {
  margin-top: 10px;
  color: #edf2fc;
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  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: #8797ad;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  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: #9bb0cb;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: tape 36s linear infinite;
}

.fact-tape-track i {
  color: #4d7cff;
  font-size: 8px;
}

/* Shared section styles */
.section {
  position: relative;
  padding-block: clamp(56px, 6vw, 96px);
}

.section-heading {
  margin-bottom: clamp(36px, 4vw, 60px);
}

.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: #9fb1c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

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

.section-heading h2,
.limit-copy h2,
.context-copy h2,
.join-heading h2,
.apply-copy h2,
.faq-heading h2 {
  font-size: clamp(1.95rem, 3.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -.03em;
}

.section-intro {
  max-width: 54ch;
  margin: 20px 0 0;
  color: #b0c0d6;
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.7;
}

.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: #94a5bd;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
}

.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: 600;
  letter-spacing: -.015em;
}

.principle p {
  grid-area: copy;
  max-width: 45ch;
  margin: 4px 0 0;
  color: #a4b3c7;
  font-size: 14.5px;
  line-height: 1.7;
}

.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: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dossier-head strong {
  margin-top: 5px;
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b4c3d8;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.status i {
  width: 6px;
  height: 6px;
  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: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dossier-id>strong {
  margin-top: 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

.dossier-id>strong b {
  color: #354256;
  font-weight: 500;
  letter-spacing: -.04em;
}

.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: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dossier-data dd {
  margin: 7px 0 0;
  color: #edf2fb;
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.dossier-data .accent-row dd {
  color: var(--blue-bright);
  font-size: 17.5px;
  font-weight: 600;
}

.dossier-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 19px 28px;
  color: #90a0b2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  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;
}

.profiles-panel {
  position: relative;
  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;
}

.profiles-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);
}

.profiles-head,
.profile-grid,
.snapshot-note {
  position: relative;
}

.profiles-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 26px 8%;
  align-items: end;
}

.snapshot-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #a2b3ca;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.snapshot-label i {
  width: 18px;
  height: 1px;
  background: rgba(119, 160, 255, .48);
}

.profiles-copy h3 {
  max-width: 14ch;
  margin: 25px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.profiles-copy h3 em {
  color: var(--blue-bright);
  font-style: normal;
}

.profiles-intro {
  max-width: 58ch;
  margin: 0;
  color: #a9b8cc;
  font-size: 15px;
  line-height: 1.75;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(30px, 4vw, 46px);
}

.profile-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0d13;
  transition: transform .35s var(--ease), border-color .35s;
}

.profile-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
}

.profile-niche {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.profile-dr {
  color: var(--blue-bright);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.profile-shot,
.profile-refs {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.profile-shot {
  aspect-ratio: 1.72;
  border-bottom: 1px solid var(--line);
}

.profile-refs {
  aspect-ratio: 838 / 570;
}

.profile-shot img,
.profile-refs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-refs img {
  object-position: left top;
}

.profile-refs::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .92));
}

.profile-note {
  margin: auto 0 0;
  padding: 13px 17px;
  border-top: 1px solid var(--line);
  color: #a4b3c7;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.snapshot-note {
  margin: 26px 0 0;
  color: #a4b3c7;
  font-size: 14px;
  line-height: 1.7;
}

/* 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: #6389ea;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}

.build-step h3 {
  margin: 46px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.build-step p {
  margin: 10px 0 0;
  color: #a2b0c3;
  font-size: 14.5px;
  line-height: 1.65;
}

.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, .8);
}

/* 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(3.8rem, 7.5vw, 7rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .8;
  text-shadow: 0 0 80px rgba(55, 104, 233, .2);
}

.limit-number span {
  margin-top: 24px;
  color: #9bb0c9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  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: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plain-fact strong {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

/* 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: #b4c2d6;
  font-size: 14.5px;
}

.check-list li span {
  color: #6389ea;
  font-size: 12px;
  font-weight: 600;
  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: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  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: 136px;
  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: #7f9ee8;
  font-size: 11px;
  font-weight: 600;
}

.map-node strong {
  margin-top: 20px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.map-node span {
  margin-top: 3px;
  color: #94a5bd;
  font-size: 11px;
}

.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: #8b9ab0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.map-readout strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b4c3d8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  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: #9eb0c6;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .13em;
  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: 600;
  letter-spacing: -.025em;
}

.choice-card>p {
  max-width: 48ch;
  margin: 17px 0 0;
  color: #a8b8cc;
  font-size: 15px;
  line-height: 1.75;
}

.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: #9eb0c6;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  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(4, 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 28px;
  border-right: 1px solid var(--line);
}

.commercial-strip>div:last-child {
  border-right: 0;
}

.commercial-strip span {
  color: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.commercial-strip strong {
  margin-top: 9px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

.commercial-strip small {
  color: #9bb0c9;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  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: #e4ecf7;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 450;
  letter-spacing: -.015em;
  line-height: 1.6;
}

.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: #c4d1e7;
  font-size: 13px;
  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: #9eb0c6;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-card figcaption i {
  width: 14px;
  height: 1px;
  background: #354364;
}

.review-disclosure {
  max-width: 93ch;
  margin-top: 24px;
  color: #a4b3c7;
  font-size: 14px;
  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: 13px;
  font-weight: 600;
}

.join-steps h3 {
  margin: 2px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 19.5px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.join-steps p {
  max-width: 49ch;
  margin: 8px 0 0;
  color: #a4b3c7;
  font-size: 14.5px;
  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, .8);
  font-size: 11.5px;
}

.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;
  font-weight: 600;
}

.apply-copy h2 em {
  color: #fff;
  opacity: .75;
}

.apply-copy>p {
  max-width: 43ch;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, .85);
  font-size: 15.5px;
  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, .75);
  font-size: 12px;
  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: 15px;
  font-weight: 600;
}

.form-heading>small {
  color: #b4c2de;
  font-size: 12px;
  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: #c8d3ea;
  font-size: 12.5px;
  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, .2);
  border-radius: 2px;
  outline: none;
  background: rgba(2, 8, 28, .48);
  color: #f3f6ff;
  font-size: 14.5px;
  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: #7b8ba7;
}

.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: #a9b7d5;
  font-size: 12px;
  line-height: 1.5;
}

.field-error {
  min-height: 0;
  margin-top: 0;
  color: #ffadb7;
  font-size: 11.5px;
  line-height: 1.5;
}

.field-error:not(:empty) {
  min-height: 12px;
  margin-top: 6px;
}

.form-privacy {
  margin: 25px 0 0;
  color: #a9b7d5;
  font-size: 12.5px;
  line-height: 1.65;
}

.form-privacy a {
  color: #c2d1f3;
  text-decoration: underline;
  text-decoration-color: rgba(185, 201, 239, .45);
  text-underline-offset: 3px;
}

.form-message {
  min-height: 0;
  margin: 18px 0 0;
  color: #b8c5e2;
  font-size: 12.5px;
  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;
  font-size: 14.5px;
  font-weight: 600;
  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: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: clamp(38px, 5vw, 64px);
}

.form-result[hidden] {
  display: none;
}

.result-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #08122f;
  background: #bcd0ff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 0 40px rgba(156, 184, 255, .35);
}

.form-result h3 {
  max-width: 14ch;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.result-step {
  padding-top: 28px;
  border-top: 1px solid rgba(206, 220, 255, .14);
}

.result-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #bcd0ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.result-kicker span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(156, 184, 255, .38);
  border-radius: 50%;
  font-size: 9px;
  letter-spacing: 0;
}

.result-lead {
  max-width: 44ch;
  margin: 14px 0 0;
  color: #dbe5ff;
  font-size: 1.05rem;
  line-height: 1.55;
}

.result-mail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.02em;
  text-decoration: none;
  border-bottom: 2px solid rgba(156, 184, 255, .55);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s;
}

.result-mail:hover {
  color: #bcd0ff;
  border-color: #bcd0ff;
}

.result-mail svg {
  width: 26px;
  height: 26px;
  fill: #bcd0ff;
  flex: none;
}

.result-guide {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(206, 220, 255, .16);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s, background .2s, transform .2s;
}

.result-guide:hover {
  border-color: rgba(156, 184, 255, .5);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}

.result-guide img {
  width: 120px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.result-guide-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-guide-source {
  color: #8ea3cc;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.result-guide strong {
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.result-guide-cta {
  color: #bcd0ff;
  font-size: .9rem;
  font-weight: 600;
}

[data-apply-done] p strong {
  color: #fff;
  font-weight: 600;
}

/* 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: 600;
  letter-spacing: -.01em;
}

.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: #a4b3c7;
  font-size: 14.5px;
  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: #9bb0cb;
  font-size: 14px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 36px;
}

.footer-links a {
  color: #a4b3c7;
  font-size: 13px;
  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: #9bb0cb;
  font-size: 11.5px;
  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;
  }

  .profiles-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .profiles-copy h3 {
    max-width: none;
  }

  .profiles-intro {
    margin-bottom: 0;
  }

  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .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: 12px;
  }

  .brand-type small {
    font-size: 10px;
  }

  .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: 11px;
    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: 1rem;
    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: 1rem;
  }

  .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;
  }

  .profiles-panel {
    padding-block: 30px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .build-step {
    min-height: 165px;
    padding: 21px 18px;
  }

  .build-step h3 {
    margin-top: 34px;
    font-size: 16px;
  }

  .build-step p {
    font-size: 13.5px;
  }

  .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 {
    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;
  }
}

/* ————— Profiles panel v2: averages, proximity lanes ————— */
.profiles-lede {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 6px;
}

.network-average {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  width: max-content;
  max-width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(9, 12, 18, .6);
}

.network-average>div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
}

.network-average>div:last-child {
  border-right: 0;
}

.network-average dt {
  color: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.network-average dd {
  margin: 0;
  color: var(--blue-bright);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}

.network-average dd small {
  color: #a9bad0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
}

.proximity {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px 6%;
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.proximity-copy h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.14;
}

.proximity-copy h4 em {
  color: var(--blue-bright);
  font-style: normal;
}

.proximity-copy p {
  margin: 18px 0 0;
  color: #a8b8cc;
  font-size: 15px;
  line-height: 1.8;
}

.proximity-lanes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lane {
  padding: 22px 24px 20px;
  border: 1px solid var(--line);
  background: #0a0d13;
}

.lane-network {
  border-color: rgba(88, 127, 229, .4);
  background: linear-gradient(120deg, rgba(62, 112, 255, .1), transparent 60%), #0a0d13;
}

.lane-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #a4b5d6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lane-label i {
  width: 16px;
  height: 1px;
  background: rgba(119, 160, 255, .5);
}

.lane-guest .lane-label {
  color: #94a5bd;
}

.lane-guest .lane-label i {
  background: #3a4353;
}

.lane-chain {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px 0;
}

.chain-node {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 11px 15px;
  border: 1px solid var(--line-strong);
  background: #0d1119;
}

.chain-node small {
  color: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.chain-node strong {
  color: #e2e9f5;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
}

.node-authority {
  border-color: rgba(105, 145, 255, .6);
  background: rgba(62, 112, 255, .14);
}

.node-authority strong {
  color: #fff;
}

.node-authority small {
  color: #a5beff;
}

.node-you strong {
  color: var(--blue-bright);
}

.node-faded {
  border-style: dashed;
  background: transparent;
  opacity: .8;
}

.chain-hop {
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  min-width: 52px;
  flex: 1 0 52px;
  max-width: 78px;
  height: 30px;
  margin-inline: 2px;
}

.chain-hop::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #3d4a63, #5c7cc9);
}

.chain-hop::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #5c7cc9;
  border-right: 1px solid #5c7cc9;
  transform: translateY(-50%) rotate(45deg);
}

.chain-hop span {
  position: absolute;
  left: 50%;
  top: -7px;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #8f9fad;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hop-broken::before {
  background: none;
  border-top: 1px dashed #5a616e;
}

.hop-broken::after {
  display: none;
}

.hop-broken span {
  color: #b09f9f;
}

.lane-note {
  margin: 16px 0 0;
  color: #a2b0c3;
  font-size: 13.5px;
  line-height: 1.65;
}

/* ————— Partner strip ————— */
.partner-strip {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 14px 7%;
  align-items: center;
  margin-top: 16px;
  padding: clamp(28px, 3.5vw, 42px) clamp(24px, 3vw, 40px);
  border: 1px solid rgba(88, 127, 229, .32);
  background: linear-gradient(120deg, rgba(62, 112, 255, .1), transparent 55%), #0a0d13;
}

.partner-strip span {
  display: block;
  margin-bottom: 12px;
  color: #a2b4d4;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.partner-strip strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.partner-strip p {
  margin: 0;
  color: #a8b8cc;
  font-size: 15px;
  line-height: 1.8;
}

/* ————— Apply pillars ————— */
.apply-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.apply-pillars li {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .07);
  color: #eef2ff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ————— Review context panels ————— */
.review-context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.review-context>div {
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(62, 112, 255, .06), transparent 45%), #0a0d13;
}

.review-context h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -.015em;
}

.review-context p {
  margin: 15px 0 0;
  color: #a8b8cc;
  font-size: 15px;
  line-height: 1.8;
}

/* ————— Header CTA emphasis ————— */
.header-cta {
  border-color: rgba(96, 139, 255, .6);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(62, 112, 255, .9);
}

.header-cta span {
  color: #d4e0ff;
}

.header-cta:hover {
  border-color: rgba(150, 178, 255, .8);
  background: #4d7cff;
  color: #fff;
}

.hero-actions .button-primary {
  padding: 21px 33px;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .proximity {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .partner-strip {
    grid-template-columns: 1fr;
  }

  .review-context {
    grid-template-columns: 1fr;
  }

  .network-average {
    width: 100%;
  }

  .network-average>div {
    padding: 14px 18px;
  }
}

@media (max-width: 620px) {
  .network-average {
    grid-template-columns: 1fr;
  }

  .network-average>div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .network-average>div:last-child {
    border-bottom: 0;
  }

  .commercial-strip {
    grid-template-columns: 1fr;
  }

  .lane-chain {
    flex-direction: column;
    align-items: stretch;
  }

  .chain-hop {
    min-width: 0;
    max-width: none;
    width: 1px;
    height: 34px;
    margin: 0 0 0 26px;
    flex: 0 0 auto;
  }

  .chain-hop::before {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #3d4a63, #5c7cc9);
  }

  .chain-hop::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%) rotate(135deg);
  }

  .chain-hop span {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hop-broken::before {
    border-top: 0;
    border-left: 1px dashed #5a616e;
    background: none;
  }
}

/* ————— Subpages: page hero, guides, results ————— */
.subpage main {
  padding-top: var(--header-height);
}

.subpage .site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, .82);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) 0 clamp(60px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  background: #050608;
}

.page-hero-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 130%;
  pointer-events: none;
  background: radial-gradient(720px 340px at 78% 18%, rgba(62, 112, 255, .16), transparent 70%);
}

.page-hero-inner {
  position: relative;
}

.page-hero h1 {
  max-width: 14ch;
  margin: 26px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.02;
}

.page-hero h1 em {
  color: var(--blue-bright);
  font-style: normal;
}

.page-hero-lede {
  max-width: 62ch;
  margin: 26px 0 0;
  color: #a8b8cc;
  font-size: 16px;
  line-height: 1.85;
}

.privacy-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  width: max-content;
  max-width: 100%;
  margin-top: 40px;
  border: 1px solid var(--line);
  background: rgba(9, 12, 18, .6);
}

.privacy-pillars>div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 26px;
  border-right: 1px solid var(--line);
}

.privacy-pillars>div:last-child {
  border-right: 0;
}

.privacy-pillars span {
  color: #94a5bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacy-pillars strong {
  font-family: "Sora", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.results-section,
.guides-section {
  background: #060810;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.case-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(40px, 6vw, 72px);
  border: 1px dashed var(--line-strong);
  background: #0a0d13;
}

.case-empty-mark {
  color: #5a74b5;
  font-size: 13px;
  font-weight: 600;
}

.case-empty h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

.case-empty p {
  max-width: 66ch;
  margin: 0;
  color: #a8b8cc;
  font-size: 15px;
  line-height: 1.8;
}

.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0d13;
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
}

.case-niche {
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0;
}

.case-tag {
  color: var(--blue-bright);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.case-shot {
  position: relative;
  margin: 0;
  background: #fff;
}

.case-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.case-body {
  padding: 18px 19px 20px;
}

.case-body p {
  margin: 0;
  color: #a8b8cc;
  font-size: 14.5px;
  line-height: 1.75;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.case-metrics span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  color: #b8c4d6;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.guides-block {
  margin-bottom: clamp(56px, 8vw, 96px);
}

.guides-block:last-child {
  margin-bottom: 0;
}

.guides-heading {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: clamp(26px, 4vw, 40px);
}

.guides-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 175px;
  padding: 22px 23px;
  border: 1px solid var(--line);
  background: #0a0d13;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(113, 146, 223, .4);
  background: #0c1018;
}

.guide-source {
  width: max-content;
  padding: 5px 9px;
  border: 1px solid var(--line);
  color: #9cb0cb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 4px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.35;
}

.guide-card p {
  margin: 0;
  color: #a4b3c7;
  font-size: 14px;
  line-height: 1.65;
}

.guide-card b {
  margin-top: auto;
  color: var(--blue-bright);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
}

.cta-section {
  border-top: 1px solid var(--line);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, auto);
  gap: 30px 8%;
  align-items: center;
  padding: clamp(36px, 5vw, 64px) clamp(26px, 4vw, 56px);
  border: 1px solid rgba(88, 127, 229, .35);
  background: linear-gradient(120deg, rgba(62, 112, 255, .14), transparent 60%), #0a0d13;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -.025em;
}

.cta-band p {
  max-width: 52ch;
  margin: 16px 0 0;
  color: #a8b8cc;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .cta-band {
    grid-template-columns: 1fr;
  }

  .privacy-pillars {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .privacy-pillars>div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .privacy-pillars>div:last-child {
    border-bottom: 0;
  }

  .guides-heading {
    flex-direction: column;
    gap: 14px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

/* ————— Case cards v1 ————— */
.case-wide {
  grid-column: 1 / -1;
}

.case-wide .case-shot {
  border-bottom: 1px solid var(--line);
}

.case-wide .case-shot img {
  width: 100%;
  height: auto;
}

.case-disclosure {
  margin-top: 24px;
  color: #a4b3c7;
  font-size: 14px;
  line-height: 1.7;
}

.case-empty {
  gap: 10px;
  padding: clamp(30px, 4vw, 48px);
}

.case-shot figcaption {
  padding: 11px 19px;
  border-top: 1px solid rgba(0, 0, 0, .07);
  background: #f6f7fa;
  color: #354256;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.case-shot+.case-shot {
  border-top: 1px solid var(--line);
}

/* ————— Record timeline ————— */
.record-section {
  border-bottom: 1px solid var(--line);
  background: #060810;
}

.record-timeline {
  position: relative;
}

.tl-entry {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px 6%;
  max-width: 980px;
  padding: clamp(30px, 4vw, 46px) 0;
}

.tl-entry::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 174px;
  width: 1px;
  background: var(--line);
}

.tl-entry:first-child::before {
  top: 44px;
}

.tl-entry:last-child::before {
  bottom: auto;
  height: 52px;
}

.tl-entry::after {
  content: "";
  position: absolute;
  top: 44px;
  left: 171px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6790ff;
  box-shadow: 0 0 12px rgba(62, 112, 255, .8);
}

.tl-year {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 44px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
}

.tl-year span {
  margin-bottom: 6px;
  color: #94a5bd;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tl-body {
  padding-top: 4px;
}

.tl-body h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

.tl-body>p {
  max-width: 62ch;
  margin: 12px 0 0;
  color: #a8b8cc;
  font-size: 15px;
  line-height: 1.8;
}

.tl-body>.text-link {
  margin-top: 14px;
  display: inline-flex;
}

.tl-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tl-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: #0a0d13;
}

.tl-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 16px;
  color: rgba(119, 160, 255, .3);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.tl-quote blockquote {
  margin: 0;
  color: #dbe3ee;
  font-size: 14.5px;
  line-height: 1.75;
}

.tl-quote figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tl-quote figcaption a {
  color: #c4d1e7;
  font-size: 12.5px;
  font-weight: 600;
  transition: color .25s;
}

.tl-quote figcaption a:hover {
  color: var(--blue-bright);
}

.tl-quote figcaption span {
  color: #94a5bd;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tl-now .tl-year {
  color: var(--blue-bright);
}

.tl-now::after {
  width: 9px;
  height: 9px;
  left: 170px;
  background: var(--blue-bright);
}

@media (max-width: 860px) {
  .tl-entry {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 26px;
  }

  .tl-entry::before {
    left: 3px;
  }

  .tl-entry::after {
    left: 0;
  }

  .tl-year {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    padding-right: 0;
  }
}

/* ————— Era case grids + payment proofs ————— */
.tl-entry {
  max-width: none;
}

.tl-body>p {
  max-width: 68ch;
}

.tl-cases {
  margin-top: 22px;
}

.tl-cases .case-card {
  background: #0a0d13;
}

.tl-cases .case-shot {
  border-bottom: 1px solid var(--line);
}

.pay-row {
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  background: #0d1017;
}

.pay-label {
  display: block;
  margin-bottom: 10px;
  color: #9eb0c6;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pay-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pay-shot {
  flex: 1 1 220px;
  max-width: 340px;
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.pay-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ————— Results hero: record index ————— */
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 40px 8%;
  align-items: center;
}

.page-hero-grid h1 {
  max-width: none;
}

.record-index {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(9, 12, 18, .72);
}

.record-index-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-strong);
}

.record-index-head span {
  color: #94a5bd;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.record-index-head strong {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--blue-bright);
}

.record-index a {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, border-color .25s;
}

.record-index a:last-child {
  border-bottom: 0;
}

.record-index a:hover {
  background: rgba(62, 112, 255, .08);
}

.record-index b {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}

.record-index span {
  color: #a8b8cc;
  font-size: 13.5px;
  line-height: 1.5;
}

.record-index small {
  color: #94a5bd;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.record-index a:hover small {
  color: var(--blue-bright);
}

.page-hero {
  padding-bottom: clamp(48px, 6vw, 80px);
}

.record-section {
  padding-top: clamp(70px, 8vw, 110px);
}

@media (max-width: 1100px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .record-index {
    max-width: 560px;
  }
}

/* ————— Results hero highlight + full-width era grids ————— */
.hero-highlight {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 30px 0 0;
  padding: 16px 22px 16px 26px;
  border: 1px solid rgba(88, 127, 229, .45);
  border-left: 3px solid var(--blue-bright);
  background: linear-gradient(100deg, rgba(62, 112, 255, .16), rgba(62, 112, 255, .04) 70%);
  color: #d6e0f2;
  font-size: 14.5px;
  line-height: 1.6;
}

.hero-highlight strong {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: -.015em;
}

.tl-cases {
  grid-column: 1 / -1;
  margin-top: 26px;
}

.tl-cases .case-card {
  min-width: 0;
}

.case-shot img,
.pay-shot img,
.profile-shot img,
.profile-refs img {
  cursor: zoom-in;
}

/* ————— Lightbox ————— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(4, 5, 8, .9);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
}

.lightbox.open {
  display: flex;
}

.lightbox-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: min(1280px, 94vw);
  max-height: 92vh;
  border: 1px solid var(--line-strong);
  background: #0a0d13;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(62, 112, 255, .12);
}

.lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}

.lightbox-head span {
  color: #a4b5d6;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: none;
  color: #dfe6f6;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .25s, background .25s;
}

.lightbox-close:hover {
  border-color: rgba(105, 147, 255, .55);
  background: var(--blue-soft);
}

.lightbox-body {
  overflow: auto;
  background: #fff;
}

.lightbox-body img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.lightbox-open {
  overflow: hidden;
}

/* ————— Case stat tiles: the numbers lead ————— */
.case-stats {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  border: 1px solid rgba(88, 127, 229, .38);
  background: linear-gradient(115deg, rgba(62, 112, 255, .13), rgba(62, 112, 255, .03) 70%);
}

.case-stat {
  flex: 1 1 auto;
  min-width: 130px;
  padding: 15px 19px 14px;
  border-right: 1px solid rgba(88, 127, 229, .25);
}

.case-stat:last-child {
  border-right: 0;
}

.case-stat strong {
  display: block;
  color: var(--blue-bright);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.case-stat span {
  display: block;
  margin-top: 7px;
  color: #a8b8cc;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-body {
  padding: 18px 19px 20px;
}

.case-body p {
  color: #a8b8cc;
  font-size: 14.5px;
  line-height: 1.75;
}

.case-body .case-metrics span {
  color: #b0bfd3;
  font-size: 11.5px;
  font-weight: 600;
}

@media (max-width: 620px) {
  .case-stat {
    min-width: 46%;
    border-bottom: 1px solid rgba(88, 127, 229, .2);
  }
}

/* ————— Section: What is the Wolf Network ————— */
.what-is-section {
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 10% 20%, rgba(38, 81, 212, 0.05), transparent 45%), var(--bg);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px 4%;
  align-items: start;
}

.concept-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concept-card {
  position: relative;
  padding: 26px 28px 24px;
  border: 1px solid var(--line);
  background: #090c12;
  border-radius: 4px;
}

.concept-card.highlight-card {
  border-color: rgba(62, 112, 255, 0.4);
  background: linear-gradient(135deg, rgba(62, 112, 255, 0.08), transparent 70%), #0a0d14;
  box-shadow: 0 0 25px rgba(62, 112, 255, 0.06);
}

.concept-card.warning-card {
  border-color: rgba(255, 120, 80, 0.22);
  background: linear-gradient(135deg, rgba(255, 120, 80, 0.04), transparent 70%), #0a0d14;
}

.card-badge {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.warning-card .card-badge {
  color: #ff9d7a;
}

.concept-card h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.concept-card p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #a4b5cb;
}

.concept-card p:last-child {
  margin-bottom: 0;
}

.concept-card strong {
  color: #fff;
}

.concept-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: #080b10;
  border-radius: 4px;
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.visual-header h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.visual-header span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7b8fa8;
}

.flow-lane {
  padding: 20px;
  border: 1px solid var(--line);
  background: #0b0f16;
  border-radius: 4px;
}

.flow-lane.wolf-flow {
  border-color: rgba(62, 112, 255, 0.45);
  background: linear-gradient(135deg, rgba(62, 112, 255, 0.12), transparent 75%), #0c1018;
}

.flow-lane.guest-flow {
  border-color: rgba(255, 255, 255, 0.08);
  background: #080a0f;
  opacity: 0.85;
}

.flow-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.flow-badge strong {
  font-size: 13.5px;
  color: #fff;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3e70ff;
  box-shadow: 0 0 8px #3e70ff;
}

.dead-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #626f84;
}

.flow-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
}

.flow-status.success {
  background: rgba(62, 112, 255, 0.2);
  color: var(--blue-bright);
  border: 1px solid rgba(62, 112, 255, 0.35);
}

.flow-status.fail {
  background: rgba(255, 255, 255, 0.05);
  color: #8c9cb0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.flow-step {
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 8px;
  border: 1px solid var(--line);
  background: #101520;
  border-radius: 3px;
  text-align: center;
}

.flow-step .step-role {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8598b0;
  margin-bottom: 3px;
}

.flow-step strong {
  display: block;
  font-size: 11.5px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
  word-break: break-word;
}

.flow-step small {
  display: block;
  font-size: 9px;
  color: #6c7f96;
}

.wolf-step {
  border-color: rgba(62, 112, 255, 0.6);
  background: rgba(62, 112, 255, 0.18);
}

.wolf-step strong {
  color: var(--blue-bright);
}

.target-step {
  border-color: rgba(80, 200, 120, 0.4);
  background: rgba(80, 200, 120, 0.08);
}

.target-step strong {
  color: #6ae49c;
}

.target-step.dim-target {
  border-color: var(--line);
  background: #0e1219;
}

.target-step.dim-target strong {
  color: #8c9cb0;
}

.orphan-step {
  border-color: rgba(255, 80, 80, 0.35);
  background: rgba(255, 80, 80, 0.08);
}

.orphan-step strong {
  color: #ff8888;
}

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
}

.flow-arrow .arrow-line {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--blue-bright);
}

.flow-arrow .arrow-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--blue-bright);
}

.flow-arrow .arrow-text {
  font-size: 7.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #8aa0bc;
  white-space: nowrap;
}

.broken-arrow .arrow-line {
  background: repeating-linear-gradient(90deg, #ff6b6b, #ff6b6b 4px, transparent 4px, transparent 8px);
}

.broken-arrow .arrow-line::after {
  border-left-color: #ff6b6b;
}

.broken-arrow .arrow-text {
  color: #ff7f7f;
}

.weak-arrow .arrow-line {
  background: #4a5668;
}

.weak-arrow .arrow-line::after {
  border-left-color: #4a5668;
}

.flow-caption {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #8fa2b8;
}

.wolf-flow .flow-caption {
  color: #a2c0ff;
}

@media (max-width: 960px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }
}

/* ————— Section: Aren't PBNs dangerous? ————— */
.danger-section {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 80% 10%, rgba(62, 112, 255, 0.05), transparent 50%), var(--bg);
}

.danger-section .split-heading {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.danger-section .section-kicker {
  justify-content: center;
  margin-bottom: 22px;
}

.story-grid {
  display: block;
}

.story-rail {
  display: none;
}

.story-prose {
  max-width: 720px;
  margin-inline: auto;
}

.story-prose p {
  margin: 0 0 1.25em;
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  line-height: 1.75;
  color: #b0c0d6;
}

.story-prose p.open {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1em;
}

.story-prose p.beat {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: 1.4em 0 1.4em;
}

.story-prose p.stack {
  margin: 0 0 .35em;
  color: var(--ink);
  font-weight: 500;
}

.story-prose p.stack + p:not(.stack) {
  margin-top: 1.25em;
}

.story-actions {
  margin-top: 40px;
}

.story-prose p.punch {
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--blue-bright);
  margin: .3em 0 .4em;
}

@media (max-width: 760px) {
}

/* Limit section: half size, filler */
.limit-section.section {
  padding-block: clamp(32px, 3.5vw, 56px);
}

.limit-layout {
  gap: 8%;
}

.limit-visual {
  width: min(100%, 320px);
  margin-inline: auto;
}

.limit-visual::before {
  filter: blur(34px);
}

.limit-number strong {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.limit-number span {
  margin-top: 14px;
  font-size: 10.5px;
}

.limit-copy h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

/* Model + reviews prose blocks */
.model-prose,
.reviews-prose {
  margin-top: 40px;
}

.callout {
  max-width: 720px;
  margin: 36px auto 0;
  padding: clamp(22px, 3vw, 34px) clamp(22px, 3vw, 36px);
  border: 1px solid rgba(88, 127, 229, .32);
  background: linear-gradient(120deg, rgba(62, 112, 255, .1), transparent 55%), #0a0d13;
}

.callout p {
  margin: 0 0 1em;
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink);
}

.callout p:last-child {
  margin-bottom: 0;
}

.review-shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1160px;
  margin: 8px auto 0;
}

.review-shots figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #090c13;
  overflow: hidden;
}

.review-shots img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .review-shots {
    grid-template-columns: 1fr;
  }
}

/* Footer logo */
.footer-logo {
  display: inline-block;
  line-height: 0;
}

.footer-logo img {
  width: 96px;
  height: auto;
  filter: invert(1);
  opacity: .72;
  transition: opacity .3s;
}

.footer-logo:hover img {
  opacity: 1;
}

.apply-copy>p+p {
  margin-top: 14px;
}

/* Alternative contact group */
.field-group-label {
  display: block;
  margin-bottom: 8px;
  color: #c8d3ea;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.form-field .contact-field {
  display: block;
  margin: 0;
}

.form-field .contact-field span {
  display: block;
  margin-bottom: 6px;
  color: #8fa3c6;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
}

/* Review cards: whole card links to the post */
.review-card figcaption a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.review-card:hover {
  border-color: rgba(119, 160, 255, .45);
}

.reviews-hint {
  color: #8fa3c6;
  font-size: 0.95rem;
}

/* Reviews: compact masonry, cards fit their text */
.reviews-grid {
  display: block;
  column-count: 3;
  column-gap: 16px;
}

.review-card,
.review-featured {
  display: block;
  break-inside: avoid;
  min-height: 0;
  margin: 0 0 16px;
  padding: 26px 28px 22px;
}

.review-featured {
  column-span: all;
  padding: 34px 36px 28px;
}

.review-mark {
  display: none;
}

.review-card blockquote {
  max-width: none;
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.review-featured blockquote {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
}

.review-card::after {
  display: none;
}

@media (max-width: 900px) {
  .reviews-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    column-count: 1;
  }
}

/* Stretched link must anchor to the card, not the caption */
.review-card figcaption {
  position: static;
}

.review-card figcaption a::after {
  z-index: 2;
}

.results-link-row {
  margin-top: 28px;
  text-align: center;
}

.results-link-row {
  margin-top: 40px;
}

.results-link-row .button-primary {
  min-width: 320px;
}

/* Client results section */
.results-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 50% 0%, rgba(62, 112, 255, 0.08), transparent 55%), var(--bg);
}

.results-section .split-heading {
  display: block;
  text-align: center;
}

.results-section .section-kicker {
  justify-content: center;
  margin-bottom: 22px;
}

.results-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.results-cta .button-primary {
  min-width: 360px;
  min-height: 66px;
  font-size: 1.05rem;
}

.results-intro {
  max-width: none;
  margin: 18px auto 0;
  text-align: center;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--ink);
}

/* SEO guides: thumbnails + social boxes */
.guide-card-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: -22px -23px 6px;
  width: calc(100% + 46px);
  border-bottom: 1px solid var(--line);
}

.social-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 820px;
  margin-top: 30px;
}

.social-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: #0a0d13;
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s var(--ease), border-color .3s;
}

.social-box:hover {
  transform: translateY(-3px);
  border-color: rgba(113, 146, 223, .4);
}

.social-net {
  width: max-content;
  padding: 5px 9px;
  border: 1px solid var(--line);
  color: #9cb0cb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.social-box strong {
  margin-top: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.social-handle {
  color: var(--blue-bright);
  font-size: 13px;
}

.social-box p {
  margin: 6px 0 0;
  color: #a4b3c7;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .social-boxes {
    grid-template-columns: 1fr;
  }
}

/* SEO guides hero with photo */
.guides-hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.guides-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-top: 6px;
}

@media (max-width: 760px) {
  .guides-hero {
    grid-template-columns: 1fr;
  }
  .guides-photo {
    width: 160px;
    height: 160px;
  }
}

.social-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-logo {
  width: 26px;
  height: 26px;
  color: var(--ink);
  flex: none;
}

.social-box:hover .social-logo {
  color: var(--blue-bright);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  position: relative;
  padding: 10px 0;
  border: 0;
  background: none;
  color: #c4cddc;
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .015em;
  cursor: pointer;
  transition: color .25s;
}

.nav-dropdown-toggle span {
  font-size: 10px;
  margin-left: 4px;
  color: var(--blue-bright);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  color: var(--ink);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 200px;
  padding: 8px;
  border: 1px solid var(--line);
  background: #0a0d13;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 3px;
}

.desktop-nav .nav-dropdown-menu a::after {
  display: none;
}

.desktop-nav .nav-dropdown-menu a:hover {
  background: rgba(62, 112, 255, .12);
}

.mobile-group {
  display: block;
  margin: 18px 0 6px;
  color: #8fa3c6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .result-guide {
    grid-template-columns: 1fr;
  }
  .result-guide img {
    width: 100%;
  }
}

.review-card .review-more {
  display: inline-block;
  margin-top: 14px;
  color: #8290a4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(178, 193, 219, .2);
  transition: color .2s, border-color .2s;
}
.review-card .review-more:hover { color: #bcd0ff; border-color: #bcd0ff; }

.kicker-column { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.kicker-portrait { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.kicker-portrait img {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover; object-position: 50% 40%;
  border: 2px solid rgba(119, 160, 255, .55);
  box-shadow: 0 0 0 6px rgba(62, 112, 255, .12), 0 20px 50px -20px rgba(2, 11, 42, .9);
}
.kicker-portrait figcaption { color: #8290a4; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
@media (max-width: 1080px) { .kicker-column { flex-direction: row; align-items: center; gap: 20px; } .kicker-portrait img { width: 72px; height: 72px; } }
