:root {
  color-scheme: dark;
  --bg-void: #04050d;
  --bg-depth: #090c1f;
  --bg-panel: rgba(21, 24, 50, 0.72);
  --bg-panel-alt: rgba(18, 21, 45, 0.66);
  --border-glow: rgba(111, 124, 255, 0.65);
  --text-primary: #f6f7ff;
  --text-secondary: rgba(214, 219, 255, 0.78);
  --accent-primary: #7e7bff;
  --accent-secondary: #00d3ff;
  --accent-hot: #ff4d9a;
  --font-heading: "Oxanium", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --ring-blur: drop-shadow(0 0 24px rgba(126, 123, 255, 0.55));
  --content-width: 1480px;
}

html {
  scroll-behavior: smooth;
}

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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 20%, rgba(126, 123, 255, 0.15), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(0, 211, 255, 0.12), transparent 40%),
    linear-gradient(140deg, #050713, #03030a 55%, #050915 100%);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.55;
}

#starlight {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 3.2rem clamp(1.5rem, 4vw, 5rem) 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(120deg, rgba(8, 12, 30, 0.9), rgba(5, 7, 20, 0.82));
  backdrop-filter: blur(20px);
}

html.visuals-reduced .page {
  backdrop-filter: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(126, 123, 255, 0.28);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(15, 18, 40, 0.8), rgba(8, 12, 28, 0.6));
  box-shadow: 0 18px 60px rgba(4, 6, 20, 0.55);
  position: static;
  z-index: 5;
  backdrop-filter: blur(20px);
}

html.visuals-reduced .topbar,
html.visuals-reduced .hero-overlay {
  backdrop-filter: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo__icon {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 123, 255, 0.8), rgba(126, 123, 255, 0.1));
  border: 1px solid rgba(126, 123, 255, 0.55);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.35rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-secondary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:focus-visible,
.nav a:hover {
  color: var(--text-primary);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.mode-indicator {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 211, 255, 0.42);
  color: var(--accent-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 211, 255, 0.08);
}

main {
  flex: 1 1 auto;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

main > section {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  scroll-margin-top: 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.4rem, 5vw, 5rem);
  align-items: center;
}

.hero__copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow {
  font-family: var(--font-heading);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(126, 123, 255, 0.85);
  margin: 0 0 1.1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 34ch;
}

.mode-chips {
  margin: 1.6rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 123, 255, 0.4);
  background: rgba(14, 17, 40, 0.6);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.chip--safe,
.chip--standard,
.chip--privileged {
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.chip--safe {
  color: #82f5cb;
  border-color: rgba(130, 245, 203, 0.42);
  background:
    linear-gradient(135deg, rgba(18, 52, 44, 0.7), rgba(10, 22, 32, 0.82)),
    rgba(14, 17, 40, 0.6);
  box-shadow:
    inset 0 0 0 1px rgba(130, 245, 203, 0.08),
    0 0 18px rgba(80, 227, 176, 0.12);
}

.chip--standard {
  color: #ffcf7c;
  border-color: rgba(255, 207, 124, 0.42);
  background:
    linear-gradient(135deg, rgba(56, 38, 12, 0.72), rgba(18, 19, 38, 0.82)),
    rgba(14, 17, 40, 0.6);
  box-shadow:
    inset 0 0 0 1px rgba(255, 207, 124, 0.08),
    0 0 18px rgba(255, 179, 71, 0.12);
}

.chip--privileged {
  color: #ff8ea1;
  border-color: rgba(255, 142, 161, 0.42);
  background:
    linear-gradient(135deg, rgba(62, 18, 32, 0.72), rgba(20, 18, 40, 0.82)),
    rgba(14, 17, 40, 0.6);
  box-shadow:
    inset 0 0 0 1px rgba(255, 142, 161, 0.08),
    0 0 18px rgba(255, 110, 138, 0.12);
}

.cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-secondary));
  color: #050713;
  box-shadow: 0 22px 60px rgba(126, 123, 255, 0.38);
}

.btn--ghost {
  border-color: rgba(126, 123, 255, 0.35);
  color: var(--text-primary);
  background: rgba(126, 123, 255, 0.08);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(126, 123, 255, 0.35);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 0;
}

.hero-stats div {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: var(--bg-panel);
  border: 1px solid rgba(126, 123, 255, 0.24);
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(182, 190, 255, 0.68);
}

.hero-stats dd {
  margin: 0.4rem 0 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.hero__meta {
  margin: 1.5rem 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(214, 219, 255, 0.86);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  background: rgba(126, 123, 255, 0.15);
  border: 1px solid rgba(126, 123, 255, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-right: 0.45rem;
}

.hero__mission {
  margin-top: 1.6rem;
  padding: 1.25rem 1.4rem;
  border-radius: 20px;
  background: rgba(10, 14, 34, 0.78);
  border: 1px solid rgba(126, 123, 255, 0.22);
  box-shadow: inset 0 0 32px rgba(5, 8, 25, 0.85);
}

.hero__mission p {
  margin: 0 0 0.9rem;
  color: rgba(214, 219, 255, 0.85);
}

.hero__mission ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  color: rgba(214, 219, 255, 0.78);
}

.hero__visual {
  position: relative;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 40vw, 520px);
}

.hero__visual .hero-grid {
  position: absolute;
  inset: 0;
  margin: auto;
}


.hero-orbits {
  --pointer-x: 0.5;
  --pointer-y: 0.5;
  position: relative;
  width: clamp(320px, 35vw, 460px);
  height: clamp(320px, 35vw, 460px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(126, 123, 255, 0.2), rgba(4, 4, 12, 0.1));
  border: 1px solid rgba(126, 123, 255, 0.18);
}

.hero-orbits::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 211, 255, 0.35), transparent 70%);
  left: calc(var(--pointer-x, 0.5) * 100%);
  top: calc(var(--pointer-y, 0.5) * 100%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.4s ease;
}


.hero-core {
  width: 65%;
  filter: var(--ring-blur);
  z-index: 2;
}

