:root {
  --black: #020202;
  --panel: #0b0f17;
  --panel-2: #111827;
  --gold: #ffd400;
  --gold-2: #f59e0b;
  --blue: #236f9f;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --line: rgba(255,255,255,.14);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #172033 0, #050505 42%, #000 100%);
  min-height: 100vh;
}
.site-header {
  background: #000;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand-bar {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 22px 12px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.brand img {
  display: block;
  margin: 0 auto;
}

.brand-logo {
  width: 264px;
  max-width: 36vw;
  height: auto;
  display: block;
}
.brand-title h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: .5px;
  color: #fff;
  text-shadow: 0 3px 0 rgba(255,212,0,.12);
}
.brand-title p {
  margin: 4px 0 0;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .2px;
}
.profile-chip {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.profile-chip img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); }
.profile-chip strong { display: block; font-size: .95rem; }
.profile-chip small { color: var(--gold); font-weight: 700; }
.top-nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 18px 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav-btn, .primary-btn, .secondary-btn {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 10px;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
.nav-btn {
  color: #fff;
  background: transparent;
  padding: 12px 14px;
  font-size: .98rem;
}
.nav-btn:hover, .nav-btn.active {
  color: var(--gold);
  background: rgba(35,111,159,.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
main { max-width: 1240px; margin: 0 auto; padding: 34px 22px 54px; }
.hero {
  scroll-margin-top: 190px;
  display: none;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr);
  gap: 26px;
  align-items: stretch;
}
.active-page { display: grid; }
.hero-content, .hero-card, .content-shell {
  background: linear-gradient(145deg, rgba(17,24,39,.96), rgba(2,2,2,.92));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-content { padding: clamp(28px, 5vw, 58px); }
.eyebrow { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; }
.hero h2 { font-size: clamp(2rem, 5vw, 4.8rem); line-height: 1.02; margin: 18px 0; }
.hero p { font-size: 1.12rem; line-height: 1.7; color: var(--muted); max-width: 820px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.primary-btn, .secondary-btn { padding: 14px 20px; font-size: 1rem; }
.primary-btn { background: linear-gradient(90deg, var(--gold), var(--gold-2)); color: #111; }
.secondary-btn { background: rgba(35,111,159,.95); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.primary-btn:hover, .secondary-btn:hover, .nav-btn:hover { transform: translateY(-2px); }
.hero-card { padding: 30px; }
.hero-card h3, .content-shell h2 { margin-top: 0; color: var(--gold); }
.hero-card li { margin: 14px 0; color: var(--muted); line-height: 1.5; }
.stats-row {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stats-row article {
  background: rgba(35,111,159,.22);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.stats-row strong { color: var(--gold); display: block; font-size: 1.2rem; margin-bottom: 7px; }
.stats-row span { color: var(--muted); }
.content-shell { padding: 34px; min-height: 320px; }
.content-shell h2 { font-size: 2rem; }
.content-shell h3 { color: #fff; margin-top: 28px; }
.content-shell p, .content-shell li { color: var(--muted); line-height: 1.72; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 22px; }
.info-card { background: rgba(255,255,255,.055); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.info-card h3 { margin-top: 0; color: var(--gold); }
.footer {
  border-top: 1px solid var(--line);
  background: #000;
  color: var(--muted);
  text-align: center;
  padding: 24px 16px;
}
@media (max-width: 980px) {
  .brand-bar { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .brand-logo { max-width: 82vw; }
  .hero, .active-page { grid-template-columns: 1fr; }
  .stats-row, .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  main { padding: 22px 14px 40px; }
  .top-nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .nav-btn { white-space: nowrap; }
  .stats-row, .card-grid { grid-template-columns: 1fr; }
  .content-shell { padding: 24px; }
}
