:root {
  --black: #08090b;
  --obsidian: #101115;
  --graphite: #1a1c22;
  --graphite-2: #24262e;
  --titanium: #a3a6b0;
  --pearl: #f3f4f7;
  --silver: #c7c9d1;
  --ice: #7dd8ff;
  --blue: #4f8cff;
  --violet: #8a7bff;
  --gold: #d4b483;
  --parent-gold: #c6a45f;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  overflow-x: hidden;
  background: var(--black);
  color: var(--pearl);
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
:focus-visible { outline: 2px solid var(--ice); outline-offset: 4px; }
h1, h2, h3, h4 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-wrap: balance;
}
p { text-wrap: pretty; }
.container { width: min(100%, 1240px); margin: 0 auto; padding: 0 32px; }
section, footer { position: relative; z-index: 2; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 18px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 0 0 4px 4px;
  background: var(--ice);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ice);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before { width: 16px; height: 1px; display: inline-block; background: var(--ice); content: ""; }
.eyebrow::before { background: linear-gradient(90deg, var(--parent-gold), var(--ice)); }

/* Fixed, dependency-free global network canvas. */
#network-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(circle at 71% 22%, rgba(79, 140, 255, .15), transparent 25%),
    radial-gradient(circle at 70% 22%, rgba(125, 216, 255, .08), transparent 44%),
    #08090b;
}
.bg-fade {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, transparent 0%, rgba(8, 9, 11, .55) 88%),
    linear-gradient(180deg, transparent 0%, rgba(8, 9, 11, .85) 100%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 11, .62);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: rgba(125, 216, 255, .13); background: rgba(8, 9, 11, .91); box-shadow: 0 14px 42px rgba(0, 0, 0, .25); }
