:root {
  --bg: #0b0f14;
  --bg-2: #0f141c;
  --panel: #121a24;
  --panel-2: #151f2c;
  --text: #e8edf2;
  --muted: #9aa8b6;
  --accent: #f59e0b;
  --accent-2: #3b82f6;
  --line: #263241;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(59, 130, 246, 0.15), transparent),
              radial-gradient(900px 500px at 80% 0%, rgba(245, 158, 11, 0.12), transparent),
              var(--bg);
  color: var(--text);
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 300px at 70% 20%, rgba(56, 189, 248, 0.08), transparent);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 20, 0.7);
  z-index: 10;
  border-bottom: 1px solid rgba(38, 50, 65, 0.6);
}

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

.brand-link {
  color: inherit;
  text-decoration: none;
}

.brand-link:hover .brand-title {
  color: var(--text);
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

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

.nav a,
.nav summary {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover,
.nav summary:hover,
.nav-dropdown[open] summary {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] summary::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 180px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: rgba(18, 26, 36, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown[open] .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover {
  background: rgba(59, 130, 246, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #f97316);
  color: #0b0f14;
}

.btn-secondary {
  background: var(--panel-2);
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

main {
  padding: 40px 56px 120px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(520px, 1.12fr);
  gap: 48px;
  align-items: start;
  max-width: 1360px;
  margin: 0 auto 88px;
}

.hero-single {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.hero-pro-bg,
.hero-lite-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 18px;
  padding: 6px 10px 10px;
}

.hero-pro-bg::before,
.hero-lite-bg::before {
  content: "";
  position: absolute;
  inset: -8% -6% -18% -6%;
  opacity: 0.56;
  z-index: -1;
  filter: saturate(1.05) contrast(1.03);
  pointer-events: none;
}

.hero-pro-bg::before {
  background:
    linear-gradient(92deg, rgba(8, 13, 22, 0.96) 0%, rgba(8, 13, 22, 0.86) 42%, rgba(8, 13, 22, 0.62) 72%, rgba(8, 13, 22, 0.5) 100%),
    url("assets/backgroundpro.png") center right / cover no-repeat;
}

.hero-lite-bg::before {
  background:
    linear-gradient(92deg, rgba(8, 13, 22, 0.96) 0%, rgba(8, 13, 22, 0.86) 42%, rgba(8, 13, 22, 0.62) 72%, rgba(8, 13, 22, 0.5) 100%),
    url("assets/backgroundlite.png") center right / cover no-repeat;
}

.hero-pro-bg .hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lite-bg .hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  margin: 10px 0 20px;
}

.hero-copy .lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 860px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
}

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

.hero-meta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.hero-panel {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 5% 4% -8% 12%;
  border-radius: 36px;
  background:
    radial-gradient(360px 220px at 74% 16%, rgba(59, 130, 246, 0.16), transparent 72%),
    radial-gradient(320px 200px at 20% 82%, rgba(245, 158, 11, 0.12), transparent 74%);
  filter: blur(34px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.app-window {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 960px;
  background:
    linear-gradient(180deg, rgba(19, 29, 43, 0.98), rgba(12, 18, 28, 0.99));
  border: 1px solid rgba(59, 79, 104, 0.92);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 48px rgba(37, 99, 235, 0.08);
}

.app-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(460px 220px at 78% 0%, rgba(59, 130, 246, 0.09), transparent 72%),
    radial-gradient(380px 180px at 12% 100%, rgba(245, 158, 11, 0.08), transparent 74%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.app-window::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 0;
}

.app-bar {
  position: relative;
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(18, 25, 36, 0.98), rgba(13, 19, 28, 0.98));
  border-bottom: 1px solid rgba(54, 72, 96, 0.48);
  z-index: 3;
}

.app-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.18), transparent);
}

.app-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.app-bar span:nth-child(1) {
  background: #ff5f57;
}

.app-bar span:nth-child(2) {
  background: #febc2e;
}

.app-bar span:nth-child(3) {
  background: #28c840;
}

.app-body {
  position: relative;
  padding: 24px;
  isolation: isolate;
  z-index: 1;
}

.app-body::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  background:
    radial-gradient(240px 160px at 48% 42%, rgba(148, 197, 255, 0.18), transparent 68%),
    radial-gradient(320px 200px at 50% 50%, rgba(59, 130, 246, 0.12), transparent 74%),
    linear-gradient(180deg, rgba(22, 34, 50, 0.12), rgba(15, 23, 42, 0.02));
  opacity: 0;
  transform: scale(1.04);
  filter: blur(16px);
  pointer-events: none;
  z-index: 3;
  transition: opacity 1.34s ease, transform 1.34s ease, filter 1.34s ease;
}

.app-body.is-reset-flash::after {
  opacity: 0.26;
  transform: scale(1.01);
  filter: blur(18px);
}

.app-stage-backdrop {
  position: absolute;
  inset: 20px 18px 18px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.app-stage-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(300px 180px at 18% 24%, rgba(245, 158, 11, 0.07), transparent 74%),
    radial-gradient(340px 220px at 82% 22%, rgba(59, 130, 246, 0.1), transparent 76%),
    linear-gradient(180deg, rgba(10, 15, 22, 0.2), rgba(10, 15, 22, 0.02)),
    linear-gradient(rgba(53, 72, 94, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 72, 94, 0.05) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    34px 34px,
    34px 34px;
  opacity: 0.86;
}

.app-stage-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 26, 0.08), rgba(11, 17, 26, 0.4)),
    radial-gradient(480px 220px at 50% 120%, rgba(15, 23, 42, 0.54), transparent 70%);
  pointer-events: none;
}

.app-stage-orbit,
.app-stage-glow {
  position: absolute;
  border-radius: 50%;
}

.app-stage-orbit {
  border: 1px solid rgba(61, 84, 112, 0.24);
  animation: appStageOrbitDrift 24s linear infinite;
}

.app-stage-orbit-a {
  width: 420px;
  height: 420px;
  top: -76px;
  right: -84px;
}

.app-stage-orbit-b {
  width: 540px;
  height: 540px;
  bottom: -220px;
  left: 120px;
  animation-duration: 34s;
  animation-direction: reverse;
}

.app-stage-glow-a {
  width: 260px;
  height: 260px;
  top: 32px;
  right: 66px;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.13), transparent 72%);
  animation: appStageGlowFloat 14s ease-in-out infinite;
}

.app-stage-glow-b {
  width: 260px;
  height: 260px;
  bottom: 28px;
  left: 150px;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.12), transparent 74%);
  animation: appStageGlowFloat 16s ease-in-out infinite reverse;
}

.app-stage-card {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(43, 60, 80, 0.58);
  background:
    linear-gradient(180deg, rgba(14, 21, 31, 0.5), rgba(11, 17, 26, 0.22));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  animation: appStageCardFloat 18s ease-in-out infinite;
}

.app-stage-card-top {
  top: 18px;
  right: 38px;
  width: 180px;
  height: 80px;
}

.app-stage-card-bottom {
  bottom: 12px;
  left: 22px;
  width: 210px;
  height: 92px;
  animation-delay: -9s;
}

.app-stage-card-line {
  position: absolute;
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(145, 166, 193, 0.16);
}

.app-stage-card-line-lg {
  top: 20px;
  left: 18px;
  width: 118px;
}

.app-stage-card-line-md {
  top: 22px;
  left: 18px;
  width: 132px;
}

.app-stage-card-line-sm {
  top: 42px;
  left: 18px;
  width: 82px;
}

.app-stage-card-line-xs {
  top: 46px;
  left: 18px;
  width: 64px;
}

@keyframes appStageOrbitDrift {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.015);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes appStageGlowFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translate3d(10px, -8px, 0) scale(1.04);
    opacity: 1;
  }
}

@keyframes appStageCardFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes heroCardSheen {
  0% {
    opacity: 0.42;
    transform: translateX(-10px);
    filter: brightness(1);
  }
  45% {
    opacity: 0.86;
    transform: translateX(0);
    filter: brightness(1.08);
  }
  100% {
    opacity: 0.42;
    transform: translateX(10px);
    filter: brightness(1);
  }
}

.app-window-title {
  margin: 0 0 16px;
  color: #e8edf2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.app-hero-shell {
  position: relative;
  z-index: 2;
}

.app-hero-stage {
  min-height: 386px;
  transition: opacity 1.08s ease, filter 1.08s ease, transform 1.08s ease;
  position: relative;
  perspective: 1200px;
}

