:root {
  --bg: #08111d;
  --bg2: #0d1828;
  --card: #111c2b;
  --line: #294059;
  --line-soft: rgba(71, 95, 122, 0.48);
  --text: #eff5ff;
  --muted: #a8b8cf;
  --pink: #e7a15f;
  --pink-soft: rgba(231, 161, 95, 0.18);
  --cyan: #73c9ff;
  --cyan-soft: rgba(115, 201, 255, 0.18);
  --mint: #8fddbd;
  --amber: #f0c27a;
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--cyan);
  color: #050814;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  color: var(--text);
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1000px 560px at 12% -15%, rgba(231, 161, 95, 0.18), transparent 68%),
    radial-gradient(980px 520px at 105% 6%, rgba(115, 201, 255, 0.18), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 120;
  background: linear-gradient(90deg, #e7a15f, #73c9ff);
  box-shadow: 0 0 14px rgba(231, 161, 95, 0.35);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.35;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(520px 240px at 22% 18%, rgba(255, 79, 203, 0.16), transparent 72%),
    radial-gradient(460px 220px at 78% 12%, rgba(78, 215, 255, 0.14), transparent 72%),
    radial-gradient(620px 260px at 48% 102%, rgba(111, 241, 194, 0.12), transparent 72%);
  filter: blur(24px) saturate(118%);
  opacity: 0.8;
  z-index: 0;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

main.wrap {
  position: relative;
  z-index: 1;
}

.top {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
  background: rgba(5, 7, 16, 0.86);
  box-shadow: 0 12px 30px rgba(1, 4, 14, 0.46);
}

.top::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 203, 0.5), rgba(78, 215, 255, 0.46), transparent);
  pointer-events: none;
}

.top .row {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 18px var(--pink-soft), 0 0 28px rgba(78, 215, 255, 0.24);
}

.brand span {
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 5px;
  border: 1px solid rgba(62, 77, 122, 0.45);
  border-radius: 12px;
  background: rgba(7, 11, 23, 0.7);
}

.nav a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(255, 79, 203, 0.35);
  background: rgba(255, 79, 203, 0.08);
}

.nav a.active {
  color: #ffd9f5;
  border-color: rgba(255, 79, 203, 0.42);
  background: linear-gradient(135deg, rgba(255, 79, 203, 0.22), rgba(78, 215, 255, 0.16));
  box-shadow: 0 0 0 1px rgba(255, 79, 203, 0.2) inset;
}

.cta {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 79, 203, 0.42);
  background: linear-gradient(135deg, rgba(255, 79, 203, 0.34), rgba(78, 215, 255, 0.3));
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.cta:focus-visible,
.btn:focus-visible,
.segment-btn:focus-visible {
  outline: 2px solid rgba(78, 215, 255, 0.85);
  outline-offset: 2px;
}

.hero {
  padding: 88px 0 40px;
  min-height: 54vh;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -8% -6%;
  pointer-events: none;
  background:
    radial-gradient(340px 180px at 8% 15%, rgba(255, 79, 203, 0.13), transparent 78%),
    radial-gradient(300px 170px at 88% 8%, rgba(78, 215, 255, 0.13), transparent 78%);
  z-index: -1;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .86fr);
  align-items: center;
  gap: 24px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 79, 203, 0.45);
  background: rgba(255, 79, 203, 0.14);
  color: #ff8de0;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(255, 79, 203, 0.8);
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 20%, #ffc3ef 55%, #9fe9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  margin: 16px 0 0;
  max-width: 820px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

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

.btn {
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn.primary {
  background: linear-gradient(135deg, #ff4fcb, #55d8ff);
  color: #11051a;
  border: none;
  box-shadow: 0 8px 30px rgba(255, 79, 203, 0.25);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.logo-panel {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 79, 203, 0.1), rgba(78, 215, 255, 0.07));
  padding: 16px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.logo-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 79, 203, 0.58), rgba(78, 215, 255, 0.52), rgba(255, 79, 203, 0.44));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
}

.logo-panel img {
  width: min(320px, 100%);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 28px rgba(255, 79, 203, 0.35), 0 0 34px rgba(78, 215, 255, 0.25);
}