.nav-shell {
  width: min(100%, 1440px);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 0 40px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-copy { display: grid; gap: 4px; line-height: 1; }
.logo-copy strong { color: var(--pearl); font-size: 14px; font-weight: 700; letter-spacing: .09em; }
.logo-copy small { color: var(--parent-gold); font-family: "IBM Plex Mono", monospace; font-size: 8.5px; font-weight: 500; letter-spacing: .13em; }
.logo-image { width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid rgba(198, 164, 95, .26); border-radius: 8px; object-fit: cover; box-shadow: 0 8px 22px rgba(0, 0, 0, .28); }
.logo-mark-svg { flex-shrink: 0; color: var(--ice); filter: drop-shadow(0 0 6px rgba(125, 216, 255, .75)); }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); color: var(--titanium); font-size: 12.5px; letter-spacing: .02em; }
.nav-links a { position: relative; padding: 31px 0; transition: color .25s ease; white-space: nowrap; }
.nav-links a::after { position: absolute; right: 0; bottom: 22px; left: 0; height: 1px; background: var(--ice); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--pearl); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-cta {
  flex-shrink: 0;
  padding: 10px 18px;
  border: 1px solid rgba(198, 164, 95, .4);
  border-radius: 5px;
  color: #ebd9ae;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .25s ease, box-shadow .25s ease, color .25s ease;
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--ice); color: var(--ice); box-shadow: 0 0 20px -6px var(--ice); }
.nav-toggle { width: 44px; height: 44px; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line-strong); border-radius: 7px; background: rgba(255, 255, 255, .015); cursor: pointer; }
.nav-toggle span { width: 22px; height: 1px; display: block; background: var(--pearl); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 160px 0 100px; }
.hero-inner { position: relative; z-index: 2; }
.hero-inner > * { max-width: 880px; }
.hero h1 {
  max-width: 900px;
  margin: 22px 0 26px;
  background: linear-gradient(180deg, #fff 0%, var(--silver) 100%);
  color: transparent;
  font-size: clamp(40px, 6.4vw, 84px);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero p { max-width: 560px; margin-bottom: 42px; color: var(--titanium); font-size: 17px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 70px; }
.btn-primary, .btn-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn-primary { border: 1px solid var(--pearl); background: linear-gradient(135deg, #fff, #dbefff 72%, #a9ddf5); color: var(--black); box-shadow: 0 12px 34px rgba(125, 216, 255, .1); }
.btn-primary:hover { border-color: var(--ice); background: var(--ice); box-shadow: 0 15px 38px rgba(125, 216, 255, .2); transform: translateY(-2px); }
.btn-secondary { border: 1px solid var(--line-strong); background: transparent; color: var(--pearl); }
.btn-secondary:hover { border-color: var(--pearl); background: rgba(255, 255, 255, .04); }
.chat-trigger { cursor: pointer; }
.capability-strip { max-width: 880px; display: flex; flex-wrap: wrap; gap: 14px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--titanium); font-family: "IBM Plex Mono", monospace; font-size: 11.5px; letter-spacing: .14em; }
.capability-strip span:not(:last-child)::after { margin-left: 14px; color: rgba(255, 255, 255, .2); content: "/"; }
.stat-row { max-width: 880px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; padding-top: 36px; border-top: 1px solid var(--line); }
.stat-row span { display: block; }
.stat-num { margin-bottom: 6px; color: var(--pearl); font-size: 15px; font-weight: 500; }
.stat-label { color: var(--titanium); font-size: 11px; letter-spacing: .04em; }

/* Shared sections */
.section-pad { padding: 112px 0; }
.border-top { border-top: 1px solid var(--line); }
.universe, #industries, #leadership, .final { background: linear-gradient(180deg, rgba(16, 17, 21, .76), rgba(8, 9, 11, .88)); }
.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head h2 { margin-top: 18px; font-family: "Newsreader", Georgia, serif; font-size: clamp(34px, 4.2vw, 52px); font-weight: 400; letter-spacing: -.03em; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: translateY(0); }

/* Ecosystem */
.universe-layout { display: grid; grid-template-columns: minmax(640px, 1.25fr) minmax(300px, .75fr); gap: 44px; align-items: center; }
.universe-stage { position: relative; height: 640px; display: flex; align-items: center; justify-content: center; margin-top: 20px; }
.universe-orbits { position: relative; width: 640px; height: 640px; }
.universe-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a2d38, var(--black) 72%);
  box-shadow: 0 0 60px -6px rgba(79, 140, 255, .35), inset 0 0 30px rgba(255, 255, 255, .03);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-align: center;
  transform: translate(-50%, -50%);
}
.orbit { position: absolute; top: 50%; left: 50%; border: 1px dashed var(--line); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-large { width: 640px; height: 640px; }
.orbit-small { width: 420px; height: 420px; }
.orbit-spin { position: absolute; top: 50%; left: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-spin-inner { width: 420px; height: 420px; animation: spin 70s linear infinite; }
.orbit-spin-outer { width: 640px; height: 640px; animation: spin-reverse 95s linear infinite; }
.node { position: absolute; width: 150px; transform-origin: 0 0; }
.orbit-spin-inner .node { animation: counter-spin 70s linear infinite; }
.orbit-spin-outer .node { animation: counter-spin-reverse 95s linear infinite; }
.universe-orbits:hover .orbit-spin, .universe-orbits:hover .node, .universe-orbits:focus-within .orbit-spin, .universe-orbits:focus-within .node { animation-play-state: paused; }
.node-agent { top: 0; left: 210px; }
.node-pay { top: 210px; left: 420px; }
.node-labs { top: 420px; left: 210px; }
.node-connect { top: 90px; left: 540px; }
.node-ai { top: 540px; left: 540px; }
.node-cyber { top: 540px; left: 100px; }
.node-legal { top: 90px; left: 100px; }
.node-card {
  position: relative;
  width: 100%;
  display: block;
  padding: 14px 16px 29px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(20, 21, 26, .9);
  color: var(--pearl);
  text-align: left;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.node-card:hover, .node-card.active { border-color: var(--ice); background: rgba(25, 28, 35, .95); box-shadow: 0 0 30px -8px var(--ice); }
.node-card b { display: block; font-size: 12px; font-weight: 600; letter-spacing: .01em; }
.node-card small { display: block; margin-top: 5px; color: var(--titanium); font-size: 10.5px; line-height: 1.4; }
.node-card::after { position: absolute; bottom: 10px; left: 16px; color: var(--parent-gold); content: attr(data-status); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.universe-static { display: none; }
.node-detail { min-height: 320px; display: flex; flex-direction: column; justify-content: center; margin-top: 0; padding: 36px 34px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(145deg, rgba(36, 38, 46, .56), rgba(16, 17, 21, .82)); box-shadow: 0 24px 70px rgba(0, 0, 0, .2), inset 0 1px rgba(255, 255, 255, .025); }
.node-detail .tag { color: var(--ice); font-family: "IBM Plex Mono", monospace; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; }
.detail-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.product-status { flex: 0 0 auto; padding: 5px 8px; border: 1px solid rgba(198, 164, 95, .3); border-radius: 999px; background: rgba(198, 164, 95, .05); color: #ebd9ae; font-family: "IBM Plex Mono", monospace; font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; }
.node-detail h3 { margin: 10px 0 8px; font-size: 22px; }
.node-detail p { max-width: 680px; color: var(--titanium); font-size: 14.5px; line-height: 1.65; }
.node-detail .line { margin-top: 14px; color: var(--silver); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .03em; }
.node-link { min-height: 32px; display: inline-flex; align-items: center; align-self: flex-start; gap: 9px; margin-top: 18px; padding: 4px 0; color: var(--ice); font-size: 12px; font-weight: 600; letter-spacing: .02em; transition: color .2s ease, gap .2s ease; }
.node-link:hover { gap: 13px; color: var(--pearl); }
.node-link[hidden] { display: none; }

@keyframes spin { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-reverse { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes counter-spin { from { transform: rotate(0); } to { transform: rotate(-360deg); } }
@keyframes counter-spin-reverse { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Architecture */
.flow { display: flex; flex-direction: column; align-items: center; margin-top: 10px; }
.flow-step { position: relative; width: 100%; max-width: 480px; padding: 16px 22px; border: 1px solid var(--line); border-radius: 4px; background: rgba(255, 255, 255, .015); font-family: "IBM Plex Mono", monospace; font-size: 12.5px; letter-spacing: .05em; text-align: center; }
.flow-step.core { border-color: var(--ice); color: var(--ice); box-shadow: 0 0 26px -8px var(--ice); }
.flow-connector { position: relative; width: 1px; height: 34px; overflow: hidden; background: linear-gradient(var(--line-strong), var(--line)); }
.flow-connector::after { position: absolute; top: -40px; left: 0; width: 1px; height: 40px; background: linear-gradient(var(--ice), transparent); content: ""; animation: pulse-down 2.8s linear infinite; }
@keyframes pulse-down { to { top: 100%; } }

/* Technology stack */
.stack { display: flex; flex-direction: column; gap: 2px; margin-top: 10px; }
.stack-layer { display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: center; padding: 26px 32px; border: 1px solid var(--line); transition: background .3s ease, border-color .3s ease; }
.stack-layer:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, .02); }
.layer-name { color: var(--ice); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.layer-items { display: flex; flex-wrap: wrap; gap: 24px; color: var(--silver); font-size: 14px; }

/* Industries */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 10px; border: 1px solid var(--line); background: var(--line); }
.industry-card { min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; padding: 32px 26px; background: rgba(8, 9, 11, .94); transition: background .3s ease, transform .3s ease; }
.industry-card:hover { background: var(--obsidian); transform: translateY(-2px); }
.industry-card .idx { color: var(--titanium); font-family: "IBM Plex Mono", monospace; font-size: 10.5px; }
.industry-card h3 { margin-top: 20px; font-size: 16px; letter-spacing: -.01em; }
.industry-card p { margin-top: 8px; color: var(--titanium); font-size: 13.5px; line-height: 1.55; }

/* Business model */
.revenue-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; margin-top: 10px; }
.revenue-list { display: flex; flex-direction: column; }
.revenue-item { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.revenue-item:last-child { border-bottom: 0; }
.revenue-item b { font-size: 15px; font-weight: 500; }
.revenue-item span { color: var(--titanium); font-size: 12.5px; text-align: right; }
.engine-box { height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 40px 30px; border: 1px solid var(--line-strong); border-radius: 6px; background: radial-gradient(circle at 50% 0%, rgba(79, 140, 255, .08), transparent 70%); text-align: center; }
.engine-box .eyebrow { justify-content: center; }
.engine-box h3 { margin: 16px 0 10px; font-size: 20px; }
.engine-box p { color: var(--titanium); font-size: 13px; line-height: 1.6; }

/* Leadership and vision */
.leaders { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 10px; border: 1px solid var(--line); background: var(--line); }
.leader { padding: 44px 38px; background: rgba(8, 9, 11, .94); }
.portrait { width: 72px; height: 72px; display: block; margin-bottom: 24px; border: 1px solid rgba(198, 164, 95, .34); border-radius: 50%; object-fit: cover; object-position: center 18%; filter: saturate(.82); box-shadow: 0 12px 30px rgba(0, 0, 0, .28); }
.leader h3 { font-size: 21px; }
.leader .role { margin: 8px 0 16px; color: var(--ice); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.leader p { max-width: 58ch; color: var(--titanium); font-size: 13.5px; line-height: 1.65; }
.vision { padding: 150px 0; }
.vision h2 { max-width: 900px; margin-top: 20px; font-family: "Newsreader", Georgia, serif; font-size: clamp(38px, 5vw, 64px); font-weight: 400; letter-spacing: -.03em; line-height: 1.08; }
.vision p { max-width: 580px; margin-top: 34px; color: var(--titanium); font-size: 15px; line-height: 1.75; }

/* Final CTA and footer */
.final { padding: 170px 0 110px; text-align: center; }
.final .eyebrow { justify-content: center; }
.final h2 { max-width: 820px; margin: 20px auto 22px; font-family: "Newsreader", Georgia, serif; font-size: clamp(38px, 5.6vw, 68px); font-weight: 400; letter-spacing: -.03em; }
.final-note { max-width: 590px; margin: 0 auto; color: var(--titanium); font-size: 14px; line-height: 1.7; }
.final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 32px 0 50px; }
footer { padding: 50px 0 40px; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(8, 9, 11, .95), #08090b); }
.footer-inner { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-logo { margin-bottom: 8px; }
.footer-tag { color: var(--titanium); font-family: "IBM Plex Mono", monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; color: var(--titanium); font-size: 11.5px; }
.footer-links a { min-height: 28px; display: inline-flex; align-items: center; padding: 3px 0; transition: color .2s ease; }
.footer-links a:hover { color: var(--ice); }
.footer-note { max-width: 820px; margin-top: 18px; color: #8d909c; font-size: 11px; line-height: 1.65; }
.footer-copy { max-width: 330px; color: var(--titanium); font-size: 11.5px; text-align: right; }

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    z-index: 49;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    padding: 16px 32px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 11, .98);
  }
  .nav-links.open a { min-height: 52px; display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-links.open a:last-child { border-bottom: 0; }
  .nav-links.open a::after { display: none; }
}

@media (max-width: 1179px) {
  .universe-layout { display: block; }
  .node-detail { min-height: 180px; margin-top: 34px; }
}

@media (max-width: 1120px) {
  html.no-js .site-header { position: relative; }
  html.no-js .nav-shell { flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }
  html.no-js .nav-toggle { display: none; }
  html.no-js .nav-cta { display: inline-flex; }
  html.no-js .nav-links { position: static; order: 3; flex: 1 0 100%; display: flex; justify-content: flex-start; gap: 18px; overflow-x: auto; border-top: 1px solid var(--line); }
  html.no-js .nav-links a { min-height: 46px; display: flex; align-items: center; padding: 10px 0; }
  html.no-js .hero { padding-top: 90px; }
}

@media (max-width: 900px) {
  .universe-stage { height: auto; display: block; }
  .universe-orbits { display: none; }
  .universe-static { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .universe-static .node-card { min-height: 86px; transform: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .revenue-wrap { grid-template-columns: 1fr; }
  .engine-box { min-height: 280px; }
}

@media (max-width: 760px) {
  .container { padding: 0 22px; }
  .nav-shell { min-height: 72px; padding: 0 20px; }
  .nav-links.open { top: 72px; max-height: calc(100dvh - 72px); padding-right: 22px; padding-left: 22px; }
  .logo { font-size: 14px; }
  .nav-cta { display: none; }
  .hero { padding-top: 140px; }
  .hero p { font-size: 16px; }
  .hero-ctas { margin-bottom: 56px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 80px 0; }
  .section-head { margin-bottom: 46px; }
  .leaders { grid-template-columns: 1fr; }
  .vision { padding: 110px 0; }
  .final { padding: 120px 0 80px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-copy { text-align: left; }
}

@media (max-width: 700px) {
  .stack-layer { grid-template-columns: 1fr; gap: 14px; padding: 24px; }
  .layer-items { gap: 10px 20px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-ctas > * { width: 100%; }
  .capability-strip { gap: 10px; letter-spacing: .1em; }
  .capability-strip span:not(:last-child)::after { margin-left: 10px; }
  .universe-static { display: flex; gap: 12px; overflow-x: auto; margin-right: -22px; padding: 2px 22px 10px 0; scroll-padding-left: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .universe-static::-webkit-scrollbar { display: none; }
  .universe-static .node-card { min-height: 108px; flex: 0 0 min(78vw, 300px); scroll-snap-align: start; }
  .grid-4 { grid-template-columns: 1fr; }
  .industry-card { min-height: 0; display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 22px 20px; }
  .industry-card h3 { margin-top: 0; }
  .node-detail { padding: 25px 22px; }
  .revenue-item { align-items: flex-start; flex-direction: column; gap: 6px; }
  .revenue-item span { text-align: left; }
  .final-ctas > * { width: 100%; }
  .footer-tag { line-height: 1.7; }
}

@media (max-width: 380px) {
  .stat-row { grid-template-columns: 1fr; }
  .logo-copy small { display: none; }
}

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

@media (forced-colors: active) {
  .hero h1 { background: none; color: CanvasText; -webkit-text-fill-color: CanvasText; }
  .btn-primary { border: 1px solid ButtonText; background: ButtonFace; color: ButtonText; }
}
