html{background:var(--bg0);}
:root{
  --bg0:#050713;
  --bg1:#070A17;
  --bg2:#070A1B;
  --panel:rgba(255,255,255,0.06);
  --panel2:rgba(255,255,255,0.075);
  --stroke:rgba(255,255,255,0.12);
  --stroke2:rgba(255,255,255,0.18);
  --text:#EAF2FF;
  --muted:rgba(234,242,255,0.72);
  --muted2:rgba(234,242,255,0.55);
  --accentA:#7B61FF;
  --accentB:#14D7FF;
  --good:#28E0B1;
  --shadow: 0 24px 70px rgba(0,0,0,0.55);
  --shadow2: 0 18px 45px rgba(0,0,0,0.45);
  --radius-xl:24px;
  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:12px;
  --max:1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  position:relative;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg0);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 24px}
@media (max-width:560px){ .container{padding:0 18px} }

.topline{
  position:fixed; inset:0 0 auto 0;
  z-index:50;
  background: linear-gradient(180deg, rgba(5,7,19,0.92), rgba(5,7,19,0.72));
  border-bottom:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.topline.is-scrolled{ background: rgba(5,7,19,0.80); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }

.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brand{display:flex; gap:12px; align-items:center; min-width:210px}
.brand img{width:26px; height:26px}
.brand span{font-weight:700; letter-spacing:0.3px}
.brand small{color:var(--muted); font-weight:500}

.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.navlinks a:hover{color:var(--text); background:rgba(255,255,255,0.06)}
.navcta{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.btn:hover{background:rgba(255,255,255,0.09); border-color:rgba(255,255,255,0.20)}
.btn--primary{
  border:0;
  background: linear-gradient(135deg, var(--accentA), var(--accentB));
  box-shadow: 0 18px 42px rgba(20,215,255,0.18), 0 18px 42px rgba(123,97,255,0.18);
}
.btn--primary:hover{filter:brightness(1.04)}
.btn--ghost{background:transparent; border-color:rgba(255,255,255,0.16)}
.btn--small{padding:8px 12px; font-size:13px}
@media (max-width:920px){
  .navlinks{display:none}
  .brand{min-width:auto}
}

main{padding-top:92px}
.section{padding:78px 0}
@media (max-width:760px){ .section{padding:64px 0} }

.hero{
  padding:72px 0 44px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap:28px;
  align-items:center;
}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr; gap:22px}
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.pill .dot{
  width:18px; height:18px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.0) 55%),
              linear-gradient(135deg, var(--accentA), var(--accentB));
  box-shadow: 0 10px 24px rgba(20,215,255,0.14);
}
h1{
  margin:14px 0 12px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-1px;
}
@media (max-width:560px){ h1{font-size:42px} }

.grad{
  background: linear-gradient(135deg, rgba(234,242,255,0.95), rgba(234,242,255,0.92), rgba(234,242,255,0.84));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.grad2{
  background: linear-gradient(135deg, var(--accentA), var(--accentB));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.sub{
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
  max-width:56ch;
  margin:0 0 18px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 22px}

.metric-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
@media (max-width:560px){ .metric-row{grid-template-columns:1fr; } }

.card{
  border-radius:var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.045));
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow2);
}
.metric{
  padding:16px 16px 14px;
}
.metric strong{display:block; font-size:20px; letter-spacing:-0.2px}
.metric span{display:block; margin-top:6px; color:var(--muted2); font-size:13px; line-height:1.35}

.hero-visual{
  position:relative;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.14);
  background: radial-gradient(900px 700px at 20% 20%, rgba(123,97,255,0.24), transparent 60%),
              radial-gradient(900px 700px at 85% 18%, rgba(20,215,255,0.18), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height:420px;
}
.hero-visual img{
  position:relative;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:70% 50%;
  display:block;
  transform: scale(1.02);
  filter:saturate(1.05) contrast(1.02);
}
.hero-visual:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 280px at 30% 18%, rgba(20,215,255,0.16), transparent 60%),
              radial-gradient(560px 360px at 70% 70%, rgba(123,97,255,0.20), transparent 60%);
  pointer-events:none;
}
.hero-visual:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(5,7,19,0.78), rgba(5,7,19,0.18) 55%, rgba(5,7,19,0.58));
  pointer-events:none;
}
.hero-badge{
  position:absolute;
  left:18px; bottom:18px;
  display:flex; gap:12px; align-items:center;
  padding:12px 14px;
  border-radius:18px;
  background: rgba(5,7,19,0.60);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}
.hero-badge strong{font-size:14px}
.hero-badge span{display:block; color:var(--muted2); font-size:12px; margin-top:2px}
.badge-icon{
  width:36px; height:36px; border-radius:14px;
  background: linear-gradient(135deg, rgba(123,97,255,0.9), rgba(20,215,255,0.9));
  display:grid; place-items:center;
  box-shadow: 0 18px 42px rgba(20,215,255,0.14);
}
.badge-icon svg{opacity:0.95}

.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
@media (max-width:980px){ .grid-2{grid-template-columns:1fr} }

.panel{
  padding:22px;
  border-radius:var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  border:1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow2);
}
.panel h3{margin:0 0 10px; font-size:18px; letter-spacing:-0.2px}
.panel p{margin:0; color:var(--muted); line-height:1.55}

