:root {
  --void: #03050a;
  --deep: #07101b;
  --midnight: #0a1726;
  --graphite: #111d2b;
  --motion-white: #f3f7fa;
  --silver: #c8d2dc;
  --muted: #8997a7;
  --cyan: #58f1ff;
  --violet: #9b76ff;
  --blue: #4d8dff;
  --gold: #d4af37;
  --light: #e9eef2;
  --light-ink: #09111b;
  --line: rgba(200, 210, 220, 0.14);
  --content: min(1320px, calc(100vw - 96px));
  --font-sans: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-editorial: "Cormorant Garamond", Georgia, serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--void);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(77, 141, 255, 0.07), transparent 27rem),
    var(--void);
  color: var(--motion-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(88, 241, 255, 0.22);
  color: var(--motion-white);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--motion-white);
  color: var(--void);
  font-weight: 600;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(200, 210, 220, 0.1);
  background: rgba(3, 5, 10, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-nav {
  width: var(--content);
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  color: var(--motion-white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.domain-accent {
  color: var(--violet);
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-links a,
.mobile-menu a {
  transition: color 180ms ease;
}

.desktop-links a:hover,
.mobile-menu a:hover {
  color: var(--cyan);
}

.nav-cta {
  min-width: 156px;
  padding: 11px 18px;
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: 999px;
  color: #f1ddb0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 960px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--deep);
}

.hero-picture,
.hero-picture img,
.hero-shade,
.hero-motion-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: -3;
  margin: 0;
}

.hero-picture img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 10, 0.97) 0%, rgba(3, 5, 10, 0.86) 29%, rgba(3, 5, 10, 0.25) 60%, rgba(3, 5, 10, 0.15) 100%),
    linear-gradient(0deg, rgba(3, 5, 10, 0.72) 0%, transparent 40%, rgba(3, 5, 10, 0.26) 100%);
}

.hero-motion-overlay {
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
}

.hero-motion-overlay path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 0.8;
  stroke-dasharray: 6 14;
  animation: trace-flow 9s linear infinite;
}

.hero-motion-overlay path:nth-child(2) {
  stroke: var(--violet);
  animation-direction: reverse;
  animation-duration: 12s;
}

.hero-motion-overlay circle {
  fill: var(--motion-white);
  filter: drop-shadow(0 0 10px var(--cyan));
  animation: node-breathe 4s ease-in-out infinite;
}

.hero-content {
  width: var(--content);
  margin: 74px auto 0;
  padding: 86px 0 70px;
}