.orbit {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(126, 123, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: orbit 24s linear infinite;
  transform-origin: center;
}

.orbit span {
  margin-left: 55%;
  padding: 0.45rem 0.8rem;
  border-radius: 12px;
  background: rgba(5, 10, 25, 0.9);
  border: 1px solid rgba(126, 123, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit--beta {
  inset: 2%;
  animation-duration: 18s;
}

.orbit--gamma {
  inset: 16%;
  animation-duration: 32s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero.hero--command-stage {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 2.35rem 2.35rem 2.1rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 2rem;
  align-items: stretch;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(131, 164, 205, 0.16);
  box-shadow: 0 34px 120px rgba(1, 5, 12, 0.56);
  background:
    radial-gradient(circle at 18% 14%, rgba(109, 220, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(196, 175, 255, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(10, 21, 38, 0.96), rgba(4, 10, 20, 0.92));
}

.hero.hero--command-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(109, 220, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 44%);
}

.hero.hero--command-stage .hero__copy--command,
.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.hero.hero--command-stage .eyebrow {
  margin: 0;
  color: rgba(109, 220, 255, 0.88);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-monument {
  position: relative;
  padding-bottom: 1.25rem;
}

.hero-monument::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(180px, 38%);
  height: 1px;
  background: linear-gradient(90deg, rgba(109, 220, 255, 0.9), rgba(109, 220, 255, 0));
}

.hero-monument__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(131, 164, 205, 0.14);
  background: rgba(9, 18, 34, 0.58);
  color: rgba(232, 241, 252, 0.84);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero.hero--command-stage .hero__copy h1 {
  max-width: 42ch;
  margin: 0;
  color: #eef6ff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.7rem, 5.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: none;
  text-wrap: balance;
}

.lead--command {
  max-width: 60ch;
  margin: 0;
  color: rgba(222, 234, 248, 0.86);
  font-size: clamp(1.05rem, 1.9vw, 1.24rem);
  line-height: 1.72;
}

.hero-command-strip,
.hero-pills,
.mode-strip,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip--ghost {
  background: rgba(10, 24, 43, 0.56);
  border-color: rgba(131, 164, 205, 0.14);
  color: rgba(236, 239, 255, 0.92);
}

.hero-pill {
  min-width: 156px;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(131, 164, 205, 0.14);
  background: rgba(10, 24, 43, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-pill span,
.hero.hero--command-stage .hero-stats dt {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(163, 185, 211, 0.84);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-pill strong,
.hero.hero--command-stage .hero-stats dd {
  color: #eef6ff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero.hero--command-stage .cta {
  margin-bottom: 0;
}

.hero.hero--command-stage .btn {
  min-height: 52px;
  padding: 0 1.25rem;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.hero.hero--command-stage .btn:hover,
.hero.hero--command-stage .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(6, 16, 30, 0.28);
}

.hero.hero--command-stage .btn--primary {
  background: linear-gradient(135deg, rgba(109, 220, 255, 0.95), rgba(164, 238, 255, 0.9));
  color: #08111f;
  box-shadow: 0 22px 60px rgba(109, 220, 255, 0.22);
}

.hero.hero--command-stage .btn--ghost {
  background: rgba(10, 24, 43, 0.42);
  border-color: rgba(131, 164, 205, 0.14);
}

.hero.hero--command-stage .hero__mission,
.hero-directive,
.hero-invocation {
  margin-top: 0;
  padding: 1.25rem 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(131, 164, 205, 0.12);
  background: rgba(8, 17, 31, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero.hero--command-stage .hero__mission p,
.hero.hero--command-stage .hero__mission li,
.hero-directive p,
.hero-invocation p {
  color: rgba(217, 228, 243, 0.82);
}

.hero.hero--command-stage .hero__mission ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.hero-directive,
.hero-invocation {
  position: relative;
  background:
    linear-gradient(135deg, rgba(109, 220, 255, 0.08), transparent 42%),
    rgba(7, 14, 27, 0.72);
  padding-left: 1.7rem;
}

.hero-directive::before,
.hero-invocation::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  bottom: 1.1rem;
  left: 1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(109, 220, 255, 0.75), rgba(196, 175, 255, 0.12));
}

.hero-directive__label,
.hero-invocation__label {
  display: block;
  margin: 0 0 0.45rem;
  color: rgba(109, 220, 255, 0.82);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-directive p {
  margin: 0;
  line-height: 1.65;
}

.hero-stats--command {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.hero.hero--command-stage .hero-stats div {
  min-height: 122px;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(8, 17, 31, 0.74);
  border: 1px solid rgba(131, 164, 205, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero.hero--command-stage .hero-stats dd {
  margin: 0;
  font-size: clamp(1.36rem, 3vw, 1.82rem);
}

.hero-stat--highlight {
  background:
    linear-gradient(145deg, rgba(109, 220, 255, 0.12), rgba(196, 175, 255, 0.1)),
    rgba(8, 17, 31, 0.78) !important;
  border-color: rgba(196, 175, 255, 0.18) !important;
}

.hero__visual--command {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: stretch;
  min-height: auto;
  align-self: stretch;
  justify-self: stretch;
}

.hero-visual-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-height: auto;
  padding: 0;
  align-content: start;
}

.hero-banner-card {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  transform: none;
  background:
    linear-gradient(180deg, rgba(11, 22, 38, 0.98), rgba(7, 15, 28, 0.94)),
    rgba(6, 12, 24, 0.94);
  border: 1px solid rgba(131, 164, 205, 0.14);
  box-shadow: 0 32px 80px rgba(3, 7, 16, 0.45);
}

.hero-banner-card::after {
  content: "";
  position: absolute;
  inset: auto 24px -20px 24px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(109, 220, 255, 0.22), transparent 70%);
  filter: blur(16px);
  opacity: 0.86;
}

.hero-banner-card__chrome {
  display: flex;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  background: rgba(4, 10, 20, 0.92);
  border-bottom: 1px solid rgba(131, 164, 205, 0.12);
}

.hero-banner-card__chrome span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(246, 247, 255, 0.22);
}

.hero-banner-card__chrome span:nth-child(1) {
  background: rgba(255, 107, 129, 0.82);
}

.hero-banner-card__chrome span:nth-child(2) {
  background: rgba(255, 197, 88, 0.86);
}

.hero-banner-card__chrome span:nth-child(3) {
  background: rgba(53, 211, 153, 0.82);
}

.hero-banner-card picture,
.hero-banner-card__image {
  display: block;
  width: 100%;
}

.hero-banner-card__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-banner-card figcaption {
  padding: 0.95rem 1.05rem 1.1rem;
  color: rgba(214, 219, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(131, 164, 205, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.94), rgba(7, 15, 28, 0.88)),
    rgba(7, 15, 28, 0.88);
  box-shadow: 0 22px 62px rgba(1, 7, 16, 0.34);
  backdrop-filter: blur(18px);
}

.hero-overlay--north {
  inset: auto;
}

.hero-overlay--south {
  inset: auto;
}

.hero-overlay__eyebrow {
  display: block;
  color: rgba(163, 185, 211, 0.84);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-overlay strong {
  display: block;
  color: #eef6ff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-overlay p {
  margin: 0;
  color: rgba(217, 228, 243, 0.82);
  line-height: 1.5;
}

.hero-overlay--command {
  gap: 0.85rem;
}

.hero-overlay__statusline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-overlay__status {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(131, 164, 205, 0.16);
  background: rgba(8, 17, 31, 0.44);
  color: rgba(231, 239, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-overlay__status--live {
  border-color: rgba(109, 220, 255, 0.24);
  background: rgba(109, 220, 255, 0.12);
  color: rgba(190, 243, 255, 0.94);
}

.hero-overlay__status--live::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.42rem;
  border-radius: 50%;
  background: #6ddcff;
  box-shadow: 0 0 0 4px rgba(109, 220, 255, 0.12);
}

.hero-overlay__status--mode {
  color: rgba(214, 219, 255, 0.86);
}

.hero-overlay__status--count {
  color: rgba(244, 247, 255, 0.92);
}

.hero-overlay--command strong {
  font-size: 1.2rem;
}

.hero-overlay__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-overlay__metric {
  display: grid;
  gap: 0.18rem;
  padding: 0.78rem 0.85rem 0.82rem;
  border-radius: 16px;
  border: 1px solid rgba(131, 164, 205, 0.12);
  background:
    linear-gradient(180deg, rgba(13, 24, 41, 0.78), rgba(8, 16, 28, 0.9)),
    rgba(8, 16, 28, 0.84);
}

.hero-overlay__metric-value {
  color: #f3f8ff;
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-overlay__metric-label {
  color: rgba(190, 203, 224, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-overlay__description {
  color: rgba(220, 230, 245, 0.76);
  font-size: 0.9rem;
}

.hero-overlay__activity {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.38rem;
  align-items: end;
  min-height: 2.25rem;
}

.hero-overlay__activity-bar {
  display: block;
  width: 100%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(109, 220, 255, 0.92), rgba(255, 143, 203, 0.6));
  box-shadow: 0 8px 18px rgba(109, 220, 255, 0.16);
  opacity: 0.86;
}

.hero-overlay__activity-bar--1 {
  height: 0.42rem;
}

.hero-overlay__activity-bar--2 {
  height: 0.74rem;
}

.hero-overlay__activity-bar--3 {
  height: 1.28rem;
}

.hero-overlay__activity-bar--4 {
  height: 0.92rem;
}

.hero-overlay__activity-bar--5 {
  height: 1.68rem;
}

.hero-overlay__footer {
  color: rgba(164, 185, 211, 0.68);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-command-core {
  position: relative;
  grid-column: 1 / -1;
  inset: auto;
  z-index: 1;
  overflow: hidden;
  min-height: 0;
  padding: 3rem 1.1rem 1.1rem;
  border-radius: 30px;
  border: 1px solid rgba(131, 164, 205, 0.12);
  background:
    radial-gradient(circle at 50% 46%, rgba(109, 220, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.92), rgba(6, 12, 24, 0.9));
  box-shadow: 0 22px 62px rgba(1, 7, 16, 0.34);
  pointer-events: auto;
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 1rem;
}

.hero-canvas-frame {
  position: relative;
  width: 100%;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 20, 34, 0.58), rgba(6, 8, 12, 0.12)),
    rgba(8, 12, 18, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 40px rgba(1, 7, 16, 0.18);
}

.hero-canvas-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 44%, rgba(239, 131, 84, 0.12), transparent 18%),
    radial-gradient(circle at 58% 44%, rgba(109, 220, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%);
}

.hero-canvas-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 6px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03));
  mix-blend-mode: screen;
}

html.visuals-reduced .hero-canvas-frame::before {
  background: radial-gradient(circle at 52% 44%, rgba(239, 131, 84, 0.08), transparent 24%);
}

html.visuals-reduced .hero-canvas-frame::after {
  display: none;
}

#heroOrbitCanvas {
  display: block;
  width: 100%;
  height: min(58vw, 360px);
}

.core-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(7, 15, 28, 0.84);
  border: 1px solid rgba(131, 164, 205, 0.12);
  color: rgba(232, 241, 252, 0.9);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.orbit-legend {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.88rem;
  border-radius: 14px;
  background: rgba(8, 17, 31, 0.7);
  border: 1px solid rgba(131, 164, 205, 0.12);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.legend-item:hover,
.legend-item.is-active {
  transform: translateY(-1px);
  border-color: rgba(131, 164, 205, 0.26);
  background:
    linear-gradient(180deg, rgba(12, 24, 40, 0.86), rgba(8, 17, 31, 0.8)),
    rgba(8, 17, 31, 0.8);
  box-shadow:
    0 16px 28px rgba(1, 7, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legend-item:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(131, 164, 205, 0.32);
  background:
    linear-gradient(180deg, rgba(12, 24, 40, 0.9), rgba(8, 17, 31, 0.82)),
    rgba(8, 17, 31, 0.82);
  box-shadow:
    0 0 0 1px rgba(109, 220, 255, 0.22),
    0 16px 28px rgba(1, 7, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legend-item:last-child {
  grid-column: 1 / -1;
}

.legend-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.legend-text {
  color: rgba(232, 241, 252, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.legend-item--teal .legend-dot {
  background: #6ddcff;
  box-shadow: 0 0 0 4px rgba(109, 220, 255, 0.12);
}

.legend-item--violet .legend-dot {
  background: #c4afff;
  box-shadow: 0 0 0 4px rgba(196, 175, 255, 0.12);
}

.legend-item--green .legend-dot {
  background: #75efc0;
  box-shadow: 0 0 0 4px rgba(117, 239, 192, 0.12);
}

.legend-item--amber .legend-dot {
  background: #f6bf72;
  box-shadow: 0 0 0 4px rgba(246, 191, 114, 0.12);
}

.legend-item--rose .legend-dot {
  background: #ff8fcb;
  box-shadow: 0 0 0 4px rgba(255, 143, 203, 0.12);
}

.section-header {
  margin-bottom: 2.4rem;
  max-width: 72ch;
}

.section-header h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--text-secondary);
  margin: 0;
}

.manifesto {
  margin: 0;
  margin-inline: auto;
  padding: 3rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(10, 14, 34, 0.92), rgba(8, 6, 26, 0.85));
  border: 1px solid rgba(126, 123, 255, 0.22);
  box-shadow: 0 40px 80px rgba(2, 4, 12, 0.6);
}

.manifesto__intro {
  max-width: 64ch;
}

.manifesto__intro h2 {
  margin: 0.25rem 0 1rem;
}

.manifesto__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.manifesto-card {
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(126, 123, 255, 0.25);
  background: rgba(5, 9, 24, 0.85);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.35);
}

.manifesto-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.manifesto-card p {
  margin: 0;
  color: rgba(214, 219, 255, 0.82);
}

.modules {
  border-radius: 28px;
  padding: 3rem;
  background: linear-gradient(140deg, rgba(12, 16, 40, 0.88), rgba(7, 10, 28, 0.84));
  border: 1px solid rgba(126, 123, 255, 0.22);
  box-shadow: 0 32px 80px rgba(3, 4, 12, 0.58);
}

.modules .module-grid {
  margin-top: 2.4rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.module-card {
  padding: 1.6rem;
  border-radius: 18px;
  background: var(--bg-panel);
  border: 1px solid rgba(126, 123, 255, 0.22);
  box-shadow: 0 18px 60px rgba(3, 5, 14, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease;
  min-width: 0;
  overflow: hidden;
}

.module-card h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0;
  max-width: 100%;
  line-height: 1.28;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.module-card p {
  color: var(--text-secondary);
  min-height: 4.5rem;
}

.module-card ul {
  margin: 1.1rem 0 0;
  padding-left: 1.2rem;
  color: rgba(198, 204, 255, 0.84);
}

.module-card li + li {
  margin-top: 0.4rem;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 211, 255, 0.4);
}

.surface-lanes {
  border-radius: 28px;
  padding: 3rem;
  background:
    radial-gradient(circle at top right, rgba(0, 211, 255, 0.08), transparent 26%),
    linear-gradient(140deg, rgba(10, 14, 34, 0.9), rgba(6, 8, 22, 0.86));
  border: 1px solid rgba(126, 123, 255, 0.2);
  box-shadow: 0 32px 80px rgba(3, 4, 12, 0.58);
}

.surface-lanes .section-header {
  max-width: 72ch;
}

.surface-lanes__grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.45rem;
}

.lane-card {
  --lane-accent: rgba(126, 123, 255, 0.82);
  --lane-glow: rgba(126, 123, 255, 0.16);
  min-width: 0;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 18, 40, 0.9), rgba(8, 11, 24, 0.82));
  border: 1px solid rgba(126, 123, 255, 0.18);
  box-shadow: 0 20px 56px rgba(2, 4, 14, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lane-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 211, 255, 0.34);
  box-shadow: 0 24px 64px rgba(2, 4, 14, 0.58);
}

.lane-card--dashboard {
  --lane-accent: rgba(109, 220, 255, 0.96);
  --lane-glow: rgba(109, 220, 255, 0.16);
}

.lane-card--integrations {
  --lane-accent: rgba(255, 179, 71, 0.96);
  --lane-glow: rgba(255, 179, 71, 0.16);
}

.lane-card--knowledge {
  --lane-accent: rgba(117, 239, 192, 0.96);
  --lane-glow: rgba(117, 239, 192, 0.16);
}

.lane-card--provider {
  --lane-accent: rgba(196, 175, 255, 0.96);
  --lane-glow: rgba(196, 175, 255, 0.16);
}

.lane-card--planning {
  --lane-accent: rgba(255, 143, 203, 0.96);
  --lane-glow: rgba(255, 143, 203, 0.16);
}

.lane-card--plugins {
  --lane-accent: rgba(255, 209, 138, 0.96);
  --lane-glow: rgba(255, 209, 138, 0.16);
}

.lane-card__visual {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(126, 123, 255, 0.16);
  background:
    radial-gradient(circle at 25% 20%, var(--lane-glow), transparent 46%),
    linear-gradient(135deg, rgba(12, 16, 34, 0.94), rgba(7, 10, 24, 0.96));
}

.lane-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 -48px 48px rgba(2, 4, 14, 0.34);
  pointer-events: none;
}

.lane-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lane-card__body {
  display: grid;
  gap: 0.8rem;
}

.lane-card__label {
  margin: 0;
  color: var(--lane-accent);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lane-card__body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.32rem;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: none;
}

.lane-card__body p {
  margin: 0;
  color: var(--text-secondary);
}

.lane-card__body ul {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: rgba(198, 204, 255, 0.88);
}

.lane-card__body li + li {
  margin-top: 0.35rem;
}

.analytics {
  border-radius: 28px;
  padding: 3rem;
  background: linear-gradient(140deg, rgba(12, 16, 40, 0.92), rgba(7, 9, 26, 0.88));
  border: 1px solid rgba(126, 123, 255, 0.25);
  box-shadow: 0 32px 80px rgba(3, 4, 12, 0.65);
}

.analytics__layout {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.analytics-card {
  background: var(--bg-panel-alt);
  border: 1px solid rgba(126, 123, 255, 0.18);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(2, 4, 14, 0.55);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  min-width: 0;
  overflow: hidden;
}

.analytics-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.analytics-card--wide {
  grid-column: span 2;
}

.analytics-card--chart {
  position: relative;
}

.forecast-note {
  color: rgba(198, 206, 255, 0.82);
  margin: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.2rem;
}

.metric--full {
  grid-column: 1 / -1;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(10, 13, 30, 0.7);
  border: 1px solid rgba(126, 123, 255, 0.16);
}

.metric__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(178, 186, 245, 0.7);
}

.metric__value {
  font-size: 1.1rem;
  font-weight: 600;
}

.progress-cluster {
  display: grid;
  gap: 0.6rem;
}

.progress-cluster--secondary {
  margin-top: -0.6rem;
}

.progress-meter {
  position: relative;
  width: 100%;
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(12, 14, 34, 0.8);
  border: 1px solid rgba(126, 123, 255, 0.22);
  overflow: hidden;
}

.progress-meter__bar {
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 24px rgba(126, 123, 255, 0.8);
  transition: width 0.6s ease;
}

.progress-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(189, 198, 255, 0.75);
}

.progress-caption strong {
  font-size: 1rem;
  color: var(--text-primary);
}

.chart-legend {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(178, 186, 245, 0.75);
}

.analytics-chart {
  position: relative;
  width: 100%;
  height: 280px;
}

.analytics-chart canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.milestone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.milestone-list li {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(8, 10, 26, 0.78);
  border: 1px solid rgba(126, 123, 255, 0.18);
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  overflow: hidden;
}

.milestone-header {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}

.milestone-list h4 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  flex: 1 1 18rem;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.milestone-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--state-chip-color, rgba(178, 186, 245, 0.82));
  border: 1px solid var(--state-chip-border, rgba(126, 123, 255, 0.35));
  background: var(--state-chip-background, rgba(11, 18, 36, 0.72));
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  white-space: normal;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  text-align: left;
  line-height: 1.35;
  box-shadow: var(--state-chip-shadow, inset 0 0 0 1px rgba(255, 255, 255, 0.03));
}

.milestone-state--delivered,
.timeline__state--delivered {
  --state-chip-color: #00d3ff;
  --state-chip-border: rgba(0, 211, 255, 0.65);
  --state-chip-background: rgba(0, 78, 108, 0.16);
  --state-chip-shadow:
    inset 0 0 0 1px rgba(0, 211, 255, 0.08),
    0 0 18px rgba(0, 211, 255, 0.12);
}

.milestone-state--blocked,
.timeline__state--blocked {
  --state-chip-color: #ff7f96;
  --state-chip-border: rgba(255, 127, 150, 0.62);
  --state-chip-background: rgba(90, 22, 40, 0.18);
  --state-chip-shadow:
    inset 0 0 0 1px rgba(255, 127, 150, 0.08),
    0 0 18px rgba(255, 127, 150, 0.12);
}

.milestone-state--planned,
.timeline__state--planned {
  --state-chip-color: #ffc96d;
  --state-chip-border: rgba(255, 201, 109, 0.58);
  --state-chip-background: rgba(92, 58, 16, 0.18);
  --state-chip-shadow:
    inset 0 0 0 1px rgba(255, 201, 109, 0.08),
    0 0 18px rgba(255, 181, 73, 0.1);
}

.milestone-state--in,
.timeline__state--in {
  --state-chip-color: #a79bff;
  --state-chip-border: rgba(167, 155, 255, 0.58);
  --state-chip-background: rgba(55, 42, 108, 0.18);
  --state-chip-shadow:
    inset 0 0 0 1px rgba(167, 155, 255, 0.08),
    0 0 18px rgba(126, 123, 255, 0.1);
}

.milestone-state--superseded,
.timeline__state--superseded {
  --state-chip-color: rgba(182, 190, 215, 0.72);
  --state-chip-border: rgba(132, 143, 182, 0.38);
  --state-chip-background: rgba(28, 34, 56, 0.2);
}

.metric-pairs {
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.metric-pairs--stacked {
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.metric-pairs div {
  display: grid;
  gap: 0.25rem;
}

.metric-pairs dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(170, 180, 235, 0.65);
}

.metric-pairs dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.telemetry-trend {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.telemetry-trend li {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.85rem;
  min-width: 0;
}

.telemetry-trend__date {
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(178, 186, 245, 0.75);
}

.telemetry-trend__bars {
  position: relative;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(20, 24, 52, 0.85);
  overflow: hidden;
}

.telemetry-trend__bar {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.85;
}

.telemetry-trend__bar--hit {
  background: linear-gradient(120deg, rgba(126, 123, 255, 0.9), rgba(0, 211, 255, 0.8));
}

.telemetry-trend__bar--run {
  background: rgba(255, 77, 154, 0.65);
  mix-blend-mode: screen;
}

.telemetry-trend__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(214, 219, 255, 0.8);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: right;
}

.telemetry-trend__empty {
  font-size: 0.85rem;
  color: rgba(214, 219, 255, 0.7);
}

.vision .media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.media-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 12, 28, 0.85);
  border: 1px solid rgba(126, 123, 255, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.media-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
}

.media-card figcaption {
  padding: 1.1rem 1.2rem 1.4rem;
  color: rgba(209, 217, 255, 0.85);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(178, 190, 255, 0.72);
}

.breadcrumbs a {
  color: rgba(113, 223, 255, 0.88);
  text-decoration: none;
}

.breadcrumbs span:last-child {
  color: rgba(244, 247, 255, 0.9);
}

.breadcrumbs a + a::before,
.breadcrumbs a + span::before,
.breadcrumbs span + span::before {
  content: "/";
  margin-right: 0.75rem;
  color: rgba(178, 190, 255, 0.42);
}

.showcase-section,
.showcase-page__hero,
.showcase-grid-section,
.showcase-detail__article,
.showcase-detail__related {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(111, 124, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(0, 211, 255, 0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 77, 154, 0.08), transparent 42%),
    linear-gradient(140deg, rgba(10, 14, 33, 0.95), rgba(8, 12, 29, 0.9));
  box-shadow: 0 24px 72px rgba(3, 6, 18, 0.46);
}

.showcase-section {
  padding: 2.3rem;
}

.showcase-section__header,
.showcase-page__hero .section-header {
  max-width: 56rem;
}

.showcase-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1.6rem;
  align-items: stretch;
  min-height: clamp(34rem, 42vw, 42rem);
}

.showcase-rail,
.showcase-featured-strip {
  display: grid;
  gap: 1.1rem;
}

.showcase-stage > .showcase-card,
.showcase-stage > .showcase-rail {
  min-height: 100%;
}

.showcase-rail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 100%;
}

.showcase-featured-strip {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 1.8rem;
}

.showcase-section__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}

.showcase-section__actions p {
  margin: 0;
  color: rgba(209, 217, 255, 0.7);
}

.showcase-card {
  position: relative;
  margin: 0;
  min-height: 100%;
}

.showcase-card__trigger {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(111, 124, 255, 0.18);
  background: linear-gradient(145deg, rgba(11, 15, 32, 0.96), rgba(7, 10, 24, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 20px 40px rgba(2, 4, 14, 0.42);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.showcase-card__trigger:hover,
.showcase-card__trigger:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 211, 255, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 26px 54px rgba(0, 0, 0, 0.48);
}

.showcase-card__figure,
.showcase-card__placeholder {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 17, 40, 0.96), rgba(6, 9, 22, 0.92));
  display: grid;
  place-items: center;
}

.showcase-card__media {
  position: absolute;
  inset: 0;
  display: block;
}

.showcase-card__media--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__media--contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.showcase-card__figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 20, 0.88));
  pointer-events: none;
}

