:root {
  --ink: #12051f;
  --panel: rgba(25, 8, 42, 0.74);
  --line: rgba(255, 255, 255, 0.14);
  --text: #fff8ff;
  --muted: #d7c6df;
  --accent: #d0227e;
  --accent-2: #461870;
  --accent-3: #f0b7d7;
  --paper: #fbf8fd;
  --paper-ink: #25102f;
  --paper-muted: #6d5b75;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ink);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(208, 34, 126, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 2%, rgba(70, 24, 112, 0.26), transparent 22rem),
    linear-gradient(180deg, #12051f 0%, #1a0830 42%, #fbf8fd 42%, #fbf8fd 100%);
}

.policy-shell {
  background:
    radial-gradient(circle at 12% 10%, rgba(208, 34, 126, 0.2), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(70, 24, 112, 0.32), transparent 20rem),
    linear-gradient(180deg, #12051f 0%, #1a0830 34%, #fbf8fd 34%, #fbf8fd 100%);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 20px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 5, 31, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

@supports (top: max(0px)) {
  .site-header {
    top: max(20px, env(safe-area-inset-top));
  }
}

.site-header.is-scrolled {
  background: rgba(18, 5, 31, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 12px 24px rgba(208, 34, 126, 0.3));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(237, 247, 251, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 190px max(24px, calc((100vw - 1180px) / 2)) 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: end;
  gap: 48px;
}

.policy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  min-height: 720px;
  padding: 180px max(24px, calc((100vw - 1180px) / 2)) 96px;
  align-items: center;
}

.policy-glow {
  position: absolute;
  inset: 90px 0 auto;
  height: 460px;
  background:
    radial-gradient(circle at 18% 36%, rgba(208, 34, 126, 0.24), transparent 22rem),
    radial-gradient(circle at 76% 28%, rgba(255, 248, 255, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(208, 34, 126, 0.04));
  pointer-events: none;
}

.policy-intro,
.policy-rail {
  position: relative;
  z-index: 2;
}

.policy-intro {
  max-width: 760px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 18px;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(237, 247, 251, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.policy-rail {
  display: grid;
  gap: 16px;
}

.policy-rail-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.policy-rail-card i,
.policy-card-head i,
.policy-check i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 24px rgba(208, 34, 126, 0.26);
}

.policy-rail-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.policy-rail-card p {
  margin: 0;
  color: rgba(237, 247, 251, 0.76);
  line-height: 1.65;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.policy-card-stack {
  display: grid;
  gap: 16px;
}

.policy-card,
.legal-block {
  padding: 34px 32px;
  border: 1px solid rgba(20, 34, 42, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 248, 0.88));
  box-shadow: 0 22px 56px rgba(20, 34, 42, 0.1);
}

.policy-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.policy-card-head i {
  margin-bottom: 0;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.policy-card h3,
.legal-block h2 {
  margin: 0;
  color: var(--paper-ink);
}

.policy-card p,
.legal-block p {
  margin-bottom: 0;
  color: var(--paper-muted);
  line-height: 1.7;
}

.policy-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.84fr);
  gap: 42px;
  align-items: center;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(18, 5, 31, 0.98), rgba(70, 24, 112, 0.84)),
    #12051f;
}

.policy-band-copy p {
  color: rgba(237, 247, 251, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
}

.policy-band-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: 1;
}

.policy-checklist {
  display: grid;
  gap: 14px;
}

.policy-check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.policy-check i {
  margin: 0;
  width: 32px;
  height: 32px;
  font-size: 0.82rem;
  box-shadow: none;
}

.policy-check span {
  color: #fff;
  font-weight: 600;
}

.policy-copy {
  padding-top: 110px;
}

.policy-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.legal-block {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.legal-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.legal-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.legal-block-head i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 24px rgba(208, 34, 126, 0.2);
  flex: 0 0 auto;
}

.legal-block h2 {
  font-size: 1.38rem;
  line-height: 1.1;
}

.legal-block p {
  max-width: 34ch;
}

.hero-lede-secondary {
  margin-top: -6px;
}

.policy-list {
  margin: 18px 0 0;
  padding-left: 1.1rem;
  color: var(--paper-muted);
}

.policy-list li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  filter: hue-rotate(88deg) saturate(0.78) contrast(1.08);
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.page-shell > main > .hero .hero-media {
  background:
    radial-gradient(circle at var(--pointer-x, 72%) var(--pointer-y, 24%), rgba(117, 247, 255, 0.26), transparent 20rem),
    radial-gradient(circle at 18% 18%, rgba(45, 216, 255, 0.3), transparent 24rem),
    radial-gradient(circle at 82% 26%, rgba(210, 55, 149, 0.3), transparent 26rem),
    radial-gradient(circle at 50% 62%, rgba(108, 53, 255, 0.28), transparent 30rem),
    linear-gradient(160deg, #040813 0%, #071326 22%, #0c1f37 46%, #190c2f 72%, #05070f 100%);
}

.page-shell > main > .hero .hero-media::before,
.page-shell > main > .hero .hero-media::after {
  content: "";
  position: absolute;
  inset: -18%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-shell > main > .hero .hero-media::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(125, 236, 255, 0.26) 50%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(227, 87, 173, 0.18) 50%, rgba(255, 255, 255, 0) 100%);
  background-position: 0 0, 0 0;
  background-size: 100% 2px, 2px 100%;
  mix-blend-mode: screen;
  opacity: 0.64;
  animation: crosshairDrift 12s ease-in-out infinite;
}

.page-shell > main > .hero .hero-media::after {
  background-image:
    radial-gradient(circle at center, rgba(138, 252, 255, 0.18) 0 1px, transparent 1px 11%),
    radial-gradient(circle at center, rgba(255, 118, 193, 0.12) 11.4%, transparent 12.6%),
    conic-gradient(from 0deg at center, rgba(255, 255, 255, 0) 0deg, rgba(92, 233, 255, 0.12) 72deg, rgba(255, 255, 255, 0) 132deg, rgba(245, 84, 168, 0.14) 212deg, rgba(255, 255, 255, 0) 296deg, rgba(92, 233, 255, 0.12) 360deg);
  background-position: center;
  background-size: 52% 52%, 70% 70%, 100% 100%;
  filter: blur(6px);
  opacity: 0.86;
  animation: haloSpin 22s linear infinite;
}

.page-shell > main > .hero .hero-aurora,
.page-shell > main > .hero .hero-grid-plane,
.page-shell > main > .hero .hero-scanlines,
.page-shell > main > .hero .hero-orbit,
.page-shell > main > .hero .hero-energy-column,
.page-shell > main > .hero .hero-data-stream,
.page-shell > main > .hero .hero-pulse-node {
  position: absolute;
  pointer-events: none;
}

.page-shell > main > .hero .hero-aurora {
  inset: -16% -10%;
  background-image:
    radial-gradient(circle at 18% 38%, rgba(71, 238, 255, 0.44), transparent 18rem),
    radial-gradient(circle at 76% 28%, rgba(255, 69, 171, 0.34), transparent 16rem),
    radial-gradient(circle at 48% 64%, rgba(112, 94, 255, 0.36), transparent 22rem);
  filter: blur(34px) saturate(1.2);
  opacity: 0.94;
  animation: auroraFloat 16s ease-in-out infinite alternate;
}

.page-shell > main > .hero .hero-grid-plane {
  inset: auto -8% -34% -8%;
  height: 78%;
  background-image:
    linear-gradient(rgba(80, 238, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 238, 255, 0.24) 1px, transparent 1px);
  background-size: 100% 72px, 72px 100%;
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 18%, #000 100%);
  opacity: 0.82;
  transform-origin: center bottom;
  transform: perspective(1100px) rotateX(78deg) scale(1.45);
  animation: gridTravel 16s linear infinite;
}

.page-shell > main > .hero .hero-scanlines {
  inset: 10% 0 8%;
  background-image:
    repeating-linear-gradient(180deg, rgba(131, 246, 255, 0.08) 0 2px, rgba(255, 255, 255, 0) 2px 18px);
  opacity: 0.34;
  animation: scanlineDrift 10s linear infinite;
}

.page-shell > main > .hero .hero-orbit {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(120, 240, 255, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 44px rgba(82, 229, 255, 0.16);
  transform-style: preserve-3d;
}

.page-shell > main > .hero .hero-orbit::before,
.page-shell > main > .hero .hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.page-shell > main > .hero .hero-orbit::before {
  inset: 7%;
  border: 1px solid rgba(255, 95, 190, 0.26);
}

.page-shell > main > .hero .hero-orbit::after {
  inset: -1px;
  background:
    radial-gradient(circle at 50% 0%, rgba(120, 246, 255, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 100% 50%, rgba(255, 88, 188, 0.8) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 100%, rgba(120, 246, 255, 0.7) 0 3px, transparent 4px);
  filter: drop-shadow(0 0 8px rgba(120, 246, 255, 0.52));
}

.page-shell > main > .hero .hero-orbit-a {
  width: min(66vw, 760px);
  height: min(66vw, 760px);
  margin: calc(min(66vw, 760px) / -2) 0 0 calc(min(66vw, 760px) / -2);
  opacity: 0.84;
  transform: perspective(1200px) rotateX(74deg) rotateZ(8deg);
  animation: orbitSpinA 18s linear infinite;
}

.page-shell > main > .hero .hero-orbit-b {
  width: min(44vw, 500px);
  height: min(44vw, 500px);
  margin: calc(min(44vw, 500px) / -2) 0 0 calc(min(44vw, 500px) / -2);
  border-color: rgba(255, 106, 196, 0.2);
  opacity: 0.66;
  transform: perspective(1200px) rotateX(74deg) rotateZ(-22deg);
  animation: orbitSpinB 14s linear infinite reverse;
}

.page-shell > main > .hero .hero-energy-column {
  left: 50%;
  top: 12%;
  width: min(28vw, 320px);
  height: 78%;
  margin-left: calc(min(28vw, 320px) / -2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(121, 245, 255, 0.2) 16%, rgba(113, 90, 255, 0.3) 50%, rgba(255, 62, 168, 0.22) 78%, rgba(255, 255, 255, 0) 100%);
  clip-path: polygon(42% 0%, 58% 0%, 100% 100%, 0% 100%);
  filter: blur(1px);
  opacity: 0.82;
  animation: energyPulse 7s ease-in-out infinite;
}

.page-shell > main > .hero .hero-data-stream {
  top: -10%;
  width: 2px;
  height: 72%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(127, 245, 255, 0.9) 18%, rgba(255, 120, 196, 0.18) 100%);
  box-shadow: 0 0 16px rgba(111, 240, 255, 0.42);
  opacity: 0.72;
}

.page-shell > main > .hero .hero-data-stream::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: #8bfbff;
  box-shadow: 0 0 18px rgba(139, 251, 255, 0.72);
}

.page-shell > main > .hero .hero-data-stream-a {
  left: 26%;
  transform: rotate(12deg);
  animation: dataStreamA 8s linear infinite;
}

.page-shell > main > .hero .hero-data-stream-b {
  right: 20%;
  transform: rotate(-16deg);
  animation: dataStreamB 9s linear infinite;
}

.page-shell > main > .hero .hero-pulse-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8ffcff;
  box-shadow:
    0 0 0 0 rgba(143, 252, 255, 0.42),
    0 0 22px rgba(143, 252, 255, 0.72);
  animation: nodePulse 4.8s ease-out infinite;
}

.page-shell > main > .hero .hero-pulse-node-a {
  left: 18%;
  top: 26%;
}

.page-shell > main > .hero .hero-pulse-node-b {
  left: 71%;
  top: 22%;
  animation-delay: 1.2s;
}

.page-shell > main > .hero .hero-pulse-node-c {
  left: 62%;
  top: 62%;
  animation-delay: 2.1s;
}

.hero-overlay {
  background:
    linear-gradient(0deg, rgba(18, 5, 31, 0.48), rgba(18, 5, 31, 0.48)),
    linear-gradient(90deg, rgba(18, 5, 31, 0.96) 0%, rgba(18, 5, 31, 0.82) 38%, rgba(18, 5, 31, 0.62) 100%),
    linear-gradient(180deg, rgba(18, 5, 31, 0.26) 0%, rgba(18, 5, 31, 0.93) 100%);
}

.page-shell > main > .hero .hero-overlay {
  background:
    linear-gradient(0deg, rgba(10, 6, 22, 0.2), rgba(10, 6, 22, 0.2)),
    linear-gradient(90deg, rgba(10, 6, 22, 0.78) 0%, rgba(10, 6, 22, 0.54) 38%, rgba(10, 6, 22, 0.22) 100%),
    linear-gradient(180deg, rgba(10, 6, 22, 0.08) 0%, rgba(10, 6, 22, 0.58) 100%);
}

.page-shell > main > .hero h1 {
  font-size: clamp(3rem, 6.3vw, 6.9rem);
  line-height: 0.92;
}

.page-shell > main > .hero .hero-lede {
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  color: rgba(237, 247, 251, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button i {
  font-size: 0.88em;
  transition: transform 180ms ease;
}

.button:hover i {
  transform: translateX(2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 42px rgba(208, 34, 126, 0.28);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero-panel div {
  display: grid;
  gap: 4px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.metric {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.metric-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.metric-line i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 24px rgba(208, 34, 126, 0.28);
  flex: 0 0 auto;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  color: var(--paper-ink);
  background: var(--paper);
}

.section-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.section-copy h2,
.network-content h2,
.careers h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-copy p,
.network-content p,
.careers p {
  color: var(--paper-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.capability-card {
  min-height: 242px;
  padding: 26px;
  border: 1px solid rgba(20, 34, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(20, 34, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.capability-card:hover {
  transform: translateY(-7px);
  border-color: rgba(208, 34, 126, 0.28);
  box-shadow: 0 28px 70px rgba(20, 34, 42, 0.14);
}

.capability-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 800;
}

.capability-card i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 24px rgba(208, 34, 126, 0.18);
}

.capability-card h3,
.timeline-item h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.capability-card p,
.timeline-item p {
  margin-bottom: 0;
  color: var(--paper-muted);
  line-height: 1.65;
}

.network-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  gap: 56px;
  align-items: center;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  color: var(--text);
  background: #12051f;
  overflow: hidden;
}

.network-bg {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(208, 34, 126, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
}

.network-bg span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(208, 34, 126, 0.92);
  animation: pulse 2.8s ease-in-out infinite;
}

.network-bg span:nth-child(1) { left: 18%; top: 34%; animation-delay: 0s; }
.network-bg span:nth-child(2) { left: 38%; top: 58%; animation-delay: 0.4s; }
.network-bg span:nth-child(3) { left: 64%; top: 30%; animation-delay: 0.8s; }
.network-bg span:nth-child(4) { left: 78%; top: 66%; animation-delay: 1.2s; }
.network-bg span:nth-child(5) { left: 51%; top: 44%; animation-delay: 1.6s; }

.network-content,
.state-cloud {
  position: relative;
  z-index: 2;
}

.network-content p {
  color: rgba(237, 247, 251, 0.72);
}

.state-cloud {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.state-cloud-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.state-cloud-stat {
  display: grid;
  gap: 4px;
}

.state-cloud-stat strong {
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.state-cloud-stat span,
.state-map-note {
  color: rgba(237, 247, 251, 0.74);
}

.state-map-wrap {
  display: grid;
  gap: 16px;
}

.state-map {
  width: 100%;
  height: auto;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.state-map-note {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.opportunities {
  padding-top: 130px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(var(--accent), rgba(20, 34, 42, 0.12));
}

.timeline-item {
  position: relative;
  padding: 0 0 26px 54px;
}

.timeline-item span {
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(208, 34, 126, 0.36), 0 12px 28px rgba(208, 34, 126, 0.2);
}

.careers {
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(18, 5, 31, 0.94), rgba(70, 24, 112, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(208, 34, 126, 0.22), transparent 22rem),
    #12051f;
}

.careers-inner {
  max-width: 780px;
}

.careers p {
  color: rgba(237, 247, 251, 0.76);
}

.site-footer {
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(237, 247, 251, 0.78);
  background: #0b0312;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr) minmax(180px, 0.6fr);
  gap: 48px;
}

.footer-brand {
  margin-bottom: 24px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(237, 247, 251, 0.68);
  font-style: normal;
  line-height: 1.75;
}

.site-footer a:not(.brand) {
  display: table;
  margin-bottom: 10px;
  color: rgba(237, 247, 251, 0.78);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(237, 247, 251, 0.52);
  font-size: 0.9rem;
}

.footer-bottom a {
  margin: 0;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.social-links i {
  display: grid;
  place-items: center;
  width: 1em;
  height: 1em;
  font-size: 1.05rem;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.team-shell {
  background:
    radial-gradient(circle at 16% 8%, rgba(208, 34, 126, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(70, 24, 112, 0.24), transparent 22rem),
    linear-gradient(180deg, #12051f 0%, #1a0830 30%, #fbf8fd 30%, #fbf8fd 100%);
}

.business-shell {
  background:
    radial-gradient(circle at 14% 8%, rgba(208, 34, 126, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 6%, rgba(70, 24, 112, 0.28), transparent 20rem),
    linear-gradient(180deg, #12051f 0%, #1a0830 31%, #fbf8fd 31%, #fbf8fd 100%);
}

.business-hero {
  min-height: 840px;
}

.business-hero-media {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 119, 191, 0.18), transparent 24rem),
    radial-gradient(circle at 80% 20%, rgba(111, 240, 255, 0.16), transparent 22rem),
    linear-gradient(145deg, #090612 0%, #121024 35%, #21103a 68%, #0a0813 100%);
}

.business-glow,
.business-grid,
.business-signal {
  position: absolute;
  pointer-events: none;
}

.business-glow {
  border-radius: 50%;
  filter: blur(20px);
}

.business-glow-a {
  inset: 14% auto auto 12%;
  width: 280px;
  height: 280px;
  background: rgba(255, 99, 181, 0.18);
  animation: auroraFloat 18s ease-in-out infinite alternate;
}

.business-glow-b {
  inset: auto 10% 14% auto;
  width: 320px;
  height: 320px;
  background: rgba(111, 240, 255, 0.16);
  animation: auroraFloat 16s ease-in-out infinite alternate-reverse;
}

.business-grid {
  inset: 12% 8% 8%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), #000 35%, rgba(0, 0, 0, 0.22));
}

.business-signal {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.business-signal::before,
.business-signal::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.business-signal::after {
  inset: 34px;
}

.business-signal-a {
  top: 14%;
  right: 18%;
  animation: haloSpin 24s linear infinite;
}

.business-signal-b {
  left: 22%;
  bottom: 14%;
  width: 120px;
  height: 120px;
  animation: haloSpin 16s linear infinite reverse;
}

.business-hero-overlay {
  background:
    linear-gradient(0deg, rgba(12, 7, 22, 0.28), rgba(12, 7, 22, 0.28)),
    linear-gradient(90deg, rgba(12, 7, 22, 0.94) 0%, rgba(12, 7, 22, 0.76) 38%, rgba(12, 7, 22, 0.26) 100%),
    linear-gradient(180deg, rgba(12, 7, 22, 0.08) 0%, rgba(12, 7, 22, 0.72) 100%);
}

.business-hero-content {
  max-width: 740px;
}

.business-hero .hero-panel {
  justify-self: end;
}

.business-intro {
  padding-top: 108px;
}

.business-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(18, 5, 31, 0.98), rgba(70, 24, 112, 0.84)),
    #12051f;
}

.business-band-copy p {
  color: rgba(237, 247, 251, 0.76);
  font-size: 1.04rem;
  line-height: 1.75;
}

.business-band-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: 1;
}

.business-requirements,
.business-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.business-process,
.business-testimonials {
  scroll-margin-top: 110px;
}

.business-cta {
  padding-top: 96px;
}

.team-hero {
  min-height: 860px;
}

.team-hero-media img {
  filter: saturate(0.9) contrast(1.02);
  animation-duration: 18s;
}

.team-hero-overlay {
  background:
    linear-gradient(0deg, rgba(18, 5, 31, 0.42), rgba(18, 5, 31, 0.42)),
    linear-gradient(90deg, rgba(18, 5, 31, 0.97) 0%, rgba(18, 5, 31, 0.84) 36%, rgba(18, 5, 31, 0.46) 100%),
    linear-gradient(180deg, rgba(18, 5, 31, 0.18) 0%, rgba(18, 5, 31, 0.92) 100%);
}

.team-hero-content {
  max-width: 720px;
}

.team-hero-content h1 {
  font-size: clamp(2.9rem, 5.4vw, 6.2rem);
}

.team-hero-content .hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.team-hero .hero-panel {
  justify-self: end;
  margin-right: clamp(8px, 1.8vw, 26px);
  border: 1px solid transparent;
  background:
    linear-gradient(165deg, rgba(20, 8, 35, 0.82), rgba(64, 22, 98, 0.62)) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 38%, rgba(208, 34, 126, 0.36)) border-box;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.team-hero .hero-panel div {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.team-index {
  padding-top: 108px;
}

.team-index,
.team-section,
.team-band {
  scroll-margin-top: 110px;
}

.team-index-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

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

.team-jump-card,
.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 34, 42, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 248, 0.88));
  box-shadow: 0 20px 56px rgba(20, 34, 42, 0.1);
}

.team-jump-card {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-jump-card::before,
.team-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.team-jump-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(208, 34, 126, 0.28);
  box-shadow: 0 30px 72px rgba(20, 34, 42, 0.14);
}

.team-jump-card span,
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-jump-card i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 24px rgba(208, 34, 126, 0.18);
}

.team-jump-card strong,
.team-card-copy h3 {
  color: var(--paper-ink);
  font-size: 1.28rem;
  line-height: 1.05;
}

.team-jump-card p,
.team-section-head p,
.team-role {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.7;
}

.team-section {
  padding-top: 108px;
}

.team-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.team-section-head h2,
.team-band-copy h2 {
  margin-bottom: 0;
  color: var(--paper-ink);
}

.team-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  color: var(--paper-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 240, 247, 0.92));
}

.team-band-alt {
  background:
    linear-gradient(135deg, rgba(18, 5, 31, 0.96), rgba(70, 24, 112, 0.84)),
    #12051f;
}

.team-band-alt .team-band-copy h2,
.team-band-alt .team-band-copy p,
.team-band-alt .team-role,
.team-band-alt .team-card-copy h3 {
  color: #fff;
}

.team-band-alt .eyebrow {
  color: var(--accent-3);
}

.team-band-alt .team-card,
.team-band-alt .team-card-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.team-band-copy p {
  max-width: 38ch;
}

.team-band-stacked {
  grid-template-columns: 1fr;
  gap: 32px;
}

.team-band-copy-wide p {
  max-width: 64ch;
}

.team-grid.team-grid-two.team-grid-hr {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.team-grid.team-grid-two.team-grid-hr .team-card-media {
  aspect-ratio: 4 / 4.4;
}

.team-grid.team-grid-two.team-grid-hr .team-card-copy {
  padding: 18px 18px 20px;
}

.team-grid.team-grid-two.team-grid-hr .team-card-copy h3 {
  font-size: 1.08rem;
}

.team-grid.team-grid-two.team-grid-hr .team-role {
  font-size: 0.9rem;
  line-height: 1.5;
}

.team-grid.team-grid-ops {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.team-grid.team-grid-ops .team-card-media {
  aspect-ratio: 4 / 4.4;
}

.team-grid.team-grid-ops .team-card-copy {
  padding: 18px 18px 20px;
}

.team-grid.team-grid-ops .team-card-copy h3 {
  font-size: 1.08rem;
}

.team-grid.team-grid-ops .team-role {
  font-size: 0.9rem;
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-grid-two {
  width: min(100%, 640px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.team-grid-two .team-card-media {
  aspect-ratio: 4 / 4.4;
}

.team-grid-two .team-card-copy {
  padding: 18px 18px 20px;
}

.team-grid-two .team-card-copy h3 {
  font-size: 1.08rem;
}

.team-grid-two .team-role {
  font-size: 0.9rem;
  line-height: 1.5;
}

.team-grid-training .team-card-media {
  aspect-ratio: 4 / 5.2;
  background:
    radial-gradient(circle at 50% 0%, rgba(208, 34, 126, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(18, 5, 31, 0.06));
}

.team-grid-training .team-card-media img {
  object-position: center 12%;
  background: rgba(255, 255, 255, 0.04);
  filter: saturate(0.96) contrast(0.98);
}

.team-grid-training .team-card-media-placeholder {
  min-height: 100%;
}

.team-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid-featured .team-card-media {
  aspect-ratio: 4 / 5;
}

.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-height: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-card-media {
  position: relative;
  aspect-ratio: 4 / 4.95;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(208, 34, 126, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(18, 5, 31, 0.04), rgba(18, 5, 31, 0));
}

.team-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(18, 5, 31, 0), rgba(18, 5, 31, 0.38));
  pointer-events: none;
}

.team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 300ms ease, filter 300ms ease;
}

.team-card-media-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(208, 34, 126, 0.28), transparent 54%),
    linear-gradient(160deg, rgba(18, 5, 31, 0.94), rgba(70, 24, 112, 0.78));
}

.team-card-media-placeholder i {
  color: rgba(255, 255, 255, 0.92);
  font-size: 3rem;
}

.team-card:hover .team-card-media img {
  transform: scale(1.035);
  filter: saturate(1.02);
}


.team-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.04em;
  background: rgba(18, 5, 31, 0.62);
  backdrop-filter: blur(14px);
}

.team-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: -1px;
  padding: 22px 22px 24px;
}

.team-card-copy h3 {
  margin: 0;
}

.team-role {
  font-size: 0.98rem;
}

.team-band-alt .team-card-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(18px, -12px, 0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.72);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes meshDriftA {
  0% {
    transform: translate3d(-18px, -12px, 0) rotate(0deg) scale(0.98);
  }
  50% {
    transform: translate3d(16px, 12px, 0) rotate(28deg) scale(1.04);
  }
  100% {
    transform: translate3d(-10px, 22px, 0) rotate(360deg) scale(1);
  }
}

@keyframes auroraFloat {
  0% {
    transform: translate3d(-2%, -3%, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, 1%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(1%, 3%, 0) scale(1.03);
  }
}

@keyframes crosshairDrift {
  0% {
    transform: translate3d(-4%, -3%, 0) scale(0.98);
  }
  50% {
    transform: translate3d(3%, 2%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-2%, 4%, 0) scale(1);
  }
}

@keyframes haloSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.04);
  }
}

@keyframes gridTravel {
  0% {
    background-position: 0 0, 0 0;
  }
  50% {
    background-position: 0 36px, 36px 0;
  }
  100% {
    background-position: 0 72px, 72px 0;
  }
}

@keyframes scanlineDrift {
  0% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(8px);
  }
}

@keyframes orbitSpinA {
  0% {
    transform: perspective(1200px) rotateX(74deg) rotateZ(8deg);
  }
  100% {
    transform: perspective(1200px) rotateX(74deg) rotateZ(368deg);
  }
}

@keyframes orbitSpinB {
  0% {
    transform: perspective(1200px) rotateX(74deg) rotateZ(-22deg);
  }
  100% {
    transform: perspective(1200px) rotateX(74deg) rotateZ(-382deg);
  }
}

@keyframes energyPulse {
  0%, 100% {
    opacity: 0.48;
    transform: translateY(0) scaleY(0.96);
  }
  50% {
    opacity: 0.84;
    transform: translateY(-10px) scaleY(1.04);
  }
}

@keyframes dataStreamA {
  0% {
    transform: rotate(12deg) translateY(-8%);
    opacity: 0;
  }
  18% {
    opacity: 0.78;
  }
  100% {
    transform: rotate(12deg) translateY(78%);
    opacity: 0;
  }
}

@keyframes dataStreamB {
  0% {
    transform: rotate(-16deg) translateY(-12%);
    opacity: 0;
  }
  20% {
    opacity: 0.74;
  }
  100% {
    transform: rotate(-16deg) translateY(82%);
    opacity: 0;
  }
}

@keyframes nodePulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(143, 252, 255, 0.34),
      0 0 12px rgba(143, 252, 255, 0.62);
    transform: scale(0.9);
  }
  70% {
    box-shadow:
      0 0 0 24px rgba(143, 252, 255, 0),
      0 0 28px rgba(143, 252, 255, 0.85);
    transform: scale(1.08);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(143, 252, 255, 0),
      0 0 18px rgba(143, 252, 255, 0.48);
    transform: scale(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-shell > main > .hero .hero-grid-plane {
    background-position: 0 36px, 36px 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    height: 64px;
    width: calc(100% - 24px);
  }

  @supports (top: max(0px)) {
    .site-header {
      top: max(12px, env(safe-area-inset-top));
    }
  }

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

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(18, 5, 31, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 18px;
  }

  .hero {
    min-height: 880px;
    grid-template-columns: 1fr;
    align-content: end;
    padding-top: 140px;
  }

  .page-shell > main > .hero .hero-grid-plane {
    inset: auto -24% -26% -24%;
    height: 64%;
  }

  .page-shell > main > .hero .hero-orbit-a {
    width: min(104vw, 760px);
    height: min(104vw, 760px);
    margin: calc(min(104vw, 760px) / -2) 0 0 calc(min(104vw, 760px) / -2);
  }

  .page-shell > main > .hero .hero-orbit-b {
    width: min(72vw, 520px);
    height: min(72vw, 520px);
    margin: calc(min(72vw, 520px) / -2) 0 0 calc(min(72vw, 520px) / -2);
  }

  .page-shell > main > .hero .hero-energy-column {
    width: min(42vw, 300px);
    margin-left: calc(min(42vw, 300px) / -2);
  }

  .hero-content,
  .hero-panel {
    width: 100%;
    min-width: 0;
    max-width: 520px;
  }

  .page-shell > main > .hero .hero-content {
    max-width: 100%;
  }

  .page-shell > main > .hero .hero-panel {
    max-width: 100%;
  }

  .page-shell > main > .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 4.8rem);
    line-height: 0.96;
  }

  .page-shell > main > .hero .hero-lede {
    max-width: 100%;
  }

  .page-shell > main > .hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .page-shell > main > .hero .button {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 14px 18px;
  }

  .team-hero .hero-panel {
    justify-self: start;
    margin-right: 0;
  }

  .section-grid,
  .split,
  .network-band,
  .footer-grid,
  .policy-grid,
  .policy-band,
  .policy-columns,
  .business-band,
  .business-requirements,
  .business-testimonial-grid,
  .team-index-layout,
  .team-section-head,
  .team-band {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .team-grid,
  .team-grid-two,
  .team-jump-grid {
    grid-template-columns: 1fr;
  }

  .team-grid.team-grid-ops,
  .team-grid.team-grid-two.team-grid-hr,
  .team-grid-featured {
    grid-template-columns: 1fr;
  }

  .policy-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 72px;
  }
}

@media (max-width: 1140px) {
  .hero {
    min-height: 880px;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .hero-panel {
    max-width: 520px;
  }

  .team-hero {
    min-height: 900px;
  }

  .team-hero .hero-panel {
    justify-self: start;
    margin-right: 0;
  }

  .business-hero .hero-panel {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
    padding-bottom: 48px;
  }

  .page-shell > main > .hero .hero-data-stream-a {
    left: 14%;
  }

  .page-shell > main > .hero .hero-data-stream-b {
    right: 10%;
  }

  .page-shell > main > .hero .hero-pulse-node-a {
    left: 14%;
    top: 30%;
  }

  .page-shell > main > .hero .hero-pulse-node-b {
    left: 78%;
    top: 26%;
  }

  .page-shell > main > .hero .hero-pulse-node-c {
    left: 66%;
    top: 58%;
  }

  .page-shell > main > .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.9rem);
  }

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

  .button {
    width: 100%;
  }

  .section,
  .network-band,
  .careers,
  .policy-band {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .policy-hero {
    padding-bottom: 48px;
  }

  .policy-card,
  .legal-block {
    padding: 28px 24px;
  }

  .team-jump-card,
  .team-card-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .state-cloud {
    padding: 18px;
  }

  .state-cloud-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .state-map {
    padding: 10px;
  }

  .team-band {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .team-badge {
    left: 12px;
    right: 12px;
    justify-content: center;
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.72rem;
  }
}