.section-index,
.eyebrow,
.hero-categories,
.card-topline,
.buyer-index,
.serious-note,
.footer-meta,
.status-line {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-index {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.hero-index {
  color: var(--cyan);
}

.hero-categories {
  margin: 34px 0 0;
  color: var(--silver);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hero-domain {
  margin: 25px 0 0;
  color: var(--motion-white);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-domain span {
  color: var(--violet);
}

h1,
h2,
h3,
p,
blockquote {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-primary {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--silver);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-secondary {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 21px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--motion-white);
  color: var(--void);
  box-shadow: 0 12px 38px rgba(3, 5, 10, 0.24);
}

.button--primary:hover {
  box-shadow: 0 16px 46px rgba(88, 241, 255, 0.15);
}

.button--ghost {
  border: 1px solid rgba(200, 210, 220, 0.32);
  color: var(--silver);
}

.button--ghost:hover {
  border-color: rgba(88, 241, 255, 0.68);
  color: var(--motion-white);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 720px;
  margin: 38px 0 0;
  color: rgba(200, 210, 220, 0.7);
  font-size: 9px;
  line-height: 1.5;
}

.status-line span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.section {
  position: relative;
  padding: 136px 0;
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 72px;
}

.section-heading .section-index {
  padding-top: 12px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 500;
}

h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.lead-copy {
  margin: 0;
  color: var(--silver);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.6;
}

.section--light {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 52%),
    var(--light);
  color: var(--light-ink);
}

.section--light .section-index,
.section--light .eyebrow {
  color: #405064;
}

.section--light .lead-copy {
  color: #1b2a39;
}

.meaning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 100px;
}

.meaning-copy > p:not(.lead-copy):not(.linguistic-note) {
  max-width: 700px;
  margin: 30px 0 0;
  color: #405064;
  font-size: 17px;
}

.meaning-copy blockquote {
  max-width: 760px;
  margin: 54px 0;
  padding-left: 28px;
  border-left: 1px solid #6e7b88;
  font-family: var(--font-editorial);
  font-size: clamp(31px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.08;
}

.meaning-copy blockquote em {
  display: block;
  color: #5f45a5;
  font-weight: 500;
}

.linguistic-note {
  max-width: 660px;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(9, 17, 27, 0.16);
  color: #4e5b68;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
}

.meaning-pillars {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(9, 17, 27, 0.2);
}

.meaning-pillars li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(9, 17, 27, 0.2);
}

.meaning-pillars li > span {
  color: #5f45a5;
  font-family: var(--font-mono);
  font-size: 11px;
}

.meaning-pillars p {
  margin: 8px 0 0;
  color: #4c5a68;
  font-size: 14px;
}

.motion-thesis {
  background:
    radial-gradient(circle at 75% 36%, rgba(155, 118, 255, 0.09), transparent 30rem),
    var(--void);
}

.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.homepage-definition {
  max-width: 740px;
  margin: 28px 0 0;
  padding: 24px 0 0 24px;
  border-top: 1px solid rgba(88, 241, 255, 0.24);
  border-left: 1px solid rgba(88, 241, 255, 0.24);
  color: var(--motion-white);
  font-size: 16px;
  line-height: 1.72;
}

.editorial-aside {
  margin: 0;
  color: var(--motion-white);
  font-family: var(--font-editorial);
  font-size: clamp(28px, 3vw, 45px);
  font-style: italic;
  line-height: 1.05;
  text-align: right;
}

.media-frame {
  position: relative;
  overflow: hidden;
  margin: 68px 0 0;
  border: 1px solid rgba(200, 210, 220, 0.17);
  border-radius: 2px;
  background: var(--deep);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.media-frame::before,
.media-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.media-frame::before {
  inset: 16px;
  border: 1px solid rgba(200, 210, 220, 0.1);
}

.media-frame::after {
  width: 8px;
  height: 8px;
  top: 26px;
  left: 26px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.media-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(88, 241, 255, 0.05) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: scan-field 11s ease-in-out infinite;
}

.motion-stage-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.motion-stage-list li {
  min-height: 190px;
  padding: 30px 20px 28px;
  border-left: 1px solid var(--line);
}

.motion-stage-list li:last-child {
  border-right: 1px solid var(--line);
}

.motion-stage-list span {
  display: block;
  margin-bottom: 35px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 10px;
}

.motion-stage-list h3 {
  font-size: 16px;
}

.motion-stage-list p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.section--graphite {
  background:
    linear-gradient(135deg, rgba(88, 241, 255, 0.03), transparent 34%),
    var(--graphite);
}

.stack-intro,
.bridge-intro,
.buyer-intro {
  max-width: 780px;
  margin-bottom: 64px;
}

.motion-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(200, 210, 220, 0.16);
  border: 1px solid rgba(200, 210, 220, 0.16);
}

.motion-card {
  min-height: 380px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(88, 241, 255, 0.055), transparent 46%),
    var(--graphite);
  transition:
    background 240ms ease,
    transform 240ms ease;
}

.motion-card:hover {
  background:
    radial-gradient(circle at 20% 0%, rgba(155, 118, 255, 0.11), transparent 52%),
    #142232;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
}

.card-topline span:first-child {
  color: var(--cyan);
}

.motion-glyph {
  width: 100%;
  height: 90px;
  margin: 48px 0 34px;
  overflow: visible;
}

.glyph-rail,
.glyph-path {
  fill: none;
  stroke-linecap: round;
}

.glyph-rail {
  stroke: rgba(200, 210, 220, 0.14);
  stroke-width: 0.7;
}

.glyph-path {
  stroke: var(--cyan);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 5px rgba(88, 241, 255, 0.35));
  stroke-dasharray: 140;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 420ms ease;
}

