:root {
  --bg: #030712;
  --bg-soft: #07111f;
  --panel: rgba(10, 18, 34, 0.72);
  --panel-strong: rgba(8, 15, 28, 0.88);
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(103, 232, 249, 0.22);
  --text: #e5eef9;
  --muted: #93a6bf;
  --muted-strong: #bfd0e6;
  --cyan: #67e8f9;
  --lime: #bef264;
  --amber: #fb923c;
  --rose: #f472b6;
  --shadow: 0 32px 80px rgba(2, 6, 23, 0.48);
  --shadow-soft: 0 16px 40px rgba(2, 6, 23, 0.34);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-shell {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(103, 232, 249, 0.14), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(251, 146, 60, 0.13), transparent 24%),
    radial-gradient(circle at 52% 92%, rgba(190, 242, 100, 0.1), transparent 24%),
    linear-gradient(180deg, #02050d 0%, #050b14 42%, #081322 100%);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.7);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.8), rgba(190, 242, 100, 0.75));
  border-radius: 999px;
}

.bg-stack {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  overflow: hidden;
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-a {
  top: 4vh;
  left: -8vw;
  width: 32vw;
  height: 32vw;
  background: rgba(103, 232, 249, 0.28);
  animation: orbFloat 18s ease-in-out infinite alternate;
}

.orb-b {
  top: 18vh;
  right: -10vw;
  width: 28vw;
  height: 28vw;
  background: rgba(244, 114, 182, 0.18);
  animation: orbFloat 22s ease-in-out infinite alternate-reverse;
}

.orb-c {
  bottom: -8vh;
  left: 34vw;
  width: 36vw;
  height: 36vw;
  background: rgba(190, 242, 100, 0.16);
  animation: orbFloat 25s ease-in-out infinite alternate;
}

.bg-mesh,
.bg-grid,
.bg-noise {
  position: absolute;
  inset: 0;
}

.bg-mesh {
  background:
    radial-gradient(circle at 20% 24%, rgba(103, 232, 249, 0.08), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(251, 146, 60, 0.08), transparent 18%),
    radial-gradient(circle at 60% 76%, rgba(190, 242, 100, 0.06), transparent 20%);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 44%, transparent 100%);
  opacity: 0.3;
}

.bg-noise {
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.55) 0 0.8px, transparent 1px);
  background-size: 18px 18px, 30px 30px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(24px);
  background: rgba(3, 7, 18, 0.65);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.site-header__inner,
.site-footer__inner,
.page-frame {
  width: min(var(--content-width), calc(100vw - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

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

.brand-mark__dot,
.site-status__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.8);
}

.brand-mark__text,
.footer-brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(103, 232, 249, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.site-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  background: rgba(103, 232, 249, 0.08);
  color: var(--muted-strong);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-main {
  padding: 32px 0 96px;
  overflow-x: clip;
}

.page-frame {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.page-hero,
.story-panel,
.glass-card,
.metric-panel,
.timeline-card,
.spotlight-card,
.insight-card,
.story-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 15, 29, 0.92), rgba(8, 13, 24, 0.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}

.page-hero,
.story-panel,
.story-stage {
  border-radius: 36px;
}

.glass-card,
.metric-panel,
.timeline-card,
.spotlight-card,
.insight-card {
  border-radius: var(--radius-md);
}

.page-hero::before,
.story-panel::before,
.glass-card::before,
.metric-panel::before,
.timeline-card::before,
.spotlight-card::before,
.story-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 32%, transparent 68%, rgba(103, 232, 249, 0.06));
  pointer-events: none;
}

.page-hero {
  padding: 42px;
}

.page-eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.page-eyebrow::before,
.section-tag::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.page-title,
.section-title,
.hero-title {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
  max-width: 12ch;
}

.page-title,
.hero-title {
  font-size: clamp(42px, 7vw, 88px);
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  max-width: 14ch;
}

.page-copy,
.hero-copy,
.section-copy {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-grid,
.story-grid,
.analytics-grid,
.about-grid,
.health-grid,
.progress-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  min-width: 0;
}

.hero-grid > *,
.story-grid > *,
.dashboard-matrix > * {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.signal-scene {
  --signal-rotate-x: 0deg;
  --signal-rotate-y: 0deg;
  --signal-shift-x: 0px;
  --signal-shift-y: 0px;
  position: relative;
  min-height: 500px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.16);
  background:
    radial-gradient(circle at 50% 22%, rgba(103, 232, 249, 0.12), transparent 28%),
    radial-gradient(circle at 72% 64%, rgba(190, 242, 100, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.96), rgba(5, 11, 21, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 28px 80px rgba(2, 6, 23, 0.56);
  transform-style: preserve-3d;
  transform: perspective(1600px) rotateX(var(--signal-rotate-x)) rotateY(var(--signal-rotate-y)) translate3d(var(--signal-shift-x), var(--signal-shift-y), 0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.signal-scene::before {
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.signal-scene::after {
  inset: auto 12% 6% 12%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.18), transparent 68%);
  filter: blur(26px);
  opacity: 0.75;
}

.signal-scene__ambient,
.signal-scene__grid,
.signal-home__nodes,
.signal-progress__markers,
.signal-health__bridges,
.signal-analytics__rails,
.signal-analytics__nodes {
  position: absolute;
  inset: 0;
}

.signal-scene__ambient {
  background:
    radial-gradient(circle at 36% 38%, rgba(103, 232, 249, 0.18), transparent 18%),
    radial-gradient(circle at 68% 32%, rgba(244, 114, 182, 0.1), transparent 18%),
    radial-gradient(circle at 62% 74%, rgba(190, 242, 100, 0.08), transparent 22%);
  filter: blur(18px);
  animation: signalAmbientPulse 10s ease-in-out infinite;
}

.signal-scene__grid {
  inset: 10% 8%;
  border-radius: 26px;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
  opacity: 0.26;
}

.signal-scene__label {
  position: absolute;
  z-index: 4;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.92), rgba(7, 13, 24, 0.76));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.signal-scene__label span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.signal-scene__label strong {
  display: block;
  margin-top: 8px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.signal-scene__label--a {
  top: 12%;
  left: 7%;
}

.signal-scene__label--b {
  top: 22%;
  right: 7%;
  text-align: right;
}

.signal-scene__label--c {
  left: 14%;
  bottom: 12%;
}

.signal-home__orbit,
.signal-progress__ring,
.signal-dashboard__panel,
.signal-health__scan,
.signal-health__spine,
.signal-analytics__base,
.signal-about__block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
}

.signal-home__orbit {
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-home__orbit--outer {
  width: 356px;
  height: 356px;
  border: 1px dashed rgba(103, 232, 249, 0.22);
  animation: spinSlow 24s linear infinite;
}

.signal-home__orbit--mid {
  width: 282px;
  height: 282px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  transform: translate(-50%, -50%) rotateX(74deg);
  box-shadow: 0 0 44px rgba(103, 232, 249, 0.1);
}

.signal-home__orbit--inner {
  width: 226px;
  height: 226px;
  border: 1px solid rgba(190, 242, 100, 0.18);
  transform: translate(-50%, -50%) rotateY(72deg) rotateX(14deg);
}

.signal-home__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 176px;
  height: 176px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.92), transparent 12%),
    radial-gradient(circle at 66% 68%, rgba(103, 232, 249, 0.22), transparent 30%),
    conic-gradient(from 34deg, rgba(103, 232, 249, 0.96), rgba(244, 114, 182, 0.72), rgba(190, 242, 100, 0.84), rgba(103, 232, 249, 0.96));
  box-shadow:
    inset -22px -24px 28px rgba(3, 7, 18, 0.46),
    0 0 64px rgba(103, 232, 249, 0.24);
  animation: signalFloat 9s ease-in-out infinite;
}

.signal-home__glow,
.signal-home__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.signal-home__glow::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.2), rgba(4, 10, 20, 0.88) 72%);
}

.signal-home__pulse {
  inset: -20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: signalPulseRing 6s ease-in-out infinite;
}

.signal-home__nodes span,
.signal-progress__markers span,
.signal-health__helix span,
.signal-health__bridges i,
.signal-analytics__nodes b {
  position: absolute;
  border-radius: 50%;
}

.signal-home__nodes span {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(103, 232, 249, 0.88) 58%, rgba(103, 232, 249, 0.16));
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.68);
}

.signal-home__nodes span:nth-child(1) { top: 22%; left: 24%; animation: signalNodeA 13s linear infinite; }
.signal-home__nodes span:nth-child(2) { top: 28%; right: 22%; animation: signalNodeB 11s linear infinite; }
.signal-home__nodes span:nth-child(3) { top: 50%; left: 14%; animation: signalNodeC 14s linear infinite; }
.signal-home__nodes span:nth-child(4) { top: 58%; right: 16%; animation: signalNodeA 12s linear infinite reverse; }
.signal-home__nodes span:nth-child(5) { bottom: 22%; left: 26%; animation: signalNodeB 15s linear infinite reverse; }
.signal-home__nodes span:nth-child(6) { bottom: 20%; right: 28%; animation: signalNodeC 13s linear infinite; }

.signal-dashboard__panel {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(7, 13, 24, 0.84));
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.54);
}

.signal-dashboard__panel--rear {
  width: min(74%, 380px);
  height: 238px;
  transform: translate(-50%, -50%) rotateX(73deg) rotateY(-8deg) rotateZ(-18deg) translate3d(-22px, 34px, 0);
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(8, 14, 24, 0.34);
}

