:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#6b7280;
  --border:#e5e7eb;

  --hero1:#0b1220;
  --hero2:#1b263b;

  --green:#7CDE4A;
  --greenDark:#3a7a1e;

  --btnDark:#0b1220;
  --btnSoft:#f3f4f6;

  --shadow:0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

img{max-width:100%;height:auto}
a{color:inherit}

.wrap{max-width:1120px;margin:0 auto;padding:18px 16px 44px}
.container{max-width:980px;margin:0 auto}

/* ===== Top nav ===== */
header{
  position:sticky; top:0; z-index:20;
  background:rgba(246,247,251,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(229,231,235,.75);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  max-width:1120px;margin:0 auto;
}
.brand{display:flex;align-items:center;gap:10px;min-width:190px;text-decoration:none}
.logoDot{
  width:18px;height:18px;border-radius:6px;
  background:linear-gradient(180deg,#9dff6f,#55c72a);
  box-shadow:0 6px 16px rgba(124,222,74,.35);
  flex:0 0 18px;
}
.brandName{font-weight:900;font-size:14px;line-height:1.1}
.brandSub{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-top:2px}
.navlinks{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-end;

  /* Prevent awkward wrapping that can shove the menu to the far right on some pages */
  flex-wrap:nowrap;
  max-width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.navlinks a{flex:0 0 auto}
.navlinks a{
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  color:#111827;
  opacity:.78;
  padding:8px 10px;
  border-radius:12px;
}
.navlinks a:hover{opacity:1;background:rgba(17,24,39,.06)}

/* ===== Hero ===== */
.hero{
  border-radius:22px;
  background:linear-gradient(135deg, rgba(124,222,74,.12), rgba(124,222,74,0) 45%),
             radial-gradient(1000px 420px at 0% 0%, rgba(124,222,74,.22), transparent 55%),
             linear-gradient(135deg, var(--hero1), var(--hero2));
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:22px;
}
.kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(233,238,249,.78);
  font-weight:800;
  margin:0 0 10px;
}
.hero h1{
  margin:0 0 12px;
  font-size:40px;
  line-height:1.08;
  color:#fff;
  letter-spacing:-.02em;
}
.lead{
  margin:0 0 16px;
  color:rgba(233,238,249,.86);
  max-width:70ch;
  font-size:16px;
}

/* Buttons */
.btnrow{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  font-weight:900;
  border-radius:14px;
  padding:12px 18px;
  min-height:44px;
  line-height:1.1;
  white-space:nowrap;
  border:1px solid transparent;
}
.btn-primary{background:var(--green);color:#0b1220;box-shadow:0 10px 24px rgba(124,222,74,.18)}
.btn-ghost{background:rgba(255,255,255,.10);color:#fff;border-color:rgba(255,255,255,.16)}
.btn-dark{background:var(--btnDark);color:#fff}
.btn-soft{background:var(--btnSoft);color:#111827;border-color:#e5e7eb}


.hero h2,
.hero h3{
  color:#fff;
  margin:18px 0 10px;
  line-height:1.18;
}
.hero p:not(.kicker):not(.lead):not(.heroNote){
  color:rgba(233,238,249,.86);
}
.hero ul,
.hero ol{color:rgba(233,238,249,.86)}
.hero li{color:inherit}
.hero [data-vc-breadcrumb]{
  color:rgba(233,238,249,.78) !important;
}
.hero [data-vc-breadcrumb] a{
  color:#fff !important;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.28);
}
.hero [data-vc-breadcrumb] a:hover{
  border-bottom-color:rgba(255,255,255,.65);
}
.heroNote{
  margin-top:12px;
  color:rgba(233,238,249,.70);
  font-size:12.5px;
  line-height:1.35;
}

/* ===== Disclosure ===== */
.disclosure{
  margin-top:14px;
  border-radius:18px;
  background:#eaf7e8;
  border:1px solid #cfe9c9;
  padding:14px 16px;
  color:#0b1220;
}
.disclosure p{margin:0 0 8px;font-size:13.5px}
.disclosure p:last-child{margin:0}
.disclosure strong{font-weight:900}

/* ===== Content ===== */
.breadcrumb{margin:16px 0 8px;color:var(--muted);font-size:13px}
.breadcrumb a{text-decoration:none;border-bottom:1px solid rgba(107,114,128,.35)}
.breadcrumb a:hover{border-bottom-color:rgba(107,114,128,.9)}

.sectionTitle{margin:22px 0 6px;font-size:26px;letter-spacing:-.01em}
.sectionSub{margin:0 0 14px;color:var(--muted);font-size:14px}

/* ===== Cards grid ===== */
.grid{display:grid;grid-template-columns:1fr;gap:14px}
@media (min-width:860px){.grid{grid-template-columns:1fr 1fr}}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
  padding:16px;
  overflow:visible;
}
.cardTop{display:flex;gap:12px;align-items:flex-start}
.icon{
  width:56px;height:56px;border-radius:16px;
  background:#eef2ff;
  border:1px solid #e5e7eb;
  display:flex;align-items:center;justify-content:center;
  flex:0 0 56px;
}
.icon svg{width:30px;height:30px}
.cardTitle{margin:0;font-size:16px;font-weight:900;line-height:1.2}
.cardMeta{margin:6px 0 0;font-size:13px;color:var(--muted)}
.cardMeta strong{color:#111827}
.bullets{margin:12px 0 12px;padding-left:18px}
.bullets li{margin:7px 0;color:#111827}

.cta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:10px}
.cta .btn{min-height:42px;padding:11px 16px;border-radius:14px}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  font-weight:900;font-size:12px;
  border-radius:999px;padding:8px 10px;
  border:1px solid #cfe9c9;background:#eaf7e8;color:#214a14;
  white-space:nowrap;
}
.pillDot{width:8px;height:8px;border-radius:999px;background:var(--green);box-shadow:0 6px 14px rgba(124,222,74,.35)}

/* ===== List cards (category/blog) ===== */
.postGrid{display:grid;grid-template-columns:1fr;gap:14px}
@media (min-width:860px){.postGrid{grid-template-columns:1fr 1fr}}
.postCard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
}
.postCard h3{margin:0 0 8px;font-size:18px;letter-spacing:-.01em}
.postCard p{margin:0 0 10px;color:#111827}
.postCard .meta{color:var(--muted);font-size:13px;margin:0 0 12px}
.postCard a{text-decoration:none}
.postCard a:hover{text-decoration:underline}

.pagination{display:flex;gap:10px;justify-content:center;margin:18px 0 0;flex-wrap:wrap}

/* ===== Table ===== */
.details{
  margin-top:18px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,.04);
}
details summary{
  cursor:pointer;
  list-style:none;
  padding:14px 16px;
  font-weight:900;
  background:#f3f4f6;
  border-bottom:1px solid var(--border);
}
details summary::-webkit-details-marker{display:none}
.tableHint{padding:10px 16px;font-size:12.5px;color:var(--muted);border-bottom:1px solid var(--border);background:#fff}
.tableWrap{overflow:auto;-webkit-overflow-scrolling:touch}
.tableWrap table{width:100%;border-collapse:collapse;min-width:860px}
.tableWrap th,.tableWrap td{padding:12px 14px;text-align:left;vertical-align:top}
.tableWrap th{
  background:#fbfbfc;
  font-size:12px;
  color:#374151;
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:1;
}
.tableWrap td{border-bottom:1px solid #f0f0f0;font-size:13.5px}
.tableWrap tr:last-child td{border-bottom:0}
.productName{font-weight:900}
.brandSmall{display:block;color:var(--muted);font-size:12px;margin-top:4px}
.actionCell .btn{min-height:38px;padding:10px 14px;border-radius:12px}

/* ===== Info cards ===== */
.info{
  margin-top:16px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.03);
}
.info h2{margin:0 0 8px;font-size:20px}
.info p{margin:0 0 10px;color:#111827}
.info p:last-child{margin:0}
.tip{margin-top:10px;padding:12px 14px;border-radius:16px;background:#fff7ed;border:1px solid #fed7aa;color:#7c2d12;font-weight:800}

footer.siteFooter{margin-top:22px;color:var(--muted);font-size:12.5px;text-align:center;padding:18px 0}
footer.siteFooter a{color:inherit}

/* Mobile tune */
@media (max-width:520px){
  .hero h1{font-size:32px}
  .hero{padding:18px}
  .navlinks{gap:8px}
  .navlinks a{padding:8px 8px}
}


.quicklinks{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}
.quicklinks a{display:inline-flex;padding:10px 12px;border:1px solid var(--border);border-radius:12px;background:#fff;text-decoration:none;font-weight:800;font-size:13px}
.relatedCard{margin-top:16px;background:#ffffff;border:1px solid var(--border);border-radius:18px;padding:16px;box-shadow:0 8px 22px rgba(0,0,0,.03)}
.relatedCard h2{margin:0 0 8px;font-size:20px}
.relatedCard ul{margin:0;padding-left:18px}
.relatedCard li{margin:7px 0}
.stressNote{margin-top:10px;padding:12px 14px;border-radius:16px;background:#eff6ff;border:1px solid #bfdbfe;color:#1e3a8a}



/* ===== Trust / article upgrades ===== */
.metaRow{display:flex;flex-wrap:wrap;gap:10px;margin:12px 0 0}
.metaPill{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);color:#fff;font-size:12px;font-weight:800}
.authorBox,.reviewBox,.sourceBox,.warningBox{
  margin-top:16px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow:0 8px 22px rgba(0,0,0,.03);
}
.authorBox h2,.reviewBox h2,.sourceBox h2,.warningBox h2{margin:0 0 8px;font-size:20px}
.authorBox p,.reviewBox p,.sourceBox p,.warningBox p{margin:0 0 10px;color:#111827}
.authorMeta{display:grid;grid-template-columns:1fr;gap:10px}
@media (min-width:860px){.authorMeta{grid-template-columns:1.2fr .8fr}}
.checkGrid{display:grid;grid-template-columns:1fr;gap:14px}
@media (min-width:860px){.checkGrid{grid-template-columns:1fr 1fr}}
.checkCard{background:#fff;border:1px solid var(--border);border-radius:16px;padding:14px}
.checkCard h3{margin:0 0 8px;font-size:16px}
.sourceList{margin:0;padding-left:18px}
.sourceList li{margin:7px 0}
.warningBox{background:#fff7ed;border-color:#fed7aa}
.warningBox h2{color:#7c2d12}
.hubIntro{margin-top:16px}
.noteStrong{font-weight:900}


/* ===== Hero readability hard-fix ===== */
.hero > h2,
.hero > h3,
.hero > h4,
.hero > p,
.hero > ul,
.hero > ol,
.hero > div:not(.btnrow),
.hero > div:not(.btnrow) p,
.hero > div:not(.btnrow) li,
.hero > div:not(.btnrow) span,
.hero > div:not(.btnrow) strong,
.hero > section,
.hero > section p,
.hero > section li{
  color: rgba(233,238,249,.92) !important;
}
.hero > h2,
.hero > h3,
.hero > h4{
  color:#ffffff !important;
}
.hero a:not(.btn){
  color:#ffffff !important;
  text-decoration-color:rgba(255,255,255,.35);
}
.hero [style*="color:#6b7280"],
.hero [style*="color:var(--muted)"],
.hero [style*="color: #6b7280"],
.hero [style*="color: var(--muted)"]{
  color:rgba(233,238,249,.9) !important;
}
.hero .sectionSub,
.hero .cardMeta,
.hero .cardMeta strong,
.hero .bullets li{
  color:rgba(233,238,249,.9) !important;
}

/* ===== Footer polish ===== */
.footer__inner{display:grid;gap:10px}
.footer__links{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.footer__links a{text-decoration:none;border-bottom:1px solid rgba(107,114,128,.35)}
.footer__links a:hover{border-bottom-color:rgba(107,114,128,.9)}
.footer__explore a{text-decoration:none;border-bottom:1px solid rgba(107,114,128,.35)}
.footer__explore a:hover{border-bottom-color:rgba(107,114,128,.9)}
.contentToc{margin-top:16px;background:#fff;border:1px solid var(--border);border-radius:18px;padding:16px;box-shadow:0 8px 22px rgba(0,0,0,.03)}
.contentToc h2{margin:0 0 8px;font-size:20px}
.contentToc ul{margin:0;padding-left:18px}
.contentToc li{margin:7px 0}