.motion-card:hover .glyph-path {
  stroke-dashoffset: 36;
}

.glyph-node {
  fill: var(--cyan);
}

.glyph-node--violet {
  fill: var(--violet);
}

.glyph-node--gold {
  fill: var(--gold);
}

.motion-card h3 {
  max-width: 280px;
  font-size: 23px;
}

.motion-card > p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.concept-disclaimer {
  max-width: 860px;
  margin: 35px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.65;
}

.bridge-section {
  background:
    radial-gradient(circle at 12% 46%, rgba(77, 141, 255, 0.08), transparent 29rem),
    var(--deep);
}

.bridge-art {
  margin-bottom: 1px;
}

.bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
  border: 1px solid var(--line);
}

.bridge-grid article {
  padding: 50px;
}

.bridge-grid article:last-child {
  text-align: right;
}

.bridge-grid h3 {
  font-size: 32px;
}

.bridge-grid article > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.bridge-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.bridge-grid article:last-child ul {
  justify-content: flex-end;
}

.bridge-grid li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--silver);
  font-size: 11px;
}

.bridge-axis {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.bridge-axis span {
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(88, 241, 255, 0.5));
}

.bridge-axis span:last-child {
  background: linear-gradient(rgba(155, 118, 255, 0.5), transparent);
}

.bridge-axis svg {
  width: 48px;
  height: 48px;
}

.bridge-statement {
  margin: 54px auto 0;
  max-width: 900px;
  color: var(--motion-white);
  font-family: var(--font-editorial);
  font-size: clamp(32px, 4vw, 58px);
  font-style: italic;
  line-height: 1.05;
  text-align: center;
}

.convergence {
  overflow: hidden;
  background:
    linear-gradient(110deg, transparent 50%, rgba(155, 118, 255, 0.05) 100%),
    var(--void);
}

.convergence-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.convergence-copy p {
  min-height: 180px;
  margin: 0;
  padding: 36px;
  display: flex;
  align-items: flex-end;
  background: var(--void);
  color: var(--silver);
  font-size: 19px;
}

.convergence-close {
  margin: 62px 0 76px;
  font-size: clamp(29px, 3.8vw, 54px);
  letter-spacing: -0.04em;
  text-align: center;
}

.convergence-close em {
  color: var(--cyan);
  font-family: var(--font-editorial);
  font-size: 1.2em;
}

.kinetic-system {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.kinetic-system::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--gold));
}

.kinetic-system li {
  position: relative;
  z-index: 1;
  padding: 0 25px;
  text-align: center;
}

.kinetic-system li > span {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.kinetic-node {
  width: 18px;
  height: 18px;
  margin: 28px auto 35px;
  border: 4px solid var(--void);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 1px rgba(88, 241, 255, 0.75),
    0 0 24px rgba(88, 241, 255, 0.32);
}

.kinetic-system li:nth-child(3) .kinetic-node {
  background: var(--violet);
  box-shadow:
    0 0 0 1px rgba(155, 118, 255, 0.75),
    0 0 24px rgba(155, 118, 255, 0.32);
}

.kinetic-system li:nth-child(4) .kinetic-node {
  background: var(--gold);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.75),
    0 0 24px rgba(212, 175, 55, 0.28);
}

.kinetic-system h3 {
  text-transform: uppercase;
}

.kinetic-system p {
  margin: 12px auto 0;
  max-width: 220px;
  color: var(--muted);
  font-size: 13px;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(9, 17, 27, 0.2);
  border-left: 1px solid rgba(9, 17, 27, 0.2);
}

.buyer-grid article {
  min-height: 450px;
  padding: 30px;
  border-right: 1px solid rgba(9, 17, 27, 0.2);
  border-bottom: 1px solid rgba(9, 17, 27, 0.2);
}

.buyer-index {
  color: #5f45a5;
  font-size: 10px;
}

