:root {
  --paper: #f2f0eb;
  --paper-bright: #faf9f6;
  --ink: #111113;
  --ink-soft: #26262b;
  --muted: #6d6b68;
  --line: rgba(17, 17, 19, 0.14);
  --violet: #7567f8;
  --violet-soft: #9a90ff;
  --acid: #d9ff57;
  --night: #111116;
  --night-soft: #1a1a22;
  --white: #fff;
  --shell: min(1320px, calc(100vw - 64px));
  --sans: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--shell); margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 84px;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}
.site-header.scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(242, 240, 235, 0.9);
  backdrop-filter: blur(18px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.wordmark-glyph {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 600;
}
.site-nav .nav-legal { display: none; }
.site-nav a,
.header-cta,
.text-link {
  position: relative;
}
.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-nav a.active::after { transform: scaleX(1); }
.header-cta {
  justify-self: end;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.header-cta span { margin-left: 14px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 32px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(117, 103, 248, 0.16), transparent 28%),
    linear-gradient(90deg, transparent 49.95%, rgba(17,17,19,.07) 50%, transparent 50.05%);
}
.hero::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(17,17,19,.06);
  content: "";
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: var(--shell);
  min-height: calc(100svh - 260px);
  margin: 0 auto;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow span {
  color: var(--violet);
}
.eyebrow-light { color: rgba(255,255,255,.72); }
.eyebrow-light span { color: var(--acid); }
.hero-copy h1,
.statement h2,
.section-heading h2,
.chapter-copy h2,
.platform-heading h2,
.portal-copy h2,
.ownership-shell > h2,
.faq-heading h2,
.early-copy h2 {
  margin: 0;
  font-size: clamp(54px, 6.4vw, 104px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}
h1 em,
h2 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero-intro {
  max-width: 620px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 17px 19px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--violet); border-color: var(--violet); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--acid); border-color: var(--acid); }
.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
}

.hero-product {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}
.product-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(117,103,248,.25);
  border-radius: 50%;
  transform: translate(-50%, -52%);
}
.product-aura::before,
.product-aura::after {
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(17,17,19,.12);
  border-radius: inherit;
  content: "";
}
.product-aura::after { inset: 28%; }
.drive {
  position: absolute;
  width: 150px;
  height: 350px;
  filter: drop-shadow(32px 42px 24px rgba(16,15,24,.25));
  transform-style: preserve-3d;
}
.drive-primary {
  top: 40px;
  left: 39%;
  z-index: 3;
  transform: rotate(-18deg) rotateY(-12deg) rotateX(5deg);
}
.drive-secondary {
  top: 128px;
  left: 57%;
  z-index: 2;
  transform: rotate(18deg) rotateY(16deg) rotateX(4deg) scale(.93);
}
.drive-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 17px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(255,255,255,.09), transparent 35%),
    var(--night);
  color: white;
}
.drive-face::after {
  position: absolute;
  top: -50%;
  left: -120%;
  width: 100%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  content: "";
  transform: rotate(20deg);
}
.drive-primary:hover .drive-face::after,
.drive-secondary:hover .drive-face::after {
  left: 140%;
  transition: left 900ms ease;
}
.drive-edge {
  position: absolute;
  top: 10px;
  right: -10px;
  width: 15px;
  height: calc(100% - 20px);
  border-radius: 0 12px 12px 0;
  background: #2b2b34;
  transform: translateZ(-1px);
}
.drive-face div { display: grid; gap: 4px; }
.drive-face small { font-size: 8px; letter-spacing: .24em; }
.drive-face strong { font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: .12em; }
.drive-face > i { align-self: end; color: rgba(255,255,255,.45); font: normal 10px var(--mono); }
.drive-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font: 10px var(--mono);
}
.drive-contact {
  position: absolute;
  bottom: -32px;
  left: 43px;
  width: 64px;
  height: 36px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, #b99b4e 0 17%, #e4c875 17% 33%, #b99b4e 33% 50%, #e4c875 50% 67%, #b99b4e 67% 83%, #e4c875 83%);
}
.product-caption {
  position: absolute;
  right: 4%;
  bottom: 20px;
  left: 16%;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font: 10px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-caption span { display: flex; align-items: center; gap: 8px; }
.product-caption small { color: var(--muted); font: inherit; }
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ebd63;
  box-shadow: 0 0 0 4px rgba(110,189,99,.14);
}
.hero-principles {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--shell);
  margin: 22px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-principles > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px 12px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.hero-principles > div:first-child { padding-left: 0; }
.hero-principles > div:last-child { border: 0; }
.hero-principles span { grid-row: 1 / 3; color: var(--violet); font: 10px var(--mono); }
.hero-principles strong { font-size: 12px; }
.hero-principles small { color: var(--muted); font-size: 10px; }