.showcase-card__placeholder {
  display: grid;
  place-items: center;
  color: rgba(214, 219, 255, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-card__copy {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem 1.45rem;
  min-height: 0;
  overflow: hidden;
  align-content: start;
}

.showcase-card__copy h3,
.showcase-detail__header h1 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.18;
}

.showcase-card__copy h3,
.showcase-card__copy p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase-card__copy p,
.showcase-detail__lead,
.showcase-detail__body p {
  margin: 0;
  color: rgba(214, 219, 255, 0.8);
}

.showcase-card__eyebrow,
.showcase-detail__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 211, 255, 0.78);
}

.showcase-card__featured {
  color: rgba(255, 184, 120, 0.92);
}

.showcase-type-chip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(7, 14, 28, 0.72);
  border: 1px solid rgba(171, 184, 255, 0.26);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.showcase-type-chip--image,
.showcase-type-chip--gif {
  color: rgba(105, 227, 255, 0.95);
}

.showcase-type-chip--video {
  color: rgba(255, 184, 120, 0.95);
}

.showcase-type-chip--youtube {
  color: rgba(255, 126, 126, 0.95);
}

.showcase-type-chip--model {
  color: rgba(196, 175, 255, 0.95);
}

.showcase-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.showcase-tag {
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 124, 255, 0.22);
  background: rgba(13, 18, 38, 0.84);
  color: rgba(214, 219, 255, 0.76);
  font-size: 0.74rem;
}

