/* Static rating site styles (no JS). */
:root{
  --bg0:#070A14;
  --bg1:#0B1230;
  --card:#0f1a3f;
  --card2:#0d1736;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --border:rgba(255,255,255,.12);
  --accent:#6EE7FF;
  --accent2:#A78BFA;
  --good:#34D399;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(167,139,250,.22), transparent 55%),
    radial-gradient(700px 420px at 80% 10%, rgba(110,231,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}

.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position:fixed; left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:rgba(0,0,0,.7); border:1px solid var(--border); border-radius:12px; z-index:50;
}

.container{
  max-width:1120px;
  margin:0 auto;
  padding: 28px 18px 54px;
}

.brand-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
}
.brand-line .site-domain{
  color:var(--muted);
  font-size:14px;
  letter-spacing:.02em;
}

h1{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.06;
  margin: 10px 0 10px;
}

.lead{
  color:var(--muted);
  font-size: 16.5px;
  line-height:1.6;
  margin: 0 0 18px;
  max-width: 78ch;
}

.section-title{
  font-size: 18px;
  margin: 20px 0 10px;
  letter-spacing:.01em;
}

.criteria{
  list-style:none;
  padding:0;
  margin: 6px 0 18px;
  display:grid;
  gap:10px;
}
.criteria li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:14px;
}
.criteria .check{
  width:26px; height:26px;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(110,231,255,.22), rgba(167,139,250,.22));
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
  border:1px solid rgba(255,255,255,.12);
  font-weight:700;
  color:var(--accent);
}
.criteria .crit-text{
  color: rgba(234,240,255,.88);
  font-size: 15.5px;
  line-height:1.45;
}

.top5-section{
  margin-top: 10px;
}

.top5-section .section-title{
  margin-top: 0;
}

.top5{
  list-style:none;
  padding:0;
  margin: 0;
  display:grid;
  gap:14px;
}

.brand-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.brand-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.brand-title{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.rank-pill{
  flex: 0 0 auto;
  min-width: 54px;
  padding: 8px 10px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.15);
  background: linear-gradient(135deg, rgba(110,231,255,.22), rgba(167,139,250,.22));
  color: var(--text);
  font-weight: 800;
  text-align:center;
}
.brand-name{
  margin: 2px 0 0;
  font-size: 20px;
  letter-spacing:.01em;
}

.brand-score{
  color: rgba(234,240,255,.9);
  font-weight: 800;
  padding-top: 2px;
  font-size: 15px;
}

.brand-blurb{
  color: var(--muted);
  margin: 10px 0 12px;
  max-width: 80ch;
  line-height:1.6;
}

.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.highlight{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px 12px;
  min-height: 90px;
}
.highlight h4{
  margin:0 0 8px;
  font-size: 13px;
  letter-spacing:.02em;
  color: rgba(234,240,255,.82);
  text-transform: uppercase;
}
.highlight ul{
  margin:0;
  padding-left: 18px;
}
.highlight li{
  margin: 4px 0;
  color: rgba(234,240,255,.88);
  font-size: 14px;
  line-height:1.45;
}

.brand-note{
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,.18);
  color: rgba(234,240,255,.88);
  background: rgba(255,255,255,.03);
}
.brand-note strong{
  color: var(--accent);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.links-block{
  margin-top: 24px;
}
.links-block .section-title{
  margin-bottom: 12px;
}

.links-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.link-card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 14px;
}
.link-card .link-title{
  font-weight: 800;
  margin:0 0 6px;
}
.link-card .link-desc{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.related-links{
  margin-top: 26px;
  padding: 16px;
  border-radius: 18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.related-links ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(234,240,255,.9);
}

.faq{
  margin-top: 12px;
}
details{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
  margin: 12px 0;
}
summary{
  cursor:pointer;
  font-weight: 800;
}
details p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height:1.65;
}

.footer{
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 14px;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.text-card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 14px;
}
.text-card h3{
  margin:0 0 8px;
  font-size: 16px;
}
.text-card p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
}

@media (max-width: 900px){
  .brand-grid{ grid-template-columns: 1fr; }
  .links-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
}