.signal-dashboard__panel--main {
  width: min(82%, 448px);
  height: 286px;
  transform: translate(-50%, -50%) rotateX(73deg) rotateY(-8deg) rotateZ(-18deg) translate3d(0, 0, 48px);
  border: 1px solid rgba(103, 232, 249, 0.22);
}

.signal-dashboard__panel--main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateY(-100%);
  animation: signalScan 5.5s ease-in-out infinite;
}

.signal-dashboard__ring {
  position: absolute;
  left: 44px;
  top: 42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(103, 232, 249, 0.92);
  border-right-color: rgba(190, 242, 100, 0.7);
  box-shadow: 0 0 36px rgba(103, 232, 249, 0.18);
}

.signal-dashboard__line {
  position: absolute;
  left: 202px;
  right: 36px;
  top: 56px;
  height: 72px;
}

.signal-dashboard__line span {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.3), rgba(103, 232, 249, 1));
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.36);
  transform-origin: left center;
}

.signal-dashboard__line span:nth-child(1) { left: 0; top: 40px; width: 58px; transform: rotate(-12deg); }
.signal-dashboard__line span:nth-child(2) { left: 48px; top: 30px; width: 56px; transform: rotate(15deg); }
.signal-dashboard__line span:nth-child(3) { left: 98px; top: 40px; width: 62px; transform: rotate(-8deg); }
.signal-dashboard__line span:nth-child(4) { left: 154px; top: 34px; width: 58px; transform: rotate(18deg); }
.signal-dashboard__line span:nth-child(5) { left: 206px; top: 20px; width: 62px; transform: rotate(-3deg); }

.signal-dashboard__bars {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  height: 76px;
  display: flex;
  align-items: end;
  gap: 16px;
}

.signal-dashboard__bars span {
  flex: 1;
  border-radius: 14px 14px 6px 6px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(103, 232, 249, 0.12) 20%, rgba(7, 13, 24, 0.82));
  animation: signalBarPulse 4s ease-in-out infinite;
}

.signal-dashboard__bars span:nth-child(1) { height: 42%; }
.signal-dashboard__bars span:nth-child(2) { height: 68%; animation-delay: 0.3s; }
.signal-dashboard__bars span:nth-child(3) { height: 54%; animation-delay: 0.6s; }
.signal-dashboard__bars span:nth-child(4) { height: 82%; animation-delay: 0.9s; }

.signal-dashboard__chips {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 184px;
  display: flex;
  gap: 14px;
}

.signal-dashboard__chips i {
  flex: 1;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.16);
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.18), rgba(103, 232, 249, 0.12));
}

.signal-dashboard__scan {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.72), rgba(244, 114, 182, 0.4), transparent);
  opacity: 0.9;
  transform: translateY(-50%);
}

.signal-progress__ring {
  border-radius: 50%;
}

.signal-progress__ring--outer {
  width: 342px;
  height: 342px;
  transform: translate(-50%, -50%) rotateX(76deg) rotateZ(-10deg);
  border: 11px solid rgba(255, 255, 255, 0.04);
  border-top-color: rgba(103, 232, 249, 0.68);
  border-right-color: rgba(190, 242, 100, 0.48);
  border-bottom-color: rgba(244, 114, 182, 0.3);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.42);
}

.signal-progress__ring--inner {
  width: 230px;
  height: 230px;
  transform: translate(-50%, -50%) rotateX(76deg) rotateZ(22deg);
  border: 8px dashed rgba(103, 232, 249, 0.26);
}

.signal-progress__trail {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 344px;
  height: 344px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(76deg) rotateZ(-10deg);
  border: 2px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.82);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  animation: spinSlow 5s linear infinite;
}

.signal-progress__markers span {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(103, 232, 249, 0.88) 58%, rgba(103, 232, 249, 0.16));
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.7);
  animation: signalMarkerPulse 4s ease-in-out infinite;
}

.signal-progress__markers span:nth-child(1) { top: 24%; left: 28%; }
.signal-progress__markers span:nth-child(2) { top: 32%; right: 24%; animation-delay: 0.4s; }
.signal-progress__markers span:nth-child(3) { top: 56%; right: 18%; animation-delay: 0.8s; }
.signal-progress__markers span:nth-child(4) { bottom: 26%; left: 24%; animation-delay: 1.2s; }
.signal-progress__markers span:nth-child(5) { bottom: 18%; right: 30%; animation-delay: 1.6s; }

.signal-health__scan {
  width: 290px;
  height: 72px;
  margin-left: -145px;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.07), rgba(7, 13, 24, 0.16));
}

.signal-health__scan--top {
  top: 32%;
  transform: rotateX(76deg);
}

.signal-health__scan--bottom {
  top: 60%;
  width: 336px;
  margin-left: -168px;
  border-color: rgba(190, 242, 100, 0.16);
  transform: rotateX(76deg);
}

.signal-health__spine {
  width: 4px;
  height: 300px;
  margin-left: -2px;
  margin-top: -150px;
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.1), rgba(103, 232, 249, 0.84), rgba(190, 242, 100, 0.42), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.24);
}

.signal-health__helix {
  position: absolute;
  inset: 18% 0 16% 0;
}

.signal-health__helix span {
  left: 50%;
  width: 16px;
  height: 16px;
}

.signal-health__helix span:nth-child(odd) {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(103, 232, 249, 0.82) 58%, rgba(103, 232, 249, 0.16));
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.46);
  animation: signalHelixLeft 8s ease-in-out infinite;
}

.signal-health__helix span:nth-child(even) {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(190, 242, 100, 0.82) 58%, rgba(190, 242, 100, 0.16));
  box-shadow: 0 0 16px rgba(190, 242, 100, 0.42);
  animation: signalHelixRight 8s ease-in-out infinite;
}

.signal-health__helix span:nth-child(1) { top: 4%; }
.signal-health__helix span:nth-child(2) { top: 18%; animation-delay: 0.5s; }
.signal-health__helix span:nth-child(3) { top: 32%; animation-delay: 1s; }
.signal-health__helix span:nth-child(4) { top: 46%; animation-delay: 1.5s; }
.signal-health__helix span:nth-child(5) { top: 60%; animation-delay: 2s; }
.signal-health__helix span:nth-child(6) { top: 74%; animation-delay: 2.5s; }

.signal-health__bridges i {
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.signal-health__bridges i::before,
.signal-health__bridges i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.74), transparent);
}

.signal-health__bridges i::before { right: 100%; }
.signal-health__bridges i::after { left: 100%; transform: scaleX(-1); }
.signal-health__bridges i:nth-child(1) { top: 26%; }
.signal-health__bridges i:nth-child(2) { top: 40%; }
.signal-health__bridges i:nth-child(3) { top: 54%; }
.signal-health__bridges i:nth-child(4) { top: 68%; }

.signal-analytics__base {
  width: min(78%, 408px);
  height: 248px;
  transform: translate(-50%, -50%) rotateX(74deg) rotateY(-8deg) rotateZ(-16deg);
  border-radius: 28px;
  border: 1px solid rgba(103, 232, 249, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, rgba(103, 232, 249, 0.08), rgba(8, 14, 26, 0.52));
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.58);
}

.signal-analytics__bars {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72%, 360px);
  height: 190px;
  transform: translate(-50%, -50%) rotateX(74deg) rotateY(-8deg) rotateZ(-16deg) translateZ(24px);
  display: flex;
  align-items: end;
  gap: 16px;
}

.signal-analytics__bars span {
  flex: 1;
  border-radius: 16px 16px 6px 6px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(103, 232, 249, 0.14) 18%, rgba(6, 12, 23, 0.92));
  animation: signalBarPulse 4.8s ease-in-out infinite;
}

.signal-analytics__bars span:nth-child(1) { height: 24%; }
.signal-analytics__bars span:nth-child(2) { height: 46%; animation-delay: 0.3s; }
.signal-analytics__bars span:nth-child(3) { height: 68%; animation-delay: 0.6s; }
.signal-analytics__bars span:nth-child(4) { height: 54%; animation-delay: 0.9s; }
.signal-analytics__bars span:nth-child(5) { height: 84%; animation-delay: 1.2s; }

.signal-analytics__rails i {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.18), rgba(103, 232, 249, 0.84));
  transform-origin: left center;
}

.signal-analytics__rails i:nth-child(1) { left: 22%; top: 34%; width: 72px; transform: rotate(-16deg); }
.signal-analytics__rails i:nth-child(2) { left: 36%; top: 28%; width: 90px; transform: rotate(8deg); }
.signal-analytics__rails i:nth-child(3) { left: 50%; top: 24%; width: 82px; transform: rotate(-18deg); }
.signal-analytics__rails i:nth-child(4) { left: 62%; top: 20%; width: 64px; transform: rotate(12deg); }

.signal-analytics__nodes b {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 14px rgba(103, 232, 249, 0.62);
}

.signal-analytics__nodes b:nth-child(1) { left: 24%; top: 38%; background: var(--cyan); }
.signal-analytics__nodes b:nth-child(2) { left: 38%; top: 30%; background: var(--cyan); }
.signal-analytics__nodes b:nth-child(3) { left: 52%; top: 26%; background: var(--rose); box-shadow: 0 0 14px rgba(244, 114, 182, 0.56); }
.signal-analytics__nodes b:nth-child(4) { left: 66%; top: 22%; background: rgba(255, 255, 255, 0.92); box-shadow: 0 0 14px rgba(255, 255, 255, 0.5); }
.signal-analytics__nodes b:nth-child(5) { left: 82%; top: 18%; background: var(--lime); box-shadow: 0 0 14px rgba(190, 242, 100, 0.56); }

.signal-about__rail,
.signal-about__block {
  position: absolute;
}