.buyer-grid h3 {
  min-height: 68px;
  margin-top: 70px;
  font-size: 26px;
}

.buyer-grid article > p {
  margin: 25px 0 12px;
  color: #53606d;
  font-size: 12px;
  text-transform: uppercase;
}

.buyer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyer-grid li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(9, 17, 27, 0.1);
  color: #263541;
  font-size: 13px;
}

.buyer-reality {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 25px;
  max-width: 1000px;
  margin: 50px 0 0 auto;
  padding: 28px 0 0;
  border-top: 1px solid rgba(9, 17, 27, 0.2);
  color: #2f3d49;
}

.buyer-reality span {
  color: #5f45a5;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.name-asset {
  background:
    radial-gradient(circle at 15% 80%, rgba(88, 241, 255, 0.07), transparent 28rem),
    var(--midnight);
}

.resource-explorer {
  background:
    radial-gradient(circle at 78% 18%, rgba(155, 118, 255, 0.08), transparent 28rem),
    var(--graphite);
}

.resource-explorer-intro {
  max-width: 850px;
  margin-bottom: 58px;
}

.resource-explorer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.resource-explorer-card {
  min-height: 350px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--graphite);
  transition: background 220ms ease;
}

.resource-explorer-card:last-child {
  grid-column: 1 / -1;
}

.resource-explorer-card:hover {
  background: #142232;
}

.resource-explorer-card svg {
  width: 100%;
  height: 110px;
  margin-bottom: 46px;
}

.resource-explorer-card svg path,
.resource-explorer-card svg line,
.resource-explorer-card svg circle {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.2;
}

.resource-explorer-card:nth-child(even) svg path,
.resource-explorer-card:nth-child(even) svg line {
  stroke: var(--violet);
}

.resource-explorer-card h3 {
  font-size: 26px;
}

.resource-explorer-card p {
  max-width: 570px;
  margin: 16px 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.resource-explorer-card > span {
  margin-top: auto;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.strength-grid article {
  min-height: 250px;
  padding: 32px;
  background: var(--midnight);
}

.strength-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 10px;
}

.strength-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.asset-statement {
  max-width: 980px;
  margin: 90px 0 0 auto;
  padding-left: 40px;
  border-left: 1px solid var(--gold);
  color: var(--motion-white);
  font-family: var(--font-editorial);
  font-size: clamp(31px, 4vw, 58px);
  font-style: italic;
  line-height: 1.08;
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(77, 141, 255, 0.035), transparent 40%),
    var(--void);
}

.faq-list {
  max-width: 980px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: 60px 1fr 28px;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--violet);
  font-family: var(--font-mono);
  font-size: 10px;
}

.faq-list summary strong {
  font-size: 20px;
  font-weight: 500;
}

.faq-list summary i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 18px;
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  margin: 0 0 32px 80px;
  color: var(--muted);
  font-size: 16px;
}

.acquisition {
  overflow: hidden;
  padding: 155px 0;
  background:
    radial-gradient(circle at 85% 45%, rgba(212, 175, 55, 0.1), transparent 25rem),
    linear-gradient(125deg, #080b10, var(--midnight));
}

.acquisition-lines {
  position: absolute;
  top: -45%;
  right: -8%;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(212, 175, 55, 0.025),
    0 0 0 160px rgba(88, 241, 255, 0.018);
}

.acquisition-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
}

.acquisition h2 {
  margin-top: 14px;
}

.acquisition-copy > p:not(.lead-copy):not(.serious-note) {
  margin: 30px 0 0;
  color: var(--muted);
}