.hero-panel {
  --panel-accent: rgba(255, 79, 203, 0.34);
  --panel-accent-2: rgba(78, 215, 255, 0.22);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(220px 120px at 14% -10%, var(--panel-accent), transparent 72%),
    radial-gradient(260px 130px at 100% 0%, var(--panel-accent-2), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(7px);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: -20% -30%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.hero-panel:hover {
  border-color: rgba(255, 79, 203, 0.45);
  box-shadow: 0 14px 32px rgba(5, 7, 15, 0.4);
}

.hero-panel:hover::after {
  transform: translateX(120%);
}

.hero-panel-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.85px;
  color: #ffc2ec;
}

.hero-panel .list {
  margin-top: 8px;
}

.hero-panel .list li {
  font-size: 12.5px;
}

.signal-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.signal {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 8px;
  background: rgba(5, 10, 22, 0.72);
}

.signal .k {
  display: block;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #8ea2d2;
  font-weight: 700;
}

.signal .v {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: #f4f7ff;
}

.signal .bar {
  margin-top: 6px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 79, 203, 0.8), rgba(78, 215, 255, 0.85));
  opacity: 0.9;
  animation: signalPulse 2.4s ease-in-out infinite;
  transform-origin: left center;
}

.hero-panel-note {
  margin-top: 10px;
  font-size: 11px;
  color: #b7c4e8;
  line-height: 1.55;
}

.hero-platform { --panel-accent: rgba(99, 206, 255, 0.28); --panel-accent-2: rgba(255, 79, 203, 0.18); }
.hero-features { --panel-accent: rgba(255, 79, 203, 0.3); --panel-accent-2: rgba(111, 241, 194, 0.18); }
.hero-security { --panel-accent: rgba(255, 79, 203, 0.22); --panel-accent-2: rgba(255, 190, 120, 0.2); }
.hero-docs { --panel-accent: rgba(78, 215, 255, 0.24); --panel-accent-2: rgba(255, 79, 203, 0.18); }
.hero-enterprise { --panel-accent: rgba(111, 241, 194, 0.2); --panel-accent-2: rgba(255, 79, 203, 0.22); }
.hero-roadmap { --panel-accent: rgba(255, 190, 120, 0.22); --panel-accent-2: rgba(78, 215, 255, 0.22); }

.identity-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.identity-chip {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 11px 12px;
  background: linear-gradient(180deg, rgba(255, 79, 203, 0.06), rgba(78, 215, 255, 0.05));
}

.identity-chip .k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: #8ea2d2;
  font-weight: 700;
}

.identity-chip .v {
  margin-top: 3px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffe7f8;
}

.trust-band {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.trust-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(220px 120px at 8% -10%, rgba(255, 79, 203, 0.18), transparent 72%),
    radial-gradient(260px 140px at 100% 0%, rgba(78, 215, 255, 0.14), transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014));
  box-shadow: 0 14px 30px rgba(3, 6, 16, 0.3);
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 79, 203, 0.4), rgba(78, 215, 255, 0.34), rgba(111, 241, 194, 0.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.26;
  pointer-events: none;
}

.trust-eyebrow {
  display: inline-flex;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.78px;
  color: #97abd9;
  font-weight: 700;
}

.trust-value {
  margin-top: 10px;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 800;
  color: #f7faff;
}

.trust-card p {
  margin-top: 10px;
  color: #bfd0f2;
  font-size: 13px;
  line-height: 1.6;
}

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

.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border-radius: 14px;
  padding: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  box-shadow: 0 10px 24px rgba(3, 6, 16, 0.26);
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 79, 203, 0.45), rgba(78, 215, 255, 0.35), rgba(111, 241, 194, 0.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.2;
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  left: -30%;
  right: -30%;
  top: -40%;
  height: 80%;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 203, 0.14), rgba(78, 215, 255, 0.1), transparent);
  transform: translateY(-120%) rotate(-6deg);
  transition: transform 0.4s ease;
}

.card:hover {
  border-color: rgba(255, 79, 203, 0.42);
  transform: perspective(800px) translateY(-4px) rotateX(1.4deg) rotateY(-1.4deg);
  box-shadow: 0 16px 36px rgba(3, 6, 16, 0.42);
}

