:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #1c2128;
  --border: #30363d;
  --text: #f0f6fc;
  --text-dim: #8b949e;
  --accent: #2dd4bf;
  --accent-dark: #14b8a6;
  --warn: #f59e0b;
  --good: #10b981;
  --danger: #ef4444;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
.wrap { max-width: 840px; margin: 0 auto; padding: 0 22px; }

/* HEADER */
.site-header {
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-glyph {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  color: #07261f;
  letter-spacing: 0;
}
.brand-text { font-weight: 700; font-size: 18px; color: var(--text); letter-spacing: -0.3px; }
.brand-text .accent { color: var(--accent); }
.site-header nav { display: flex; gap: 22px; }
.site-header nav a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 500; }
.site-header nav a:hover { color: var(--accent); }

/* HERO */
.hero {
  padding: 60px 0 30px;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--text);
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--accent), #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: 19px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 0 24px;
}
.hero .meta {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.hero .meta strong { color: var(--text); }
.hero .meta .dot { width: 4px; height: 4px; background: var(--text-dim); border-radius: 50%; }

/* CARD GRID */
.card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
}
.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  position: relative;
}
.metric-card .icon {
  width: 32px;
  height: 32px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.metric-card .value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.metric-card .label {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* VERDICT */
.verdict {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 30px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.verdict .badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #07261f;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  align-self: start;
}
.verdict .text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* ARTICLE */
article { padding: 30px 0; }
article h2 {
  font-size: 30px;
  line-height: 1.25;
  margin: 50px 0 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}
article h2 .num {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #07261f;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  line-height: 32px;
  margin-right: 12px;
  vertical-align: 4px;
}
article h3 {
  font-size: 20px;
  margin: 30px 0 12px;
  font-weight: 700;
  color: var(--text);
}
article p { margin: 0 0 18px; color: #c9d1d9; }
article ul, article ol { margin: 0 0 20px; padding-left: 24px; }
article li { margin-bottom: 8px; color: #c9d1d9; }
article a { color: var(--accent); text-decoration: none; border-bottom: 1px dotted var(--accent); }
article a:hover { color: #5eead4; border-bottom-style: solid; }

/* CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #07261f !important;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 16px;
  border: none !important;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45, 212, 191, 0.4); }
.cta-row { text-align: center; margin: 32px 0; }

/* COMPARE TABLE */
table.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
table.compare th, table.compare td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.compare th {
  background: var(--surface-2);
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
table.compare tr:last-child td { border-bottom: none; }
table.compare td:first-child { font-weight: 600; width: 30%; color: var(--text); }
table.compare td.good { color: var(--good); font-weight: 600; }
table.compare td.warn { color: var(--warn); }

/* QUOTE CARDS */
.quote-grid { display: grid; gap: 14px; margin: 24px 0; }
.quote-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 18px 22px;
}
.quote-tile .q { font-size: 15px; color: var(--text); margin-bottom: 10px; font-style: italic; }
.quote-tile .who { font-size: 13px; color: var(--accent); font-weight: 600; }

/* TIP LIST */
.tip-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.tip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.tip-card .step {
  display: inline-block;
  background: var(--accent);
  color: #07261f;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}
.tip-card h4 { margin: 0 0 8px; font-size: 16px; color: var(--text); }
.tip-card p { font-size: 14px; color: var(--text-dim); margin: 0; line-height: 1.55; }

/* DISCLOSURE */
.disclosure-box {
  margin-top: 50px;
  padding: 20px 24px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
.disclosure-box strong { color: #fca5a5; }

/* FOOTER */
.site-footer {
  background: #05080d;
  border-top: 1px solid var(--border);
  padding: 30px 0;
  margin-top: 60px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}
.site-footer a { color: var(--accent); margin: 0 8px; text-decoration: none; }
.site-footer a:hover { color: #5eead4; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 16px; }
  article h2 { font-size: 22px; }
  article h2 .num { width: 26px; height: 26px; line-height: 26px; font-size: 13px; }
  .card-row { grid-template-columns: repeat(2, 1fr); }
  .tip-list { grid-template-columns: 1fr; }
  .verdict { grid-template-columns: 1fr; }
  table.compare { font-size: 13px; }
  table.compare th, table.compare td { padding: 10px 8px; }
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 13px; }
}