.statement { padding: 160px 0; }
.statement-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 10%;
  align-items: start;
}
.statement h2 { max-width: 800px; font-size: clamp(44px, 5.2vw, 78px); }
.statement-grid > div { padding-top: 14px; }
.statement-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.statement-grid .statement-answer {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.statement-answer strong { display: block; margin-top: 8px; color: var(--violet); }

.system-section { padding: 80px 0 170px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: end;
  margin-bottom: 70px;
}
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { font-size: clamp(52px, 5.6vw, 84px); }
.section-heading > p:last-child {
  max-width: 480px;
  margin: 0 0 6px auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.system-rail { border-top: 1px solid var(--ink); }
.system-card {
  display: grid;
  grid-template-columns: 55px 110px 1fr 40px;
  gap: 22px;
  align-items: center;
  min-height: 160px;
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, padding 200ms ease;
}
.system-card:hover { padding-left: 18px; background: var(--paper-bright); }
.system-index { align-self: start; padding-top: 10px; color: var(--violet); font: 10px var(--mono); }
.system-card small { display: block; margin-bottom: 8px; color: var(--muted); font: 9px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.system-card h3 { margin: 0; font-size: clamp(28px, 3vw, 44px); font-weight: 500; letter-spacing: -.04em; }
.system-card p { max-width: 520px; margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.system-card > b { justify-self: end; font-size: 22px; font-weight: 400; transition: transform 180ms ease; }
.system-card:hover > b { transform: translate(5px, 5px); }
.architecture-line {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr 30px 1.35fr;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}
.architecture-line > div { display: grid; gap: 8px; }
.architecture-line small {
  color: var(--violet);
  font: 8px var(--mono);
  letter-spacing: .11em;
}
.architecture-line strong {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}
.architecture-line > span {
  color: var(--muted);
  font: 14px var(--mono);
  text-align: center;
}
.system-icon { position: relative; width: 80px; height: 80px; }
.mini-drives i { position: absolute; top: 10px; left: 22px; width: 25px; height: 58px; border-radius: 4px; background: var(--ink); transform: rotate(-12deg); }
.mini-drives i:last-child { left: 42px; background: var(--violet); transform: rotate(12deg); }
.mini-portal { border: 2px solid var(--ink); border-radius: 8px; }
.mini-portal i { position: absolute; inset: 8px; border: 1px solid var(--line); background: radial-gradient(circle, var(--violet) 0 3px, transparent 4px); }
.mini-core { border: 1px solid var(--line); border-radius: 50%; }
.mini-core i { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--violet); transform: translate(-50%, -50%); }
.mini-core i:nth-child(2) { top: 8px; left: 12px; width: 7px; height: 7px; background: var(--ink); }
.mini-core i:nth-child(3) { top: 65px; left: 66px; width: 7px; height: 7px; background: var(--ink); }
.mini-platform { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.mini-platform i { border: 1px solid var(--ink); }
.mini-platform i:nth-child(1) { background: var(--violet); border-color: var(--violet); }

.product-chapter { background: var(--night); color: white; }
.chapter-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  width: var(--shell);
  min-height: 760px;
  margin: 0 auto;
}
.chapter-copy { padding: 110px 7% 105px 0; }
.chapter-copy h2 { font-size: clamp(52px, 5.6vw, 86px); }
.chapter-copy .chapter-lead,
.portal-copy .chapter-lead {
  max-width: 600px;
  margin: 36px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 15px;
  line-height: 1.75;
}
.feature-list { display: grid; gap: 0; margin: 58px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.17); }
.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.feature-list li > span { color: var(--acid); font: 9px var(--mono); }
.feature-list div { display: grid; gap: 5px; }
.feature-list strong { font-size: 13px; }
.feature-list small { color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.5; }
.drives-stage {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at center, rgba(117,103,248,.18), transparent 44%);
}
.stage-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, #000, transparent 76%);
}
.flat-drive {
  position: absolute;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 160px;
  height: 370px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  box-shadow: 45px 60px 70px rgba(0,0,0,.38);
  background: linear-gradient(145deg, #252530, #101014 60%);
}
.flat-drive span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font: 11px var(--mono);
}
.flat-drive small { align-self: end; margin-bottom: 5px; font: 8px var(--mono); letter-spacing: .26em; }
.flat-drive strong { font: 11px var(--mono); font-weight: 400; letter-spacing: .13em; }
.flat-drive::after {
  position: absolute;
  right: 41px;
  bottom: -36px;
  width: 69px;
  height: 40px;
  border-radius: 0 0 6px 6px;
  background: #c4aa61;
  content: "";
}
.flat-one { top: 110px; left: 21%; z-index: 2; transform: rotate(-18deg); }
.flat-two { top: 200px; left: 53%; transform: rotate(16deg) scale(.9); }
.stage-label {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(17,17,22,.8);
  color: rgba(255,255,255,.75);
  font: 8px var(--mono);
  letter-spacing: .12em;
}
.label-one { top: 86px; left: 10%; }
.label-two { right: 8%; bottom: 180px; }
.stage-note {
  position: absolute;
  right: 7%;
  bottom: 50px;
  left: 7%;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.52);
  font: 9px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.core-section { padding: 170px 0; }
.core-heading { align-items: start; }
.core-map {
  position: relative;
  width: min(850px, 80vw);
  aspect-ratio: 1;
  margin: 60px auto 100px;
}
.core-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.orbit-a { inset: 10%; }
.orbit-b { inset: 25%; border-style: dashed; }
.core-orbit::before,
.core-orbit::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}
.core-orbit::before { top: 20%; left: 2%; }
.core-orbit::after { right: 3%; bottom: 23%; }
.core-node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 13px;
  align-items: center;
  width: 260px;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 40px 90px rgba(32,28,70,.18);
  background: var(--night);
  color: white;
  transform: translate(-50%, -50%);
}
.core-node > span { grid-row: 1 / 3; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font: 11px var(--mono); }
.core-node small { font: 8px var(--mono); letter-spacing: .2em; }
.core-node strong { font: 15px var(--mono); font-weight: 400; letter-spacing: .12em; }
.core-node .status-dot { position: absolute; top: 16px; right: 16px; }
.satellite {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
  box-shadow: 0 15px 40px rgba(17,17,19,.07);
  font-size: 11px;
}
.satellite span { color: var(--violet); font: 8px var(--mono); }
.sat-identity { top: 12%; left: 10%; }
.sat-data { top: 16%; right: 6%; }
.sat-ai { bottom: 11%; left: 13%; }
.sat-tools { right: 9%; bottom: 15%; }
.core-showcase {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 0;
  margin: 60px 0 80px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}