.card:hover::after {
  transform: translateY(120%) rotate(-6deg);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.topology {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.segment-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.segment-btn {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #c7d6ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.segment-btn:hover {
  border-color: rgba(255, 79, 203, 0.38);
  color: #f9ecff;
}

.segment-btn.active {
  background: linear-gradient(135deg, rgba(255, 79, 203, 0.28), rgba(78, 215, 255, 0.2));
  border-color: rgba(255, 79, 203, 0.45);
  color: #fff4fc;
}

.segment-panel {
  display: none;
}

.segment-panel.active {
  display: block;
  animation: panelIn 0.28s ease both;
}

.topology-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.topology-node {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 11px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.topology-node .node-k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.68px;
  color: #90a4d6;
  font-weight: 700;
}

.topology-node .node-v {
  margin-top: 3px;
  font-size: 14px;
  color: #f5f7ff;
  font-weight: 700;
}

.topology-node .node-note {
  margin-top: 6px;
  color: #b8c8eb;
  font-size: 12px;
  line-height: 1.5;
}

.matrix-wrap {
  margin-top: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 19, 38, 0.86), rgba(7, 11, 25, 0.86));
}

.matrix-head {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) repeat(4, minmax(130px, 1fr));
  border-bottom: 1px solid rgba(42, 53, 90, 0.72);
  background: rgba(255, 255, 255, 0.02);
}

.matrix-head span {
  padding: 11px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.66px;
  color: #a9bce8;
  font-weight: 700;
  border-right: 1px solid rgba(42, 53, 90, 0.5);
}

.matrix-head span:last-child {
  border-right: none;
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) repeat(4, minmax(130px, 1fr));
  border-bottom: 1px solid rgba(42, 53, 90, 0.5);
}

.matrix-row:last-child {
  border-bottom: none;
}

.matrix-row > span {
  padding: 12px;
  border-right: 1px solid rgba(42, 53, 90, 0.45);
  font-size: 12.5px;
  color: #ccdafb;
}

.matrix-row > span:last-child {
  border-right: none;
}

.matrix-row .feat {
  font-weight: 700;
  color: #eef3ff;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 3px 8px;
  border: 1px solid var(--line-soft);
  font-size: 11px;
  font-weight: 700;
}

.chip.yes {
  color: #86f3ca;
  background: rgba(111, 241, 194, 0.12);
  border-color: rgba(111, 241, 194, 0.35);
}

.chip.partial {
  color: #9ae6ff;
  background: rgba(78, 215, 255, 0.12);
  border-color: rgba(78, 215, 255, 0.35);
}

.chip.target {
  color: #ffbbeb;
  background: rgba(255, 79, 203, 0.14);
  border-color: rgba(255, 79, 203, 0.35);
}

.chip.plan {
  color: #ffd299;
  background: rgba(255, 190, 120, 0.14);
  border-color: rgba(255, 190, 120, 0.35);
}

.matrix-note {
  margin-top: 10px;
  font-size: 12px;
  color: #a9b8dc;
}

.journey-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.journey-step {
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  padding: 10px 12px;
  background: rgba(10, 16, 34, 0.78);
}

.journey-step .k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.66px;
  color: #91a5d8;
  font-weight: 700;
}

.journey-step .v {
  margin-top: 3px;
  font-size: 14px;
  color: #f2f6ff;
  font-weight: 700;
}

.journey-step p {
  margin: 6px 0 0;
  color: #bccbec;
  font-size: 12px;
  line-height: 1.5;
}

.control-grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.control-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.control-card .k {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #92a8dd;
  font-weight: 700;
}

.control-card .v {
  margin-top: 4px;
  font-size: 15px;
  color: #f3f6ff;
  font-weight: 700;
}

.control-card p {
  margin: 6px 0 0;
  color: #bdccee;
  font-size: 12px;
  line-height: 1.55;
}

.threat-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.threat-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(11, 16, 33, 0.82);
}

.threat-card .k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.66px;
  color: #95aadb;
  font-weight: 700;
}

.threat-card .v {
  margin-top: 3px;
  font-size: 14px;
  color: #f5f8ff;
  font-weight: 700;
}