.showcase-card--featured .showcase-card__figure,
.showcase-card--hub .showcase-card__figure {
  aspect-ratio: 16 / 9;
}

.showcase-card--featured,
.showcase-card--compact {
  min-height: 0;
}

.showcase-card--featured .showcase-card__trigger,
.showcase-card--compact .showcase-card__trigger {
  height: 100%;
}

.showcase-card--featured .showcase-card__trigger {
  display: grid;
  grid-template-rows: minmax(20rem, 23rem) 1fr;
}

.showcase-card--featured .showcase-card__copy {
  padding: 1.5rem 1.55rem 1.6rem;
}

.showcase-card--featured .showcase-card__copy h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  -webkit-line-clamp: 2;
}

.showcase-card--featured .showcase-card__copy p {
  -webkit-line-clamp: 3;
}

.showcase-card--compact .showcase-card__figure,
.showcase-card--grid .showcase-card__figure {
  aspect-ratio: 16 / 10;
}

.showcase-card--compact .showcase-card__trigger {
  display: grid;
  grid-template-rows: minmax(8.75rem, 10.25rem) 1fr;
}

.showcase-card--compact .showcase-card__figure,
.showcase-card--featured .showcase-card__figure {
  aspect-ratio: auto;
  height: 100%;
}

.showcase-card--compact .showcase-card__copy {
  gap: 0.65rem;
  padding: 1rem 1rem 1.05rem;
}

