:root{
  --bg:#070b14;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.04);
  --muted: rgba(234,240,255,.72);
  --text: rgba(234,240,255,.96);
  --line: rgba(255,255,255,.10);
  --chip: rgba(255,255,255,.07);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);
  --radius: 22px;
  --max: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --accentA: #6ee7ff;
  --accentB: #a78bfa;
  --accentC: #34d399;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:var(--font);
  background:
    radial-gradient(1100px 700px at 18% -10%, rgba(110,231,255,.14), transparent 55%),
    radial-gradient(900px 600px at 85% 35%, rgba(167,139,250,.16), transparent 60%),
    radial-gradient(800px 600px at 30% 95%, rgba(52,211,153,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 40%),
    var(--bg);
  color:var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:24px}
.header{
  display:flex; align-items:flex-start; justify-content:space-between; gap:18px;
  padding:18px 0 6px;
}
.brand{
  display:flex; flex-direction:column; gap:8px;
}
.brand h1{margin:0; font-size:28px; letter-spacing:.2px}
.brand p{margin:0; color:var(--muted); line-height:1.45}
.badges{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.badge{
  font-size:12px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
}
.hero{
  margin-top:14px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.disclosure{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
  border-left:3px solid rgba(110,231,255,.5);
  padding:10px 12px;
  background:rgba(110,231,255,.06);
  border-radius:12px;
}
.grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  margin-top:16px;
}
@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
  .badges{justify-content:flex-start}
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h2{margin:0 0 10px; font-size:18px}
.tableWrap{overflow:auto; border-radius:14px; border:1px solid var(--line)}
table{border-collapse:collapse; width:100%; min-width:760px; background: rgba(0,0,0,.12)}
th, td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  vertical-align:middle;
}
th{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:.3px;
  text-transform:uppercase;
  background: rgba(255,255,255,.03);
}
tr:last-child td{border-bottom:none}
.providerCell{display:flex; align-items:center; gap:10px}
.logo{
  width:34px; height:34px;
  border-radius:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.logo img{width:100%; height:100%; object-fit:contain; padding:6px}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background: var(--chip);
  border: 1px solid var(--line);
  font-size:12px;
  color:var(--muted);
}
.bestChip{
  color: var(--text);
  border-color: rgba(110,231,255,.5);
  background: rgba(110,231,255,.12);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  background: var(--btn);
  color: var(--btnText);
  text-decoration:none;
  font-weight:700;
  border:1px solid rgba(255,255,255,.12);
  transition: transform .06s ease, opacity .15s ease;
  white-space:nowrap;
}
.btn:hover{opacity:.92}
.btn:active{transform:translateY(1px)}
.small{font-size:12px; color:var(--muted)}
.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.providerCardHeader{
  display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px
}
.providerTitle{
  display:flex; align-items:center; gap:10px
}
.providerTitle h3{margin:0; font-size:16px}
.rating{
  color:var(--muted);
  font-size:12px;
  display:flex; align-items:center; gap:6px;
}
.stars{letter-spacing:1px; color: rgba(110,231,255,.9)}
.kv{
  display:flex; gap:10px; flex-wrap:wrap; margin:10px 0;
}
.kv .chip{font-size:12px}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 640px){ .split{grid-template-columns:1fr} }
ul{margin:8px 0 0; padding-left:18px; color:var(--muted)}
footer{
  margin:22px 0 8px;
  color:var(--muted);
  font-size:13px;
}
.footerLinks{display:flex; gap:14px; flex-wrap:wrap; margin-top:8px}
.footerLinks a{color:var(--muted); text-decoration:none}
.footerLinks a:hover{text-decoration:underline}
/* Ads / QS helpers */
.sectionTitle{margin:0 0 10px; font-size:18px}
.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{font-size:12px; padding:8px 10px; border-radius:999px; border:1px solid var(--line); background:rgba(255,255,255,.03); color:var(--muted)}
.notice{
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 12px;
  color: var(--muted);
  line-height:1.6;
}
.faq details{
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(255,255,255,.02);
}
.faq details + details{margin-top:10px}
.faq summary{cursor:pointer; font-weight:800; color:var(--text)}
.faq p{margin:10px 0 0; color:var(--muted); line-height:1.7}
.klist{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.callout{
  display:flex; align-items:flex-start; gap:10px;
  padding:12px;
  border-radius: 14px;
  border:1px solid rgba(110,231,255,.35);
  background: rgba(110,231,255,.07);
  color: var(--muted);
  line-height:1.6;
}
.callout b{color:var(--text)}
/* --- Beauty pass --- */
@media (prefers-reduced-motion: no-preference){
  .card, .hero{animation: popIn .45s ease both}
  @keyframes popIn{from{opacity:0; transform:translateY(8px)} to{opacity:1; transform:none}}
  .btn:hover{transform: translateY(-1px)}
  .btn:active{transform: translateY(0px)}
}
.container{max-width:var(--max)}
.header{padding:20px 0 10px}
.brand h1{font-size:30px; letter-spacing:.2px}
.brand p{font-size:14px}

.hero{
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    radial-gradient(600px 280px at 20% 0%, rgba(110,231,255,.14), transparent 60%),
    radial-gradient(520px 260px at 90% 0%, rgba(167,139,250,.12), transparent 60%);
  border-radius: calc(var(--radius) + 4px);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(90deg, rgba(110,231,255,.18), rgba(167,139,250,.14), rgba(52,211,153,.10));
  filter: blur(26px);
  opacity:.35;
  pointer-events:none;
}
.hero > *{position:relative}

.card{
  border:1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.tableWrap{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.14);
}
table{background: transparent}
th{
  background: rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.10);
}
td{border-bottom:1px solid rgba(255,255,255,.08)}
tr:hover td{background: rgba(255,255,255,.03)}
.logo{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.badge{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.chip{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.bestChip{
  border-color: rgba(110,231,255,.55);
  background: rgba(110,231,255,.14);
}

.btn{
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
  color: rgba(7,11,20,.95);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: transform .12s ease, opacity .15s ease, box-shadow .15s ease;
}
.btn:hover{
  opacity: .96;
  box-shadow: 0 14px 34px rgba(0,0,0,.32);
}
.btn:active{opacity:.92}

.notice{background: rgba(255,255,255,.03)}
.disclosure{
  background: rgba(110,231,255,.08);
  border-left-color: rgba(110,231,255,.7);
}
.callout{
  border-color: rgba(167,139,250,.45);
  background: rgba(167,139,250,.09);
}
.pill{
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.footerLinks a{opacity:.9}
.footerLinks a:hover{opacity:1}
/* --- Plus features: sticky nav + light mode + best ribbon --- */
.navbar{
  position: sticky;
  top: 0;
  z-index: 50;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,11,20,.55);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.navLeft{display:flex; align-items:center; gap:10px}
.navLogo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(110,231,255,.70), rgba(167,139,250,.55));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.navTitle{display:flex; flex-direction:column; line-height:1.1}
.navTitle b{font-size:13px; letter-spacing:.2px}
.navTitle span{font-size:12px; color: var(--muted)}
.navLinks{display:flex; gap:10px; flex-wrap:wrap}
.navLinks a{
  text-decoration:none;
  font-size:12px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.navLinks a:hover{color: var(--text); background: rgba(255,255,255,.05)}
.navRight{display:flex; gap:10px; align-items:center}
.iconBtn{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 11px;
  cursor:pointer;
  font-weight:800;
}
.iconBtn:hover{background: rgba(255,255,255,.06)}
.iconBtn:active{transform: translateY(1px)}
.search{
  width: 240px;
  max-width: 40vw;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
.search::placeholder{color: rgba(234,240,255,.55)}
@media (max-width: 760px){
  .search{display:none}
}

/* Ribbon badge on best provider card */
.ribbonWrap{position:relative}
.ribbon{
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(7,11,20,.95);
  background: linear-gradient(90deg, rgba(110,231,255,.95), rgba(52,211,153,.90));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

/* Light mode overrides */
html[data-theme="light"]{
  --bg:#f6f7fb;
  --card: rgba(255,255,255,.92);
  --card2: rgba(255,255,255,.80);
  --muted: rgba(17,24,39,.70);
  --text: rgba(17,24,39,.96);
  --line: rgba(17,24,39,.10);
  --chip: rgba(17,24,39,.06);
  --shadow: 0 18px 60px rgba(17,24,39,.12);
  --shadow2: 0 10px 30px rgba(17,24,39,.10);
}
html[data-theme="light"] body{
  background:
    radial-gradient(1100px 700px at 18% -10%, rgba(110,231,255,.18), transparent 55%),
    radial-gradient(900px 600px at 85% 35%, rgba(167,139,250,.18), transparent 60%),
    radial-gradient(800px 600px at 30% 95%, rgba(52,211,153,.12), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.02), transparent 40%),
    var(--bg);
}
html[data-theme="light"] .navbar{
  background: rgba(255,255,255,.70);
  border-color: rgba(17,24,39,.10);
}
html[data-theme="light"] .btn{
  color: rgba(255,255,255,.95);
  background: linear-gradient(90deg, rgba(17,24,39,.92), rgba(17,24,39,.84));
  border-color: rgba(17,24,39,.12);
}
html[data-theme="light"] .btn:hover{opacity:.95}

/* --- Mobile responsiveness improvements --- */
img{max-width:100%; height:auto}

@media (max-width: 640px){
  .container{padding:14px}
  .header{flex-direction:column; align-items:flex-start}
  .brand h1{font-size:22px}
  .brand p{font-size:13px}
  .badges{justify-content:flex-start}
  .hero{padding:16px}
  .card{padding:14px}
  .grid{grid-template-columns:1fr}

  /* Navbar */
  .navbar{flex-wrap:wrap; gap:8px; padding:10px}
  .navLinks{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:6px;
  }
  .navLinks a{flex:0 0 auto; white-space:nowrap}
  .navRight{width:100%; justify-content:space-between}
  .search{display:none}

  /* Comparison table: hide less important columns on small screens */
  table{min-width:0}
  th:nth-child(3), td:nth-child(3),
  th:nth-child(4), td:nth-child(4){
    display:none;
  }

  .providerCell{gap:8px}
  .logo{width:30px; height:30px; border-radius:10px}
  .btn{padding:9px 10px}
}

@media (max-width: 420px){
  /* Keep only Provider + Button (price optional) */
  th:nth-child(2), td:nth-child(2){
    display:none;
  }
}

/* --- Extra mobile fixes (no table) --- */
html, body{overflow-x:hidden}
.navLinks{max-width:100%}
.navbar{margin-left:0; margin-right:0}
@media (max-width: 640px){
  .navLinks{border-top:1px solid rgba(255,255,255,.10); padding-top:8px}
  .navRight{gap:8px}
  .iconBtn{padding:8px 10px}
  .providerCardHeader{flex-direction:column; align-items:flex-start}
  .providerCardHeader .btn{width:100%}
  .kv{gap:8px}
}


/* Mobile sticky CTA */
@media (max-width:640px){
  .stickyCta{
    position:fixed;
    bottom:12px;
    left:12px;
    right:12px;
    z-index:999;
    padding:12px;
    border-radius:14px;
    background: linear-gradient(90deg, rgba(110,231,255,.95), rgba(52,211,153,.9));
    color:#071014;
    font-weight:900;
    text-align:center;
    box-shadow:0 16px 36px rgba(0,0,0,.45);
  }
}


/* Provider name visibility */
.providerIdentity{display:flex; flex-direction:column; align-items:flex-start}
.providerName{line-height:1.2}


/* Best Pick highlight */
.bestPickLabel{
  margin-left:8px;
  padding:4px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  background:linear-gradient(90deg, #6ee7ff, #34d399);
  color:#071014;
}
.card.ribbonWrap{
  border:2px solid rgba(110,231,255,.6);
  box-shadow:0 0 0 3px rgba(110,231,255,.15);
}


/* Site domain branding */
.siteDomain{
  letter-spacing:.3px;
}


/* Affiliate domain visibility */
.providerDomain{
  font-size:12px;
  opacity:.75;
  margin-top:2px;
}


/* Domain-only brand display */
.domainOnly{
  font-weight:900;
  font-size:16px;
  letter-spacing:.3px;
}
