:root {
  /* Palette vars (--accent, --accent-dark, --tint, --ring, --hero) are injected
     per-site by the renderer; these are structural tokens. */
  --ink: #161f2e; --ink-2: #3c4356; --muted: #6a7284; --line: #e8e6e0;
  --bg: #faf9f6; --card: #ffffff; --gold: #f59e0b;
  --good: #16a34a; --bad: #dc2626;
  --shadow-sm: 0 1px 2px rgba(22, 27, 45, 0.05);
  --shadow-md: 0 6px 24px -6px rgba(22, 27, 45, 0.12);
  --shadow-lg: 0 16px 48px -12px rgba(22, 27, 45, 0.22);
  --radius: 16px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 1.02rem; line-height: 1.75; }
h1, h2, h3 { font-family: var(--serif); letter-spacing: -0.015em; }

/* ---------- Header: transparent, sits on top of the hero — the dark band IS the
   first thing on the page. No nav menu; guide links live in the footer. ---------- */
.site-header { background: var(--hero); position: relative; }
.site-header::before { content: ""; display: block; height: 3px; background: linear-gradient(90deg, var(--accent), var(--ring)); }
.header-inner { max-width: 820px; margin: 0 auto; padding: 1.1rem 1.4rem 0; display: flex; align-items: center; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-weight: 900; font-size: 1.14rem; color: #fff; text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), var(--ring)); color: #fff; font-family: var(--serif); font-weight: 900; font-size: 1rem; }

/* ---------- Hero band ---------- */
.hero-band { background: radial-gradient(1100px 380px at 18% -12%, color-mix(in srgb, var(--ring) 26%, transparent), transparent 62%), radial-gradient(800px 300px at 92% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%), var(--hero); color: #fff; padding: 2.3rem 1.4rem 2.8rem; }
.hero-disclosure { margin: 1.3rem 0 0; font-size: 0.74rem; color: rgba(255,255,255,0.45); max-width: 560px; }
.hero-disclosure a { color: rgba(255,255,255,0.6); }
.hero-inner { max-width: 780px; margin: 0 auto; }
.kicker { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 800; color: var(--ring); margin: 0 0 0.9rem; }
.kicker .dot { color: rgba(255,255,255,0.4); margin: 0 0.3rem; }
.hero-band h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 900; line-height: 1.14; margin: 0 0 1.1rem; color: #fff; }
.rating-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.rating-num { font-weight: 800; font-size: 1.2rem; color: #fff; }
.rating-num small { color: rgba(255,255,255,0.55); font-weight: 600; font-size: 0.78rem; }
.rating-by { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.stars { position: relative; display: inline-block; font-size: 1.2rem; line-height: 1; color: rgba(255,255,255,0.22); }
.stars-track, .stars-fill { letter-spacing: 3px; }
.stars-fill { position: absolute; top: 0; left: 0; white-space: nowrap; overflow: hidden; color: var(--gold); }

/* ---------- Page body ---------- */
.page-body { max-width: 780px; margin: 0 auto; padding: 0 1.4rem 5.5rem; }

/* Verdict card overlaps the hero */
.verdict-card { position: relative; margin-top: -1.6rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.8rem 1.9rem 1.5rem; display: grid; grid-template-columns: 1fr auto; gap: 0.6rem 1.8rem; }
.verdict-badge { display: inline-block; background: var(--tint); color: var(--accent-dark); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.75rem; border-radius: 999px; margin-bottom: 0.8rem; }
.verdict-text { font-family: var(--serif); font-size: 1.16rem; line-height: 1.6; font-weight: 500; margin: 0; }
.verdict-side { display: flex; align-items: flex-start; }
.verdict-cta { grid-column: 1 / -1; border-top: 1px dashed var(--line); margin-top: 1.1rem; padding-top: 0.3rem; }
@media (max-width: 640px) {
  .verdict-card { display: block; padding: 1.5rem 1.4rem 1.3rem; }
  .verdict-side { float: right; margin: -0.3rem 0 0.5rem 0.9rem; }
  .score-ring { width: 76px; height: 76px; }
  .verdict-cta { border-top: 1px dashed var(--line); margin-top: 1rem; clear: both; }
}

/* Score ring */
.score-ring { width: 96px; height: 96px; transform: rotate(0deg); }
.ring-track, .ring-fill { fill: none; stroke-width: 7; }
.ring-track { stroke: var(--tint); }
.ring-fill { stroke: var(--ring); stroke-linecap: round; transform: rotate(-90deg); transform-origin: 42px 42px; }
.ring-num { font-family: var(--serif); font-weight: 900; font-size: 1.5rem; fill: var(--ink); text-anchor: middle; dominant-baseline: central; }
.ring-cap { font-family: var(--sans); font-weight: 700; font-size: 0.55rem; fill: var(--muted); text-anchor: middle; letter-spacing: 0.06em; }

/* ---------- CTA ---------- */
.cta-block { text-align: center; margin: 1.4rem 0 0.5rem; }
.cta-block.boxed { background: linear-gradient(180deg, var(--tint), var(--card)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem 1.5rem; margin: 2.6rem 0; box-shadow: var(--shadow-sm); }
.cta-heading { font-family: var(--serif); font-weight: 700; font-size: 1.18rem; margin: 0 0 0.9rem; }
.cta-btn { display: inline-flex; align-items: center; gap: 0.55rem; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-weight: 800; font-size: 1.05rem; padding: 0.95rem 2.2rem; border-radius: 12px; text-decoration: none; box-shadow: 0 8px 24px -6px color-mix(in srgb, var(--accent) 55%, transparent); transition: transform 0.13s, box-shadow 0.13s; }
.cta-btn svg { width: 19px; height: 19px; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -6px color-mix(in srgb, var(--accent) 65%, transparent); }
.cta-btn.small { font-size: 0.84rem; padding: 0.55rem 1rem; border-radius: 9px; box-shadow: none; white-space: nowrap; flex: none; }
.cta-micro { display: flex; align-items: center; justify-content: center; gap: 0.4rem; color: var(--muted); font-size: 0.78rem; font-weight: 600; margin: 0.75rem 0 0; }
.cta-micro svg { width: 15px; height: 15px; color: var(--good); }

/* ---------- Key facts ---------- */
.key-facts { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.8rem 1.1rem; margin: 2rem 0; box-shadow: var(--shadow-sm); }
.key-facts h2 { margin: 0 0 0.7rem; font-size: 1.22rem; }
.h-icon { color: var(--accent); margin-right: 0.15rem; }
.key-facts dl { margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); column-gap: 2.6rem; }
.key-facts .fact { display: flex; justify-content: space-between; align-items: baseline; gap: 1.2rem; padding: 0.62rem 0; border-bottom: 1px dashed var(--line); }
.key-facts dt { color: var(--muted); font-size: 0.84rem; font-weight: 600; white-space: nowrap; }
.key-facts dd { margin: 0; font-weight: 700; font-size: 0.9rem; text-align: right; }

/* ---------- Pros / Cons ---------- */
.pros-cons { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.1rem; margin: 2rem 0; }
.pc-card { border-radius: var(--radius); padding: 1.35rem 1.5rem; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-top: 4px solid var(--good); }
.pc-card.cons { border-top-color: var(--bad); }
.pc-card h3 { display: flex; align-items: center; gap: 0.55rem; margin: 0 0 0.8rem; font-size: 1.05rem; }
.pc-icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 999px; font-size: 0.85rem; font-weight: 900; font-family: var(--sans); }
.pc-icon.good { background: #e8f7ec; color: var(--good); }
.pc-icon.bad { background: #fdeceb; color: var(--bad); }
.pc-card ul { list-style: none; margin: 0; padding: 0; }
.pc-card li { padding: 0.4rem 0 0.4rem 1.55rem; position: relative; font-size: 0.94rem; line-height: 1.55; border-bottom: 1px dashed var(--line); }
.pc-card li:last-child { border-bottom: none; }
.pros li::before { content: "✓"; position: absolute; left: 0; top: 0.4rem; color: var(--good); font-weight: 800; }
.cons li::before { content: "✕"; position: absolute; left: 0; top: 0.4rem; color: var(--bad); font-weight: 800; }

/* ---------- Body sections ---------- */
.body-section h2 { font-size: 1.55rem; font-weight: 700; margin: 2.8rem 0 0.9rem; }
.body-section h2::after { content: ""; display: block; width: 48px; height: 4px; background: linear-gradient(90deg, var(--accent), var(--ring)); border-radius: 3px; margin-top: 0.5rem; }
.body-section p { margin: 0.9rem 0; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq { margin: 2.8rem 0 1rem; }
.faq h2 { font-size: 1.55rem; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 0.95rem 1.25rem; margin: 0.65rem 0; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 0.98rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { color: var(--accent); font-size: 1.3rem; font-weight: 600; transition: transform 0.18s; line-height: 1; }
.faq details[open] .faq-plus { transform: rotate(45deg); }
.faq details[open] summary { color: var(--accent-dark); }
.faq p { margin: 0.65rem 0 0.2rem; font-size: 0.94rem; color: var(--ink-2); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 0.6rem 0.9rem; display: none; align-items: center; justify-content: space-between; gap: 0.7rem; box-shadow: 0 -6px 24px rgba(22,27,45,0.1); z-index: 50; }
.sticky-info { display: flex; align-items: center; gap: 0.55rem; min-width: 0; }
.sticky-score { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; background: var(--tint); color: var(--accent-dark); font-weight: 800; font-size: 0.82rem; }
.sticky-label { font-size: 0.8rem; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--hero); color: rgba(255,255,255,0.75); margin-top: 3rem; }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 2.8rem 1.4rem 1.6rem; display: grid; grid-template-columns: 1.4fr 1fr 0.7fr; gap: 2.2rem; }
.footer-brand { display: flex; gap: 0.9rem; align-items: flex-start; }
.footer-brand strong { color: #fff; font-family: var(--serif); font-size: 1.05rem; }
.footer-brand p { font-size: 0.84rem; line-height: 1.6; margin: 0.4rem 0 0; color: rgba(255,255,255,0.55); }
.footer-links h2 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); font-family: var(--sans); margin: 0 0 0.7rem; }
.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 0.35rem 0; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.86rem; }
.footer-links a:hover { color: #fff; }
.footer-fine { max-width: 1080px; margin: 0 auto; padding: 1.1rem 1.4rem 2.2rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-fine p { margin: 0; }
.vibe-badge { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.42rem 0.95rem 0.42rem 0.5rem; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.76rem; transition: background 0.15s, border-color 0.15s, transform 0.15s; }
.vibe-badge:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }
.vibe-badge img { width: 30px; height: 30px; border-radius: 999px; display: block; }
.vibe-badge strong { color: #fff; }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- Static pages ---------- */
.page-body > article h1, main > article h1 { font-size: 2rem; }
main > article { max-width: 780px; margin: 0 auto; padding: 2.5rem 1.4rem 4rem; }