.signal-about__rail {
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.28), rgba(103, 232, 249, 0.82), rgba(190, 242, 100, 0.24));
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.18);
}

.signal-about__rail--h {
  left: 22%;
  right: 20%;
  top: 50%;
  height: 1px;
}

.signal-about__rail--v {
  top: 22%;
  bottom: 18%;
  left: 50%;
  width: 1px;
}

.signal-about__block {
  border-radius: 24px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(103, 232, 249, 0.12), rgba(8, 14, 26, 0.78));
  box-shadow: var(--shadow-soft);
  animation: signalArchitectureFloat 10s ease-in-out infinite;
}

.signal-about__block--backend {
  left: 18%;
  top: 30%;
  width: 138px;
  height: 94px;
}

.signal-about__block--models {
  right: 16%;
  top: 24%;
  width: 152px;
  height: 104px;
  border-color: rgba(244, 114, 182, 0.16);
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(8, 14, 26, 0.76));
  animation-delay: -1.5s;
}

.signal-about__block--client {
  left: 22%;
  bottom: 18%;
  width: 164px;
  height: 108px;
  border-color: rgba(190, 242, 100, 0.16);
  background: linear-gradient(135deg, rgba(190, 242, 100, 0.1), rgba(8, 14, 26, 0.76));
  animation-delay: -0.8s;
}

.signal-about__block--core {
  left: 50%;
  top: 48%;
  width: 184px;
  height: 124px;
  transform: translate(-50%, -50%);
  animation-delay: -2.1s;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  border-radius: 32px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  background:
    radial-gradient(circle at center, rgba(103, 232, 249, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(7, 15, 28, 0.95), rgba(6, 11, 21, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 26px 80px rgba(2, 6, 23, 0.56);
  transform-style: preserve-3d;
}

.hero-orbit,
.hero-ring,
.hero-core,
.hero-float-card {
  position: absolute;
}

.hero-ring {
  inset: 18% 18%;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.24);
  box-shadow: 0 0 60px rgba(103, 232, 249, 0.16);
}

.hero-ring--inner {
  inset: 27% 27%;
  border-color: rgba(190, 242, 100, 0.24);
}

.hero-orbit {
  inset: 12%;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.18);
  animation: spinSlow 20s linear infinite;
}

.hero-core {
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  transform: translate(-50%, -50%) translateZ(70px);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.6), transparent 16%),
    conic-gradient(from 180deg, rgba(103, 232, 249, 0.85), rgba(251, 146, 60, 0.7), rgba(190, 242, 100, 0.84), rgba(103, 232, 249, 0.85));
  box-shadow: 0 0 60px rgba(103, 232, 249, 0.3);
}

.hero-core::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: inherit;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), rgba(4, 10, 20, 0.92) 70%);
}

.hero-float-card {
  padding: 16px 18px;
  min-width: 160px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(9, 17, 30, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-float-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.hero-float-card span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-float-card--a {
  top: 16%;
  left: 8%;
  transform: translateZ(60px);
}

.hero-float-card--b {
  right: 6%;
  top: 28%;
  transform: translateZ(90px);
}

.hero-float-card--c {
  left: 20%;
  bottom: 12%;
  transform: translateZ(40px);
}

.scene-home__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%) translateZ(90px);
  animation: floatY 9s ease-in-out infinite;
}

.scene-home__core-shell {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.98), transparent 12%),
    radial-gradient(circle at 68% 66%, rgba(103, 232, 249, 0.28), transparent 34%),
    conic-gradient(from 25deg, rgba(103, 232, 249, 0.98), rgba(244, 114, 182, 0.76), rgba(190, 242, 100, 0.86), rgba(103, 232, 249, 0.98));
  box-shadow:
    inset -28px -34px 40px rgba(2, 6, 23, 0.52),
    0 0 70px rgba(103, 232, 249, 0.22);
}

.scene-home__core-shell::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.24), rgba(4, 10, 20, 0.9) 72%);
}

.scene-home__core-shell--inner {
  inset: 34px;
  opacity: 0.75;
  transform: translateZ(30px);
  filter: saturate(1.1);
}

.scene-home__pulse {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: pulseRing 6s ease-in-out infinite;
}

.scene-home__swirl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(14deg) translateZ(30px);
  background:
    radial-gradient(circle at 50% 50%, transparent 54%, rgba(103, 232, 249, 0.16) 58%, transparent 63%),
    conic-gradient(from 160deg, transparent, rgba(103, 232, 249, 0.2), transparent, rgba(190, 242, 100, 0.18), transparent);
  filter: blur(2px);
  animation: spinSlow 18s linear infinite;
}

.scene-orbital {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(103, 232, 249, 0.24);
  box-shadow: 0 0 50px rgba(103, 232, 249, 0.1);
}

.scene-orbital--outer {
  width: 360px;
  height: 360px;
  border-style: dashed;
  animation: orbitTiltA 22s linear infinite;
}

.scene-orbital--mid {
  width: 286px;
  height: 286px;
  border-color: rgba(244, 114, 182, 0.18);
  transform: translate(-50%, -50%) rotateX(74deg);
  animation: orbitTiltB 18s linear infinite reverse;
}

.scene-orbital--inner {
  width: 240px;
  height: 240px;
  border-color: rgba(190, 242, 100, 0.2);
  transform: translate(-50%, -50%) rotateY(72deg) rotateX(12deg);
  animation: orbitTiltC 14s linear infinite;
}

.scene-home__nodes .scene-node:nth-child(1) { top: 22%; left: 24%; animation: nodeOrbitA 12s linear infinite; }
.scene-home__nodes .scene-node:nth-child(2) { top: 28%; right: 22%; animation: nodeOrbitB 10s linear infinite; }
.scene-home__nodes .scene-node:nth-child(3) { top: 50%; left: 16%; animation: nodeOrbitC 14s linear infinite; }
.scene-home__nodes .scene-node:nth-child(4) { top: 56%; right: 16%; animation: nodeOrbitB 11s linear infinite reverse; }
.scene-home__nodes .scene-node:nth-child(5) { bottom: 22%; left: 28%; animation: nodeOrbitA 13s linear infinite reverse; }
.scene-home__nodes .scene-node:nth-child(6) { bottom: 24%; right: 28%; animation: nodeOrbitC 15s linear infinite; }

.scene-dashboard__panel,
.scene-dashboard__plane {
  position: absolute;
  left: 50%;
  top: 52%;
  border-radius: 30px;
}

.scene-dashboard__panel {
  width: min(82%, 470px);
  height: 300px;
  transform: translate(-50%, -50%) rotateX(72deg) rotateY(-10deg) rotateZ(-18deg) translateZ(110px);
  border: 1px solid rgba(103, 232, 249, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(103, 232, 249, 0.16), rgba(8, 14, 26, 0.52) 38%, rgba(8, 14, 26, 0.8));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 34px 90px rgba(2, 6, 23, 0.62);
  overflow: hidden;
  animation: dashboardPanelFloat 11s ease-in-out infinite;
}

.scene-dashboard__panel::before,
.scene-dashboard__panel::after,
.scene-dashboard__plane::before,
.scene-dashboard__plane::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.scene-dashboard__panel::before {
  left: 10px;
  right: 10px;
  bottom: -18px;
  height: 18px;
  transform: skewX(-58deg);
  transform-origin: top;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.86), rgba(4, 8, 17, 0.28));
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-top: 0;
}

.scene-dashboard__panel::after {
  top: 10px;
  right: -18px;
  bottom: 10px;
  width: 18px;
  transform: skewY(-32deg);
  transform-origin: left;
  background: linear-gradient(180deg, rgba(13, 24, 38, 0.58), rgba(5, 10, 18, 0.22));
  border: 1px solid rgba(103, 232, 249, 0.08);
  border-left: 0;
}

.scene-dashboard__plane--rear,
.scene-dashboard__plane--front {
  width: min(76%, 420px);
  height: 260px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(7, 13, 24, 0.34);
}

.scene-dashboard__plane--rear {
  transform: translate(-50%, -50%) rotateX(72deg) rotateY(-10deg) rotateZ(-18deg) translate3d(-34px, 44px, 20px);
}

.scene-dashboard__plane--front {
  width: min(66%, 360px);
  height: 190px;
  border-color: rgba(244, 114, 182, 0.18);
  background: rgba(244, 114, 182, 0.05);
  transform: translate(-50%, -50%) rotateX(72deg) rotateY(-10deg) rotateZ(-18deg) translate3d(82px, -34px, 170px);
}

.scene-dashboard__plane::before {
  left: 8px;
  right: 8px;
  bottom: -12px;
  height: 12px;
  transform: skewX(-58deg);
  background: linear-gradient(180deg, rgba(6, 12, 22, 0.6), rgba(4, 8, 16, 0.14));
}

.scene-dashboard__plane::after {
  top: 8px;
  right: -12px;
  bottom: 8px;
  width: 12px;
  transform: skewY(-32deg);
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.5), rgba(5, 10, 18, 0.14));
}

.scene-dashboard__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateY(-100%);
  animation: scanSweep 5.6s ease-in-out infinite;
}

.scene-dashboard__ring {
  position: absolute;
  left: 48px;
  top: 42px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 10px solid rgba(103, 232, 249, 0.12);
  border-top-color: rgba(103, 232, 249, 0.86);
  border-right-color: rgba(190, 242, 100, 0.66);
  box-shadow: 0 0 40px rgba(103, 232, 249, 0.18);
}

.scene-dashboard__graph {
  position: absolute;
  left: 220px;
  right: 34px;
  top: 58px;
  height: 84px;
}