.button--gold {
  margin-top: 40px;
  border: 1px solid rgba(212, 175, 55, 0.82);
  background: linear-gradient(135deg, #ddc36f, #a77921);
  color: #100d08;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.button--gold:hover {
  box-shadow: 0 20px 56px rgba(212, 175, 55, 0.16);
}

.serious-note {
  margin: 18px 0 0;
  color: rgba(200, 210, 220, 0.62);
  font-size: 9px;
}

.site-footer {
  padding: 62px max(48px, calc((100vw - 1320px) / 2)) 30px;
  background: #020407;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  font-size: 16px;
}

.footer-brand p {
  margin: 0;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-top > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-top a {
  color: #e0c77c;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.35);
  text-underline-offset: 4px;
}

.footer-disclaimer {
  max-width: 1050px;
  margin: 35px 0 0;
  color: #687581;
  font-size: 11px;
  line-height: 1.8;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  color: #54606b;
  font-size: 9px;
}

.footer-meta a {
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: var(--cyan);
}

@keyframes trace-flow {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes node-breathe {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes scan-field {
  0%,
  20% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1180px) {
  :root {
    --content: min(100% - 64px, 1120px);
  }

  .site-nav {
    gap: 24px;
  }

  .desktop-links {
    gap: 19px;
  }

  .motion-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bridge-grid article {
    padding: 38px;
  }
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 48px, 820px);
  }

  .site-nav {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-links {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    color: var(--silver);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 38px;
    right: 0;
    width: 210px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(3, 5, 10, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }

  .mobile-menu-panel a {
    padding: 10px;
    color: var(--silver);
    font-size: 13px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .section {
    padding: 105px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 54px;
  }

  .section-heading .section-index {
    padding-top: 0;
  }

  .meaning-grid,
  .split-intro,
  .acquisition-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .editorial-aside {
    max-width: 620px;
    text-align: left;
  }

  .motion-stage-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .bridge-grid article:last-child {
    text-align: left;
  }

  .bridge-grid article:last-child ul {
    justify-content: flex-start;
  }

  .bridge-axis {
    height: 90px;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .bridge-axis span {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 241, 255, 0.5));
  }

  .bridge-axis span:last-child {
    background: linear-gradient(90deg, rgba(155, 118, 255, 0.5), transparent);
  }

  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  :root {
    --content: calc(100% - 36px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .site-nav {
    height: 66px;
    gap: 13px;
  }

  .brand-lockup {
    gap: 7px;
    font-size: 17px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .nav-cta {
    min-width: auto;
    padding: 9px 12px;
    font-size: 9px;
  }

  .nav-cta span {
    display: none;
  }

  .mobile-menu-panel {
    right: -66px;
  }

  .hero {
    min-height: 940px;
    align-items: flex-start;
  }

  .hero-picture img {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 5, 10, 0.94) 0%, rgba(3, 5, 10, 0.78) 50%, rgba(3, 5, 10, 0.24) 78%, rgba(3, 5, 10, 0.86) 100%),
      linear-gradient(90deg, rgba(3, 5, 10, 0.55), transparent);
  }

  .hero-content {
    margin-top: 66px;
    padding: 50px 0 48px;
  }

  .hero-categories {
    max-width: 330px;
    line-height: 1.6;
  }

  h1 {
    margin-top: 16px;
    font-size: clamp(43px, 12.5vw, 62px);
    line-height: 0.98;
  }

  .hero-primary {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-secondary {
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .status-line {
    align-items: flex-start;
    font-size: 8px;
  }

  .section {
    padding: 86px 0;
  }

  h2 {
    font-size: clamp(38px, 11.3vw, 54px);
  }

  .lead-copy {
    font-size: 18px;
  }

  .meaning-grid {
    gap: 55px;
  }

  .meaning-copy blockquote {
    margin: 40px 0;
    padding-left: 20px;
    font-size: 34px;
  }

  .media-frame {
    margin-top: 44px;
    margin-right: -18px;
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
  }

  .motion-stage-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .motion-stage-list li {
    min-height: 166px;
  }

  .motion-card-grid,
  .convergence-copy,
  .buyer-grid,
  .strength-grid,
  .resource-explorer-grid {
    grid-template-columns: 1fr;
  }

  .resource-explorer-card:last-child {
    grid-column: auto;
  }

  .motion-card {
    min-height: 340px;
  }

  .bridge-grid article {
    padding: 30px 24px;
  }

  .bridge-grid h3 {
    font-size: 28px;
  }

  .convergence-copy p {
    min-height: 140px;
    padding: 28px;
    font-size: 17px;
  }

  .kinetic-system {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kinetic-system::before {
    top: 0;
    left: 27px;
    width: 1px;
    height: 100%;
    background: linear-gradient(var(--cyan), var(--violet), var(--gold));
  }

  .kinetic-system li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0 18px;
    padding: 26px 0;
    text-align: left;
  }

  .kinetic-system li > span {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    text-align: center;
  }

  .kinetic-node {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 8px auto;
  }

  .kinetic-system h3,
  .kinetic-system p {
    grid-column: 2;
  }

  .kinetic-system p {
    margin: 8px 0 0;
  }

  .buyer-grid article {
    min-height: auto;
  }

  .buyer-grid h3 {
    min-height: auto;
    margin-top: 42px;
  }

  .buyer-reality {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .strength-grid article {
    min-height: 220px;
  }

  .asset-statement {
    margin-top: 64px;
    padding-left: 24px;
  }

  .faq-list summary {
    min-height: 88px;
    grid-template-columns: 34px 1fr 28px;
    gap: 10px;
  }

  .faq-list summary strong {
    font-size: 17px;
  }

  .faq-list details > p {
    margin-left: 44px;
    font-size: 14px;
  }

  .acquisition {
    padding: 100px 0;
  }

  .acquisition-lines {
    top: -5%;
    right: -50%;
    width: 120vw;
    height: 120vw;
  }

  .site-footer {
    padding: 48px 18px 24px;
  }

  .footer-top,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .site-nav {
    gap: 9px;
  }

  .brand-lockup {
    font-size: 15px;
  }

  .mobile-menu summary {
    font-size: 9px;
  }

  .nav-cta {
    padding-right: 10px;
    padding-left: 10px;
  }

  .hero {
    min-height: 980px;
  }

  .hero-actions {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-motion-overlay,
  .media-scan {
    display: none;
  }
}


/* Distinct AI Motion Stack micro-diagrams */
.motion-glyph .glyph-stroke,
.motion-glyph .glyph-pose,
.motion-glyph .glyph-pose path,
.motion-glyph .glyph-pose circle {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.motion-glyph .glyph-stroke--muted,
.motion-glyph .glyph-pose--muted,
.motion-glyph .glyph-pose--muted path,
.motion-glyph .glyph-pose--muted circle {
  stroke: rgba(200, 210, 220, 0.36);
}
.motion-glyph .glyph-stroke--violet { stroke: var(--violet); }
.motion-glyph .glyph-stroke--gold { stroke: var(--gold); }
.motion-glyph .glyph-dash { stroke-dasharray: 3.5 3.5; }
.motion-glyph .glyph-fill { stroke: none; }
.motion-glyph .glyph-fill--cyan { fill: var(--cyan); }
.motion-glyph .glyph-fill--violet { fill: var(--violet); }
.motion-glyph .glyph-fill--gold { fill: var(--gold); }
.motion-glyph .glyph-frame {
  fill: rgba(88, 241, 255, 0.035);
  stroke: rgba(88, 241, 255, 0.62);
  stroke-width: 1.1;
}
.motion-glyph .glyph-frame--violet {
  fill: rgba(155, 118, 255, 0.035);
  stroke: rgba(155, 118, 255, 0.66);
}
.motion-glyph .glyph-frame--gold {
  fill: rgba(212, 175, 55, 0.035);
  stroke: rgba(212, 175, 55, 0.7);
}
.motion-glyph .glyph-obstacle {
  fill: rgba(200, 210, 220, 0.05);
  stroke: rgba(200, 210, 220, 0.42);
  stroke-width: 1;
}
.motion-card:hover .glyph-stroke:not(.glyph-stroke--muted),
.motion-card:hover .glyph-pose:not(.glyph-pose--muted),
.motion-card:hover .glyph-pose:not(.glyph-pose--muted) path,
.motion-card:hover .glyph-pose:not(.glyph-pose--muted) circle {
  filter: drop-shadow(0 0 4px rgba(88, 241, 255, 0.28));
}