.core-screen {
  display: flex;
  flex-direction: column;
  height: 650px;
  margin: 0;
  padding: 20px;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 50% 20%, rgba(117,103,248,.24), transparent 34%),
    #0b0913;
}
.core-screen-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  color: rgba(255,255,255,.5);
}
.core-screen-chrome > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.core-screen-chrome > span:first-child { background: var(--violet); }
.core-screen-chrome small {
  margin-left: auto;
  font: 7px var(--mono);
  letter-spacing: .14em;
}
.core-screen > img {
  display: block;
  width: 100%;
  height: 0;
  min-height: 0;
  flex: 1 1 0;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,.32));
}
.core-screen figcaption {
  padding: 16px 4px 0;
  color: rgba(255,255,255,.48);
  font: 8px var(--mono);
  letter-spacing: .08em;
  line-height: 1.6;
  text-transform: uppercase;
}
.core-proof {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 55px);
  overflow: hidden;
}
.core-proof::before {
  position: absolute;
  top: -190px;
  right: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(117,103,248,.2);
  border-radius: 50%;
  content: "";
}
.core-orb-art {
  width: 110px;
  height: 110px;
  margin: 0 0 18px -8px;
  object-fit: contain;
}
.core-proof .eyebrow { margin-bottom: 22px; }
.core-proof h3 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.core-proof > p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.history-proof {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: end;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.history-proof img {
  display: block;
  width: 96px;
  height: 100px;
  border: 1px solid rgba(117,103,248,.25);
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 16px 35px rgba(17,17,19,.13);
}
.history-proof figcaption {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.history-proof figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--violet);
  font: 8px var(--mono);
  letter-spacing: .12em;
}
.core-principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.core-principles article { padding: 30px 40px 0 0; border-right: 1px solid var(--line); }
.core-principles article + article { padding-left: 40px; }
.core-principles article:last-child { border: 0; }
.core-principles span { color: var(--violet); font: 9px var(--mono); letter-spacing: .12em; }
.core-principles h3 { margin: 22px 0 12px; font-size: 20px; font-weight: 500; letter-spacing: -.03em; }
.core-principles p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.platform-section { padding: 105px 0; background: #252432; color: white; }
.platform-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10%; align-items: end; }
.platform-heading h2 { font-size: clamp(52px, 5.6vw, 86px); }
.platform-heading > p {
  max-width: 500px;
  margin: 0 0 8px;
  color: rgba(255,255,255,.56);
  font-size: 15px;
  line-height: 1.75;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.22);
  border-left: 1px solid rgba(255,255,255,.22);
}
.capability-card {
  min-height: 260px;
  padding: 25px;
  border-right: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: background 220ms ease;
}
.capability-card:hover { background: rgba(255,255,255,.035); }
.capability-featured { background: var(--violet); }
.capability-featured:hover { background: #8175fb; }
.capability-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.56); font: 8px var(--mono); letter-spacing: .12em; }
.capability-featured .capability-top { color: rgba(255,255,255,.75); }
.capability-card h3 { margin: 34px 0 14px; font-size: clamp(30px, 3.2vw, 48px); font-weight: 500; letter-spacing: -.05em; }
.capability-card p { max-width: 530px; margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }
.capability-featured p { color: rgba(255,255,255,.82); }
.capability-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.capability-card li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7); font: 8px var(--mono); text-transform: uppercase; }
.platform-foot {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-top: 65px;
}
.platform-foot > p { margin: 0; font-size: 14px; }
.object-loop { display: flex; flex-wrap: wrap; justify-content: end; gap: 11px; align-items: center; color: rgba(255,255,255,.45); font: 8px var(--mono); }
.object-loop i { color: var(--acid); font-style: normal; }