.app-hero-card {
  position: relative;
  margin: 0;
  min-height: 340px;
  border-radius: 16px;
  border: 1px solid rgba(50, 71, 96, 0.96);
  background:
    radial-gradient(220px 140px at 74% 18%, rgba(14, 165, 233, 0.11), transparent 70%),
    radial-gradient(240px 160px at 20% 100%, rgba(245, 158, 11, 0.08), transparent 74%),
    linear-gradient(180deg, #0d1420 0%, #0b111a 100%);
  overflow: hidden;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateZ(0);
}

.app-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 78%, rgba(255, 255, 255, 0.03)),
    linear-gradient(rgba(77, 97, 123, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 97, 123, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    28px 28px,
    28px 28px;
  opacity: 0.7;
  pointer-events: none;
}

.app-hero-card.is-transitioning::before {
  animation: heroCardSheen 0.98s ease;
}

.app-body.is-story-mode .app-hero-stage {
  opacity: 0;
  filter: blur(7px) saturate(0.9);
  transform: scale(0.988);
}

.app-body.is-reset-flash .app-hero-stage {
  opacity: 0.28;
  filter: blur(4px) saturate(0.96) brightness(1.02);
}

.app-body.is-reset-flash .hero-overlay-hud::before {
  opacity: 0.06;
  transform: scale(1.015);
  filter: blur(12px);
}

.app-body.is-reset-flash .hero-story {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-50%) scale(0.996);
}

.app-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%, rgba(9, 14, 22, 0.04) 48%, rgba(9, 14, 22, 0.22)),
    radial-gradient(220px 120px at 50% 100%, rgba(8, 13, 22, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-intro-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(280px 180px at 30% 28%, rgba(59, 130, 246, 0.16), transparent 72%),
    radial-gradient(260px 180px at 74% 66%, rgba(245, 158, 11, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(9, 14, 22, 0.96), rgba(9, 14, 22, 0.92));
  opacity: 1;
  transform: scale(1);
  transition: opacity 980ms ease, transform 980ms ease, filter 980ms ease;
}

.hero-intro-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.3px),
    radial-gradient(circle at 48% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.3px),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.3px),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1.3px),
    linear-gradient(rgba(70, 93, 123, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 93, 123, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    auto,
    34px 34px,
    34px 34px;
  opacity: 0.88;
}

.hero-intro-grid,
.hero-intro-line,
.hero-intro-node,
.hero-intro-pulse,
.hero-intro-focus-ring {
  position: absolute;
}

.hero-intro-grid {
  inset: 0;
  opacity: 0.2;
}

.hero-intro-line {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(71, 100, 152, 0.18), rgba(90, 130, 220, 0.74));
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.12);
}

.hero-intro-line-1 { top: 98px; left: 102px; width: 128px; transform: rotate(14deg); }
.hero-intro-line-2 { top: 144px; left: 226px; width: 112px; transform: rotate(-18deg); }
.hero-intro-line-3 { top: 182px; left: 330px; width: 142px; transform: rotate(12deg); }
.hero-intro-line-4 { top: 110px; left: 334px; width: 132px; transform: rotate(28deg); }
.hero-intro-line-5 { top: 205px; left: 206px; width: 154px; transform: rotate(26deg); }

.hero-intro-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(111, 140, 186, 0.72);
  background: rgba(18, 27, 41, 0.98);
  box-shadow: 0 0 0 8px rgba(14, 22, 34, 0.22);
}

.hero-intro-node-1 { top: 88px; left: 86px; }
.hero-intro-node-2 { top: 124px; left: 222px; border-color: rgba(245, 158, 11, 0.4); background: rgba(51, 40, 19, 0.98); }
.hero-intro-node-3 { top: 172px; left: 326px; width: 22px; height: 22px; border-color: rgba(245, 158, 11, 0.62); background: rgba(66, 47, 16, 0.98); box-shadow: 0 0 0 10px rgba(245, 158, 11, 0.08); }
.hero-intro-node-4 { top: 102px; left: 458px; border-color: rgba(20, 184, 166, 0.38); background: rgba(16, 41, 40, 0.98); }
.hero-intro-node-5 { top: 192px; left: 468px; border-color: rgba(59, 130, 246, 0.44); }
.hero-intro-node-6 { top: 232px; left: 188px; }

.hero-intro-pulse {
  top: 162px;
  left: 316px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.46);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.14);
  animation: heroIntroPulse 2.5s ease-out infinite;
}

.hero-intro-focus-ring {
  top: 140px;
  left: 286px;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  border: 1px solid rgba(93, 132, 198, 0.22);
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08), transparent 70%);
  animation: heroIntroZoom 2.9s ease-in-out forwards;
}

.hero-intro-scene.is-exit {
  opacity: 0;
  transform: scale(1.08);
  filter: blur(9px);
}

.hero-intro-scene.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.app-body.is-intro-mode .hero-reel-video {
  opacity: 0 !important;
  transform: scale(1.03);
  filter: blur(10px) saturate(0.9) brightness(0.72);
}

.app-body.is-intro-mode .hero-stage-caption {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
}

@keyframes heroIntroPulse {
  0% {
    transform: scale(0.74);
    opacity: 0.18;
  }
  40% {
    transform: scale(1);
    opacity: 0.54;
  }
  100% {
    transform: scale(1.36);
    opacity: 0;
  }
}

@keyframes heroIntroZoom {
  0% {
    transform: scale(1);
    opacity: 0.32;
  }
  60% {
    transform: scale(1.12);
    opacity: 0.44;
  }
  100% {
    transform: scale(1.34);
    opacity: 0.18;
  }
}

.hero-stage-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: min(72%, 620px);
  margin: 16px 0 0;
  padding: 16px 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(62, 86, 118, 0.82);
  background:
    linear-gradient(180deg, rgba(12, 20, 30, 0.84), rgba(9, 14, 22, 0.92));
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 720ms ease, transform 720ms ease, filter 720ms ease;
  backdrop-filter: blur(14px);
}

.hero-stage-caption.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.app-body.is-story-mode .hero-stage-caption {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
}

.hero-stage-title {
  color: #eef3f8;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
  font-weight: 700;
}

.hero-stage-subtitle {
  color: rgba(210, 220, 232, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.hero-reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: scale(0.992);
  filter: saturate(1.015) contrast(1.025);
  transition: opacity 1.14s ease, transform 1.14s ease, filter 1.14s ease;
  background: #0b111a;
}

.hero-reel-video.is-active {
  opacity: 1;
  transform: scale(0.985);
  filter: saturate(1.05) contrast(1.04);
}

.app-hero-card.is-transitioning .hero-reel-video.is-active {
  filter: saturate(1.06) contrast(1.04) brightness(1.015);
}

.hero-overlay-hud {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(74%, 540px);
  min-height: 260px;
  z-index: 4;
  pointer-events: none;
}

.hero-overlay-hud::before {
  content: "";
  position: absolute;
  inset: -18px -18px -18px -18px;
  border-radius: 22px;
  background:
    radial-gradient(260px 140px at 24% 28%, rgba(59, 130, 246, 0.16), transparent 72%),
    radial-gradient(220px 120px at 78% 72%, rgba(245, 158, 11, 0.14), transparent 74%),
    linear-gradient(180deg, rgba(11, 17, 26, 0.94), rgba(11, 17, 26, 0.9)),
    linear-gradient(rgba(54, 72, 94, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 72, 94, 0.08) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    34px 34px,
    34px 34px;
  border: 1px solid rgba(44, 60, 80, 0.86);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.92s ease, transform 0.92s ease, filter 0.92s ease;
}

.app-body.is-story-mode .hero-overlay-hud::before {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1.04);
}

.hero-story {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateY(10px);
  display: grid;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.84s ease, transform 0.84s ease, filter 0.84s ease;
  filter: blur(3px);
}

.hero-story > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.56s ease, transform 0.56s ease, filter 0.56s ease;
  filter: blur(2px);
}

.hero-story.is-visible {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
  filter: blur(0);
}

.hero-story.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-story.is-visible > *:nth-child(1) {
  transition-delay: 0.12s;
}

.hero-story.is-visible > *:nth-child(2) {
  transition-delay: 0.28s;
}

.hero-story.is-visible > *:nth-child(3) {
  transition-delay: 0.44s;
}

.hero-story.is-visible > *:nth-child(4) {
  transition-delay: 0.6s;
}

