:root {
  --bg: #fdfdfb;
  --surface: #ffffff;
  --primary: #0a1f1c;
  --accent: #00ba75;
  --accent-dark: #00925d;
  --accent-soft: #d1f0e3;
  --text: #1a2826;
  --text-light: #5a6b67;
  --border: #e7eae6;
  --warn: #d97706;
  --bad: #dc2626;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
.wrap { max-width: 820px; margin: 0 auto; padding: 0 22px; }

/* HEADER */
.site-header {
  background: var(--primary);
  padding: 14px 0;
  border-bottom: 3px solid var(--accent);
}
.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-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.brand-text { color: white; font-weight: 700; font-size: 19px; letter-spacing: -0.3px; }
.brand-text .accent { color: var(--accent); }
.site-header nav { display: flex; gap: 22px; }
.site-header nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; }
.site-header nav a:hover { color: white; }

/* HERO */
.hero {
  background: var(--primary);
  color: white;
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.08;
}
.hero .pill {
  display: inline-block;
  background: rgba(0, 186, 117, 0.15);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 186, 117, 0.3);
}
.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -1.2px;
}
.hero h1 .accent { color: var(--accent); }
.hero p.sub {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  line-height: 1.5;
  max-width: 660px;
}
.hero .meta {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero .meta strong { color: white; }
.hero .meta .dot { width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; }

/* VERDICT */
.verdict-section { background: var(--bg); padding: 0; margin-top: -30px; position: relative; z-index: 5; }
.verdict-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 8px 30px rgba(10, 31, 28, 0.08);
}
.verdict-card .label {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.verdict-card .text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

/* RATING ROW */
.rating-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 30px 0;
}
.rating-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.rating-cell .val { font-size: 22px; font-weight: 800; color: var(--primary); }
.rating-cell .lab { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ARTICLE */
article { padding: 30px 0 60px; }
article h2 {
  font-size: 30px;
  line-height: 1.25;
  margin: 50px 0 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
}
article h3 {
  font-size: 21px;
  margin: 32px 0 12px;
  font-weight: 700;
  color: var(--text);
}
article p { margin: 0 0 18px; }
article ul, article ol { margin: 0 0 22px; padding-left: 26px; }
article li { margin-bottom: 8px; }
article a { color: var(--accent-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
article a:hover { color: var(--primary); }

/* CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary) !important;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 16px;
  border: none !important;
  transition: transform 0.15s;
}
.cta-btn:hover { transform: translateY(-2px); background: var(--accent-dark); color: white !important; }
.cta-row { text-align: center; margin: 30px 0; }

/* NOTICE / VERDICT INLINE */
.notice {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}
.notice strong { display: block; margin-bottom: 6px; color: var(--accent-dark); }

/* QUOTES */
blockquote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  margin: 18px 0;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-style: normal;
  font-size: 15px;
  color: var(--text);
}

/* TABLE */
table.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(10, 31, 28, 0.04);
}
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(--primary);
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
table.compare tr:last-child td { border-bottom: none; }
table.compare td:first-child { font-weight: 600; width: 32%; }
table.compare td.good { color: var(--accent-dark); font-weight: 600; }
table.compare td.warn { color: var(--warn); }

/* DISCLOSURE */
.disclosure-box {
  margin-top: 50px;
  padding: 22px 26px;
  background: #fef9e7;
  border: 1px solid #fcd34d;
  border-radius: 12px;
  font-size: 14px;
  color: #78350f;
  line-height: 1.6;
}
.disclosure-box strong { color: #451a03; }

.last-updated { margin-top: 14px; font-style: italic; color: var(--text-light); }
.article-footer { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-light); }

/* FOOTER */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: 36px 0;
  margin-top: 60px;
  font-size: 13px;
  text-align: center;
}
.site-footer a { color: var(--accent); margin: 0 8px; text-decoration: none; }
.site-footer a:hover { color: white; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .hero h1 { font-size: 30px; }
  .hero p.sub { font-size: 16px; }
  article h2 { font-size: 22px; }
  .rating-row { grid-template-columns: repeat(2, 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; }
}