.showcase-card--compact .showcase-card__copy h3 {
  font-size: 0.98rem;
  -webkit-line-clamp: 2;
}

.showcase-card--compact .showcase-card__copy p {
  font-size: 0.88rem;
  -webkit-line-clamp: 2;
}

.showcase-card--compact .showcase-tag-row {
  gap: 0.4rem;
}

.showcase-card--compact .showcase-tag {
  padding: 0.24rem 0.56rem;
  font-size: 0.68rem;
}

.showcase-page {
  gap: 2rem;
}

.showcase-page main {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  display: grid;
  gap: 1.6rem;
}

.showcase-page__hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  align-items: stretch;
}

.showcase-page__hero,
.showcase-grid-section,
.showcase-detail__article,
.showcase-detail__related {
  padding: 2rem;
}

.showcase-filters {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(111, 124, 255, 0.16);
  background: rgba(8, 12, 28, 0.72);
}

.showcase-filters__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.showcase-filter {
  appearance: none;
  border: 1px solid rgba(111, 124, 255, 0.22);
  background: rgba(12, 16, 35, 0.88);
  color: rgba(214, 219, 255, 0.8);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  cursor: pointer;
}

.showcase-filter.is-active {
  color: #07111d;
  border-color: rgba(120, 225, 255, 0.48);
  background: linear-gradient(120deg, rgba(120, 225, 255, 0.92), rgba(165, 239, 255, 0.84));
}

