:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --card: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #15803d;
  --amber: #b45309;
  --red: #b91c1c;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.75rem;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.ad-compliance-strip {
  border-bottom: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.8rem;
  font-weight: 650;
}

.ad-compliance-strip .container {
  padding: 10px 0;
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 34rem),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(44px, 8vw, 86px) 0;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: #334155;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.muted,
.source-note,
.disclosure {
  color: var(--muted);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.conversion-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin: 0 0 22px;
}

.conversion-summary div {
  min-height: 82px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.78);
}

.conversion-summary strong {
  display: block;
  margin-bottom: 5px;
  color: #1e3a8a;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.conversion-summary span {
  display: block;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.28;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.button-ghost {
  border-color: var(--line);
  background: #ffffff;
  color: #334155;
}

.score-panel {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.score-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.score-number {
  color: var(--amber);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.score-number span {
  color: var(--muted);
  font-size: 1rem;
}

.score-title {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 850;
}

.score-copy {
  color: #475569;
}

.quick-stats {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.quick-stats div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.quick-stats dt {
  color: var(--muted);
  font-size: 0.84rem;
}

.quick-stats dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: right;
}

.risk-badge,
.pill,
.topic-score {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.risk-high,
.negative {
  background: #fee2e2;
  color: var(--red);
}

.risk-medium,
.mixed {
  background: #fef3c7;
  color: var(--amber);
}

.positive,
.risk-low {
  background: #dcfce7;
  color: var(--green);
}

.section {
  padding: clamp(48px, 8vw, 78px) 0;
}

.content-main {
  background: linear-gradient(180deg, #f8fafc 0, #ffffff 280px);
}

.content-hero {
  padding: clamp(48px, 8vw, 86px) 0 clamp(26px, 5vw, 44px);
}

.content-hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 4.45rem);
}

.content-hero p {
  max-width: 760px;
  color: #475569;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.26fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
}

.content-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.content-card {
  padding: clamp(22px, 4vw, 34px);
}

.content-card h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li,
.side-card p,
.side-card li {
  color: #475569;
}

.content-card li + li,
.side-card li + li {
  margin-top: 9px;
}

.side-card {
  padding: 20px;
}

.side-card h2,
.side-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.side-card + .side-card {
  margin-top: 16px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
}

.form-grid textarea {
  resize: vertical;
}

.deal-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: -28px;
  padding: 24px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.deal-box h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.deal-box p {
  max-width: 720px;
  margin-bottom: 0;
  color: #475569;
}

.deal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: min(420px, 100%);
}

.review-summary,
.two-col {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: start;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.topic-grid article,
.buy-card,
.verdict-card,
.rating-card,
.bars,
.complaint-list article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
}

.topic-grid article,
.buy-card,
.verdict-card,
.rating-card,
.bars,
.complaint-list article {
  padding: 20px;
}

.topic-grid p,
.buy-card p,
.verdict-card li,
.rating-card p,
.complaint-list p,
.complaint-list span,
.faq p {
  color: var(--muted);
  font-size: 0.94rem;
}

.topic-score {
  margin-bottom: 12px;
}

.buy-cards,
.complaint-list {
  display: grid;
  gap: 16px;
}

.buy-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.buy-card.featured {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.buy-card-main {
  display: grid;
  grid-template-columns: minmax(132px, 156px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}

.buy-product-image {
  overflow: hidden;
  width: 156px;
  max-width: 100%;
  height: 156px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.buy-product-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.pill {
  margin-bottom: 10px;
  background: #e0f2fe;
  color: #0369a1;
}

.channel-price {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}

.channel-price span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.channel-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.channel-meta div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.channel-meta dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.channel-meta dd {
  margin: 0;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 800;
}

.disclosure {
  margin: 14px 0 0;
  font-size: 0.78rem;
}

.verdict {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  max-width: none;
  width: 100%;
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
}

.verdict-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.verdict-card ul {
  margin: 0;
  padding-left: 20px;
}

.verdict-card li + li {
  margin-top: 8px;
}

.verdict-card.buy {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.verdict-card.avoid {
  border-color: #fecaca;
  background: #fff7f7;
}

.sentiment-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.rating-number {
  display: block;
  color: var(--blue);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.9;
}

.rating-label {
  display: block;
  margin: 10px 0 16px;
  font-weight: 850;
}

.rating-card a {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.bars h3 {
  margin-bottom: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 48px;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  color: #475569;
  font-size: 0.9rem;
}

.bar-row div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.bar-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.bar-row strong {
  text-align: right;
}

.complaint-list article {
  display: grid;
  gap: 8px;
}

.complaint-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.complaint-head h3 {
  margin: 0;
}

.alternatives-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.compare-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 0.8fr;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  align-items: center;
}

.compare-table .table-head {
  border-top: 0;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-table a {
  color: var(--blue);
  font-weight: 850;
}

.risk-text.high {
  color: var(--red);
}

.risk-text.medium {
  color: var(--amber);
}

.risk-text.low {
  color: var(--green);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.checklist-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #334155;
  font-size: 0.94rem;
}

.checklist-grid input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.faq {
  max-width: 860px;
}

.faq details {
  padding: 18px 20px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  margin: 12px 0 0;
}

.final-cta {
  padding: clamp(46px, 8vw, 76px) 0;
  background: #0f172a;
  color: #ffffff;
}

.final-cta .section-label,
.final-cta p {
  color: #bfdbfe;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.final-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 34px 0;
  background: #020617;
  color: #94a3b8;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-grid,
  .review-summary,
  .two-col,
  .content-layout,
  .sentiment-layout,
  .final-cta-grid,
  .deal-box {
    grid-template-columns: 1fr;
  }

  .conversion-summary {
    grid-template-columns: 1fr;
  }

  .deal-actions {
    justify-content: flex-start;
  }

  .buy-card {
    grid-template-columns: 1fr;
  }

  .buy-card-main {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .buy-product-image {
    width: 128px;
    height: 128px;
  }

  .topic-grid,
  .verdict-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .compare-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .compare-table .table-head {
    display: none;
  }

  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions,
  .final-actions,
  .deal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.35rem, 16vw, 3.4rem);
  }

  .quick-stats div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .quick-stats dd {
    text-align: left;
  }

  .buy-card-main {
    grid-template-columns: 1fr;
  }

  .buy-product-image {
    width: min(240px, 100%);
    max-width: 240px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

}
