:root {
  --bg: #000000;
  --bg-panel: rgba(0, 0, 0, 0.96);
  --panel-border: rgba(46, 145, 255, 0.2);
  --line: rgba(46, 145, 255, 0.1);
  --text: #72b8ff;
  --text-soft: #5a9bdd;
  --heading: #9fd0ff;
  --accent: #2ea8ff;
  --accent-2: #67c8ff;
  --accent-glow: rgba(46, 145, 255, 0.32);
  --white-blue: #dff3ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.76);
  --max-width: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 22%, rgba(46, 145, 255, 0.035), transparent 18%),
    linear-gradient(115deg,
      transparent 0%, transparent 28%, rgba(46, 145, 255, 0.018) 29%, transparent 31%,
      transparent 72%, rgba(46, 145, 255, 0.018) 73%, transparent 75%);
  z-index: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(46, 145, 255, 0.1);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(46, 145, 255, 0.24);
  background: rgba(46, 145, 255, 0.06);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 10px rgba(46, 145, 255, 0.14);
}

.brand-copy strong {
  display: block;
  color: var(--heading);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.nav-link {
  padding: 12px 18px;
  border: 1px solid rgba(46, 145, 255, 0.18);
  background: rgba(1, 6, 11, 0.92);
  color: var(--text);
  transition: 180ms ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-link:hover,
.nav-link.active {
  border-color: rgba(46, 145, 255, 0.42);
  color: var(--white-blue);
  box-shadow: 0 0 12px rgba(46, 145, 255, 0.1);
}

.hero {
  padding: 72px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 60px;
  align-items: center;
}

.hero h1,
.page-title,
.section-title {
  margin: 0;
  color: var(--heading);
  line-height: 0.98;
  font-size: clamp(2.9rem, 8vw, 5.8rem);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.hero p.lead,
.page-lead,
.panel p,
.legal-block p,
.legal-block li,
.card p,
.stat p,
.muted-item {
  color: var(--text-soft);
  line-height: 1.86;
  font-size: 1.08rem;
}

.hero p.lead,
.page-lead {
  margin: 26px 0 0;
  max-width: 760px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(46, 145, 255, 0.2);
  background: rgba(1, 6, 11, 0.94);
  color: var(--heading);
  transition: 180ms ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn:hover {
  border-color: rgba(46, 145, 255, 0.42);
  box-shadow: 0 0 12px rgba(46, 145, 255, 0.12);
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: rgba(46, 145, 255, 0.56);
  font-weight: 700;
}

.stats-grid,
.card-grid,
.legal-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  margin-top: 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card-grid-spacious {
  gap: 28px;
}

.stat,
.card,
.legal-block,
.panel,
.wide-panel {
  border: 1px solid var(--panel-border);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.stat,
.card,
.panel,
.legal-block,
.wide-panel {
  padding: 28px;
}

.card {
  min-height: 300px;
}

.stat strong,
.card h3,
.panel h3,
.legal-block h3 {
  display: block;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card h3,
.panel h3,
.legal-block h3 {
  margin: 22px 0 0;
  font-size: 1.85rem;
  line-height: 1.08;
}

.card p,
.panel p,
.legal-block p,
.legal-block li,
.stat p {
  margin: 16px 0 0;
}

.hero-visual {
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: auto 10% 10% 10%;
  height: 42%;
  background: radial-gradient(circle, rgba(46, 145, 255, 0.12), transparent 68%);
  filter: blur(26px);
}

.hero-card {
  position: relative;
  border: 1px solid rgba(46, 145, 255, 0.18);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(1, 5, 12, 0.985));
  box-shadow: 0 40px 124px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(46, 145, 255, 0.04);
  padding: 22px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(46, 145, 255, 0.06);
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  border: 1px solid rgba(46, 145, 255, 0.12);
}

.section {
  padding: 0 0 92px;
}

.section-tight-top {
  padding-top: 0;
}

.page-header {
  padding: 76px 0 34px;
}

.section-title-wrap {
  margin-bottom: 18px;
}

.panel-grid-two {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.02fr 0.98fr;
}

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

.muted-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.muted-list.compact {
  margin-top: 18px;
}

.muted-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid rgba(46, 145, 255, 0.12);
  background: rgba(0, 3, 8, 0.98);
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 10px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(46, 145, 255, 0.42);
  flex: 0 0 auto;
}

.icon-badge {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 145, 255, 0.28);
  background: rgba(46, 145, 255, 0.08);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
}

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

.site-footer {
  margin-top: 20px;
  border-top: 1px solid rgba(46, 145, 255, 0.1);
  background: rgba(0, 0, 0, 0.98);
}

.site-footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover { color: var(--accent-2); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.reveal-group > *:nth-child(2) { transition-delay: 60ms; }
.reveal-group > *:nth-child(3) { transition-delay: 120ms; }
.reveal-group > *:nth-child(4) { transition-delay: 180ms; }
.reveal-group > *:nth-child(5) { transition-delay: 240ms; }
.reveal-group > *:nth-child(6) { transition-delay: 300ms; }
.reveal-group > *:nth-child(7) { transition-delay: 360ms; }
.reveal-group > *:nth-child(8) { transition-delay: 420ms; }
.reveal-group > *:nth-child(9) { transition-delay: 480ms; }
.reveal-group > *:nth-child(10) { transition-delay: 540ms; }
.reveal-group > *:nth-child(11) { transition-delay: 600ms; }

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

  .hero { padding-top: 56px; }
}

@media (max-width: 760px) {
  .site-header .inner,
  .site-footer .inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

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

  .hero h1,
  .page-title,
  .section-title {
    line-height: 1.02;
  }

  .card {
    min-height: auto;
  }
}