.hero-overlay-chip {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.28);
  background: rgba(14, 22, 33, 0.9);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-overlay-warning {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 14px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  background: rgba(22, 16, 9, 0.92);
  color: #fde68a;
  font-size: 13px;
  font-weight: 700;
}

.hero-overlay-triangle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 20px;
  color: #fff7ed;
  font-size: 12px;
  font-weight: 800;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(180deg, #f59e0b, #f97316);
}

.hero-overlay-analysis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(45, 61, 79, 0.88);
  background: rgba(14, 21, 31, 0.9);
}

.hero-overlay-graph {
  position: relative;
  min-height: 58px;
}

.hero-overlay-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  max-width: 48%;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(74, 95, 120, 0.86);
  background: rgba(19, 29, 43, 0.96);
  color: #ecf4ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-overlay-node-left {
  left: 0;
  top: 4px;
  border-color: rgba(59, 130, 246, 0.3);
}

.hero-overlay-node-right {
  right: 0;
  bottom: 2px;
  border-color: rgba(245, 158, 11, 0.3);
}

.hero-overlay-link {
  position: absolute;
  left: 24%;
  right: 24%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background:
    linear-gradient(90deg, rgba(59, 130, 246, 0.84), rgba(245, 158, 11, 0.82));
}

.hero-overlay-link::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(245, 158, 11, 0.92);
  border-right: 2px solid rgba(245, 158, 11, 0.92);
  transform: translateY(-50%) rotate(45deg);
}

.hero-overlay-pie {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(14, 21, 31, 1) 0 38%, transparent 39%),
    conic-gradient(#ef4444 0 42%, #f59e0b 42% 68%, #3b82f6 68% 100%);
  box-shadow: inset 0 0 0 1px rgba(104, 127, 154, 0.16);
}

.hero-overlay-pie-entity {
  background:
    radial-gradient(circle at center, rgba(14, 21, 31, 1) 0 38%, transparent 39%),
    conic-gradient(#14b8a6 0 48%, #f59e0b 48% 78%, #3b82f6 78% 100%);
}

.hero-overlay-result {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.22);
  background:
    linear-gradient(180deg, rgba(46, 18, 23, 0.92), rgba(24, 12, 16, 0.94));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.hero-overlay-result strong {
  display: block;
  color: #fff1f2;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-overlay-result span {
  display: block;
  color: #fecdd3;
  font-size: 12px;
  line-height: 1.45;
}

.hero-overlay-result-caution {
  border-color: rgba(20, 184, 166, 0.22);
  background:
    linear-gradient(180deg, rgba(14, 36, 39, 0.92), rgba(10, 24, 26, 0.94));
}

.hero-overlay-result-caution strong {
  color: #d1fae5;
}

.hero-overlay-result-caution span {
  color: #ccfbf1;
}

.hero-story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-story-metric {
  min-height: 62px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(45, 61, 79, 0.88);
  background: rgba(14, 21, 31, 0.9);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.hero-story-metric strong {
  display: block;
  color: #eff6ff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-story-metric span {
  display: block;
  color: #9fb0c2;
  font-size: 11px;
  line-height: 1.35;
}

.hero-story-entity-analysis {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(45, 61, 79, 0.88);
  background: rgba(14, 21, 31, 0.9);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.hero-story-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-story-box {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  background: rgba(12, 30, 31, 0.9);
  color: #ccfbf1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-story-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(12, 20, 31, 0.9);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.hero-story-brand-mark img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.hero-story-brand-mark strong {
  display: block;
  color: #eef5fb;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
}

.hero-story-brand-mark span {
  display: block;
  color: #9fb0c2;
  font-size: 12px;
  line-height: 1.3;
}

.hero-story-boxes-brand .hero-story-box {
  border-color: rgba(59, 130, 246, 0.18);
  background: rgba(16, 28, 44, 0.9);
  color: #dbeafe;
}

.hero-overlay-result-brand {
  border-color: rgba(59, 130, 246, 0.22);
  background:
    linear-gradient(180deg, rgba(18, 28, 44, 0.92), rgba(12, 18, 30, 0.94));
}

.hero-overlay-result-brand strong {
  color: #eff6ff;
}

.hero-overlay-result-brand span {
  color: #dbeafe;
}

.hero-story-monitor-shell {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.hero-monitor-frame {
  position: relative;
  width: 210px;
}

.hero-monitor-screen {
  min-height: 176px;
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(60, 81, 105, 0.82);
  background:
    radial-gradient(150px 110px at 82% 18%, rgba(59, 130, 246, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(13, 20, 30, 0.98), rgba(10, 16, 24, 0.98));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 10px;
  align-content: start;
}

.hero-monitor-stand {
  position: relative;
  width: 84px;
  height: 34px;
  margin: 0 auto;
}

.hero-monitor-stand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 12px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, rgba(88, 111, 139, 0.9), rgba(55, 71, 90, 0.94));
}

.hero-monitor-stand span {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(69, 89, 114, 0.95), rgba(38, 49, 63, 0.96));
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.hero-monitor-brand {
  color: #dbeafe;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-monitor-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(18, 31, 52, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.24);
  color: #dbeafe;
  font-size: 11px;
  font-weight: 700;
}

.hero-monitor-score {
  padding: 12px 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.22);
  background:
    linear-gradient(180deg, rgba(46, 18, 23, 0.92), rgba(24, 12, 16, 0.94));
}

.hero-monitor-score strong {
  display: block;
  color: #fff1f2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-monitor-score span {
  display: block;
  color: #fecdd3;
  font-size: 11px;
  line-height: 1.35;
}

.hero-monitor-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-monitor-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(16, 28, 44, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: #dbeafe;
  font-size: 10px;
  font-weight: 700;
}

.hero-monitor-cta {
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(18, 35, 37, 0.9);
  border: 1px solid rgba(20, 184, 166, 0.22);
  color: #ccfbf1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-monitor-copy {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(45, 61, 79, 0.88);
  background: rgba(14, 21, 31, 0.9);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.hero-monitor-copy strong {
  color: #eef5fb;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-monitor-copy span {
  color: #b8c7d6;
  font-size: 13px;
  line-height: 1.6;
}

.hero-overlay-result-monitor {
  border-color: rgba(20, 184, 166, 0.24);
  background:
    linear-gradient(180deg, rgba(15, 34, 36, 0.94), rgba(11, 22, 24, 0.96));
}

.hero-overlay-result-monitor strong {
  color: #d1fae5;
}

.hero-overlay-result-monitor span {
  color: #ccfbf1;
}

.hero-network-stage {
  position: relative;
  min-height: 240px;
  border-radius: 22px;
  border: 1px solid rgba(42, 57, 76, 0.86);
  background:
    radial-gradient(240px 160px at 22% 30%, rgba(59, 130, 246, 0.12), transparent 72%),
    radial-gradient(220px 140px at 74% 64%, rgba(245, 158, 11, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(11, 17, 26, 0.96), rgba(11, 17, 26, 0.88));
  overflow: hidden;
}

.hero-network-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.2px),
    radial-gradient(circle at 34% 48%, rgba(255, 255, 255, 0.09) 0 1px, transparent 1.2px),
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.2px),
    radial-gradient(circle at 82% 62%, rgba(255, 255, 255, 0.09) 0 1px, transparent 1.2px),
    radial-gradient(circle at 58% 82%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.2px);
  opacity: 0.7;
}

.hero-network-node,
.hero-network-line,
.hero-network-flow,
.hero-network-star,
.hero-network-brand-reveal {
  position: absolute;
}

.hero-network-star {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(218, 232, 247, 0.5);
}

.hero-network-star-1 { top: 28px; left: 38px; }
.hero-network-star-2 { top: 46px; right: 56px; }
.hero-network-star-3 { bottom: 44px; left: 62px; }
.hero-network-star-4 { bottom: 62px; right: 78px; }
.hero-network-star-5 { top: 108px; left: 50%; }

.hero-network-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(98, 118, 145, 0.78);
  background: rgba(20, 28, 41, 0.96);
  box-shadow: 0 0 0 6px rgba(17, 24, 39, 0.18);
}