.showcase-filters__count {
  margin: 0;
  color: rgba(214, 219, 255, 0.68);
  font-size: 0.86rem;
}

.showcase-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}

.showcase-grid__item.is-hidden,
[data-showcase-item].is-hidden {
  display: none;
}

.showcase-spotlight {
  width: min(1180px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 1px solid rgba(111, 124, 255, 0.24);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(8, 12, 26, 0.98), rgba(4, 7, 19, 0.96));
  color: var(--text-primary);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.56);
}

.showcase-spotlight::backdrop {
  background: rgba(2, 5, 14, 0.74);
  backdrop-filter: blur(10px);
}

.showcase-spotlight__chrome {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1rem 0;
}

.showcase-spotlight__close,
.showcase-nav-button,
.showcase-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(111, 124, 255, 0.24);
  background: rgba(12, 18, 38, 0.88);
  color: rgba(244, 247, 255, 0.92);
  text-decoration: none;
  font: inherit;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.showcase-spotlight__close:hover,
.showcase-nav-button:hover,
.showcase-nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(120, 225, 255, 0.34);
  background: rgba(17, 25, 51, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.showcase-spotlight__close:active,
.showcase-nav-button:active,
.showcase-nav-link:active {
  transform: translateY(0);
}

.showcase-spotlight__close:focus-visible,
.showcase-nav-button:focus-visible,
.showcase-nav-link:focus-visible {
  outline: none;
  border-color: rgba(120, 225, 255, 0.5);
  box-shadow:
    0 0 0 3px rgba(85, 185, 255, 0.18),
    0 18px 36px rgba(0, 0, 0, 0.32);
}

.showcase-spotlight__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 24rem);
  gap: 0;
}

.showcase-spotlight__stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  background: rgba(4, 8, 20, 0.96);
}

.showcase-spotlight__media {
  min-height: clamp(30rem, 76vh, 52rem);
  padding: clamp(1rem, 2vw, 1.75rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(0, 211, 255, 0.08), transparent 42%), rgba(4, 8, 20, 0.96);
}

.showcase-fullview-media {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.showcase-spotlight__fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(214, 219, 255, 0.8);
}

.showcase-fullview-media--image,
.showcase-fullview-media--video {
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: auto;
}

.showcase-fullview-media--embed,
.showcase-fullview-media--model {
  width: 100%;
  height: 100%;
  border: 0;
}

.showcase-fullview-embed {
  width: min(100%, 1120px);
  aspect-ratio: 16 / 9;
  justify-self: center;
  align-self: center;
}

.showcase-spotlight__media .showcase-fullview-media--image,
.showcase-spotlight__media .showcase-fullview-media--video {
  max-width: 100%;
  max-height: calc(clamp(30rem, 76vh, 52rem) - (2 * clamp(1rem, 2vw, 1.75rem)));
}

.showcase-spotlight__media .showcase-fullview-media--model {
  width: min(100%, 1120px);
  height: min(100%, calc(clamp(30rem, 76vh, 52rem) - (2 * clamp(1rem, 2vw, 1.75rem))));
}

.showcase-spotlight__media .showcase-fullview-embed {
  width: min(100%, 1120px);
  max-height: calc(clamp(30rem, 76vh, 52rem) - (2 * clamp(1rem, 2vw, 1.75rem)));
}

.showcase-spotlight__copy {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  align-content: stretch;
  gap: 0.95rem;
  padding: 1.4rem 1.4rem 1.5rem;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border-left: 1px solid rgba(111, 124, 255, 0.12);
}