.portal-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
  min-height: 960px;
  padding-top: 150px;
  padding-bottom: 150px;
}
.portal-visual { position: relative; min-height: 650px; perspective: 1000px; }
.portal-device {
  position: absolute;
  top: 4%;
  left: 8%;
  width: 78%;
  aspect-ratio: .84;
  padding: 17px;
  border-radius: 27px;
  background: linear-gradient(140deg, #33333c, #101014 70%);
  box-shadow: 60px 80px 80px rgba(17,17,19,.24);
  transform: rotateY(12deg) rotateX(3deg) rotateZ(-3deg);
}
.portal-camera { position: absolute; top: 9px; left: 50%; z-index: 2; width: 44px; height: 4px; border-radius: 4px; background: #08080a; transform: translateX(-50%); }
.portal-screen {
  position: relative;
  display: grid;
  height: 100%;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 48%, rgba(117,103,248,.25), transparent 30%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    #0c0c11;
  background-size: auto, 30px 30px, 30px 30px, auto;
  color: white;
}
.screen-wordmark { font: 9px var(--mono); letter-spacing: .24em; }
.screen-status { align-self: center; display: grid; justify-items: center; text-align: center; }
.screen-ring { position: relative; display: grid; width: 120px; height: 120px; place-items: center; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.screen-ring::before { position: absolute; inset: 12px; border: 1px dashed rgba(154,144,255,.5); border-radius: 50%; content: ""; animation: spin 18s linear infinite; }
.screen-ring i { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid var(--violet-soft); border-radius: 50%; color: var(--violet-soft); font: normal 11px var(--mono); }
.screen-status small { margin-bottom: 12px; color: var(--acid); font: 8px var(--mono); letter-spacing: .2em; }
.screen-status strong { font-size: clamp(20px, 2vw, 30px); font-weight: 500; letter-spacing: -.04em; line-height: 1.2; }
.screen-footer { align-self: end; display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font: 7px var(--mono); letter-spacing: .15em; }
.portal-shadow { position: absolute; right: 0; bottom: 5%; left: 0; height: 80px; border-radius: 50%; background: rgba(17,17,19,.18); filter: blur(25px); transform: rotate(-4deg); }
.portal-visual.portal-real {
  min-height: 760px;
}
.portal-photo {
  position: absolute;
  margin: 0;
}
.portal-photo img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: #f5f2ec;
  object-fit: cover;
}
.portal-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px 0;
  color: var(--muted);
  font: 8px var(--mono);
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}
.portal-photo figcaption span { color: var(--violet); }
.portal-photo-rear {
  top: 0;
  right: 4%;
  width: 61.2%;
  z-index: 1;
}
.portal-photo-rear img {
  aspect-ratio: .87;
}
.portal-photo-front {
  bottom: 0;
  left: 4%;
  z-index: 2;
  width: 36.55%;
  padding: 10px;
  box-shadow: 28px 36px 60px rgba(17,17,19,.2);
  background: var(--paper);
}
.portal-photo-front img {
  aspect-ratio: .87;
}
.portal-copy h2 { font-size: clamp(48px, 5vw, 76px); }
.portal-copy .chapter-lead { color: var(--muted); }
.portal-steps { margin: 55px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.portal-steps li {
  display: grid;
  grid-template-columns: 38px 120px 1fr;
  gap: 12px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.portal-steps span { color: var(--violet); font: 9px var(--mono); }
.portal-steps strong { font-size: 12px; }
.portal-steps small { color: var(--muted); font-size: 11px; }

.ownership-section { padding: 160px 0; background: var(--violet); color: white; }
.ownership-shell > h2 { max-width: 1050px; font-size: clamp(54px, 6.2vw, 96px); }
.ownership-shell > h2 em { display: block; color: var(--acid); }
.ownership-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 100px; border-top: 1px solid rgba(255,255,255,.35); }
.ownership-grid article { padding: 26px 25px 0 0; border-right: 1px solid rgba(255,255,255,.25); }
.ownership-grid article + article { padding-left: 25px; }
.ownership-grid article:last-child { border: 0; }
.ownership-grid span { color: var(--acid); font: 9px var(--mono); }
.ownership-grid h3 { min-height: 52px; margin: 24px 0 15px; font-size: 18px; font-weight: 500; letter-spacing: -.03em; }
.ownership-grid p { margin: 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.7; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9%; padding-top: 160px; padding-bottom: 160px; }
.faq-heading h2 { font-size: clamp(46px, 4.8vw, 72px); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--violet); font: 20px var(--mono); transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: 0; padding: 0 50px 28px 4px; color: var(--muted); font-size: 12px; line-height: 1.8; }

.early-access { padding-bottom: 80px; }
.early-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  min-height: 540px;
  padding: 70px;
  overflow: hidden;
  background: var(--night);
  color: white;
}
.early-card::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 120%, rgba(117,103,248,.45), transparent 42%),
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.06) 50%, transparent 50.1%);
  content: "";
}
.early-copy,
.early-action { position: relative; z-index: 2; }
.early-copy h2 { max-width: 760px; font-size: clamp(50px, 5.2vw, 78px); }
.early-copy > p:last-child { max-width: 570px; margin: 32px 0 0; color: rgba(255,255,255,.57); font-size: 13px; line-height: 1.75; }
.early-action { display: grid; justify-items: end; gap: 14px; }
.early-action small { color: rgba(255,255,255,.46); font: 9px var(--mono); }
.early-price-link {
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 600;
}
.early-price-link:hover { color: var(--acid); }
.early-glyph {
  position: absolute;
  top: -140px;
  right: -90px;
  z-index: 1;
  display: grid;
  width: 420px;
  height: 420px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  color: rgba(255,255,255,.035);
  font: 230px var(--mono);
}