.hero-network-node-1 { top: 42px; left: 54px; background: rgba(19, 29, 43, 0.98); }
.hero-network-node-2 { top: 88px; left: 180px; background: rgba(65, 51, 24, 0.98); border-color: rgba(245, 158, 11, 0.42); }
.hero-network-node-3 { top: 124px; left: 320px; background: rgba(49, 21, 24, 0.98); border-color: rgba(239, 68, 68, 0.42); }
.hero-network-node-4 { top: 70px; right: 102px; background: rgba(18, 35, 37, 0.98); border-color: rgba(20, 184, 166, 0.36); }
.hero-network-node-5 { bottom: 42px; right: 82px; background: rgba(19, 29, 43, 0.98); border-color: rgba(59, 130, 246, 0.36); }

.hero-network-line {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.88));
  opacity: 0.9;
}

.hero-network-line-1 { top: 51px; left: 70px; width: 128px; transform: rotate(16deg); }
.hero-network-line-2 { top: 97px; left: 196px; width: 144px; transform: rotate(14deg); }
.hero-network-line-3 { top: 132px; left: 334px; width: 122px; transform: rotate(-22deg); }
.hero-network-line-4 { top: 90px; left: 332px; width: 112px; transform: rotate(34deg); }

.hero-network-flow {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(251, 191, 36, 1) 0 35%, rgba(245, 158, 11, 0.35) 36% 100%);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.36);
}

.hero-network-flow-1 { top: 49px; left: 124px; }
.hero-network-flow-2 { top: 103px; left: 250px; }
.hero-network-flow-3 { top: 124px; left: 402px; }

.hero-network-brand-reveal {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(18px);
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 200px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background:
    linear-gradient(180deg, rgba(16, 28, 44, 0.95), rgba(12, 18, 30, 0.96));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  backdrop-filter: blur(14px) saturate(1.04);
}

.hero-network-brand-reveal img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.hero-network-brand-reveal strong {
  color: #eef5fb;
  font-size: 18px;
  font-weight: 800;
}

.hero-network-brand-reveal span {
  color: #c7d7e9;
  font-size: 12px;
  line-height: 1.45;
}

.hero-overlay-result-network {
  border-color: rgba(59, 130, 246, 0.22);
  background:
    linear-gradient(180deg, rgba(18, 28, 44, 0.92), rgba(12, 18, 30, 0.94));
}

.hero-overlay-result-network strong {
  color: #eff6ff;
}

.hero-overlay-result-network span {
  color: #dbeafe;
}

.hero-story-network.is-visible .hero-network-node {
  animation: heroNetworkNodePulse 2.4s ease-in-out infinite;
}

.hero-story-network.is-visible .hero-network-flow-1 {
  animation: heroNetworkFlow1 2.8s linear infinite;
}

.hero-story-network.is-visible .hero-network-flow-2 {
  animation: heroNetworkFlow2 2.8s linear infinite 0.4s;
}

.hero-story-network.is-visible .hero-network-flow-3 {
  animation: heroNetworkFlow3 2.8s linear infinite 0.8s;
}

.hero-story-network.is-visible .hero-network-stage > :not(.hero-network-brand-reveal) {
  animation: heroNetworkSceneFade 7.2s ease forwards;
}

.hero-story-network.is-visible .hero-network-brand-reveal {
  animation: heroNetworkBrandReveal 7.2s ease forwards;
}

@keyframes heroNetworkNodePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(17, 24, 39, 0.18);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 9px rgba(17, 24, 39, 0.12);
  }
}

@keyframes heroNetworkFlow1 {
  0% { transform: translateX(0) translateY(0); opacity: 0; }
  10% { opacity: 1; }
  60% { transform: translateX(118px) translateY(34px); opacity: 1; }
  100% { transform: translateX(128px) translateY(36px); opacity: 0; }
}

@keyframes heroNetworkFlow2 {
  0% { transform: translateX(0) translateY(0); opacity: 0; }
  10% { opacity: 1; }
  60% { transform: translateX(132px) translateY(30px); opacity: 1; }
  100% { transform: translateX(144px) translateY(32px); opacity: 0; }
}

@keyframes heroNetworkFlow3 {
  0% { transform: translateX(0) translateY(0); opacity: 0; }
  10% { opacity: 1; }
  60% { transform: translateX(96px) translateY(-48px); opacity: 1; }
  100% { transform: translateX(104px) translateY(-52px); opacity: 0; }
}

@keyframes heroNetworkSceneFade {
  0%, 52% {
    opacity: 1;
    filter: blur(0);
  }
  70%, 100% {
    opacity: 0.08;
    filter: blur(4px);
  }
}

@keyframes heroNetworkBrandReveal {
  0%, 46% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(18px) scale(0.96);
  }
  62%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
}

.section {
  margin-bottom: 80px;
}

.mission-section {
  margin-bottom: 68px;
}

.mission-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #243245;
  background:
    linear-gradient(112deg, rgba(14, 22, 33, 0.98) 0%, rgba(14, 22, 33, 0.94) 44%, rgba(20, 31, 45, 0.92) 100%);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow);
  animation: missionRise 0.7s ease both;
}

.mission-shell::before {
  content: "";
  position: absolute;
  inset: -20% 45% -20% -12%;
  background: radial-gradient(420px 260px at 20% 50%, rgba(245, 158, 11, 0.16), transparent);
  pointer-events: none;
}

.mission-shell h2 {
  margin-top: 10px;
  margin-bottom: 14px;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 20px;
}

.mission-copy {
  min-width: 0;
}

.mission-lead {
  max-width: 940px;
  color: #c2cfdb;
  font-size: 20px;
  line-height: 1.55;
  margin: 0 0 20px;
}

.mission-sublead {
  max-width: 920px;
  margin: 0 0 16px;
  color: #b6c5d3;
  font-size: 17px;
  line-height: 1.65;
}

.mission-stage {
  position: relative;
  min-height: 410px;
  padding: 14px 8px 0 22px;
}

.mission-stage::before {
  content: "";
  position: absolute;
  inset: 6% 2% 12% 10%;
  border-radius: 26px;
  background:
    radial-gradient(280px 180px at 80% 20%, rgba(59, 130, 246, 0.14), transparent 70%),
    radial-gradient(220px 160px at 18% 82%, rgba(245, 158, 11, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(13, 20, 31, 0.84), rgba(10, 16, 24, 0.46));
  border: 1px solid rgba(41, 56, 74, 0.8);
  pointer-events: none;
}

.mission-scene {
  position: absolute;
  inset: 12px 0 0 18px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(220px 150px at 14% 18%, rgba(245, 158, 11, 0.08), transparent 72%),
    radial-gradient(240px 180px at 84% 16%, rgba(16, 185, 129, 0.08), transparent 74%),
    linear-gradient(180deg, rgba(9, 15, 23, 0.32), rgba(7, 12, 19, 0.06));
}

.mission-scene::before,
.mission-scene::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.mission-scene::before {
  width: 380px;
  height: 380px;
  left: 20%;
  top: 8%;
  border: 1px solid rgba(88, 116, 148, 0.14);
  box-shadow: inset 0 0 50px rgba(8, 14, 22, 0.12);
}

.mission-scene::after {
  width: 220px;
  height: 220px;
  right: 5%;
  top: 6%;
  border: 1px dashed rgba(84, 111, 143, 0.12);
}

.mission-network {
  position: absolute;
  inset: 12% 6% 8% 10%;
  width: 84%;
  height: 80%;
  opacity: 0.9;
  filter: drop-shadow(0 0 28px rgba(20, 31, 49, 0.42));
}

.mission-network path {
  stroke: rgba(105, 138, 177, 0.34);
  stroke-width: 2.1;
}

.mission-network path:nth-of-type(2),
.mission-network path:nth-of-type(3) {
  stroke: rgba(84, 146, 236, 0.4);
}

.mission-network path:nth-of-type(4),
.mission-network path:nth-of-type(5) {
  stroke: rgba(245, 158, 11, 0.34);
}

.mission-network path:nth-of-type(6),
.mission-network path:nth-of-type(7) {
  stroke: rgba(16, 185, 129, 0.28);
}

.mission-network circle {
  fill: #0f1824;
  stroke: rgba(168, 197, 230, 0.85);
  stroke-width: 2;
}

.mission-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.mission-orb-main {
  width: 320px;
  height: 320px;
  left: 22%;
  top: 16%;
  background:
    radial-gradient(circle at 35% 35%, rgba(59, 130, 246, 0.32), transparent 38%),
    radial-gradient(circle at 65% 62%, rgba(245, 158, 11, 0.22), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(20, 32, 48, 0.9), rgba(9, 14, 22, 0.08) 68%, transparent 74%);
  box-shadow:
    inset 0 0 0 1px rgba(76, 98, 125, 0.26),
    0 30px 70px rgba(0, 0, 0, 0.28);
}

.mission-orb-side {
  width: 180px;
  height: 180px;
  right: 9%;
  top: 8%;
  background:
    radial-gradient(circle at 45% 45%, rgba(16, 185, 129, 0.24), transparent 40%),
    radial-gradient(circle at 55% 55%, rgba(14, 23, 35, 0.92), transparent 72%);
  opacity: 0.78;
}

.mission-ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.mission-ring-main {
  width: 372px;
  height: 372px;
  left: 16%;
  top: 10%;
  border: 1px solid rgba(120, 147, 179, 0.18);
  box-shadow: inset 0 0 0 12px rgba(9, 14, 21, 0.05);
}

.mission-ring-side {
  width: 152px;
  height: 152px;
  right: 12%;
  top: 12%;
  border: 1px solid rgba(70, 102, 136, 0.16);
}

.mission-token {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(69, 92, 120, 0.9);
  background: rgba(11, 18, 27, 0.84);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.mission-token-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f8fafc;
}

.mission-token-name {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.mission-token-btc {
  top: 12%;
  left: 4%;
}

.mission-token-btc .mission-token-mark {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(251, 191, 36, 0.72));
}

.mission-token-usdt {
  top: 52%;
  right: 5%;
}

.mission-token-usdt .mission-token-mark {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(13, 148, 136, 0.74));
}