.showcase-spotlight__eyebrow {
  margin: 0;
  color: rgba(0, 211, 255, 0.82);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.showcase-spotlight__copy h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.16;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.showcase-spotlight__lead {
  margin: 0;
  color: rgba(244, 247, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.showcase-spotlight__body {
  min-height: 0;
  overflow: auto;
  padding-right: 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(111, 124, 255, 0.45) rgba(9, 13, 29, 0.2);
}

.showcase-spotlight__body::-webkit-scrollbar {
  width: 8px;
}

.showcase-spotlight__body::-webkit-scrollbar-track {
  background: rgba(9, 13, 29, 0.2);
}

.showcase-spotlight__body::-webkit-scrollbar-thumb {
  background: rgba(111, 124, 255, 0.38);
  border-radius: 999px;
}

.showcase-spotlight__description,
.showcase-spotlight__meta {
  color: rgba(214, 219, 255, 0.76);
}

.showcase-spotlight__description {
  margin: 0;
  line-height: 1.65;
}

.showcase-spotlight__utility {
  display: grid;
  gap: 0.8rem;
  align-self: end;
  padding-top: 0.35rem;
}

.showcase-spotlight__chips {
  min-height: 0;
}

.showcase-spotlight__chips .showcase-tag-row {
  gap: 0.5rem;
}

.showcase-spotlight__meta {
  margin: 0;
  min-height: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.showcase-spotlight__action-bar {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.2rem;
}

.showcase-spotlight__nav-rail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: 0.85rem auto 1.05rem;
  padding: 0.38rem;
  border: 1px solid rgba(111, 124, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 13, 29, 0.78);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.showcase-nav-button {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 2.2rem;
  justify-content: center;
  padding: 0.34rem 0.76rem;
  border-color: rgba(111, 124, 255, 0.14);
  background: rgba(11, 17, 36, 0.42);
  color: rgba(228, 233, 255, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  box-shadow: none;
}

.showcase-spotlight__nav-rail .showcase-nav-button:hover {
  border-color: rgba(120, 225, 255, 0.28);
  background: rgba(17, 25, 51, 0.72);
  color: rgba(244, 247, 255, 0.92);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.showcase-spotlight__nav-rail .showcase-nav-button:focus-visible {
  box-shadow:
    0 0 0 3px rgba(85, 185, 255, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.16);
}

.showcase-nav-link--primary {
  background: linear-gradient(120deg, rgba(120, 225, 255, 0.92), rgba(162, 241, 255, 0.84));
  border-color: rgba(120, 225, 255, 0.56);
  color: #07111d;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(0, 123, 191, 0.22);
  min-height: 2.9rem;
  padding-inline: 1.05rem;
}

.showcase-nav-link--primary:hover {
  background: linear-gradient(120deg, rgba(141, 231, 255, 0.98), rgba(189, 245, 255, 0.9));
  border-color: rgba(154, 234, 255, 0.8);
}

.showcase-nav-link--primary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(85, 185, 255, 0.24),
    0 22px 40px rgba(0, 123, 191, 0.26);
}

.showcase-detail {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  display: grid;
  gap: 1.4rem;
}

.showcase-detail__article {
  display: grid;
  gap: 1.5rem;
}

.showcase-detail__frame {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 1.8vw, 1.5rem);
  border-radius: 22px;
  border: 1px solid rgba(111, 124, 255, 0.18);
  background: rgba(6, 9, 22, 0.94);
  min-height: clamp(28rem, 72vh, 56rem);
}

.showcase-detail__frame .showcase-fullview-media--image,
.showcase-detail__frame .showcase-fullview-media--video {
  max-width: 100%;
  max-height: min(80vh, 62rem);
}

.showcase-detail__frame .showcase-fullview-media--model {
  width: min(100%, 1180px);
  height: min(80vh, 62rem);
}

.showcase-detail__frame .showcase-fullview-embed {
  width: min(100%, 1180px);
  max-height: min(80vh, 62rem);
}

.showcase-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.showcase-detail__body {
  display: grid;
  gap: 1rem;
}

.showcase-detail__transcript a {
  color: var(--accent-secondary);
  text-decoration: none;
}

.showcase-detail__empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: rgba(214, 219, 255, 0.7);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(126, 123, 255, 0.3);
  position: relative;
}

.timeline-list li {
  padding: 0 0 0 2.4rem;
  margin-bottom: 2.6rem;
  position: relative;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 0.35rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 20px rgba(126, 123, 255, 0.8);
}

.timeline__date {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(182, 190, 255, 0.72);
}

.timeline__body h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.2rem 0 0.8rem;
}

.timeline__state {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--state-chip-color, rgba(178, 186, 245, 0.72));
  border: 1px solid var(--state-chip-border, rgba(126, 123, 255, 0.3));
  background: var(--state-chip-background, rgba(11, 18, 36, 0.66));
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
  box-shadow: var(--state-chip-shadow, inset 0 0 0 1px rgba(255, 255, 255, 0.03));
}

.timeline__body p {
  color: var(--text-secondary);
  margin: 0;
}

.api-callout {
  border-radius: 28px;
  margin: 3.5rem 0;
  margin-inline: auto;
  background: linear-gradient(150deg, rgba(8, 11, 30, 0.95), rgba(3, 4, 14, 0.9));
  border: 1px solid rgba(126, 123, 255, 0.24);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.api-callout__inner {
  padding: 2.6rem 3rem;
}

.api-callout__inner ul {
  margin: 1.2rem 0 1.5rem;
  padding-left: 1.4rem;
  color: rgba(214, 219, 255, 0.82);
}

.api-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-terminal {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 77, 154, 0.24), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(0, 211, 255, 0.2), transparent 32%),
    radial-gradient(circle at 48% 72%, rgba(126, 123, 255, 0.16), transparent 34%),
    linear-gradient(125deg, rgba(20, 11, 36, 0.94), rgba(8, 14, 30, 0.92) 52%, rgba(5, 26, 38, 0.94));
  border: 1px solid rgba(126, 123, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 30px 80px rgba(5, 6, 18, 0.55);
}

.cta-terminal::before,
.cta-terminal::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cta-terminal::before {
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
}

.cta-terminal::after {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -180px;
  border-radius: 50%;
  border: 1px solid rgba(109, 220, 255, 0.12);
  box-shadow:
    0 0 0 26px rgba(109, 220, 255, 0.04),
    0 0 0 78px rgba(255, 77, 154, 0.025);
}

.cta-terminal__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  align-items: stretch;
}

.cta-terminal__copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  max-width: 52rem;
}

.cta-terminal__eyebrow {
  margin: 0;
  color: rgba(164, 238, 255, 0.78);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cta-terminal h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin: 0;
  max-width: 13ch;
}

.cta-terminal h2 span {
  display: block;
  color: #ffffff;
  text-shadow:
    0 0 22px rgba(255, 77, 154, 0.18),
    0 0 42px rgba(0, 211, 255, 0.12);
}

.cta-terminal__lead {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 600;
  color: rgba(244, 242, 255, 0.94);
}

.cta-terminal__note {
  margin: 0;
  max-width: 42rem;
  color: rgba(214, 219, 255, 0.72);
}

.cta-terminal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta-terminal__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(131, 164, 205, 0.16);
  background: rgba(9, 17, 31, 0.44);
  color: rgba(233, 239, 252, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-terminal .cta {
  margin: 0.4rem 0 0;
}

.cta-terminal .btn {
  min-height: 54px;
  padding-inline: 1.35rem;
}

.cta-terminal .btn--primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, rgba(109, 220, 255, 0.96), rgba(255, 146, 197, 0.9));
  color: #07111d;
  box-shadow:
    0 18px 42px rgba(109, 220, 255, 0.18),
    0 10px 26px rgba(255, 77, 154, 0.14);
}

.cta-terminal__signature {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(131, 164, 205, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 18, 32, 0.82), rgba(7, 12, 24, 0.92)),
    rgba(7, 12, 24, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 46px rgba(3, 8, 19, 0.34);
}

.cta-terminal__signature::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 26%),
    radial-gradient(circle at 18% 14%, rgba(255, 77, 154, 0.12), transparent 32%);
}

.cta-terminal__signal,
.cta-terminal__ledger div {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(131, 164, 205, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 22, 38, 0.74), rgba(8, 15, 28, 0.88)),
    rgba(8, 15, 28, 0.78);
}

.cta-terminal__signal {
  padding: 1rem 1rem 1.05rem;
}

.cta-terminal__signal::after,
.cta-terminal__ledger div::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 77, 154, 0.4), rgba(109, 220, 255, 0.35), transparent);
}

.cta-terminal__signal-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: rgba(164, 238, 255, 0.82);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-terminal__signal strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #f4f7ff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-terminal__signal p {
  margin: 0;
  color: rgba(216, 225, 243, 0.74);
}