.list{
  display:grid; gap:12px; margin:14px 0 0; padding:0; list-style:none;
}
.li{
  display:flex; gap:12px; align-items:flex-start;
}
.tick{
  width:22px; height:22px; border-radius:8px;
  background: rgba(40,224,177,0.12);
  border:1px solid rgba(40,224,177,0.28);
  display:grid; place-items:center;
  flex:0 0 auto;
  margin-top:2px;
}
.tick svg{width:14px; height:14px}
.li strong{display:block; font-size:15px}
.li span{display:block; color:var(--muted2); font-size:13px; margin-top:2px; line-height:1.45}

.h2{
  margin:0 0 8px;
  font-size:40px; letter-spacing:-0.8px;
}
@media (max-width:560px){ .h2{font-size:34px} }
.lead{color:var(--muted); max-width:70ch; line-height:1.55; margin:0 0 18px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width:980px){ .cards{grid-template-columns:1fr 1fr} }
@media (max-width:560px){ .cards{grid-template-columns:1fr} }

.cap{
  padding:18px;
  border-radius:var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  border:1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow2);
}
.cap h4{margin:0 0 8px; font-size:16px}
.cap p{margin:0; color:var(--muted); line-height:1.55}

.split{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:18px;
  align-items:start;
}
@media (max-width:980px){ .split{grid-template-columns:1fr} }

.tabs{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:14px 0 14px;
}
.tab{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color:var(--muted);
  font-weight:800;
  font-size:13px;
  cursor:pointer;
}
.tab:hover{background:rgba(255,255,255,0.07); color:var(--text)}
.tab.is-active{
  background: linear-gradient(135deg, rgba(123,97,255,0.40), rgba(20,215,255,0.22));
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.10);
}
.table th,.table td{
  padding:12px 12px;
  font-size:13px;
  text-align:left;
  color:var(--muted);
}
.table th{
  color:rgba(234,242,255,0.88);
  font-weight:800;
  background: rgba(255,255,255,0.04);
}
.table tr:not(:last-child) td{border-bottom:1px solid rgba(255,255,255,0.08)}
.table td strong{color:var(--text); font-weight:800}

.coverage-wrap{
  display:grid;
  gap:12px;
}
.searchbar{
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
}
.searchbar input{
  width:100%;
  background:transparent;
  border:0;
  outline:none;
  color:var(--text);
  font-weight:700;
  font-size:14px;
}
.searchbar input::placeholder{color:rgba(234,242,255,0.42)}
.searchmeta{color:var(--muted2); font-size:13px; white-space:nowrap}

.cov-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width:980px){ .cov-grid{grid-template-columns: repeat(3, 1fr)} }
@media (max-width:760px){ .cov-grid{grid-template-columns: repeat(2, 1fr)} }
@media (max-width:460px){ .cov-grid{grid-template-columns: 1fr} }

.cov-card{
  padding:14px 14px 12px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.cov-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}
.cov-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:10px;
}
.cov-ccy{
  font-weight:900;
  letter-spacing:0.6px;
  font-size:12px;
  color: rgba(234,242,255,0.92);
}
.cov-dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, rgba(123,97,255,0.9), rgba(20,215,255,0.9));
  box-shadow: 0 12px 26px rgba(20,215,255,0.14);
}
.cov-country{
  font-weight:800;
  letter-spacing:-0.2px;
  font-size:14px;
}
.empty{
  padding:18px;
  border-radius:18px;
  background: rgba(255,255,255,0.04);
  border:1px dashed rgba(255,255,255,0.18);
  color:var(--muted);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(234,242,255,0.78);
  font-weight:800;
  font-size:12px;
}
.chip--muted{opacity:0.92}

.footer{
  padding:44px 0 54px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:rgba(234,242,255,0.55);
}
.footgrid{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footgrid a{color:rgba(234,242,255,0.65)}
.footgrid a:hover{color:rgba(234,242,255,0.9)}

.form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:8px;
}
label{font-weight:800; font-size:13px; color:rgba(234,242,255,0.82)}
input, textarea, select{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color:var(--text);
  outline:none;
  font-weight:650;
}
textarea{min-height:104px; resize:vertical}
input:focus, textarea:focus, select:focus{border-color: rgba(20,215,255,0.35); box-shadow: 0 0 0 4px rgba(20,215,255,0.10)}
.small{color:var(--muted2); font-size:12px; line-height:1.4}

[data-reveal]{opacity:0; transform: translateY(10px); transition: opacity 520ms ease, transform 520ms ease}
[data-reveal].is-revealed{opacity:1; transform:none}

@media (prefers-reduced-motion: no-preference){
  .hero-visual:before{
    animation: floatGlow 9s ease-in-out infinite;
  }
  .btn--primary{
    position:relative;
    overflow:hidden;
  }
  .btn--primary:after{
    content:"";
    position:absolute; inset:-60% -30%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 45%);
    transform: translateX(-30%);
    animation: sheen 6.5s ease-in-out infinite;
    pointer-events:none;
  }
}
@keyframes floatGlow{
  0%,100%{transform: translateY(0)}
  50%{transform: translateY(-8px)}
}
@keyframes sheen{
  0%, 100%{transform: translateX(-25%)}
  50%{transform: translateX(25%)}
}