.scene-dashboard__graph span {
  position: absolute;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.3), rgba(103, 232, 249, 1));
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.4);
  transform-origin: left center;
}

.scene-dashboard__graph span:nth-child(1) { left: 0; top: 48px; width: 62px; transform: rotate(-14deg); }
.scene-dashboard__graph span:nth-child(2) { left: 54px; top: 36px; width: 58px; transform: rotate(12deg); }
.scene-dashboard__graph span:nth-child(3) { left: 104px; top: 46px; width: 68px; transform: rotate(-9deg); }
.scene-dashboard__graph span:nth-child(4) { left: 164px; top: 38px; width: 60px; transform: rotate(20deg); }
.scene-dashboard__graph span:nth-child(5) { left: 216px; top: 22px; width: 68px; transform: rotate(-4deg); }

.scene-dashboard__bars {
  position: absolute;
  left: 40px;
  right: 44px;
  bottom: 40px;
  height: 86px;
  display: flex;
  align-items: end;
  gap: 18px;
}

.scene-dashboard__bars span {
  flex: 1;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(103, 232, 249, 0.1) 22%, rgba(7, 14, 26, 0.84));
  border: 1px solid rgba(103, 232, 249, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  animation: barPulse 4.2s ease-in-out infinite;
}

.scene-dashboard__bars span:nth-child(1) { height: 46%; animation-delay: 0s; }
.scene-dashboard__bars span:nth-child(2) { height: 72%; animation-delay: 0.3s; }
.scene-dashboard__bars span:nth-child(3) { height: 54%; animation-delay: 0.6s; }
.scene-dashboard__bars span:nth-child(4) { height: 84%; animation-delay: 0.9s; }

.scene-dashboard__chips {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 196px;
  display: flex;
  gap: 16px;
}

.scene-dashboard__chips i {
  flex: 1;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(244, 114, 182, 0.18);
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.22), rgba(103, 232, 249, 0.12));
}

.scene-dashboard__lights {
  position: absolute;
  right: 34px;
  top: 26px;
  display: flex;
  gap: 10px;
}

.scene-dashboard__lights b,
.scene-health__bridges i,
.scene-analytics__nodes i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.scene-dashboard__lights b:nth-child(1) { background: var(--cyan); box-shadow: 0 0 16px rgba(103, 232, 249, 0.7); }
.scene-dashboard__lights b:nth-child(2) { background: var(--lime); box-shadow: 0 0 16px rgba(190, 242, 100, 0.7); }
.scene-dashboard__lights b:nth-child(3) { background: var(--rose); box-shadow: 0 0 16px rgba(244, 114, 182, 0.7); }
.scene-dashboard__lights b:nth-child(4) { background: rgba(255, 255, 255, 0.8); box-shadow: 0 0 16px rgba(255, 255, 255, 0.5); }

.scene-progress__ring,
.scene-progress__spiral,
.scene-progress__trail {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
}

.scene-progress__ring--outer {
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%) rotateX(76deg) rotateZ(-10deg) translateZ(86px);
  border: 12px solid rgba(255, 255, 255, 0.04);
  border-top-color: rgba(103, 232, 249, 0.7);
  border-right-color: rgba(190, 242, 100, 0.5);
  border-bottom-color: rgba(244, 114, 182, 0.34);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.42), 0 0 34px rgba(103, 232, 249, 0.12);
}

.scene-progress__ring--inner {
  width: 246px;
  height: 246px;
  transform: translate(-50%, -50%) rotateX(76deg) rotateZ(20deg) translateZ(144px);
  border: 8px dashed rgba(103, 232, 249, 0.28);
  box-shadow: 0 0 20px rgba(103, 232, 249, 0.1);
}

.scene-progress__spiral {
  width: 316px;
  height: 316px;
  transform: translate(-50%, -50%) rotateX(76deg) rotateZ(10deg) translateZ(122px);
  background:
    radial-gradient(circle, transparent 40%, rgba(103, 232, 249, 0.18) 43%, transparent 46%),
    radial-gradient(circle, transparent 58%, rgba(244, 114, 182, 0.16) 61%, transparent 64%),
    radial-gradient(circle, transparent 74%, rgba(190, 242, 100, 0.16) 77%, transparent 80%);
  animation: spinSlow 18s linear infinite;
}

.scene-progress__trail {
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%) rotateX(76deg) rotateZ(-10deg) translateZ(156px);
  border: 2px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.75);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.45));
  animation: spinSlow 5s linear infinite;
}

.scene-progress__milestones .scene-node:nth-child(1) { top: 23%; left: 28%; transform: translateZ(126px); animation: milestonePulse 4s ease-in-out infinite; }
.scene-progress__milestones .scene-node:nth-child(2) { top: 31%; right: 24%; transform: translateZ(118px); animation: milestonePulse 4s ease-in-out 0.4s infinite; }
.scene-progress__milestones .scene-node:nth-child(3) { top: 54%; right: 19%; transform: translateZ(132px); animation: milestonePulse 4s ease-in-out 0.8s infinite; }
.scene-progress__milestones .scene-node:nth-child(4) { bottom: 26%; left: 26%; transform: translateZ(120px); animation: milestonePulse 4s ease-in-out 1.2s infinite; }
.scene-progress__milestones .scene-node:nth-child(5) { bottom: 18%; right: 32%; transform: translateZ(128px); animation: milestonePulse 4s ease-in-out 1.6s infinite; }

.scene-health__scan,
.scene-health__spine,
.scene-health__flow {
  position: absolute;
  left: 50%;
}

.scene-health__scan {
  width: 290px;
  height: 74px;
  margin-left: -145px;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.24);
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.08), rgba(7, 13, 24, 0.18));
  box-shadow: 0 0 32px rgba(103, 232, 249, 0.08);
}

.scene-health__scan--top {
  top: 28%;
  transform: rotateX(74deg) translateZ(30px);
}

.scene-health__scan--mid {
  top: 58%;
  width: 340px;
  margin-left: -170px;
  border-color: rgba(190, 242, 100, 0.18);
  transform: rotateX(74deg) translateZ(84px);
}

.scene-health__helix {
  position: absolute;
  left: 50%;
  top: 14%;
  width: 220px;
  height: 340px;
  transform: translateX(-50%) translateZ(86px);
}

.scene-health__helix span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(103, 232, 249, 0.84) 58%, rgba(103, 232, 249, 0.16));
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.5);
}

.scene-health__helix span:nth-child(odd) {
  animation: helixLeft 8s ease-in-out infinite;
}

.scene-health__helix span:nth-child(even) {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(190, 242, 100, 0.82) 58%, rgba(190, 242, 100, 0.16));
  box-shadow: 0 0 16px rgba(190, 242, 100, 0.45);
  animation: helixRight 8s ease-in-out infinite;
}

.scene-health__helix span:nth-child(1) { top: 6%; animation-delay: 0s; }
.scene-health__helix span:nth-child(2) { top: 20%; animation-delay: 0.6s; }
.scene-health__helix span:nth-child(3) { top: 34%; animation-delay: 1.2s; }
.scene-health__helix span:nth-child(4) { top: 48%; animation-delay: 1.8s; }
.scene-health__helix span:nth-child(5) { top: 62%; animation-delay: 2.4s; }
.scene-health__helix span:nth-child(6) { top: 76%; animation-delay: 3s; }

.scene-health__spine {
  top: 16%;
  width: 4px;
  height: 314px;
  margin-left: -2px;
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.1), rgba(103, 232, 249, 0.9), rgba(190, 242, 100, 0.42), rgba(255, 255, 255, 0.1));
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.24);
}

.scene-health__bridges {
  position: absolute;
  left: 50%;
  top: 15%;
  width: 260px;
  height: 320px;
  transform: translateX(-50%) translateZ(90px);
}

.scene-health__bridges i {
  position: absolute;
  left: 50%;
  margin-left: -5px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
}

.scene-health__bridges i::before,
.scene-health__bridges i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.7), transparent);
}

.scene-health__bridges i::before {
  right: 100%;
}

.scene-health__bridges i::after {
  left: 100%;
  transform: scaleX(-1);
}

.scene-health__bridges i:nth-child(1) { top: 14%; }
.scene-health__bridges i:nth-child(2) { top: 34%; }
.scene-health__bridges i:nth-child(3) { top: 54%; }
.scene-health__bridges i:nth-child(4) { top: 74%; }

.scene-health__flow {
  top: 12%;
  width: 130px;
  height: 360px;
  margin-left: -65px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  filter: blur(8px);
  opacity: 0.7;
  animation: flowRise 4.8s linear infinite;
}

.scene-analytics__base,
.scene-analytics__bars,
.scene-analytics__links,
.scene-analytics__nodes {
  position: absolute;
  left: 50%;
  top: 52%;
}

.scene-analytics__base {
  width: min(76%, 400px);
  height: 280px;
  border-radius: 28px;
  transform: translate(-50%, -50%) rotateX(74deg) rotateY(-8deg) rotateZ(-16deg) translateZ(82px);
  border: 1px solid rgba(103, 232, 249, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, rgba(103, 232, 249, 0.06), rgba(8, 14, 26, 0.52));
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.58);
}

.scene-analytics__base::before,
.scene-analytics__base::after,
.scene-analytics__bars span::before,
.scene-analytics__bars span::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.scene-analytics__base::before {
  left: 12px;
  right: 12px;
  bottom: -16px;
  height: 16px;
  transform: skewX(-58deg);
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.76), rgba(4, 8, 17, 0.16));
  border: 1px solid rgba(103, 232, 249, 0.08);
  border-top: 0;
}