.cta-terminal__ledger {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.cta-terminal__ledger div {
  padding: 0.9rem 1rem 0.95rem;
}

.cta-terminal__ledger dt {
  margin: 0 0 0.28rem;
  color: rgba(164, 238, 255, 0.74);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-terminal__ledger dd {
  margin: 0;
  color: rgba(244, 247, 255, 0.9);
  font-size: 0.96rem;
  font-weight: 600;
}

.footer {
  margin-top: 5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(153, 162, 210, 0.6);
}

.footer.footer--site-canon {
  text-align: left;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(123, 160, 255, 0.16);
  border-radius: 1.8rem;
  background:
    linear-gradient(145deg, rgba(8, 14, 32, 0.94), rgba(6, 10, 24, 0.88)),
    radial-gradient(circle at top left, rgba(0, 214, 255, 0.12), transparent 42%);
  box-shadow:
    0 28px 70px rgba(2, 8, 20, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.footer__top h2 {
  margin: 0 0 0.85rem;
  color: rgba(244, 247, 255, 0.96);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.footer__eyebrow {
  margin: 0 0 0.8rem;
  color: rgba(145, 191, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__lead {
  max-width: 56rem;
  margin: 0;
  color: rgba(213, 221, 246, 0.82);
  font-size: 0.98rem;
  line-height: 1.75;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.footer__column {
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__column h3 {
  margin: 0 0 0.9rem;
  color: rgba(255, 214, 148, 0.92);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 0.65rem;
}

.footer__links a {
  color: rgba(216, 236, 255, 0.86);
  text-decoration: none;
  line-height: 1.5;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: rgba(255, 255, 255, 0.98);
}

.footer__meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__meta p {
  margin: 0;
}

.footer__note {
  margin-top: 0.6rem;
}

.back-to-top {
  position: fixed;
  right: clamp(1.25rem, 3vw, 2.4rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(0, 211, 255, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(15, 20, 42, 0.94), rgba(8, 12, 28, 0.9)),
    rgba(8, 12, 28, 0.92);
  color: rgba(214, 244, 255, 0.94);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 18px 44px rgba(3, 8, 20, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateY(0.9rem);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  z-index: 8;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(0, 211, 255, 0.5);
  box-shadow:
    0 20px 48px rgba(3, 8, 20, 0.5),
    inset 0 0 0 1px rgba(0, 211, 255, 0.08),
    0 0 24px rgba(0, 211, 255, 0.14);
}

.back-to-top__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 211, 255, 0.24);
  background: rgba(0, 211, 255, 0.08);
  font-size: 0.9rem;
  line-height: 1;
}

.back-to-top__label {
  line-height: 1;
}

@media (max-width: 960px) {
  .topbar {
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  .nav {
    order: 1;
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    order: 2;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .hero__visual {
    order: 1;
    margin-bottom: 2rem;
  }

  .hero.hero--command-stage {
    width: 100%;
    padding: 1.6rem;
    text-align: left;
  }

  .hero.hero--command-stage .hero__copy {
    order: 1;
  }

  .hero.hero--command-stage .hero__visual {
    order: 2;
    margin-bottom: 0;
    min-height: auto;
  }

  .hero.hero--command-stage .hero__copy h1 {
    max-width: 11ch;
  }

  .hero-visual-stack {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .hero-banner-card {
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
  }

  .hero-overlay {
    width: 100%;
    margin: 0;
  }

  .hero-command-core {
    padding: 3rem 1rem 1rem;
  }

  .hero-canvas-frame {
    min-height: 320px;
  }

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

  .analytics {
    padding: 2.4rem;
  }

  .modules {
    padding: 2.4rem;
  }

  .surface-lanes {
    padding: 2.4rem;
  }

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

  .analytics-card--wide {
    grid-column: span 1;
  }

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

  .hero__meta {
    justify-content: center;
  }

  .hero.hero--command-stage .hero-pills,
  .hero.hero--command-stage .hero-command-strip,
  .hero.hero--command-stage .mode-chips,
  .hero.hero--command-stage .cta {
    justify-content: flex-start;
  }

  .manifesto,
  .api-callout {
    padding: 2.2rem;
  }

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

  .surface-lanes__grid {
    grid-template-columns: 1fr;
  }

  .api-callout__inner {
    padding: 2rem 2.2rem;
  }

  .showcase-stage,
  .showcase-page__hero,
  .showcase-spotlight__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-spotlight__stage {
    grid-template-rows: auto auto;
  }

  .showcase-spotlight__copy {
    grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
    border-left: 0;
    border-top: 1px solid rgba(111, 124, 255, 0.12);
  }

  .showcase-spotlight__action-bar {
    align-items: stretch;
  }

  .showcase-spotlight__nav-rail {
    justify-self: center;
  }

  .showcase-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: auto;
  }

  .showcase-card--featured .showcase-card__trigger,
  .showcase-card--compact .showcase-card__trigger {
    height: auto;
    grid-template-rows: auto auto;
  }

  .showcase-card--featured .showcase-card__figure,
  .showcase-card--compact .showcase-card__figure {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .showcase-section,
  .showcase-page__hero,
  .showcase-grid-section,
  .showcase-detail__article,
  .showcase-detail__related {
    padding: 1.6rem;
  }

  .showcase-section__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-detail__frame {
    min-height: 340px;
  }

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

@media (max-width: 640px) {
  .page {
    padding: 2.2rem 1.2rem 0;
  }

  main {
    gap: 4rem;
  }

  .hero-stats {
    gap: 0.8rem;
  }

  .hero.hero--command-stage .hero__copy h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .hero.hero--command-stage {
    padding: 1.2rem;
  }

  .hero.hero--command-stage .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-pill {
    min-width: 0;
  }

  .hero__mission,
  .hero-directive,
  .hero-overlay {
    padding: 1rem 1rem 1.05rem;
  }

  .hero-command-core {
    padding: 2.6rem 0.85rem 0.85rem;
  }

  .hero-canvas-frame {
    min-height: 280px;
  }

  #heroOrbitCanvas {
    height: 280px;
  }

  .orbit-legend {
    grid-template-columns: 1fr;
  }

  .cta-terminal {
    padding: 2.2rem;
  }

  .modules {
    padding: 2.2rem;
  }

  .cta-terminal__inner {
    grid-template-columns: 1fr;
  }

  .cta-terminal h2 {
    max-width: none;
  }

  .nav {
    gap: 1rem;
  }

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

  .analytics-card {
    padding: 1.6rem;
  }

  .analytics-chart {
    height: 220px;
  }

  .telemetry-trend li {
    grid-template-columns: 1fr;
  }

  .telemetry-trend__label,
  .milestone-state {
    text-align: left;
  }

  .breadcrumbs {
    gap: 0.5rem;
  }

  .showcase-grid,
  .showcase-featured-strip,
  .showcase-rail {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .showcase-card__copy,
  .showcase-page__hero,
  .showcase-grid-section,
  .showcase-detail__article,
  .showcase-detail__related {
    padding: 1.15rem;
  }

  .showcase-filters {
    padding: 1rem;
  }

  .showcase-spotlight__copy {
    padding: 1.15rem;
  }

  .showcase-spotlight__nav-rail {
    gap: 0.45rem;
    max-width: calc(100% - 1rem);
    margin: 0.7rem auto 0.9rem;
    padding: 0.32rem;
  }

  .showcase-nav-link {
    width: 100%;
  }

  .showcase-detail__frame {
    min-height: 260px;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    padding: 0.72rem 0.82rem;
  }

  .back-to-top__label {
    display: none;
  }

  .footer.footer--site-canon {
    padding: 1.2rem;
  }

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