:root {
  --bg: #06111f;
  --panel: #0d1b2f;
  --panel-2: #10243f;
  --text: #eff6ff;
  --muted: #a9bdd6;
  --line: rgba(255,255,255,.12);
  --accent: #38bdf8;
  --accent-2: #22c55e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(56,189,248,.18), transparent 34%), var(--bg);
  color: var(--text);
}

a { color: inherit; }
.hero {
  min-height: 680px;
  padding: 28px clamp(20px, 5vw, 72px) 90px;
  background: linear-gradient(135deg, rgba(6,17,31,.9), rgba(13,27,47,.92)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}
nav, footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { font-weight: 800; letter-spacing: -.03em; font-size: 1.25rem; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #03101f;
  text-decoration: none;
  font-weight: 800;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 120px auto 0;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 900;
}
h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: .88;
  margin: 16px 0 24px;
  letter-spacing: -.08em;
}
.lead {
  color: var(--muted);
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button.secondary { background: rgba(255,255,255,.08); color: var(--text); border: 1px solid var(--line); }
.stat-card {
  background: rgba(13,27,47,.78);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.stat-number { display: block; font-size: 5rem; font-weight: 900; letter-spacing: -.07em; color: var(--accent-2); }
.stat-label { font-size: 1.15rem; font-weight: 800; }
.stat-card p { color: var(--muted); }
main { padding: 70px clamp(20px, 5vw, 72px); }
.intro, .rankings { max-width: 1180px; margin: 0 auto 70px; }
.intro {
  background: linear-gradient(135deg, rgba(56,189,248,.10), rgba(34,197,94,.08));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 16px; letter-spacing: -.05em; }
.intro p, .note { color: var(--muted); font-size: 1.05rem; }
.section-heading { margin-bottom: 24px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 24px; background: rgba(13,27,47,.82); }
table { width: 100%; border-collapse: collapse; min-width: 940px; }
th, td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: rgba(255,255,255,.05); color: #dbeafe; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
td:first-child { color: var(--accent-2); font-weight: 900; }
td:nth-child(2) { font-weight: 800; }
td a { color: var(--accent); text-decoration: none; font-weight: 800; }
td a:hover { text-decoration: underline; }
tr:hover { background: rgba(255,255,255,.045); }
.note { margin-top: 18px; }
footer {
  padding: 34px clamp(20px, 5vw, 72px);
  background: #020817;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer strong { color: var(--text); }
footer a { color: var(--accent); text-decoration: none; font-weight: 800; }
@media (max-width: 820px) {
  nav, footer { align-items: flex-start; flex-direction: column; }
  .hero-grid { grid-template-columns: 1fr; margin-top: 72px; }
  h1 { letter-spacing: -.06em; }
}