.scene-analytics__base::after {
  top: 12px;
  right: -16px;
  bottom: 12px;
  width: 16px;
  transform: skewY(-32deg);
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.54), rgba(5, 10, 18, 0.12));
  border: 1px solid rgba(103, 232, 249, 0.08);
  border-left: 0;
}

.scene-analytics__bars {
  width: min(74%, 390px);
  height: 230px;
  transform: translate(-50%, -50%) rotateX(74deg) rotateY(-8deg) rotateZ(-16deg) translateZ(152px);
  display: flex;
  align-items: end;
  gap: 16px;
}

.scene-analytics__bars span {
  position: relative;
  flex: 1;
  border-radius: 14px 14px 8px 8px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(103, 232, 249, 0.18) 16%, rgba(6, 12, 23, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  animation: analyticsBar 5.2s ease-in-out infinite;
}

.scene-analytics__bars span::before {
  inset: -10px 6px auto 6px;
  height: 10px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, rgba(185, 245, 255, 0.32), rgba(103, 232, 249, 0.18));
}

.scene-analytics__bars span::after {
  top: 6px;
  right: -10px;
  bottom: 4px;
  width: 10px;
  border-radius: 0 10px 6px 0;
  background: linear-gradient(180deg, rgba(17, 33, 49, 0.8), rgba(6, 12, 23, 0.2));
  transform: skewY(-28deg);
}

.scene-analytics__bars span:nth-child(1) { height: 26%; animation-delay: 0.1s; }
.scene-analytics__bars span:nth-child(2) { height: 44%; animation-delay: 0.3s; }
.scene-analytics__bars span:nth-child(3) { height: 68%; animation-delay: 0.5s; }
.scene-analytics__bars span:nth-child(4) { height: 58%; animation-delay: 0.7s; }
.scene-analytics__bars span:nth-child(5) { height: 84%; animation-delay: 0.9s; }
.scene-analytics__bars span:nth-child(6) { height: 48%; animation-delay: 1.1s; }
.scene-analytics__bars span:nth-child(7) { height: 72%; animation-delay: 1.3s; }

.scene-analytics__nodes {
  width: min(74%, 390px);
  height: 230px;
  transform: translate(-50%, -50%) rotateX(74deg) rotateY(-8deg) rotateZ(-16deg) translateZ(196px);
}

.scene-analytics__nodes i {
  position: absolute;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.68);
}

.scene-analytics__nodes i:nth-child(1) { left: 7%; top: 64%; }
.scene-analytics__nodes i:nth-child(2) { left: 20%; top: 48%; background: var(--lime); box-shadow: 0 0 16px rgba(190, 242, 100, 0.55); }
.scene-analytics__nodes i:nth-child(3) { left: 36%; top: 28%; }
.scene-analytics__nodes i:nth-child(4) { left: 52%; top: 38%; background: var(--rose); box-shadow: 0 0 16px rgba(244, 114, 182, 0.56); }
.scene-analytics__nodes i:nth-child(5) { left: 68%; top: 14%; }
.scene-analytics__nodes i:nth-child(6) { left: 82%; top: 34%; background: rgba(255, 255, 255, 0.9); box-shadow: 0 0 16px rgba(255, 255, 255, 0.5); }

.scene-analytics__links {
  width: min(74%, 390px);
  height: 230px;
  transform: translate(-50%, -50%) rotateX(74deg) rotateY(-8deg) rotateZ(-16deg) translateZ(188px);
}

.scene-analytics__links b {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.16), rgba(103, 232, 249, 0.88));
  transform-origin: left center;
}

.scene-analytics__links b:nth-child(1) { left: 9%; top: 66%; width: 64px; transform: rotate(-18deg); }
.scene-analytics__links b:nth-child(2) { left: 22%; top: 50%; width: 78px; transform: rotate(-22deg); }
.scene-analytics__links b:nth-child(3) { left: 38%; top: 30%; width: 74px; transform: rotate(10deg); }
.scene-analytics__links b:nth-child(4) { left: 54%; top: 40%; width: 82px; transform: rotate(-22deg); }
.scene-analytics__links b:nth-child(5) { left: 70%; top: 16%; width: 68px; transform: rotate(18deg); }

.scene-about__block,
.scene-about__connector {
  position: absolute;
  border-radius: 24px;
}

.scene-about__block {
  transform-style: preserve-3d;
  border: 1px solid rgba(103, 232, 249, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(103, 232, 249, 0.14), rgba(8, 14, 26, 0.74));
  box-shadow: var(--shadow-soft);
}

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

.scene-about__block::before {
  left: 8px;
  right: 8px;
  bottom: -14px;
  height: 14px;
  transform: skewX(-55deg);
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.8), rgba(4, 8, 17, 0.18));
  border-radius: 0 0 16px 16px;
}

.scene-about__block::after {
  top: 8px;
  right: -14px;
  bottom: 8px;
  width: 14px;
  transform: skewY(-35deg);
  background: linear-gradient(180deg, rgba(18, 34, 50, 0.76), rgba(6, 12, 23, 0.18));
  border-radius: 0 14px 14px 0;
}

.scene-about__block--core {
  left: 50%;
  top: 46%;
  width: 180px;
  height: 120px;
  transform: translate(-50%, -50%) rotateX(10deg) rotateY(-18deg) translateZ(118px);
  animation: architectureCoreFloat 10s ease-in-out infinite;
}

.scene-about__block--left {
  left: 18%;
  top: 34%;
  width: 134px;
  height: 92px;
  transform: rotateX(6deg) rotateY(18deg) rotateZ(-2deg) translateZ(64px);
  animation: architectureLeftFloat 10s ease-in-out -1s infinite;
}

.scene-about__block--right {
  right: 16%;
  top: 24%;
  width: 144px;
  height: 100px;
  border-color: rgba(244, 114, 182, 0.18);
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(8, 14, 26, 0.74));
  transform: rotateX(8deg) rotateY(-20deg) rotateZ(3deg) translateZ(78px);
  animation: architectureRightFloat 10s ease-in-out -2s infinite;
}

.scene-about__block--front {
  left: 24%;
  bottom: 18%;
  width: 160px;
  height: 104px;
  border-color: rgba(190, 242, 100, 0.18);
  background: linear-gradient(135deg, rgba(190, 242, 100, 0.1), rgba(8, 14, 26, 0.74));
  transform: rotateX(10deg) rotateY(14deg) rotateZ(-4deg) translateZ(142px);
  animation: architectureFrontFloat 10s ease-in-out -1.6s infinite;
}

.scene-about__block--rear {
  right: 22%;
  bottom: 20%;
  width: 122px;
  height: 86px;
  transform: rotateX(4deg) rotateY(-16deg) rotateZ(2deg) translateZ(38px);
  animation: architectureRearFloat 10s ease-in-out -0.6s infinite;
}

.scene-about__connector {
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.3), rgba(103, 232, 249, 0.8), rgba(190, 242, 100, 0.28));
  box-shadow: 0 0 20px rgba(103, 232, 249, 0.22);
}

.scene-about__connector--h {
  left: 22%;
  right: 20%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%) translateZ(86px);
}

.scene-about__connector--v {
  top: 20%;
  bottom: 18%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%) translateZ(74px);
}

.cta-primary,
.cta-secondary,
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cta-primary,
.action-button--primary {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #03111d;
  box-shadow: 0 22px 50px rgba(103, 232, 249, 0.24);
}

.cta-secondary,
.action-button--secondary {
  background: rgba(103, 232, 249, 0.07);
  color: var(--text);
  border-color: rgba(103, 232, 249, 0.24);
}

.cta-primary:hover,
.cta-secondary:hover,
.action-button:hover {
  transform: translateY(-2px);
}

.stats-row,
.metric-grid,
.card-grid,
.story-card-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.metric-panel,
.timeline-card,
.spotlight-card,
.insight-card {
  padding: 24px;
}

.metric-kicker {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metric-value {
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 0.98;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.metric-value--cyan { color: var(--cyan); }
.metric-value--lime { color: var(--lime); }
.metric-value--amber { color: var(--amber); }
.metric-value--rose { color: var(--rose); }

.story-panel {
  padding: 36px;
}

.story-panel__rail {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: calc(50% - 0.5px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(103, 232, 249, 0.32), transparent);
}

.story-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  margin-top: 24px;
}

.story-step__dot {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.8);
}

.story-step__card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(10, 17, 31, 0.82);
}

.story-step__index {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.story-step__title {
  margin-top: 12px;
  font-family: "Sora", sans-serif;
  font-size: 26px;
}

.story-step__copy {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.story-stage {
  padding: 30px;
  isolation: isolate;
}

.story-stage__layers {
  position: relative;
  min-height: 460px;
  transform-style: preserve-3d;
  perspective: 1500px;
  display: grid;
  place-items: center;
}

.story-stage__plane {
  position: absolute;
  inset: auto;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(8, 15, 28, 0.86);
  box-shadow: var(--shadow);
}

.story-stage__plane--base {
  left: 4%;
  right: 4%;
  bottom: 6%;
  top: 20%;
  transform: translateZ(0);
}

.story-stage__plane--mid {
  left: 14%;
  right: 14%;
  top: 14%;
  bottom: 15%;
  transform: translateZ(60px);
}

.story-stage__plane--top {
  left: 24%;
  right: 24%;
  top: 21%;
  bottom: 22%;
  transform: translateZ(120px);
}

.story-model {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  z-index: 2;
}

.story-model--embed {
  inset: 13% 15% 13% 15%;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(103, 232, 249, 0.08), transparent 60%),
    rgba(5, 10, 20, 0.22);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

.story-model--embed::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.18), transparent 62%);
  filter: blur(26px);
  pointer-events: none;
}