.mission-token-eth {
  bottom: 16%;
  left: 14%;
}

.mission-token-eth .mission-token-mark {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.92), rgba(79, 70, 229, 0.72));
}

.mission-token-mark-eth {
  font-size: 10px;
  letter-spacing: 0.06em;
}

.mission-signal {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(60, 78, 102, 0.92);
  background: rgba(14, 21, 31, 0.9);
  color: #d7e2ec;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.mission-signal-top {
  top: 19%;
  right: 5%;
}

.mission-signal-mid {
  top: 39%;
  left: 28%;
}

.mission-signal-right {
  top: 30%;
  right: 28%;
}

.mission-signal-low {
  bottom: 24%;
  right: 24%;
}

.mission-callout {
  position: absolute;
  right: 18px;
  bottom: 12px;
  width: min(60%, 270px);
  padding: 16px 16px 15px;
  border-radius: 16px;
  border: 1px solid rgba(53, 68, 86, 0.92);
  background:
    radial-gradient(140px 90px at 100% 0%, rgba(245, 158, 11, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(15, 22, 32, 0.96), rgba(12, 18, 27, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.mission-callout-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
}

.mission-callout p {
  margin: 0;
  color: #d0dae4;
  line-height: 1.55;
  font-size: 14px;
}

.mission-note {
  width: 100%;
  max-width: none;
  margin: 22px 0 0;
  padding: 0;
  color: #c8d4df;
  line-height: 1.72;
  font-size: 13px;
  text-align: left;
}

.mission-emphasis {
  color: var(--accent);
  font-weight: 700;
}

@keyframes missionRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section h2 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 20px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 680px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(42, 57, 76, 0.92);
  background: rgba(13, 20, 30, 0.72);
  color: #cbd7e3;
  font-size: 13px;
  line-height: 1.45;
}

.demo-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.demo-stack {
  display: grid;
  gap: 28px;
}

.demo-note {
  margin-bottom: 24px;
}

.demo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.demo-full video {
  max-height: 78vh;
  object-fit: contain;
}

.demo-card video {
  width: 100%;
  border-radius: 12px;
  background: #0b111a;
}

.demo-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.demo-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

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

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

.video-stack .media-card {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.video-stack .media-card video {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.media-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-proof-grid {
  align-items: start;
}

.video-proof-grid .media-card video {
  max-height: 52vh;
}

.video-proof-grid .media-wide video {
  max-height: 60vh;
}

.lite-proof-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px;
}

.lite-proof-grid .proof-hero {
  grid-column: 1 / -1;
}

.lite-proof-grid .proof-small {
  grid-column: span 4;
}

.lite-proof-grid .proof-medium {
  grid-column: span 6;
}

.lite-proof-grid .proof-hero video {
  max-height: 62vh;
}

.lite-proof-grid .proof-small video {
  max-height: 34vh;
}

.lite-proof-grid .proof-medium video {
  max-height: 42vh;
}

.pro-proof-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.pro-proof-grid .proof-lead {
  grid-column: 1 / -1;
}

.pro-proof-grid .proof-hero {
  grid-column: 1 / -1;
}

.pro-proof-grid .proof-wide {
  grid-column: 1 / -1;
}

.pro-proof-grid .proof-medium {
  grid-column: span 4;
}

.pro-proof-grid .proof-small {
  grid-column: span 2;
}

.pro-proof-grid .proof-lead video {
  max-height: 66vh;
}

.pro-proof-grid .proof-hero video {
  max-height: 74vh;
}

.pro-proof-grid .proof-wide video {
  max-height: 58vh;
}

.pro-proof-grid .proof-medium video {
  max-height: 50vh;
}

.pro-proof-grid .proof-small video {
  max-height: 32vh;
}

.media-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.media-card video,
.media-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
  background: #0b111a;
}

.media-card video {
  max-height: 70vh;
  object-fit: contain;
}

.media-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.media-wide {
  grid-column: span 2;
}

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

.pro-visual-grid .visual-feature {
  grid-column: 1 / -1;
}

.pro-visual-grid .visual-feature img {
  max-height: 72vh;
  object-fit: contain;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.capability-grid .card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 18px 18px 17px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(59, 130, 246, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(23, 33, 47, 0.98) 0%, rgba(18, 26, 36, 0.98) 100%);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.capability-grid .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.85), rgba(59, 130, 246, 0.35), transparent 76%);
  opacity: 0.9;
}

.capability-grid .card::after {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(57, 74, 97, 0.95);
  background: rgba(11, 15, 20, 0.42);
  color: rgba(200, 214, 228, 0.7);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 24px;
  text-align: center;
}

.capability-grid .card:hover {
  transform: translateY(-4px);
  border-color: #35506e;
  background:
    radial-gradient(220px 140px at 100% 0%, rgba(59, 130, 246, 0.16), transparent 68%),
    linear-gradient(180deg, rgba(26, 38, 53, 0.99) 0%, rgba(18, 27, 38, 0.99) 100%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.capability-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(76, 98, 126, 0.9);
  background: linear-gradient(160deg, rgba(14, 23, 34, 0.96), rgba(10, 18, 28, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.capability-icon svg {
  width: 18px;
  height: 18px;
  stroke: #e5edf6;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-grid .card:hover .capability-icon {
  transform: translateY(-1px);
  border-color: rgba(105, 136, 172, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.capability-grid .card h3 {
  position: relative;
  z-index: 1;
  margin: 0 56px 10px 0;
  font-size: 18px;
  line-height: 1.2;
  transition: color 0.24s ease;
}

.capability-grid .card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #afbcc9;
  transition: color 0.24s ease;
}

.capability-grid .card:hover h3 {
  color: #f2f6fb;
}

.capability-grid .card:hover p {
  color: #c5d2dd;
}

.capability-grid-lite .card:nth-child(1)::after,
.capability-grid-pro .card:nth-child(1)::after {
  content: "01";
}

.capability-grid-lite .card:nth-child(2)::after,
.capability-grid-pro .card:nth-child(2)::after {
  content: "02";
}

.capability-grid-lite .card:nth-child(3)::after,
.capability-grid-pro .card:nth-child(3)::after {
  content: "03";
}

.capability-grid-lite .card:nth-child(4)::after,
.capability-grid-pro .card:nth-child(4)::after {
  content: "04";
}

.capability-grid-lite .card:nth-child(5)::after,
.capability-grid-pro .card:nth-child(5)::after {
  content: "05";
}

.capability-grid-lite .card:nth-child(6)::after,
.capability-grid-pro .card:nth-child(6)::after {
  content: "06";
}

.capability-grid-lite .card:nth-child(3n + 1)::before {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.84), rgba(99, 102, 241, 0.34), transparent 78%);
}

.capability-grid-lite .card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.84), rgba(78, 201, 176, 0.3), transparent 78%);
}

.capability-grid-lite .card:nth-child(3n)::before {
  background: linear-gradient(90deg, rgba(78, 201, 176, 0.78), rgba(245, 158, 11, 0.26), transparent 78%);
}

