:root{
  --bg:#292929;          /* background */
  --fg:#f5f5f5;          /* main text */
  --muted:#bbbbbb;       /* secondary text */
  --accent:#4dd0e1;      /* teal accent */
  --card:#333333;        /* card surface */
  --stroke:#444444;      /* borders */
  --glow:#00000066;      /* shadow tint */
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
}

/* ---------- Base ---------- */
*{box-sizing:border-box}
html,body{margin:0;background:var(--bg);color:var(--fg);font-family:var(--font)}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
p{margin:0 0 10px;color:var(--muted)}
h2{margin:0 0 8px;font-size:18px}
ul{margin:0 0 8px 18px}
.sub{color:var(--muted);font-size:13.5px;margin:0 0 6px}

/* ---------- Top bar ---------- */
.top{
  max-width:980px;margin:0 auto;padding:18px 22px;
  display:flex;align-items:center;justify-content:space-between;gap:18px
}
.brand{display:flex;align-items:center;gap:12px}
.wordmark{font-weight:700;letter-spacing:.2px}
.pill{color:var(--muted);border:1px solid var(--stroke);padding:4px 10px;border-radius:999px;font-size:12px}
.kbd{
  font-family:ui-monospace,Menlo,Consolas,monospace;font-size:12px;
  padding:6px 10px;border:1px solid var(--stroke);border-radius:8px;
  background:#1e1e1e;color:#cfd8dc
}

/* ---------- Hero ---------- */
.hero{
  max-width:980px;margin:0 auto;padding:36px 22px 8px;text-align:center
}
.banner{width:100%;height:auto;border:1px solid var(--stroke);border-radius:12px;box-shadow:0 18px 40px -30px var(--glow)}
.lead{color:var(--muted);margin:14px 0 18px}
.cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn{
  display:inline-block;padding:12px 16px;border-radius:10px;border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(77,208,225,.18), rgba(77,208,225,.05));
  color:var(--fg);font-weight:600
}
.btn.ghost{background:none}

/* ---------- Layout ---------- */
main{max-width:980px;margin:0 auto;padding:8px 22px 40px}
.grid{display:grid;gap:16px;margin:18px 0}
.grid.two{grid-template-columns:1fr}
@media(min-width:860px){
  .grid{grid-template-columns:repeat(3,1fr)}
  .grid.two{grid-template-columns:1fr 1fr}
}

/* ---------- Cards ---------- */
.card{
  background:var(--card);border:1px solid var(--stroke);border-radius:14px;padding:20px;
  box-shadow:0 10px 30px -20px var(--glow)
}
.card.big{padding-bottom:24px;margin-top:22px}
.card.big h2{margin-top:0}

/* Make small cards flush-left */
.small-cards{justify-items:stretch;align-items:start}
.small-cards .card,
.small-cards .card h2,
.small-cards .card p,
.small-cards .card ul,
.small-cards .card li{ text-align:left }

/* Lists spacing */
ul.tight li{margin:4px 0}
.links li{margin:6px 0}

/* ---------- Comparison Table (desktop) ---------- */
.table-scroll{
  overflow-x:auto;
  margin:18px 0 20px 0;
  border:1px solid var(--stroke);
  border-radius:10px
}
table.cmp{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  font-size:14px;
}
.cmp th,.cmp td{
  padding:10px 12px;
  border-bottom:1px solid var(--stroke);
  vertical-align:middle;
  text-align:center;
}
.cmp th:first-child,.cmp td:first-child{
  text-align:left;
  white-space:nowrap;
}
.cmp thead th{
  background:#2f2f2f;
  font-weight:700;
  position:sticky;top:0
}
.cmp tbody tr:nth-child(odd){background:#303030}
.cmp tbody tr:nth-child(even){background:#2b2b2b}

/* Caption under table */
.caption{
  display:block;
  margin:0;
  padding-top:14px;
  font-size:12.5px;
  font-style:italic;
  color:var(--muted);
  text-align:left;
  line-height:1.45;
}

/* ---------- Why CI / FAQ spacing ---------- */
.whyci ul{margin:18px 0;padding-left:22px}
.whyci ul li{margin:10px 0;line-height:1.5}
.faq ul{margin:14px 0;padding-left:20px}
.faq ul li{margin:16px 0;line-height:1.55}

/* ---------- Footer / Disclaimer ---------- */
.foot{
  max-width:980px;margin:16px auto 30px;padding:0 22px;
  color:var(--muted);font-size:13px;display:flex;gap:10px;justify-content:center;align-items:center;flex-wrap:wrap
}
.disclaimer{
  max-width:980px;margin:20px auto 0;padding:18px 36px;
  font-size:12px;color:var(--muted);text-align:center;border-top:1px solid var(--stroke)
}
.sep{opacity:.55}

/* ---------- Desktop vs Mobile toggle ---------- */
/* Default: show desktop table, hide mobile summary */
.table-desktop{display:block}
.table-mobile{display:none}

/* On small screens: hide desktop table, show mobile summary */
@media (max-width:768px){
  .table-desktop{display:none}
  .table-mobile{display:block}
}

/* ---------- Mobile Summary Cards (compact view) ---------- */
.mobile-summary{margin-top:14px}
.mobile-summary .mobile-label{
  font-size:12px;color:var(--muted);text-align:left;margin:0 0 8px 2px
}

/* “paragraph card” version */
.mobile-summary p{
  background:#2b2b2b;
  border:1px solid var(--stroke);
  border-radius:12px;
  padding:12px;
  margin:0 0 12px 0;
  line-height:1.5;
  box-shadow:0 8px 20px -18px var(--glow);
}
.mobile-summary p strong{
  display:block;
  color:#f5f5f5;
  margin:0 0 0px 0;
}
.mobile-summary .ms-note {
  color: #ffffff;   /* pure white */
  font-size: 12.5px;
}
.ms-note {
  display: block;       /* forces it onto its own line */
  margin: 4px 0 0 0;    /* closer to the checkmarks */
  font-size: 13px;
  color: #ffffff;       /* pure white */
  line-height: 1.4;
}


/* Colored marks */
.mobile-summary .check{ color:#4caf50; font-weight:700 }
.mobile-summary .cross{ color:#f44336; font-weight:700 }
.mobile-summary .partial{ color:#ff9800; font-weight:700 }

/* Optional: lighten the separator dot */
.mobile-summary p { --dot:#888 }
.mobile-summary p :where(span + span)::before{
  /* Not used for your inline "•", but kept if you ever auto-inject separators */
  content:"";
}

/* ---------- Optional micro-tweaks ---------- */
@media (min-width:861px){
  .mobile-summary{margin-top:10px}
}