:root {
  --sp-bg: #07111f;
  --sp-panel: rgba(15, 29, 49, 0.88);
  --sp-line: rgba(150, 190, 235, 0.16);
  --sp-text: #f4f8ff;
  --sp-muted: #91a6c2;
  --sp-accent: #57a8ff;
  --sp-accent2: #66e0c2;
  --sp-positive: #32d296;
  --sp-negative: #ff6b7a;
  --sp-warning: #f6c85f;
}

.site-topbar {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

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

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

.site-nav a {
  color: #a8bbd2;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 750;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #f4f8ff;
  background: rgba(87,168,255,.08);
  border-color: rgba(87,168,255,.18);
}

.site-footer {
  width: min(1500px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 34px;
  color: var(--sp-muted);
  font-size: .74rem;
  line-height: 1.55;
  border-top: 1px solid var(--sp-line);
}

.site-footer strong { color: #cfe2f5; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.site-btn,
.site-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 850;
}

.site-btn {
  color: #06111d;
  background: linear-gradient(135deg, #5baeff, #61e1c5);
  box-shadow: 0 12px 26px rgba(70,171,255,.18);
}

.site-btn-secondary {
  color: #d9eaff;
  border: 1px solid var(--sp-line);
  background: rgba(255,255,255,.035);
}

.site-btn:hover,
.site-btn-secondary:hover { transform: translateY(-1px); }

.page-kicker {
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .16em;
  color: #93c8ff;
  font-weight: 850;
}

.page-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 60px;
  position: relative;
  z-index: 1;
}

.page-panel {
  border: 1px solid var(--sp-line);
  background: linear-gradient(180deg, rgba(17,34,58,.90), rgba(11,24,42,.84));
  box-shadow: 0 24px 70px rgba(0,0,0,.30);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
}

@media (max-width: 980px) {
  .site-topbar {
    grid-template-columns: 1fr auto;
  }
  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .site-footer { width: min(100% - 22px, 1240px); }
  .site-topbar { grid-template-columns: 1fr; }
  .site-topbar .status-pill { display: none; }
  .site-nav { grid-column: 1; }
}
