@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap');

:root{
  --bg:#f4fbff;
  --bg2:#eff7ff;
  --panel:#ffffff;
  --panel-soft:#f2fbff;
  --text:#0b1b22;
  --muted:#4d6a73;
  --line:#cfe6ee;

  --accent:#0ea5e9;
  --accent2:#22c55e;
  --accent3:#8b5cf6;

  --shadow: 0 20px 55px rgba(13, 74, 90, .12);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 18% -6%, rgba(14,165,233,.25), transparent 62%),
    radial-gradient(780px 390px at 88% 10%, rgba(139,92,246,.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{color:inherit; text-decoration:none}

.wrap{
  width:min(1120px, calc(100% - 28px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(244, 251, 255, .84);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(207,230,238,.85);
}
.site-header .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  font-weight:800;
  letter-spacing:.02em;
  display:flex;
  align-items:baseline;
  gap:10px;
  white-space:nowrap;
}
.brand .dot{
  width:12px; height:12px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent), var(--accent3));
  box-shadow:0 0 0 7px rgba(14,165,233,.10);
}
.brand span{
  color:var(--accent);
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.nav a{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(207,230,238,.95);
  background:rgba(255,255,255,.75);
  color:var(--muted);
  font-weight:700;
  font-size:.95rem;
}
.nav a.active{
  border-color: rgba(14,165,233,.55);
  background: linear-gradient(180deg, rgba(14,165,233,.18), rgba(14,165,233,.05));
  color:#073449;
}

.page{
  padding:22px 0 40px;
}

.lead{
  color:var(--muted);
  font-size:1.06rem;
  margin:10px 0 14px;
}

.section{
  margin-top:22px;
}

.panel{
  background:var(--panel);
  border:1px solid rgba(207,230,238,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

h1{
  font-size:clamp(2.05rem, 4.2vw, 3.2rem);
  margin:0;
  line-height:1.08;
}
h2{
  margin:0 0 10px;
  font-size:1.55rem;
  line-height:1.18;
}
h3{
  margin:0 0 8px;
  font-size:1.08rem;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
  font-size:.78rem;
  color:rgba(14,165,233,.92);
  margin:0 0 10px;
}

.criteria{
  margin:14px 0 18px;
  padding-left:18px;
}
.criteria li{
  margin:7px 0;
  color:#163742;
}

.rating-list{
  display:grid;
  gap:14px;
}

.rating-card{
  border-radius:calc(var(--radius) + 2px);
  border:1px solid rgba(207,230,238,.95);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow: 0 16px 45px rgba(10,56,73,.08);
  padding:18px;
}
.rating-card[data-rank="1"]{
  border-color: rgba(34,197,94,.45);
  background:
    radial-gradient(750px 240px at 10% 0%, rgba(34,197,94,.16), transparent 60%),
    radial-gradient(560px 220px at 92% 20%, rgba(14,165,233,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
}

.rating-top{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}

.rank-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:.78rem;
  border:1px solid rgba(207,230,238,.95);
  background:var(--panel-soft);
}

.rating-card[data-rank="1"] .rank-pill{
  border-color: rgba(34,197,94,.4);
  background: rgba(34,197,94,.10);
}

.rating-meta{
  min-width:160px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(207,230,238,.95);
  background: rgba(242, 251, 255, .88);
  text-align:right;
}
.rating-meta strong{
  display:block;
  font-size:1.45rem;
  line-height:1.15;
}
.rating-meta span{
  display:block;
  color:var(--muted);
  font-weight:700;
  font-size:.95rem;
}

.tag-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:14px 0 14px;
}
.chip{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(207,230,238,.95);
  background:rgba(255,255,255,.72);
  font-weight:700;
  color:#2a4954;
  font-size:.93rem;
}

.detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.detail-block{
  border-radius:16px;
  border:1px dashed rgba(207,230,238,.95);
  background: rgba(242,251,255,.6);
  padding:14px;
}
.detail-block p{margin:0}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid rgba(207,230,238,.95);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.75);
}
.table th,.table td{
  padding:13px 14px;
  border-bottom:1px solid rgba(207,230,238,.85);
  vertical-align:top;
}
.table th{
  background: rgba(14,165,233,.10);
  text-align:left;
  color:#063241;
  font-weight:800;
  font-size:.95rem;
}
.table tr:last-child td{border-bottom:none}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.review-card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(207,230,238,.95);
  border-radius:var(--radius);
  padding:18px;
}
.review-card p{margin:0}
.review-head{
  display:flex;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.stars{
  color:#0ea5e9;
  font-weight:900;
}

.faq-item{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(207,230,238,.95);
  border-radius:var(--radius);
  padding:14px 16px;
  margin-top:12px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:800;
}
.faq-item p{margin:12px 0 0; color:var(--muted)}
.faq-wrap{
  display:grid;
  gap:12px;
}

.related{
  margin-top:18px;
  padding:16px;
  background:rgba(242, 251, 255, .72);
  border:1px solid rgba(207,230,238,.95);
  border-radius:var(--radius);
}
.related a{
  font-weight:800;
  color:#064b67;
  text-decoration:underline;
  text-decoration-color: rgba(14,165,233,.45);
}
.related .list{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}

footer.site-footer{
  padding:26px 0 36px;
  color:var(--muted);
  border-top:1px solid rgba(207,230,238,.85);
  background:rgba(244, 251, 255, .40);
}
.site-footer .inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

@media (max-width: 880px){
  .detail-grid{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:1fr}
}