.threat-card p {
  margin: 6px 0 0;
  color: #beceef;
  font-size: 12px;
  line-height: 1.52;
}

.milestone-track {
  margin-top: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  padding: 12px;
  background: rgba(10, 15, 32, 0.78);
}

.milestone {
  position: relative;
  border-left: 2px solid rgba(255, 79, 203, 0.35);
  padding: 2px 0 12px 12px;
  margin-left: 4px;
}

.milestone:last-child {
  padding-bottom: 0;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4fcb, #4ed7ff);
  box-shadow: 0 0 10px rgba(255, 79, 203, 0.5);
}

.milestone .k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.68px;
  color: #95a8d8;
  font-weight: 700;
}

.milestone .v {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #f2f6ff;
}

.milestone p {
  margin: 5px 0 0;
  color: #bccbec;
  font-size: 12px;
  line-height: 1.52;
}

.badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--line-soft);
  margin-bottom: 8px;
}

.badge.ok {
  background: rgba(111, 241, 194, 0.14);
  color: var(--mint);
  border-color: rgba(111, 241, 194, 0.35);
}

.badge.info {
  background: var(--pink-soft);
  color: #ff9de5;
  border-color: rgba(255, 79, 203, 0.35);
}

.badge.warn {
  background: rgba(255, 190, 120, 0.14);
  color: var(--amber);
  border-color: rgba(255, 190, 120, 0.35);
}

.section {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(62, 77, 122, 0.28);
  position: relative;
}

.section:first-of-type {
  border-top: none;
}

main.wrap > .section::before {
  content: '';
  position: absolute;
  left: -14px;
  right: -14px;
  top: 8px;
  bottom: 10px;
  border-radius: 16px;
  border: 1px solid rgba(62, 77, 122, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.005));
  z-index: -1;
}

main.wrap > .section:nth-of-type(2n)::before {
  border-color: rgba(62, 77, 122, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.003));
}

.section h2 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #ffffff 15%, #ffcef2 55%, #b5edff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section .lead {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 880px;
  line-height: 1.7;
}

.kv {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.kv .k {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8ea2d2;
  font-weight: 700;
}

.kv .v {
  font-size: 15px;
  font-weight: 700;
  color: #e8edff;
}

.list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.list li {
  position: relative;
  padding-left: 14px;
  color: #c4d6f9;
  font-size: 13px;
}

.list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pink);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  margin-top: 14px;
  box-shadow: 0 10px 24px rgba(3, 7, 17, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(42, 53, 90, 0.72);
  text-align: left;
}

th {
  font-size: 12px;
  color: #b9c8ed;
  background: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

tr:last-child td {
  border-bottom: none;
}

footer {
  padding: 32px 0 36px;
  border-top: 1px solid var(--line-soft);
  margin-top: 30px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.muted {
  color: #8697c2;
  font-size: 12px;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

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

@keyframes signalPulse {
  0% {
    transform: scaleX(0.75);
    opacity: 0.75;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.75);
    opacity: 0.75;
  }
}

@keyframes auroraDrift {
  0% {
    transform: translate3d(-1.2%, -1.2%, 0) scale(1);
  }
  50% {
    transform: translate3d(1.6%, -0.6%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-0.8%, 1.3%, 0) scale(1.01);
  }
}

@media (max-width: 980px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }

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

@media (max-width: 720px) {
  .top .row {
    height: auto;
    min-height: 72px;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    order: 3;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero {
    padding-top: 56px;
    min-height: auto;
  }

  .signal-grid,
  .identity-strip {
    grid-template-columns: 1fr;
  }

  .matrix-wrap {
    overflow-x: auto;
  }

  .matrix-head,
  .matrix-row {
    min-width: 820px;
  }

  main.wrap > .section::before {
    left: -6px;
    right: -6px;
  }
}

@media (max-width: 560px) {
  .actions .btn.primary {
    width: 100%;
    justify-content: center;
  }

  .actions .btn.secondary {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-panel,
  .logo-panel,
  .card,
  .trust-card {
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in,
  .card,
  .card::after,
  .card::before,
  .logo-panel,
  .signal .bar {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  body::after,
  .hero-panel::after {
    animation: none !important;
    transition: none !important;
  }
}
