:root {
  --blue: #2861E4;
  --blue-deep: #1d4dc4;
  --blue-glow: rgba(40, 97, 228, 0.35);
  --ink: #0b1220;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f1f4fb;
  --card: #ffffff;
  --border: #e6e8ef;
  --star: #f5a623;
  --pink-bg: #fde8e6;
  --pink-text: #c8403c;
  --tag-bg: #eef0f7;
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-cta: 0 0 0 10px rgba(40, 97, 228, 0.18), 0 18px 40px rgba(40, 97, 228, 0.35);
  --radius-card: 22px;
  --radius-pill: 999px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  padding: 28px 0 8px;
  text-align: center;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 16px;
}
.brand-logo {
  height: 32px; width: auto; display: block;
}

/* Hero */
.hero { padding: 28px 0 8px; text-align: center; position: relative; overflow: hidden; }
.hero::before, .hero::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 220px;
  background: linear-gradient(180deg, #fff3ee 0%, transparent 60%);
  pointer-events: none; opacity: 0.7;
}
.hero::before { left: 0; }
.hero::after { right: 0; transform: scaleX(-1); }
.hero > .container { position: relative; z-index: 1; }

.pill-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-bg); color: var(--pink-text);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  margin-bottom: 22px;
}
.pill-banner .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--star); box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.18);
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 auto 18px; max-width: 900px;
}
.hl {
  display: inline-block; background: var(--blue); color: #fff;
  padding: 4px 14px; border-radius: 12px;
  font-weight: 800; transform: translateY(-2px);
}
.hero .sub {
  color: var(--muted); font-size: clamp(15px, 1.5vw, 18px);
  max-width: 640px; margin: 0 auto 28px;
}

.score-strip {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  padding: 12px 22px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.score-strip .stars { color: var(--star); font-size: 18px; letter-spacing: 1px; }
.score-strip strong { font-weight: 700; }
.score-strip .tp {
  display: inline-flex; align-items: center; gap: 6px;
  color: #00b67a; font-weight: 700;
}
.score-strip .tp::before {
  content: "★"; color: #fff; background: #00b67a;
  width: 18px; height: 18px; display: inline-grid; place-items: center;
  border-radius: 3px; font-size: 12px;
}

.cta-wrap { margin: 16px 0 28px; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(180deg, #4d80ff 0%, var(--blue) 60%, var(--blue-deep) 100%);
  color: #fff; font-weight: 700; font-size: 18px;
  padding: 18px 34px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 0 0 12px rgba(40,97,228,0.22), 0 22px 50px rgba(40,97,228,0.45); }
.btn-cta .arrow { display: inline-block; transform: translateY(1px); }
.cta-sub { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }

.scribble {
  display: inline-block; color: var(--blue); font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-size: 22px; margin: 22px 0 6px;
}
.scribble::after {
  content: " ↓"; font-family: inherit;
}

/* Section heading */
.section { padding: 56px 0; }
.section.alt { background: var(--bg-soft); }
.section h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800; letter-spacing: -0.01em;
  text-align: center; margin: 0 0 8px;
}
.section .lede {
  text-align: center; color: var(--muted);
  max-width: 600px; margin: 0 auto 36px;
}

/* Review grid */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  position: relative;
}
.review .stars {
  color: var(--star); font-size: 16px; letter-spacing: 2px;
  margin-bottom: 12px;
}
.review h3 {
  margin: 0 0 10px; font-size: 18px; font-weight: 800; line-height: 1.3;
}
.review p.body {
  margin: 0 0 18px; color: #1f2937; font-size: 15px; line-height: 1.6;
  white-space: pre-line;
}
.review .who {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.review .who .left { display: flex; align-items: center; gap: 10px; }
.review .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #c9d4f7, #2861E4);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.review .name { font-weight: 700; font-size: 14px; }
.review .meta { color: var(--muted); font-size: 12px; }
.review .verified {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--tag-bg); color: #1f2937;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.review .verified::before {
  content: "✓"; color: #00b67a; font-weight: 800;
}

/* Footer */
.site-footer {
  padding: 48px 0 56px; text-align: center; color: var(--muted); font-size: 14px;
  border-top: 1px solid var(--border); margin-top: 40px;
}
.site-footer a { color: var(--blue); }
.site-footer .links { margin-top: 12px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.site-footer .disclaimer { margin-top: 18px; font-size: 12px; max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* Bottom CTA */
.cta-band {
  text-align: center; padding: 64px 0;
}
.cta-band h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; margin: 0 0 10px; letter-spacing: -0.01em; }
.cta-band p { color: var(--muted); margin: 0 auto 26px; max-width: 600px; }

@media (max-width: 540px) {
  .hero h1 { font-size: 36px; }
  .reviews { grid-template-columns: 1fr; }
  .btn-cta { font-size: 16px; padding: 16px 26px; }
  .hero::before, .hero::after { display: none; }
}
