
:root{
  --bg:#07101d;
  --panel:#0e1b2d;
  --panel2:#111f34;
  --text:#f8fafc;
  --muted:#aab7c8;
  --line:rgba(255,255,255,.11);
  --gold:#d8b15d;
  --blue:#7bb6ff;
  --green:#2ed3a2;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:radial-gradient(circle at top left,#142945 0,var(--bg) 42%,#04070d 100%);
}
a{text-decoration:none;color:inherit}
.hero{
  min-height:650px;
  padding:28px;
  background:
    linear-gradient(115deg,rgba(7,16,29,.96),rgba(7,16,29,.78)),
    url("https://images.unsplash.com/photo-1604594849809-dfedbc827105?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--line);
}
.nav{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.brand{
  font-weight:900;
  font-size:22px;
  letter-spacing:-.04em;
}
.brand span{color:var(--gold)}
.nav-links{
  display:flex;
  gap:24px;
  color:var(--muted);
  font-size:14px;
}
.nav-links a:hover{color:var(--text)}
.hero-content{
  max-width:1200px;
  margin:120px auto 0;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--gold);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
}
h1{
  max-width:950px;
  margin:0;
  font-size:clamp(42px,7vw,82px);
  line-height:.92;
  letter-spacing:-.075em;
}
.lede{
  max-width:760px;
  margin:28px 0 0;
  color:#d7e0ed;
  font-size:20px;
  line-height:1.65;
}
.hero-actions{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.button{
  padding:14px 21px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:900;
}
.primary{
  background:linear-gradient(135deg,var(--gold),#f4d58a);
  color:#101827;
}
.secondary{
  background:rgba(255,255,255,.075);
}
main{
  max-width:1200px;
  margin:0 auto;
  padding:36px 20px 86px;
}
.kpi-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:-88px;
  position:relative;
}
.kpi{
  min-height:150px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(14,27,45,.88);
  backdrop-filter:blur(14px);
  box-shadow:0 22px 55px rgba(0,0,0,.25);
}
.kpi span{
  display:block;
  color:var(--green);
  font-weight:950;
  font-size:32px;
  letter-spacing:-.04em;
}
.kpi p{
  color:var(--muted);
  line-height:1.45;
}
.intro{
  margin:72px 0 34px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:38px;
  align-items:end;
}
h2{
  margin:0;
  font-size:clamp(30px,4vw,48px);
  line-height:1;
  letter-spacing:-.055em;
}
.intro p:last-child,.section-head p,.insights p,.sources p{
  color:var(--muted);
  line-height:1.7;
  font-size:17px;
}
.leader-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:70px;
}
.leader-card{
  padding:24px;
  background:linear-gradient(180deg,rgba(17,31,52,.96),rgba(13,25,42,.96));
  border:1px solid var(--line);
  border-radius:24px;
}
.leader-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.leader-top span{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(216,177,93,.14);
  color:var(--gold);
  font-weight:950;
}
.leader-top small{
  color:var(--muted);
  font-weight:800;
}
.leader-card h3{
  font-size:25px;
  margin:24px 0 10px;
}
.leader-card p{
  color:var(--muted);
  line-height:1.55;
}
.leader-card a{
  color:var(--blue);
  font-weight:900;
}
.ranking-section{
  padding:28px;
  background:rgba(14,27,45,.72);
  border:1px solid var(--line);
  border-radius:30px;
}
.section-head{
  margin-bottom:24px;
}
.table-wrap{
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:18px;
}
table{
  width:100%;
  min-width:1040px;
  border-collapse:collapse;
  background:#081322;
}
th{
  text-align:left;
  padding:16px;
  background:#102038;
  color:#dce8f8;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.09em;
}
td{
  padding:16px;
  border-top:1px solid var(--line);
  color:#edf4ff;
  vertical-align:top;
}
td span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}
td.rank{
  color:var(--gold);
  font-weight:950;
}
td a{
  color:var(--blue);
  font-weight:900;
}
tbody tr:hover{
  background:rgba(123,182,255,.075);
}
.insights{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:60px 0;
}
.insights article,.sources{
  padding:30px;
  border:1px solid var(--line);
  border-radius:30px;
  background:rgba(17,31,52,.72);
}
.insights li{
  margin:10px 0;
  color:#d8e2ef;
}
.source-links{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:20px;
}
.source-links a{
  padding:16px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--line);
  border-radius:16px;
  color:var(--blue);
  font-weight:900;
}
.source-links a:hover{background:rgba(123,182,255,.10)}
footer{
  max-width:1200px;
  margin:0 auto;
  padding:34px 20px 54px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:40px;
  color:var(--muted);
}
footer strong{
  color:var(--text);
  font-size:20px;
}
@media(max-width:880px){
  .nav{align-items:flex-start;flex-direction:column;gap:18px}
  .hero{min-height:760px}
  .kpi-grid,.intro,.leader-grid,.insights,.source-links{grid-template-columns:1fr}
  footer{flex-direction:column}
}