.site-footer { padding: 70px 32px 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: var(--shell);
  margin: 0 auto;
  padding-bottom: 70px;
}
.footer-top p { justify-self: center; max-width: 280px; margin: 0; color: var(--muted); text-align: center; font-size: 11px; line-height: 1.6; }
.footer-top .text-link { justify-self: end; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: var(--shell);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 8px var(--mono);
  letter-spacing: .08em;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { position: relative; }
.footer-legal a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.footer-legal a:hover::after,
.footer-legal a.active::after { transform: scaleX(1); }

/* Legal pages */
.legal-hero {
  min-height: 680px;
  padding: 180px 0 100px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 25%, rgba(117,103,248,.16), transparent 30%),
    linear-gradient(90deg, transparent 49.95%, rgba(17,17,19,.065) 50%, transparent 50.05%);
}
.legal-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 9%;
  align-items: end;
  min-height: 380px;
}
.legal-hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(58px, 6.4vw, 96px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}
.legal-hero h1 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.legal-hero-grid > div {
  display: grid;
  gap: 24px;
  padding-bottom: 8px;
}
.legal-hero-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.legal-hero-grid small {
  color: var(--violet);
  font: 8px var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 800px);
  gap: clamp(70px, 10vw, 150px);
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 160px;
}
.legal-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.legal-nav > span {
  margin-bottom: 17px;
  color: var(--violet);
  font: 8px var(--mono);
  letter-spacing: .13em;
}
.legal-nav a {
  padding: 9px 0;
  color: var(--muted);
  font-size: 10px;
  transition: color 160ms ease, padding 160ms ease;
}
.legal-nav a:hover {
  padding-left: 5px;
  color: var(--ink);
}
.legal-content { min-width: 0; }
.legal-content > section {
  position: relative;
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 95px;
}
.legal-content > section:first-child { padding-top: 0; }
.legal-content > section:last-child { border-bottom: 0; }
.legal-content .legal-summary {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--night);
  color: white;
}
.legal-summary > span {
  color: var(--acid);
  font: 8px var(--mono);
  letter-spacing: .14em;
}
.legal-summary h2 {
  max-width: 690px;
  margin: 36px 0 20px;
  font-size: clamp(28px, 3.3vw, 45px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.1;
}
.legal-summary p {
  margin: 0;
  color: rgba(255,255,255,.58);
}
.legal-index {
  display: block;
  margin-bottom: 23px;
  color: var(--violet);
  font: 9px var(--mono);
}
.legal-content section:not(.legal-summary) h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -.045em;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.legal-content p { margin: 0 0 20px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--violet);
}
.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.legal-content li {
  position: relative;
  padding-left: 24px;
}
.legal-content li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}
.legal-table-wrap {
  margin: 34px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-bright);
}
.legal-content th,
.legal-content td {
  min-width: 220px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.legal-content th:last-child,
.legal-content td:last-child { border-right: 0; }
.legal-content tr:last-child td { border-bottom: 0; }
.legal-content th {
  color: var(--violet);
  font: 8px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.legal-content td {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.right-callout {
  margin: 30px 0 !important;
  padding: 24px;
  border-left: 3px solid var(--violet);
  background: rgba(117,103,248,.07);
}
.right-callout strong { color: var(--ink); }

/* Pricing */
.pricing-hero {
  min-height: 700px;
  padding: 150px 0 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(117,103,248,.18), transparent 32%),
    linear-gradient(90deg, transparent 49.95%, rgba(17,17,19,.07) 50%, transparent 50.05%);
}
.pricing-hero-shell {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 9%;
  align-items: end;
  width: var(--shell);
  min-height: 390px;
  margin: 0 auto;
}
.pricing-hero h1 {
  margin: 0;
  font-size: clamp(54px, 5.8vw, 88px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}
.pricing-hero h1 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.pricing-intro {
  display: grid;
  gap: 28px;
  align-content: end;
  padding-bottom: 12px;
}
.pricing-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.pricing-status {
  display: grid;
  grid-template-columns: .8fr 1.2fr .8fr;
  align-items: center;
  margin-top: 55px;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.pricing-status > span {
  display: flex;
  align-items: center;
  gap: 11px;
  font: 9px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pricing-status strong { justify-self: center; font-size: 12px; }
.pricing-status small { justify-self: end; color: var(--muted); font: 8px var(--mono); }

.pricing-model { padding-top: 110px; padding-bottom: 120px; }
.pricing-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8%;
  align-items: end;
}
.pricing-heading .eyebrow { grid-column: 1 / -1; }
.pricing-heading h2,
.billing-heading h2,
.build-price-copy h2,
.pricing-principles-heading h2 {
  margin: 0;
  font-size: clamp(46px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .98;
}
.pricing-heading > p:last-child {
  max-width: 480px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.price-structure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}
.price-layer {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}
.price-layer-recurring {
  background:
    radial-gradient(circle at 100% 0, rgba(117,103,248,.18), transparent 38%),
    var(--night);
  color: white;
}
.price-layer-top {
  display: flex;
  justify-content: space-between;
  color: var(--violet);
  font: 8px var(--mono);
  letter-spacing: .13em;
}
.price-layer-recurring .price-layer-top { color: var(--acid); }
.price-layer h3 {
  margin: 46px 0 16px;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -.045em;
}
.price-state {
  min-height: 32px;
  margin: 0 0 20px;
  color: var(--violet);
  font: 10px var(--mono);
  line-height: 1.6;
  text-transform: uppercase;
}
.price-layer-recurring .price-state { color: var(--acid); }
.price-layer > p:not(.price-state) {
  min-height: 62px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.price-layer-recurring > p:not(.price-state) { color: rgba(255,255,255,.55); }
.price-layer ul {
  display: grid;
  gap: 0;
  margin: 26px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.price-layer-recurring ul { border-color: rgba(255,255,255,.17); }
.price-layer li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.price-layer-recurring li { border-color: rgba(255,255,255,.17); }
.price-layer li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}
.price-layer-recurring li::before { background: var(--acid); }
.ownership-note {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 8px var(--mono);
  letter-spacing: .08em;
  line-height: 1.6;
  text-transform: uppercase;
}
.price-layer-recurring .ownership-note {
  border-color: rgba(255,255,255,.17);
  color: rgba(255,255,255,.45);
}

.billing-section { padding: 110px 0; background: #252432; color: white; }
.billing-heading { max-width: 980px; }
.billing-heading h2 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.billing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.25);
  border-left: 1px solid rgba(255,255,255,.25);
}
.billing-options article {
  min-height: 350px;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.billing-options article.billing-featured { background: var(--violet); }
.billing-label {
  color: rgba(255,255,255,.55);
  font: 8px var(--mono);
  letter-spacing: .14em;
}
.billing-featured .billing-label { color: var(--acid); }
.billing-options h3 {
  margin: 52px 0 18px;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 500;
  letter-spacing: -.05em;
}
.billing-options p {
  max-width: 530px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.75;
}
.billing-featured p { color: rgba(255,255,255,.78); }
.billing-options ul {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}
.billing-options li {
  padding-left: 18px;
  position: relative;
  color: rgba(255,255,255,.7);
  font-size: 11px;
}
.billing-options li::before { position: absolute; left: 0; color: var(--acid); content: "—"; }

.build-price { padding-top: 120px; padding-bottom: 120px; }
.build-price-copy {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8%;
  align-items: end;
}
.build-price-copy .eyebrow { grid-column: 1 / -1; }
.build-price-copy > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.quote-equation {
  display: grid;
  grid-template-columns: 1fr 25px 1fr 25px 1fr 25px 1fr 25px 1.2fr;
  gap: 8px;
  align-items: stretch;
  margin-top: 80px;
}
.quote-equation > div {
  display: grid;
  min-height: 145px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}
.quote-equation > b {
  align-self: center;
  color: var(--violet);
  font: 18px var(--mono);
  text-align: center;
}
.quote-equation span { color: var(--violet); font: 8px var(--mono); }
.quote-equation small { align-self: end; color: var(--muted); font: 7px var(--mono); letter-spacing: .1em; }
.quote-equation strong { margin-top: 7px; font-size: 11px; line-height: 1.5; }
.quote-equation .quote-result { background: var(--night); color: white; }
.quote-equation .quote-result span { color: var(--acid); }
.quote-equation .quote-result strong { align-self: end; font-size: 14px; }

.pricing-principles { padding-bottom: 120px; }
.pricing-principles-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7%;
  align-items: end;
}
.pricing-principles-heading .eyebrow { grid-column: 1 / -1; }
.pricing-principles-heading h2 { grid-column: 1 / -1; max-width: 1050px; }
.pricing-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--ink);
}
.pricing-principles-grid article {
  min-height: 200px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}
.pricing-principles-grid article + article { padding-left: 28px; }
.pricing-principles-grid article:last-child { border: 0; }
.pricing-principles-grid span { color: var(--violet); font: 9px var(--mono); }
.pricing-principles-grid h3 { margin: 34px 0 15px; font-size: 18px; font-weight: 500; letter-spacing: -.03em; }
.pricing-principles-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }

.price-faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9%;
  padding-top: 110px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
}
.price-faq .faq-heading > p:last-child {
  max-width: 420px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
[data-reveal].visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }

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

@media (max-width: 1050px) {
  :root { --shell: min(100% - 44px, 920px); }
  .site-header { padding: 0 22px; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    align-items: stretch;
    gap: 0 34px;
    padding: 100px max(28px, 7vw) 42px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }
  .site-nav.open { visibility: visible; opacity: 1; pointer-events: auto; }
  .site-nav a {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(20px, 3.4vw, 30px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.15;
  }
  .site-nav .nav-legal { display: flex; color: var(--muted); }
  .wordmark { position: relative; z-index: 2; }
  .menu-toggle {
    display: grid;
    z-index: 2;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 12px 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { display: block; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }
  .header-cta { display: none; }
  .hero { padding-right: 22px; padding-left: 22px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-product { width: 680px; max-width: 100%; margin: 30px auto 0; }
  .hero::after { display: none; }
  .hero-principles > div { padding: 20px 14px; }
  .architecture-line {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
  .architecture-line > span { text-align: left; transform: rotate(90deg); transform-origin: 8px center; }
  .statement-grid,
  .section-heading,
  .platform-heading,
  .faq-section,
  .pricing-hero-shell,
  .pricing-heading,
  .build-price-copy,
  .price-faq,
  .legal-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .legal-hero { min-height: auto; padding: 145px 0 85px; }
  .legal-hero-grid { min-height: auto; align-items: end; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; }
  .legal-nav {
    position: static;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 18px;
  }
  .legal-nav > span { grid-column: 1 / -1; }
  .pricing-hero { padding-top: 140px; }
  .pricing-hero-shell { min-height: 570px; align-items: center; }
  .pricing-status { grid-template-columns: 1fr; gap: 14px; }
  .pricing-status strong,
  .pricing-status small { justify-self: start; }
  .price-structure { grid-template-columns: 1fr; }
  .price-layer { min-height: 440px; }
  .quote-equation { grid-template-columns: 1fr; }
  .quote-equation > b { transform: rotate(90deg); }
  .quote-equation > div:last-child { grid-column: auto; }
  .pricing-principles-grid { grid-template-columns: 1fr 1fr; }
  .pricing-principles-grid article { border-bottom: 1px solid var(--line); }
  .pricing-principles-grid article:nth-child(2) { border-right: 0; }
  .section-heading > p:last-child { margin-left: 0; }
  .chapter-shell { grid-template-columns: 1fr; }
  .chapter-copy { padding-right: 0; }
  .drives-stage { min-height: 620px; order: -1; border-top: 1px solid rgba(255,255,255,.12); }
  .core-map { width: 90vw; max-width: 760px; }
  .core-showcase { grid-template-columns: 1fr; }
  .core-screen { height: 560px; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .core-proof { min-height: 520px; }
  .portal-section { grid-template-columns: 1fr; }
  .portal-visual { width: min(680px, 100%); margin: 0 auto; }
  .portal-visual.portal-real { min-height: 780px; }
  .portal-copy { max-width: 760px; }
  .ownership-grid { grid-template-columns: 1fr 1fr; }
  .ownership-grid article { min-height: 210px; border-bottom: 1px solid rgba(255,255,255,.25); }
  .ownership-grid article:nth-child(2) { border-right: 0; }
  .early-card { grid-template-columns: 1fr; gap: 60px; }
  .early-action { justify-items: start; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 32px); }
  .site-header { height: 68px; padding: 0 16px; }
  .hero {
    min-height: auto;
    padding: 100px 16px 16px;
    background: radial-gradient(circle at 58% 55%, rgba(117, 103, 248, 0.16), transparent 31%);
  }
  .hero-grid,
  .hero-copy,
  .hero-product { width: 100%; max-width: 100%; min-width: 0; }
  .hero-grid { min-height: auto; padding-top: 0; }
  .hero-copy { overflow-wrap: anywhere; }
  .hero-copy h1 { font-size: clamp(44px, 12.8vw, 58px); }
  .legal-hero { min-height: auto; padding: 105px 0 48px; }
  .legal-hero h1 { font-size: clamp(40px, 11.5vw, 52px); }
  .legal-hero-grid { min-height: auto; gap: 30px; }
  .legal-hero-grid > div { gap: 14px; padding-bottom: 0; }
  .legal-hero-grid p { font-size: 14px; line-height: 1.65; }
  .legal-layout { gap: 32px; padding-top: 36px; padding-bottom: 90px; }
  .legal-nav {
    display: flex;
    gap: 8px;
    padding: 11px 0;
    overflow-x: auto;
    border-top-color: var(--line);
    scrollbar-width: none;
  }
  .legal-nav::-webkit-scrollbar { display: none; }
  .legal-nav > span { display: none; }
  .legal-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid var(--line);
    background: var(--paper-bright);
    font-size: 9px;
    white-space: nowrap;
  }
  .legal-nav a:hover { padding-left: 10px; }
  .legal-content > section { padding: 44px 0; }
  .legal-content .legal-summary { padding: 27px 23px; }
  .legal-summary h2 { margin-top: 24px; }
  .legal-content p,
  .legal-content li { font-size: 14px; line-height: 1.75; }
  .footer-legal { order: 2; }
  .pricing-hero { min-height: auto; padding-top: 110px; padding-bottom: 72px; }
  .pricing-hero-shell { min-height: auto; gap: 34px; }
  .pricing-hero h1 { font-size: clamp(47px, 14vw, 68px); }
  .pricing-model,
  .billing-section,
  .build-price { padding-top: 80px; padding-bottom: 80px; }
  .pricing-heading h2,
  .billing-heading h2,
  .build-price-copy h2,
  .pricing-principles-heading h2 { font-size: clamp(43px, 12vw, 62px); }
  .price-structure { margin-top: 55px; }
  .price-layer { min-height: 0; padding: 25px; }
  .billing-options { grid-template-columns: 1fr; margin-top: 55px; }
  .billing-options article { min-height: 340px; padding: 28px; }
  .billing-options h3 { margin-top: 60px; }
  .quote-equation { grid-template-columns: 1fr; }
  .quote-equation > b { transform: rotate(90deg); }
  .quote-equation > b:nth-of-type(2) { display: block; }
  .quote-equation > div:last-child { grid-column: auto; }
  .pricing-principles { padding-bottom: 80px; }
  .pricing-principles-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .pricing-principles-grid article,
  .pricing-principles-grid article + article { min-height: 0; padding: 28px 0; border-right: 0; }
  .price-faq { padding-top: 80px; padding-bottom: 80px; }
  .hero-intro { margin-top: 26px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions { margin-top: 30px; }
  .hero-product { min-height: 370px; margin-top: 18px; overflow: hidden; }
  .drive {
    width: 110px;
    height: 245px;
    filter: drop-shadow(22px 28px 18px rgba(16,15,24,.23));
  }
  .drive-primary { top: 8px; left: 27%; }
  .drive-secondary { top: 58px; left: 49%; }
  .drive-face { padding: 17px 14px; border-radius: 13px; }
  .drive-edge { right: -8px; width: 12px; }
  .drive-contact { bottom: -22px; left: 31px; width: 48px; height: 26px; }
  .product-aura { width: 270px; height: 270px; }
  .product-caption { right: 0; bottom: 0; left: 0; }
  .product-caption small { display: none; }
  .hero-principles { grid-template-columns: 1fr; }
  .hero-principles > div,
  .hero-principles > div:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-principles > div:last-child { border-bottom: 0; }
  .statement { padding: 78px 0; }
  .statement-grid { gap: 32px; }
  .section-heading { gap: 28px; margin-bottom: 50px; }
  .statement h2,
  .section-heading h2,
  .chapter-copy h2,
  .platform-heading h2,
  .portal-copy h2,
  .ownership-shell > h2,
  .early-copy h2 { font-size: clamp(43px, 12vw, 62px); }
  .system-section { padding-top: 58px; padding-bottom: 78px; }
  .system-card { grid-template-columns: 34px 65px 1fr; gap: 12px; min-height: 140px; }
  .system-card > b { display: none; }
  .system-icon { width: 58px; height: 58px; transform: scale(.74); transform-origin: left center; }
  .system-card h3 { font-size: 25px; }
  .system-card p { font-size: 11px; }
  .architecture-line {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    margin-top: 24px;
    padding: 18px;
  }
  .architecture-line > span {
    width: 12px;
    height: 12px;
    line-height: 1;
    text-align: left;
    transform: rotate(90deg);
    transform-origin: center;
  }
  .chapter-copy { padding: 78px 0; }
  .drives-stage { min-height: 450px; }
  .flat-drive { width: 105px; height: 250px; padding: 14px; border-radius: 11px; }
  .flat-drive::after { right: 28px; width: 48px; height: 28px; bottom: -25px; }
  .flat-one { top: 76px; left: 17%; }
  .flat-two { top: 138px; left: 53%; }
  .label-one { top: 52px; }
  .label-two { bottom: 118px; }
  .stage-note { display: none; }
  .core-section { padding: 80px 0; }
  .core-map { width: 104vw; margin: 42px 0 70px -10vw; }
  .core-showcase { min-height: 0; margin: 45px 0 62px; }
  .core-screen { height: 360px; min-height: 0; padding: 10px; }
  .core-screen img { max-height: 300px; object-fit: contain; }
  .core-proof { min-height: auto; padding: 32px 24px; }
  .core-orb-art { width: 82px; height: 82px; margin-bottom: 24px; }
  .history-proof { grid-template-columns: 72px 1fr; }
  .history-proof img { width: 72px; height: auto; }
  .core-node { width: 200px; padding: 20px; }
  .satellite { padding: 10px; font-size: 9px; }
  .sat-identity { left: 13%; }
  .sat-data { right: 7%; }
  .core-principles { grid-template-columns: 1fr; }
  .core-principles article,
  .core-principles article + article { padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .platform-section { padding: 80px 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 235px; padding: 22px; }
  .capability-card h3 { margin-top: 28px; }
  .platform-foot { align-items: flex-start; flex-direction: column; }
  .object-loop { justify-content: flex-start; }
  .portal-section { min-height: auto; gap: 52px; padding-top: 80px; padding-bottom: 80px; }
  .portal-visual { min-height: 0; }
  .portal-visual.portal-real {
    display: grid;
    grid-template-columns: .42fr 1fr;
    gap: 10px;
    align-items: end;
    width: 85%;
    min-height: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .portal-photo {
    position: static;
    width: 100%;
    min-width: 0;
  }
  .portal-photo-rear { grid-column: 2; grid-row: 1; width: 100%; }
  .portal-photo-front {
    grid-column: 1;
    grid-row: 1;
    left: auto;
    width: 100%;
    padding: 5px;
    box-shadow: 14px 18px 32px rgba(17,17,19,.16);
  }
  .portal-photo figcaption {
    display: grid;
    gap: 4px;
    padding-top: 8px;
    font-size: 6px;
  }
  .portal-device { left: 6%; width: 88%; }
  .portal-steps li { grid-template-columns: 30px 90px 1fr; }
  .ownership-section { padding: 80px 0; }
  .ownership-grid { grid-template-columns: 1fr; margin-top: 70px; }
  .ownership-grid article,
  .ownership-grid article + article { min-height: auto; padding: 28px 0; border-right: 0; }
  .ownership-grid h3 { min-height: 0; }
  .faq-section { padding-top: 80px; padding-bottom: 80px; }
  .early-card { min-height: 520px; padding: 40px 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 35px; justify-items: start; }
  .footer-top p,
  .footer-top .text-link { justify-self: start; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 15px; }
}

/* Early access */
.access-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 15%, rgba(117,103,248,.16), transparent 28%),
    var(--paper);
}
.access-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9%;
  align-items: end;
  padding-top: 175px;
  padding-bottom: 85px;
}
.access-intro h1,
.access-confirmation h1 {
  margin: 0;
  font-size: clamp(58px, 6.3vw, 96px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}
.access-intro h1 em,
.access-confirmation h1 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.access-intro > p {
  max-width: 480px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.access-form-shell { padding-bottom: 120px; }
.access-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
  background: var(--paper-bright);
}
.form-field {
  display: grid;
  min-width: 0;
  min-height: 105px;
  padding: 17px 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.form-field > span {
  align-self: start;
  color: var(--muted);
  font: 9px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form-field > span b { color: var(--violet); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
  align-self: end;
  width: 100%;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 500 clamp(18px, 1.5vw, 24px)/1.3 var(--sans);
}
.form-field select { cursor: pointer; }
.form-field textarea {
  min-height: 90px;
  resize: vertical;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--violet); }
.form-field-wide { grid-column: 1 / -1; }
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.form-submit p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.form-submit p a { color: var(--ink); border-bottom: 1px solid var(--violet); }
.form-submit .button { flex: 0 0 auto; cursor: pointer; }
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-errors {
  margin-bottom: 25px;
  padding: 22px 25px;
  border-left: 3px solid #bc3e55;
  background: rgba(188,62,85,.08);
}
.form-errors strong { font-size: 13px; }
.form-errors ul { display: grid; gap: 5px; margin: 10px 0 0; padding-left: 18px; color: var(--muted); font-size: 12px; }
.access-confirmation {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: calc(100svh - 84px);
  padding-top: 130px;
  padding-bottom: 90px;
}
.confirmation-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid var(--violet);
  border-radius: 50%;
  color: var(--violet);
  font-size: 25px;
}
.access-confirmation > p:not(.eyebrow) {
  max-width: 650px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.access-confirmation-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }

@media (max-width: 700px) {
  .access-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 115px;
    padding-bottom: 55px;
  }
  .access-intro h1,
  .access-confirmation h1 { font-size: clamp(44px, 12vw, 58px); }
  .access-form-shell { padding-bottom: 80px; }
  .access-form { grid-template-columns: 1fr; }
  .form-field,
  .form-field-wide { grid-column: auto; }
  .form-field { min-height: 100px; padding: 17px 18px; }
  .form-field input,
  .form-field select { font-size: 19px; }
  .form-submit { align-items: flex-start; flex-direction: column; gap: 22px; padding: 20px 18px; }
  .access-confirmation { min-height: 100svh; padding-top: 110px; padding-bottom: 65px; }
  .confirmation-mark { width: 58px; height: 58px; margin-bottom: 32px; }
  .access-confirmation-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 30px; }
}

/* Branded server error pages */
.error-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 28%, rgba(117,103,248,.18), transparent 30%),
    var(--paper);
}
.error-page .site-header {
  grid-template-columns: 1fr auto;
  border-bottom-color: var(--line);
  background: rgba(242,240,235,.92);
  backdrop-filter: blur(18px);
}
.error-header-link {
  justify-self: end;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
}
.error-main {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 8%;
  align-items: end;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: 150px 0 90px;
}
.error-code {
  color: rgba(17,17,19,.08);
  font: 500 clamp(130px, 19vw, 300px)/.72 var(--sans);
  letter-spacing: -.09em;
}
.error-copy { max-width: 760px; padding-bottom: 10px; }
.error-copy h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}
.error-copy h1 em {
  color: var(--violet);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.error-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.error-actions { display: flex; gap: 30px; align-items: center; margin-top: 38px; }
.error-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 8px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .error-header-link { font-size: 9px; }
  .error-main {
    grid-template-columns: 1fr;
    gap: 34px;
    align-content: center;
    padding: 110px 0 55px;
  }
  .error-code { font-size: clamp(100px, 34vw, 150px); }
  .error-copy h1 { font-size: clamp(42px, 12vw, 58px); }
  .error-copy > p:not(.eyebrow) { margin-top: 25px; font-size: 14px; }
  .error-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 28px; }
  .error-meta { grid-column: auto; margin-top: 25px; }
}