.story-model__embed,
.story-model__viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  display: block;
}

.story-model__shadow {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 48%;
  height: 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.2), transparent 68%);
  filter: blur(24px);
  transform: translateX(-50%) translateZ(0);
}

.story-model__core {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%) translateZ(90px);
  transform-style: preserve-3d;
}

.story-model__sphere {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.9), transparent 16%),
    radial-gradient(circle at 60% 68%, rgba(103, 232, 249, 0.16), transparent 48%),
    conic-gradient(from 40deg, rgba(103, 232, 249, 0.95), rgba(190, 242, 100, 0.78), rgba(244, 114, 182, 0.72), rgba(103, 232, 249, 0.95));
  box-shadow:
    inset -20px -24px 30px rgba(3, 7, 18, 0.48),
    0 0 50px rgba(103, 232, 249, 0.22);
}

.story-model__sphere::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.story-model__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(103, 232, 249, 0.26);
  transform-style: preserve-3d;
}

.story-model__ring--outer {
  width: 270px;
  height: 270px;
  transform: translate(-50%, -50%) rotateX(72deg) translateZ(14px);
}

.story-model__ring--middle {
  width: 240px;
  height: 240px;
  border-color: rgba(190, 242, 100, 0.24);
  transform: translate(-50%, -50%) rotateY(76deg) rotateX(14deg) translateZ(28px);
}

.story-model__ring--inner {
  width: 186px;
  height: 186px;
  border-color: rgba(244, 114, 182, 0.24);
  transform: translate(-50%, -50%) rotateX(18deg) rotateY(28deg) translateZ(52px);
}

.story-model__ring::before,
.story-model__ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.65);
}

.story-model__ring::before {
  top: 18%;
  left: 10%;
}

.story-model__ring::after {
  right: 12%;
  bottom: 14%;
}

.stage-badge {
  position: absolute;
  z-index: 3;
  width: clamp(220px, 34%, 280px);
  min-height: 122px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(9, 17, 31, 0.92);
  border: 1px solid rgba(103, 232, 249, 0.16);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.stage-badge strong {
  display: block;
  margin-top: 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.02;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  overflow-wrap: anywhere;
}

.stage-badge--a {
  top: 8%;
  left: 5%;
  transform: translateZ(120px);
}

.stage-badge--b {
  top: 16%;
  right: 4%;
  transform: translateZ(140px);
  text-align: right;
}

.stage-badge--c {
  bottom: 10%;
  left: 10%;
  transform: translateZ(135px);
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  background: rgba(103, 232, 249, 0.08);
  color: var(--muted-strong);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dashboard-shell,
.progress-shell,
.health-shell,
.analytics-shell,
.about-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dashboard-matrix {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
}

.dashboard-stack {
  display: grid;
  gap: 24px;
}

.glass-card {
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover,
.metric-panel:hover,
.timeline-card:hover,
.spotlight-card:hover,
.insight-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.story-timeline {
  display: grid;
  gap: 18px;
}

.timeline-card__meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-card__title {
  margin-top: 12px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.08;
  text-wrap: balance;
}

.timeline-card__copy {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.data-table th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
}

.table-shell {
  overflow-x: auto;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  min-width: 240px;
  max-width: 340px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(8, 15, 28, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { border-color: rgba(190, 242, 100, 0.26); }
.toast.warning { border-color: rgba(251, 146, 60, 0.26); }
.toast.info { border-color: rgba(103, 232, 249, 0.26); }

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  background: rgba(3, 7, 18, 0.45);
  backdrop-filter: blur(18px);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 42px;
}

.footer-copy,
.footer-meta {
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

.story-model__core,
.story-model__ring,
.stage-badge {
  will-change: transform;
}

.score-ring {
  transform: rotate(-90deg);
}

.toggle-btn.active {
  background: rgba(103, 232, 249, 0.16);
  color: #dffcff;
  border-color: rgba(103, 232, 249, 0.4);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.14);
}

.check-item.checked {
  border-color: rgba(190, 242, 100, 0.45);
  background: rgba(190, 242, 100, 0.1);
}

.check-item.checked > div:first-child {
  background: linear-gradient(180deg, var(--lime), var(--cyan));
  border-color: transparent;
}

.heat-cell {
  min-height: 76px;
}

.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;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3vw, -4vh, 0) scale(1.08); }
}

@keyframes signalAmbientPulse {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes signalFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -52%) translateY(-8px); }
}

@keyframes signalPulseRing {
  0%, 100% { transform: scale(0.96); opacity: 0.42; }
  50% { transform: scale(1.03); opacity: 0.82; }
}

@keyframes signalNodeA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -14px, 0) scale(1.12); }
}

@keyframes signalNodeB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.92); }
  50% { transform: translate3d(-16px, 20px, 0) scale(1.14); }
}

@keyframes signalNodeC {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -20px, 0) scale(1.08); }
}

@keyframes signalScan {
  0% { transform: translateY(-100%); opacity: 0; }
  18% { opacity: 0.9; }
  58% { opacity: 0.5; }
  100% { transform: translateY(100%); opacity: 0; }
}

@keyframes signalBarPulse {
  0%, 100% { filter: brightness(0.92); }
  50% { filter: brightness(1.14); }
}

@keyframes signalMarkerPulse {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes signalHelixLeft {
  0%, 100% { transform: translateX(-62px); }
  50% { transform: translateX(62px); }
}

@keyframes signalHelixRight {
  0%, 100% { transform: translateX(62px); }
  50% { transform: translateX(-62px); }
}

@keyframes signalArchitectureFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .dashboard-matrix {
    grid-template-columns: 1fr;
  }

  .signal-scene {
    min-height: 430px;
  }

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

  .story-step {
    grid-template-columns: 1fr;
  }

  .story-panel__rail {
    display: none;
  }

  .story-step__dot {
    margin: 0;
  }

  .story-stage__layers {
    min-height: 520px;
  }

    .stage-badge {
    width: clamp(220px, 40%, 280px);
  }

  .stage-badge--a { top: 6%; left: 4%; }
  .stage-badge--b { top: 10%; right: 4%; }
  .stage-badge--c { bottom: 8%; left: 8%; }
}

@media (max-width: 900px) {
  .page-title,
  .hero-title {
    max-width: 100%;
    font-size: clamp(36px, 12vw, 70px);
  }

  .section-title {
    max-width: 100%;
  }

  .site-status {
    align-self: stretch;
    justify-content: center;
  }

  .story-model__core {
    width: 170px;
    height: 170px;
  }

  .story-model__ring--outer {
    width: 220px;
    height: 220px;
  }

  .story-model__ring--middle {
    width: 190px;
    height: 190px;
  }

  .story-model__ring--inner {
    width: 150px;
    height: 150px;
  }

  .signal-scene {
    min-height: 400px;
  }

  .signal-scene__label strong {
    font-size: 20px;
  }
}