.capability-grid-pro .card:nth-child(3n + 1)::before {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.82), rgba(59, 130, 246, 0.32), transparent 78%);
}

.capability-grid-pro .card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.84), rgba(78, 201, 176, 0.28), transparent 78%);
}

.capability-grid-pro .card:nth-child(3n)::before {
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.68), rgba(245, 158, 11, 0.22), transparent 78%);
}

.cap-icon-screening {
  background:
    radial-gradient(circle at 28% 24%, rgba(245, 158, 11, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(33, 25, 16, 0.98), rgba(17, 19, 22, 0.96));
}

.cap-icon-context {
  background:
    radial-gradient(circle at 28% 24%, rgba(59, 130, 246, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(18, 30, 45, 0.98), rgba(13, 20, 31, 0.96));
}

.cap-icon-visual {
  background:
    radial-gradient(circle at 28% 24%, rgba(78, 201, 176, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(16, 35, 35, 0.98), rgba(12, 22, 24, 0.96));
}

.cap-icon-sanctions,
.cap-icon-compliance {
  background:
    radial-gradient(circle at 28% 24%, rgba(245, 158, 11, 0.22), transparent 42%),
    linear-gradient(160deg, rgba(36, 27, 18, 0.98), rgba(18, 18, 16, 0.96));
}

.cap-icon-history {
  background:
    radial-gradient(circle at 28% 24%, rgba(154, 167, 198, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(27, 33, 43, 0.98), rgba(16, 19, 24, 0.96));
}

.cap-icon-summary,
.cap-icon-evidence {
  background:
    radial-gradient(circle at 28% 24%, rgba(244, 114, 182, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(33, 23, 31, 0.98), rgba(17, 15, 22, 0.96));
}

.cap-icon-wallet {
  background:
    radial-gradient(circle at 28% 24%, rgba(59, 130, 246, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(20, 31, 48, 0.98), rgba(12, 20, 31, 0.96));
}

.cap-icon-graph {
  background:
    radial-gradient(circle at 28% 24%, rgba(78, 201, 176, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(16, 34, 39, 0.98), rgba(10, 22, 25, 0.96));
}

.cap-icon-workflow {
  background:
    radial-gradient(circle at 28% 24%, rgba(245, 158, 11, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(34, 30, 21, 0.98), rgba(19, 18, 16, 0.96));
}

.cap-icon-bulk {
  background:
    radial-gradient(circle at 28% 24%, rgba(168, 85, 247, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(29, 22, 42, 0.98), rgba(16, 15, 24, 0.96));
}

.exhaustive-capabilities {
  margin-bottom: 84px;
}

.exhaustive-grid {
  display: grid;
  gap: 14px;
}

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

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

.exhaustive-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(57, 89, 124, 0.18), transparent 68%),
    linear-gradient(180deg, rgba(24, 36, 52, 0.98) 0%, rgba(21, 31, 44, 0.98) 100%);
}

.exhaustive-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -42px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.08), transparent 72%);
  pointer-events: none;
}

.exhaustive-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.exhaustive-card h3 {
  margin: 0;
  font-size: 19px;
  max-width: 320px;
}

.cap-illustration {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(86, 120, 164, 0.42);
  background: linear-gradient(160deg, rgba(18, 31, 46, 0.96), rgba(15, 26, 40, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 42px rgba(5, 10, 18, 0.28);
}

.cap-illustration svg {
  width: 54px;
  height: 54px;
  stroke: #e7eef7;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cap-analysis {
  background:
    radial-gradient(circle at 24% 24%, rgba(76, 161, 255, 0.24), transparent 42%),
    linear-gradient(160deg, rgba(19, 35, 56, 0.98), rgba(12, 24, 37, 0.96));
}

.cap-signals {
  background:
    radial-gradient(circle at 28% 22%, rgba(245, 158, 11, 0.24), transparent 42%),
    linear-gradient(160deg, rgba(39, 30, 18, 0.98), rgba(22, 19, 14, 0.96));
}

.cap-workflow {
  background:
    radial-gradient(circle at 26% 24%, rgba(78, 201, 176, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(17, 36, 39, 0.98), rgba(12, 25, 28, 0.96));
}

.cap-reporting {
  background:
    radial-gradient(circle at 24% 22%, rgba(154, 167, 198, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(28, 34, 45, 0.98), rgba(16, 21, 29, 0.96));
}

.exhaustive-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.exhaustive-list li {
  margin-bottom: 7px;
  line-height: 1.5;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.product-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(220px 140px at 100% 100%, rgba(59, 130, 246, 0.08), transparent 66%),
    linear-gradient(180deg, rgba(23, 33, 47, 0.98) 0%, rgba(18, 26, 36, 0.98) 100%);
}

.product-card-lite {
  background:
    radial-gradient(220px 140px at 100% 100%, rgba(245, 158, 11, 0.08), transparent 66%),
    linear-gradient(180deg, rgba(23, 33, 47, 0.98) 0%, rgba(18, 26, 36, 0.98) 100%);
}

.product-card h3,
.product-card p,
.product-card ul,
.product-card .card-actions {
  position: relative;
  z-index: 1;
}

.card-fit {
  margin: 10px 0 14px;
  color: #b8c7d6;
  line-height: 1.6;
}

.card ul {
  padding-left: 16px;
  color: var(--muted);
}

.card li {
  margin-bottom: 6px;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.card-muted {
  opacity: 0.85;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.workflow-stack {
  display: grid;
  gap: 34px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.split-video-card {
  grid-column: 1 / -1;
  width: min(960px, 100%);
  margin: 4px auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.split-video-card video {
  width: 100%;
  display: block;
  border-radius: 10px;
  background: #0b111a;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  max-height: 420px;
}

.flow-shell {
  display: grid;
  gap: 18px;
}

.flow-main {
  display: grid;
  gap: 14px;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(41, 57, 77, 0.92);
  background:
    radial-gradient(200px 120px at 100% 0%, rgba(59, 130, 246, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(18, 27, 39, 0.98), rgba(14, 22, 33, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 46px;
  bottom: -14px;
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.62), rgba(59, 130, 246, 0));
}

.flow-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.24);
  background:
    radial-gradient(circle at 30% 26%, rgba(59, 130, 246, 0.34), transparent 52%),
    linear-gradient(180deg, rgba(18, 33, 52, 0.98), rgba(12, 23, 36, 0.96));
  color: #dbeafe;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.flow-step p {
  margin: 0;
  color: #d5e0ea;
  font-size: 16px;
  line-height: 1.55;
}

.flow-pro-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(61, 50, 25, 0.92);
  background:
    radial-gradient(220px 120px at 100% 0%, rgba(245, 158, 11, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(30, 24, 16, 0.98), rgba(22, 18, 13, 0.98));
  padding: 18px;
}

.flow-pro-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  background: rgba(28, 22, 14, 0.9);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-pro-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.flow-pro-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(88, 70, 31, 0.88);
  background: rgba(21, 17, 12, 0.74);
}

.flow-pro-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  background:
    radial-gradient(circle at 30% 26%, rgba(245, 158, 11, 0.26), transparent 52%),
    linear-gradient(180deg, rgba(47, 33, 16, 0.98), rgba(28, 21, 13, 0.96));
  color: #fde68a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.flow-pro-step p {
  margin: 0;
  color: #f3d9a5;
  font-size: 15px;
  line-height: 1.5;
}

.signal-box {
  background:
    radial-gradient(220px 140px at 100% 0%, rgba(59, 130, 246, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(20, 30, 43, 0.98), rgba(17, 24, 35, 0.98));
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(39, 54, 72, 0.92);
  box-shadow: var(--shadow);
}

.split .signal-box {
  height: 100%;
}

.workflow-stack .signal-box {
  height: auto;
}

.signal-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: center;
  border-radius: 24px;
  background:
    radial-gradient(260px 180px at 15% 10%, rgba(245, 158, 11, 0.08), transparent 72%),
    radial-gradient(260px 180px at 100% 0%, rgba(59, 130, 246, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(18, 28, 40, 0.98), rgba(15, 23, 34, 0.98));
  border: 1px solid rgba(47, 63, 84, 0.94);
  padding: 26px;
}

.signal-showcase-copy h3 {
  margin-bottom: 14px;
}

.signal-showcase-copy .eyebrow {
  margin-bottom: 10px;
}

.signal-showcase-lead {
  margin: 0 0 16px;
  color: #d8e1ea;
  font-size: 17px;
  line-height: 1.72;
}

.signal-showcase-tags {
  margin-bottom: 14px;
}

.signal-showcase .signal-tag:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.signal-dashboard-scene {
  position: relative;
  min-height: 470px;
}

.signal-dashboard-shell,
.signal-dashboard-card {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(53, 71, 94, 0.9);
  background:
    linear-gradient(180deg, rgba(237, 244, 252, 0.96), rgba(219, 230, 241, 0.95));
  box-shadow:
    0 16px 40px rgba(2, 7, 15, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: #143044;
}

.signal-dashboard-shell {
  top: 0;
  right: 18px;
  width: 72%;
  min-height: 236px;
  padding: 18px 18px 20px;
}

.signal-dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 14px;
  margin-bottom: 18px;
}

.signal-dashboard-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.signal-dashboard-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(120, 148, 171, 0.22);
}

.signal-dashboard-line-lg {
  width: 150px;
}

.signal-dashboard-line-sm {
  width: 78px;
  margin-left: auto;
}

.signal-dashboard-header {
  color: #19435b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.signal-dashboard-search {
  width: 82%;
  height: 18px;
  border-radius: 999px;
  background: rgba(120, 148, 171, 0.2);
  margin-bottom: 16px;
}

.signal-dashboard-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-dashboard-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(88, 120, 150, 0.28);
  background: rgba(255, 255, 255, 0.7);
  color: #28506a;
  font-size: 12px;
  font-weight: 700;
}

.signal-dashboard-card {
  padding: 16px;
}

.signal-card-overview {
  top: 136px;
  left: 0;
  width: 54%;
}

.signal-card-alerts {
  top: 136px;
  right: 0;
  width: 46%;
}

.signal-card-lists {
  left: 12px;
  bottom: 12px;
  width: 56%;
}

.signal-card-reports {
  right: 10px;
  bottom: 40px;
  width: 32%;
}

.signal-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.signal-card-head strong {
  color: #17435b;
  font-size: 15px;
  font-weight: 800;
}

.signal-card-head span {
  color: #5b7a94;
  font-size: 12px;
  font-weight: 700;
}

.signal-card-overview-body {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.signal-donut {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(243, 248, 252, 1) 0 44%, transparent 45%),
    conic-gradient(#7c3aed 0 40%, #0f766e 40% 66%, #2563eb 66% 100%);
}

.signal-donut span {
  color: #14384c;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.signal-stat-list {
  display: grid;
  gap: 10px;
}

.signal-stat-list div,
.signal-alert-grid div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.signal-stat-list span,
.signal-alert-grid span {
  color: #5f7b90;
  font-size: 12px;
}

.signal-stat-list strong,
.signal-alert-grid strong {
  color: #14384c;
  font-size: 16px;
  font-weight: 800;
}

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

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

.signal-list-item {
  min-height: 72px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(88, 120, 150, 0.18);
  background: rgba(255, 255, 255, 0.68);
  display: grid;
  align-content: space-between;
  gap: 10px;
}

.signal-list-title {
  color: #274b62;
  font-size: 13px;
  font-weight: 700;
}

.signal-list-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  width: fit-content;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.signal-list-badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.signal-list-badge-teal {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.signal-list-badge-amber {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.signal-list-badge-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.signal-report-list {
  display: grid;
  gap: 12px;
}

.signal-report-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.signal-report-line {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(120, 148, 171, 0.26);
  flex: 1;
}

.signal-report-line-lg {
  max-width: 140px;
}

.signal-report-line-md {
  max-width: 112px;
}

.signal-report-line-sm {
  max-width: 86px;
}

.signal-report-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(132, 204, 22, 0.14);
  color: #4d7c0f;
  font-size: 11px;
  font-weight: 700;
}

.graph-proof-section {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.graph-proof-section .split-video-card {
  width: 100%;
  margin: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.signal-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.signal-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.signal-tag-ofac {
  background: rgba(58, 18, 23, 0.88);
  border: 1px solid rgba(239, 68, 68, 0.24);
  color: #fecaca;
}

.signal-tag-scam {
  background: rgba(54, 28, 10, 0.88);
  border: 1px solid rgba(245, 158, 11, 0.24);
  color: #fde68a;
}

.signal-tag-wallets {
  background: rgba(18, 31, 52, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.24);
  color: #dbeafe;
}

.signal-tag-entities {
  background: rgba(18, 35, 37, 0.9);
  border: 1px solid rgba(20, 184, 166, 0.24);
  color: #ccfbf1;
}

.signal-tag-behavior {
  background: rgba(35, 28, 49, 0.9);
  border: 1px solid rgba(168, 85, 247, 0.24);
  color: #e9d5ff;
}

.signal-tag-explorer {
  background: rgba(31, 34, 45, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #e2e8f0;
}

.signal-copy-panel {
  margin-top: 14px;
  padding: 16px 16px 15px;
  border-radius: 16px;
  border: 1px solid rgba(42, 57, 76, 0.92);
  background: rgba(12, 19, 28, 0.72);
}

.signal-copy-panel p {
  margin: 0;
  color: #cfd9e4;
  line-height: 1.65;
}

.pricing .price-tag {
  display: grid;
  gap: 4px;
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 8px;
}

.pricing .price-tag span {
  display: block;
}

.pricing .price-tag .price-annual {
  color: #f4f7fb;
}

.price-save {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.price-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.price-actions .btn {
  width: 100%;
}

.subtle {
  color: var(--muted);
}

.checkout-review-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 12, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
}

.checkout-review-backdrop.is-open {
  display: flex;
}

.checkout-review-dialog {
  width: min(100%, 500px);
  background:
    radial-gradient(240px 140px at 100% 0%, rgba(59, 130, 246, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(21, 30, 43, 0.99) 0%, rgba(16, 23, 34, 0.99) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.plan-chooser-dialog {
  width: min(100%, 640px);
  background:
    radial-gradient(260px 160px at 100% 0%, rgba(59, 130, 246, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(21, 30, 43, 0.99) 0%, rgba(16, 23, 34, 0.99) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.checkout-review-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 18px;
}

.checkout-review-head-copy {
  min-width: 0;
  flex: 1;
}

.checkout-review-eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.checkout-review-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(76, 98, 126, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.checkout-review-icon svg {
  width: 22px;
  height: 22px;
  stroke: #eef4fb;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-icon-lite {
  background:
    radial-gradient(circle at 28% 24%, rgba(245, 158, 11, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(33, 25, 16, 0.98), rgba(17, 19, 22, 0.96));
}

.review-icon-pro {
  background:
    radial-gradient(circle at 28% 24%, rgba(59, 130, 246, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(20, 31, 48, 0.98), rgba(12, 20, 31, 0.96));
}

.checkout-review-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-review-dialog h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
}

.checkout-review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.38);
  color: #ffd58a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.checkout-review-copy {
  margin: 0 0 16px;
  color: var(--muted);
}

.checkout-review-lines {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.checkout-review-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(43, 57, 76, 0.92);
  background: rgba(10, 16, 24, 0.34);
}

.checkout-review-line span {
  color: var(--muted);
  font-size: 14px;
}

.checkout-review-line strong {
  color: var(--text);
  font-size: 15px;
  text-align: right;
}

.checkout-review-note {
  margin: 0 0 18px;
  color: #b8c5d2;
  line-height: 1.6;
  font-size: 14px;
}

.checkout-review-security {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9eb0c1;
  font-size: 13px;
}

.checkout-review-security-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(66, 85, 108, 0.9);
  background: rgba(10, 16, 24, 0.34);
}

.checkout-review-security-icon svg {
  width: 14px;
  height: 14px;
  stroke: #d7e3ef;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-review-actions {
  display: grid;
  gap: 10px;
}

.checkout-review-actions .btn {
  width: 100%;
}

.checkout-review-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
}

.plan-chooser-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 18px;
}

.plan-choice-card {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(43, 57, 76, 0.92);
  border-radius: 16px;
  background:
    radial-gradient(180px 100px at 100% 0%, rgba(59, 130, 246, 0.08), transparent 70%),
    rgba(10, 16, 24, 0.42);
  color: var(--text);
  padding: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.plan-choice-card:hover {
  transform: translateY(-2px);
  border-color: #3c5877;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.plan-choice-card.is-featured {
  border-color: rgba(245, 158, 11, 0.35);
  background:
    radial-gradient(180px 100px at 100% 0%, rgba(245, 158, 11, 0.1), transparent 70%),
    rgba(10, 16, 24, 0.46);
}

.plan-choice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.plan-choice-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.34);
  color: #ffd58a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-choice-billing {
  color: #dce6ef;
  font-size: 14px;
  font-weight: 700;
}

.plan-choice-price {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.plan-choice-saving {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.plan-choice-cta {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.plan-chooser-note {
  margin: 0 0 18px;
  color: #9eb0c1;
  font-size: 13px;
  line-height: 1.55;
}

.downloads .btn {
  margin-top: 8px;
  width: 100%;
}

.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(180px 120px at 100% 0%, rgba(59, 130, 246, 0.08), transparent 68%),
    linear-gradient(180deg, rgba(19, 28, 41, 0.98) 0%, rgba(16, 23, 34, 0.98) 100%);
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(66, 85, 108, 0.95);
  display: grid;
  place-items: center;
  color: rgba(214, 224, 234, 0.88);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(245, 158, 11, 0.6);
  color: var(--accent);
}

.faq-item summary:hover::after {
  border-color: rgba(103, 126, 154, 0.95);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #b4c0cc;
  line-height: 1.65;
  font-size: 16px;
}

.faq-item[open] p {
  border-top: 1px solid rgba(38, 50, 65, 0.7);
  padding-top: 16px;
}

.site-footer {
  padding: 40px 56px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(140px, 0.85fr));
  color: var(--muted);
  gap: 24px 32px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.footer-note {
  margin: 0;
  max-width: 420px;
  color: rgba(199, 208, 219, 0.82);
  line-height: 1.7;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(62, 83, 110, 0.95);
  background:
    linear-gradient(180deg, rgba(20, 31, 46, 0.94), rgba(14, 22, 34, 0.98));
  color: rgba(232, 238, 246, 0.9);
  text-decoration: none;
  position: relative;
}

.footer-social:hover {
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(95, 124, 163, 0.95);
  background:
    linear-gradient(180deg, rgba(27, 42, 62, 0.96), rgba(17, 27, 42, 0.99));
}

.footer-social[aria-disabled="true"] {
  cursor: default;
}

.footer-social-icon {
  width: 16px;
  height: 16px;
  color: rgba(232, 238, 246, 0.92);
}

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

.footer-meta {
  color: rgba(180, 192, 204, 0.72);
  font-size: 14px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h4 {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  margin: 8px 0 16px;
}

.legal-block {
  margin-bottom: 42px;
}

.legal-block h2 {
  margin-bottom: 10px;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.legal-block ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.legal-note p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 0 auto 42px;
  }
  .hero-pro-bg,
  .hero-lite-bg {
    padding: 2px 0 0;
    border-radius: 0;
  }
  .hero-pro-bg::before,
  .hero-lite-bg::before {
    inset: 0;
    opacity: 0.34;
    background-position: center;
  }
  .site-header {
    flex-direction: column;
    gap: 12px;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-dropdown-menu {
    left: 50%;
    transform: translate(-50%, 6px);
  }
  .nav-dropdown[open] .nav-dropdown-menu {
    transform: translate(-50%, 0);
  }
  main {
    padding: 32px 20px 80px;
  }
  .hero-panel::before {
    inset: 2% 2% -4% 4%;
    filter: blur(24px);
    opacity: 0.58;
  }
  .app-body {
    padding: 18px;
  }
  .app-stage-backdrop {
    inset: 14px 12px 12px;
  }
  .app-window-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .app-hero-stage {
    min-height: 218px;
  }
  .app-hero-card {
    min-height: 176px;
  }
  .hero-stage-caption {
    max-width: none;
    margin-top: 12px;
    padding: 12px 12px 14px;
  }
  .hero-stage-title {
    font-size: 20px;
  }
  .hero-stage-subtitle {
    font-size: 14px;
    line-height: 1.48;
  }
  .hero-overlay-hud {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(88%, 360px);
    margin-top: 0;
    min-height: 0;
  }
  .hero-overlay-hud::before {
    inset: -10px;
  }
  .hero-story {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateY(10px);
  }
  .hero-story.is-visible {
    transform: translateY(-50%);
  }
  .hero-story-metrics,
  .hero-story-entity-analysis,
  .hero-story-monitor-shell {
    grid-template-columns: 1fr;
  }
  .hero-monitor-frame {
    width: min(100%, 228px);
    margin: 0 auto;
  }
  .flow-step,
  .flow-pro-step {
    grid-template-columns: 1fr;
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
  .flow-step-number,
  .flow-pro-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .signal-tag {
    min-height: 32px;
    padding: 6px 11px;
  }
  .signal-showcase {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
  .signal-dashboard-scene {
    min-height: 0;
    display: grid;
    gap: 14px;
  }
  .signal-dashboard-shell,
  .signal-dashboard-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
  }
  .signal-dashboard-shell {
    min-height: 0;
  }
  .signal-card-overview-body {
    grid-template-columns: 88px minmax(0, 1fr);
  }
  .signal-alert-grid,
  .signal-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .exhaustive-grid-lite,
  .exhaustive-grid-pro {
    grid-template-columns: 1fr;
  }
  .exhaustive-head {
    gap: 14px;
  }
  .cap-illustration {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    border-radius: 20px;
  }
  .cap-illustration svg {
    width: 46px;
    height: 46px;
  }
  .pro-proof-grid {
    grid-template-columns: 1fr;
  }
  .lite-proof-grid {
    grid-template-columns: 1fr;
  }
  .lite-proof-grid .proof-hero,
  .lite-proof-grid .proof-small,
  .lite-proof-grid .proof-medium {
    grid-column: auto;
  }
  .lite-proof-grid .proof-hero video,
  .lite-proof-grid .proof-small video,
  .lite-proof-grid .proof-medium video {
    max-height: 42vh;
  }
  .pro-proof-grid .proof-lead,
  .pro-proof-grid .proof-hero,
  .pro-proof-grid .proof-medium,
  .pro-proof-grid .proof-wide,
  .pro-proof-grid .proof-small {
    grid-column: auto;
  }
  .pro-proof-grid .proof-lead video,
  .pro-proof-grid .proof-hero video,
  .pro-proof-grid .proof-medium video,
  .pro-proof-grid .proof-wide video,
  .pro-proof-grid .proof-small video {
    max-height: 44vh;
  }
  .plan-chooser-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: auto;
    padding-bottom: 20px;
  }
  .pro-visual-grid {
    grid-template-columns: 1fr;
  }
  .pro-visual-grid .visual-feature {
    grid-column: auto;
  }
  .pro-visual-grid .visual-feature img {
    max-height: 44vh;
  }
  .mission-shell {
    padding: 22px 18px 18px;
  }
  .mission-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mission-lead {
    font-size: 18px;
  }
  .mission-stage {
    min-height: auto;
    padding: 0;
    display: block;
  }
  .mission-stage::before {
    inset: 0;
  }
  .mission-scene {
    position: relative;
    inset: auto;
    min-height: 420px;
  }
  .mission-token,
  .mission-signal,
  .mission-callout {
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }
  .mission-network {
    inset: 10% 4% 16% 6%;
    width: 90%;
    height: 72%;
  }
  .mission-scene::before {
    width: 270px;
    height: 270px;
    left: 18%;
    top: 16%;
  }
  .mission-scene::after {
    width: 160px;
    height: 160px;
    right: 4%;
    top: 10%;
  }
  .mission-orb-main {
    width: 250px;
    height: 250px;
    left: 18%;
    top: 18%;
  }
  .mission-orb-side {
    width: 140px;
    height: 140px;
    right: 6%;
    top: 10%;
  }
  .mission-ring-main {
    width: 286px;
    height: 286px;
    left: 12%;
    top: 14%;
  }
  .mission-ring-side {
    width: 120px;
    height: 120px;
    right: 8%;
    top: 14%;
  }
  .mission-token,
  .mission-signal,
  .mission-callout {
    display: inline-flex;
    margin: 10px 10px 0 0;
  }
  .mission-callout {
    width: 100%;
    display: block;
    margin-top: 14px;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-video-card {
    width: 100%;
    padding: 10px;
  }
  .split-video-card video {
    max-height: 280px;
  }
  .media-wide {
    grid-column: auto;
  }
  .site-footer {
    padding: 28px 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .legal-block p,
  .legal-block li {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mission-shell {
    animation: none;
  }
}