@media (max-width: 820px) {
  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .page-hero,
  .story-panel,
  .story-stage,
  .glass-card,
  .metric-panel,
  .timeline-card,
  .spotlight-card,
  .insight-card {
    padding: 22px;
  }

  .stats-row,
  .metric-grid,
  .card-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .signal-scene {
    min-height: 360px;
  }

  .signal-scene__label {
    min-width: 122px;
    padding: 10px 12px;
  }

  .signal-scene__label span {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .signal-scene__label strong {
    font-size: 16px;
  }

  .signal-scene__label--a {
    left: 5%;
    top: 10%;
  }

  .signal-scene__label--b {
    right: 5%;
    top: 16%;
  }

  .signal-scene__label--c {
    left: 8%;
    bottom: 10%;
  }

  .signal-home__orbit--outer,
  .signal-progress__trail {
    width: 258px;
    height: 258px;
  }

  .signal-home__orbit--mid,
  .signal-progress__ring--outer {
    width: 226px;
    height: 226px;
  }

  .signal-home__orbit--inner,
  .signal-progress__ring--inner {
    width: 184px;
    height: 184px;
  }

  .signal-home__core {
    width: 146px;
    height: 146px;
  }

  .signal-dashboard__panel--main {
    width: calc(100% - 56px);
    height: 236px;
  }

  .signal-dashboard__panel--rear {
    width: calc(100% - 108px);
    height: 196px;
  }

  .signal-dashboard__ring {
    width: 98px;
    height: 98px;
    left: 26px;
    top: 34px;
  }

  .signal-dashboard__line {
    left: 146px;
    right: 24px;
    top: 44px;
  }

  .signal-health__scan {
    width: 238px;
    margin-left: -119px;
  }

  .signal-health__scan--bottom {
    width: 286px;
    margin-left: -143px;
  }

  .signal-health__spine {
    height: 250px;
    margin-top: -125px;
  }

  .signal-analytics__base {
    width: calc(100% - 84px);
    height: 208px;
  }

  .signal-analytics__bars {
    width: calc(100% - 116px);
    height: 160px;
  }

  .hero-float-card {
    min-width: 140px;
  }

  .stage-badge {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: none;
    inset: auto;
    text-align: left;
    transform: none !important;
    min-height: auto;
    margin: 0;
  }

  .stage-badge--b {
    text-align: left;
  }

  .story-stage__layers {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: auto;
    padding-top: 228px;
  }

  .story-model {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 210px;
    transform: translateX(-50%);
    z-index: 4;
  }

  .story-model--embed {
    inset: 22px 22px auto 22px;
    height: 210px;
  }

  .story-stage__plane--base {
    top: 38px;
    bottom: 118px;
  }

  .story-stage__plane--mid {
    top: 56px;
    bottom: 132px;
  }

  .story-stage__plane--top {
    top: 74px;
    bottom: 146px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Local utility layer replacing the runtime Tailwind CDN dependency. */
.block { display: block; }
.hidden { display: none !important; }
.flex { display: flex; }
.grid { display: grid; }
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-50 { z-index: 50; }
.w-full { width: 100%; }
.min-w-0 { min-width: 0; }
.w-5 { width: 1.25rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-56 { width: 14rem; }
.w-\[300px\] { width: 300px; }
.w-\[500px\] { width: 500px; }
.w-\[600px\] { width: 600px; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-5 { height: 1.25rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-\[300px\] { height: 300px; }
.h-\[500px\] { height: 500px; }
.h-\[600px\] { height: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.overflow-x-auto { overflow-x: auto; }
.break-words { overflow-wrap: anywhere; word-break: break-word; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[1\.2rem\] { border-radius: 1.2rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white { border-color: rgba(255, 255, 255, 1); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-cyan-400\/20 { border-color: rgba(34, 211, 238, 0.2); }
.border-cyan-400\/30 { border-color: rgba(34, 211, 238, 0.3); }
.border-fuchsia-400\/20 { border-color: rgba(232, 121, 249, 0.2); }
.border-fuchsia-400\/30 { border-color: rgba(232, 121, 249, 0.3); }
.border-lime-400\/20 { border-color: rgba(163, 230, 53, 0.2); }
.bg-white\/5 { background: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background: rgba(255, 255, 255, 0.1); }
.bg-cyan-300 { background: rgb(103, 232, 249); }
.bg-fuchsia-300 { background: rgb(240, 171, 252); }
.bg-lime-300 { background: rgb(190, 242, 100); }
.bg-cyan-400\/10 { background: rgba(34, 211, 238, 0.1); }
.bg-fuchsia-400\/10 { background: rgba(232, 121, 249, 0.1); }
.bg-lime-400\/10 { background: rgba(163, 230, 53, 0.1); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-from), var(--tw-gradient-to)); }
.from-cyan-400 { --tw-gradient-from: rgb(34, 211, 238); }
.to-cyan-200 { --tw-gradient-to: rgb(165, 243, 252); }
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-\[0\.7rem\] { font-size: 0.7rem; }
.text-white { color: #fff; }
.text-cyan-100 { color: rgb(207, 250, 254); }
.text-cyan-200 { color: rgb(165, 243, 252); }
.text-fuchsia-100 { color: rgb(250, 232, 255); }
.text-fuchsia-200 { color: rgb(245, 208, 254); }
.text-lime-100 { color: rgb(236, 252, 203); }
.text-lime-200 { color: rgb(217, 249, 157); }
.text-slate-100 { color: rgb(241, 245, 249); }
.text-slate-200 { color: rgb(226, 232, 240); }
.text-slate-300 { color: rgb(203, 213, 225); }
.text-slate-400 { color: rgb(148, 163, 184); }
.font-body { font-family: "Manrope", sans-serif; }
.font-headline { font-family: "Sora", sans-serif; }
.font-mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.leading-none { line-height: 1; }
.leading-7 { line-height: 1.75rem; }
.uppercase { text-transform: uppercase; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.05em\] { letter-spacing: 0.05em; }
.tracking-\[0\.16em\] { letter-spacing: 0.16em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.22em\] { letter-spacing: 0.22em; }
.tracking-\[0\.24em\] { letter-spacing: 0.24em; }
.tracking-\[0\.28em\] { letter-spacing: 0.28em; }
.float-right { float: right; }
.cursor-pointer { cursor: pointer; }
.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.accent-cyan-300 { accent-color: rgb(103, 232, 249); }
.accent-fuchsia-300 { accent-color: rgb(240, 171, 252); }
.accent-lime-300 { accent-color: rgb(190, 242, 100); }
.ring-2 { box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08); }
.ring-cyan-300\/50 { box-shadow: inset 0 0 0 2px rgba(103, 232, 249, 0.5); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:items-center { align-items: center; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:grid-cols-\[180px_minmax\(0\,1fr\)\] { grid-template-columns: 180px minmax(0, 1fr); }
  .lg\:grid-cols-\[240px_1fr\] { grid-template-columns: 240px minmax(0, 1fr); }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-12 { grid-column: span 12 / span 12; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .xl\:col-span-3 { grid-column: span 3 / span 3; }
  .xl\:col-span-4 { grid-column: span 4 / span 4; }
  .xl\:col-span-5 { grid-column: span 5 / span 5; }
}

@media (min-width: 1536px) {
  .\32xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .\32xl\:col-span-1 { grid-column: span 1 / span 1; }
}

/* Premium redesign layer */
.viewport-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 3px;
  background: rgba(255, 255, 255, 0.03);
}

.viewport-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--rose), var(--lime));
  box-shadow: 0 0 22px rgba(103, 232, 249, 0.75);
}

.bg-halo,
.bg-rings {
  position: absolute;
  pointer-events: none;
}

.bg-halo {
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.bg-halo--a {
  top: 18vh;
  left: 8vw;
  background: rgba(103, 232, 249, 0.32);
}

.bg-halo--b {
  right: 6vw;
  bottom: 12vh;
  background: rgba(244, 114, 182, 0.24);
}

.bg-rings {
  inset: 8vh 10vw auto;
  height: 68vh;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transform: perspective(1200px) rotateX(74deg);
  box-shadow:
    0 0 0 80px rgba(103, 232, 249, 0.015),
    0 0 0 180px rgba(190, 242, 100, 0.01);
}

.site-header {
  top: 10px;
  margin: 0 auto;
  width: min(calc(100vw - 20px), calc(var(--content-width) + 44px));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.34);
}

.site-header__inner {
  width: min(calc(100% - 28px), var(--content-width));
}

.site-main {
  padding-top: 18px;
}

.shell-banner {
  width: min(var(--content-width), calc(100vw - 32px));
  margin: 0 auto 12px;
}

.shell-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(8, 15, 29, 0.92), rgba(11, 20, 34, 0.66)),
    radial-gradient(circle at left center, rgba(103, 232, 249, 0.14), transparent 30%);
  backdrop-filter: blur(16px);
}

.shell-banner__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.shell-banner__tag {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  background: rgba(103, 232, 249, 0.08);
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shell-banner__copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.shell-banner__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.shell-banner__right span,
.hero-marquee span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero--cinematic,
.story-panel--deep,
.story-stage--immersive,
.glass-card--control,
.glass-card--score,
.story-showcase,
.dashboard-ribbon__card,
.hero-command-card,
.depth-card {
  background:
    linear-gradient(180deg, rgba(8, 14, 27, 0.94), rgba(6, 12, 22, 0.78)),
    radial-gradient(circle at top left, rgba(103, 232, 249, 0.09), transparent 26%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 80px rgba(1, 6, 20, 0.46);
}

.page-hero--compact {
  padding-top: 36px;
  padding-bottom: 36px;
}

.hero-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-command-grid,
.story-showcase__grid,
.dashboard-ribbon {
  display: grid;
  gap: 18px;
}

.hero-command-grid,
.dashboard-ribbon {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-command-card,
.dashboard-ribbon__card,
.depth-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.hero-command-card::before,
.dashboard-ribbon__card::before,
.depth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%, transparent 72%, rgba(103, 232, 249, 0.08));
  pointer-events: none;
}

.hero-command-card span,
.dashboard-ribbon__card span,
.depth-card__eyebrow {
  display: inline-block;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-command-card strong,
.dashboard-ribbon__card strong,
.depth-card__title {
  display: block;
  margin-top: 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-command-card p,
.dashboard-ribbon__card p,
.depth-card__copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.story-showcase {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-showcase__grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

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

.stats-row--elevated .metric-panel,
.dashboard-ribbon__card,
.hero-command-card,
.depth-card,
.glass-card--control,
.glass-card--score {
  transform-style: preserve-3d;
}

.hero-depth-ribbon {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.6), transparent);
  opacity: 0.6;
}

.hero-depth-ribbon--a {
  top: 28%;
}

.hero-depth-ribbon--b {
  bottom: 22%;
}

.glass-card--control {
  background:
    linear-gradient(180deg, rgba(8, 15, 29, 0.96), rgba(6, 12, 21, 0.88)),
    radial-gradient(circle at top right, rgba(190, 242, 100, 0.08), transparent 28%);
}

.glass-card--score {
  background:
    linear-gradient(180deg, rgba(7, 14, 28, 0.98), rgba(6, 12, 22, 0.88)),
    radial-gradient(circle at top left, rgba(103, 232, 249, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(244, 114, 182, 0.08), transparent 28%);
}

.dashboard-stack--spotlight .spotlight-card {
  min-height: 220px;
}

.metric-panel,
.timeline-card,
.spotlight-card,
.glass-card,
.story-showcase,
.story-panel,
.story-stage,
.page-hero {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 64px rgba(2, 6, 23, 0.34);
}

.cta-primary,
.cta-secondary {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.34);
}

.story-panel__rail {
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.06), rgba(103, 232, 249, 0.5), rgba(190, 242, 100, 0.06));
}

.data-table tbody tr {
  transition: background 0.25s ease, transform 0.25s ease;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.check-item,
.toggle-btn,
input[type="range"],
input[type="number"],
input[type="time"] {
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.check-item:hover,
.toggle-btn:hover,
input[type="number"]:focus,
input[type="time"]:focus {
  border-color: rgba(103, 232, 249, 0.28);
  box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.18), 0 18px 40px rgba(2, 6, 23, 0.2);
}

input[type="number"],
input[type="time"] {
  padding: 14px 16px;
}

.heat-cell {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 1100px) {
  .story-showcase__grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .shell-banner__inner,
  .shell-banner__left,
  .shell-banner__right,
  .dashboard-ribbon,
  .hero-command-grid,
  .story-showcase__grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .depth-card--wide {
    grid-column: auto;
  }

  .site-header {
    width: calc(100vw - 16px);
    top: 6px;
  }

  .shell-banner__right {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .shell-banner__inner,
  .story-showcase,
  .hero-command-card,
  .dashboard-ribbon__card,
  .depth-card {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .site-main {
    padding-top: 10px;
    padding-bottom: 72px;
  }

  .page-frame,
  .site-header__inner,
  .site-footer__inner,
  .shell-banner {
    width: min(var(--content-width), calc(100vw - 20px));
  }

  .site-header {
    position: sticky;
    border-radius: 28px;
  }

  .site-header__inner {
    gap: 14px;
    min-height: auto;
    padding: 14px 0;
  }

  .brand-mark__text,
  .footer-brand {
    letter-spacing: 0.12em;
    font-size: 12px;
  }

  .site-nav {
    gap: 8px;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .site-status {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .shell-banner__inner {
    gap: 14px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .shell-banner__tag,
  .shell-banner__right span,
  .hero-marquee span,
  .metric-pill {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 8px 10px;
  }

  .page-hero,
  .story-panel,
  .story-stage,
  .glass-card,
  .metric-panel,
  .timeline-card,
  .spotlight-card,
  .insight-card,
  .story-showcase {
    border-radius: 24px;
    padding: 18px;
  }

  .page-title,
  .hero-title {
    font-size: clamp(30px, 11vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .section-title {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.06;
  }

  .page-copy,
  .hero-copy,
  .section-copy,
  .timeline-card__copy,
  .hero-command-card p,
  .dashboard-ribbon__card p,
  .depth-card__copy {
    font-size: 15px;
    line-height: 1.65;
  }

  .timeline-card__title,
  .hero-command-card strong,
  .dashboard-ribbon__card strong,
  .depth-card__title {
    font-size: clamp(18px, 6.2vw, 24px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .metric-value {
    font-size: clamp(24px, 9vw, 34px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .metric-kicker,
  .timeline-card__meta,
  .page-eyebrow,
  .section-tag {
    letter-spacing: 0.16em;
  }

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

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-command-grid,
  .dashboard-ribbon,
  .story-showcase__grid,
  .card-grid,
  .metric-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .signal-scene {
    min-height: 300px;
    border-radius: 24px;
  }

  .signal-scene__label {
    min-width: 0;
    max-width: 138px;
    padding: 8px 10px;
    border-radius: 16px;
  }

  .signal-scene__label span {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .signal-scene__label strong {
    font-size: 14px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .signal-scene__label--a {
    top: 8%;
    left: 4%;
  }

  .signal-scene__label--b {
    top: 12%;
    right: 4%;
  }

  .signal-scene__label--c {
    left: 6%;
    bottom: 8%;
  }

  .story-stage__layers {
    padding-top: 204px;
    gap: 10px;
  }

  .story-model {
    top: 14px;
    height: 188px;
  }

  .story-model__core {
    width: 144px;
    height: 144px;
  }

  .story-model__ring--outer {
    width: 188px;
    height: 188px;
  }

  .story-model__ring--middle {
    width: 160px;
    height: 160px;
  }

  .story-model__ring--inner {
    width: 126px;
    height: 126px;
  }

  .stage-badge {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .stage-badge strong {
    margin-top: 6px;
    font-size: clamp(18px, 6vw, 22px);
    line-height: 1.08;
  }

  .story-stage__plane--base {
    top: 34px;
    bottom: 108px;
  }

  .story-stage__plane--mid {
    top: 50px;
    bottom: 120px;
  }

  .story-stage__plane--top {
    top: 66px;
    bottom: 132px;
  }

  .dashboard-matrix {
    grid-template-columns: 1fr;
  }

  .toggle-group {
    grid-template-columns: 1fr 1fr;
  }

  .toggle-btn {
    min-height: 48px;
    padding: 12px 10px;
    font-size: 13px;
  }

  input[type="number"],
  input[type="time"] {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .w-56,
  .h-56 {
    width: 11rem;
    height: 11rem;
  }

  .text-5xl {
    font-size: 2.25rem;
  }

  .h-80 {
    height: 18rem;
  }

  .h-72,
  .h-64 {
    height: 15rem;
  }

  .table-shell {
    margin-left: -4px;
    margin-right: -4px;
  }

  .data-table th,
  .data-table td {
    padding: 12px 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .site-footer__inner {
    gap: 14px;
    padding: 22px 0 32px;
  }

  .footer-copy,
  .footer-meta {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .page-frame,
  .site-header__inner,
  .site-footer__inner,
  .shell-banner {
    width: calc(100vw - 16px);
  }

  .site-header {
    width: calc(100vw - 12px);
    top: 4px;
  }

  .page-hero,
  .story-panel,
  .story-stage,
  .glass-card,
  .metric-panel,
  .timeline-card,
  .spotlight-card,
  .insight-card,
  .story-showcase,
  .shell-banner__inner,
  .hero-command-card,
  .dashboard-ribbon__card,
  .depth-card {
    padding: 16px;
  }

  .page-title,
  .hero-title {
    font-size: clamp(28px, 10.5vw, 38px);
  }

  .section-title {
    font-size: clamp(22px, 8vw, 30px);
  }

  .page-copy,
  .hero-copy,
  .section-copy,
  .timeline-card__copy {
    font-size: 14px;
  }

  .toggle-group,
  .grid-cols-2,
  .grid-cols-3,
  .sm\:grid-cols-2,
  .sm\:grid-cols-3,
  .sm\:grid-cols-4 {
    grid-template-columns: 1fr;
  }

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

  .signal-scene {
    min-height: 270px;
  }

  .signal-scene__label {
    max-width: 120px;
    padding: 7px 9px;
  }

  .signal-scene__label strong {
    font-size: 12px;
  }

  .story-stage__layers {
    padding-top: 188px;
  }

  .story-model {
    top: 10px;
    height: 172px;
  }

  .story-model__core {
    width: 124px;
    height: 124px;
  }

  .story-model__ring--outer {
    width: 166px;
    height: 166px;
  }

  .story-model__ring--middle {
    width: 142px;
    height: 142px;
  }

  .story-model__ring--inner {
    width: 112px;
    height: 112px;
  }

  .stage-badge {
    padding: 11px 12px;
    font-size: 10px;
  }

  .stage-badge strong {
    font-size: 18px;
  }

  .story-stage__plane--base {
    top: 28px;
    bottom: 98px;
  }

  .story-stage__plane--mid {
    top: 42px;
    bottom: 108px;
  }

  .story-stage__plane--top {
    top: 56px;
    bottom: 118px;
  }

  .w-56,
  .h-56 {
    width: 9.5rem;
    height: 9.5rem;
  }

  .text-5xl {
    font-size: 2rem;
  }

  .metric-value {
    font-size: clamp(22px, 8.5vw, 30px);
  }
}

body.perf-lite .bg-gradient-orb,
body.perf-lite .bg-halo,
body.perf-lite .bg-rings,
body.perf-lite .bg-noise,
body.perf-lite .signal-scene__ambient,
body.perf-lite .hero-depth-ribbon {
  display: none;
}

body.perf-lite .site-header,
body.perf-lite .site-footer,
body.perf-lite .shell-banner__inner,
body.perf-lite .page-hero,
body.perf-lite .story-panel,
body.perf-lite .story-stage,
body.perf-lite .glass-card,
body.perf-lite .metric-panel,
body.perf-lite .timeline-card,
body.perf-lite .spotlight-card,
body.perf-lite .insight-card,
body.perf-lite .story-showcase,
body.perf-lite .dashboard-ribbon__card,
body.perf-lite .signal-scene,
body.perf-lite .signal-scene__label {
  backdrop-filter: none !important;
}

body.perf-lite .site-header,
body.perf-lite .page-hero,
body.perf-lite .story-panel,
body.perf-lite .story-stage,
body.perf-lite .glass-card,
body.perf-lite .metric-panel,
body.perf-lite .timeline-card,
body.perf-lite .spotlight-card,
body.perf-lite .insight-card,
body.perf-lite .story-showcase,
body.perf-lite .dashboard-ribbon__card,
body.perf-lite .signal-scene {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(2, 6, 23, 0.22);
}

body.perf-lite .signal-scene::after,
body.perf-lite .page-hero::before,
body.perf-lite .story-panel::before,
body.perf-lite .glass-card::before,
body.perf-lite .metric-panel::before,
body.perf-lite .timeline-card::before,
body.perf-lite .spotlight-card::before,
body.perf-lite .insight-card::before,
body.perf-lite .story-stage::before,
body.perf-lite .dashboard-ribbon__card::before,
body.perf-lite .depth-card::before,
body.perf-lite .hero-command-card::before {
  opacity: 0.35;
}

body.perf-lite .signal-scene,
body.perf-lite .story-stage__layers,
body.perf-lite [data-tilt],
body.perf-lite [data-depth] {
  transform: none !important;
}

body.perf-lite .signal-scene {
  transition: none;
}

body.perf-lite .bg-grid {
  opacity: 0.16;
}

@media (prefers-reduced-motion: reduce) {
  .viewport-progress {
    display: none;
  }

  .bg-rings,
  .bg-halo {
    display: none;
  }
}
