:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --line: #d9e0e8;
  --navy: #1e3a5f;
  --teal: #0f766e;
  --lime: #d9f99d;
  --amber: #f59e0b;
  --danger: #b91c1c;
  --shadow: 0 18px 48px rgba(20, 32, 51, .12);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
}
body.is-locked { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img { width: 226px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 800;
}
.nav-links a {
  color: #26364d;
  text-decoration: none;
}
.nav-links a:hover, .footer a:hover { color: var(--teal); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 23px;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #edf7f5 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 20px 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 480px);
  gap: 42px;
  align-items: center;
}
.label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 13px;
  padding: 7px 10px;
  border: 1px solid #99d6cd;
  border-radius: 8px;
  background: #e6fffb;
  color: #115e59;
  font-size: 13px;
  font-weight: 900;
}
h1 {
  max-width: 780px;
  font-size: 52px;
  letter-spacing: 0;
}
.lead {
  margin-top: 20px;
  max-width: 720px;
  color: #435066;
  font-size: 19px;
}
.hero-actions {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.primary, .button.compact {
  color: #fff;
  background: var(--teal);
}
.button.secondary, .button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}
.button.compact {
  min-height: 40px;
  padding: 10px 13px;
  white-space: nowrap;
}
.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip {
  max-width: 1180px;
  margin: -30px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}
.trust-strip div, .review-card, .disclosure > div, .text-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.trust-strip div {
  padding: 16px;
  box-shadow: 0 10px 24px rgba(20, 32, 51, .08);
}
.trust-strip strong { display: block; font-size: 15px; }
.trust-strip span { color: var(--muted); font-size: 13px; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 20px 0;
}
.section-head {
  max-width: 780px;
  margin-bottom: 22px;
}
.section-head h2, .method h2, .notice-band h2, .disclosure h2, .text-card h1 {
  font-size: 34px;
}
.section-head p:not(.label), .method p, .notice-band p, .disclosure p, .text-card p, .text-card li {
  margin-top: 12px;
  color: #445166;
}

.comparison-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.table-row {
  display: grid;
  grid-template-columns: 1.35fr .55fr 1.25fr 1.5fr .65fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--line);
}
.table-row:first-child { border-top: 0; }
.table-head {
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}
.brand-cell {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-items: center;
}
.brand-cell small {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}
.rank {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #1f2937;
  background: var(--lime);
  font-weight: 900;
}
.score {
  font-size: 28px;
  color: var(--teal);
}
.muted { color: var(--muted); }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card { padding: 20px; }
.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.review-card p { color: #445166; }
.ticks {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.ticks li {
  margin-top: 8px;
  padding-left: 24px;
  position: relative;
  color: #3e4a5f;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 24px;
  align-items: start;
}
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric-grid div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.metric-grid b {
  display: block;
  color: var(--navy);
  font-size: 30px;
}
.metric-grid span { color: var(--muted); font-weight: 700; }

.notice-band {
  margin-top: 58px;
  padding: 34px 20px;
  color: #fff;
  background: var(--navy);
}
.notice-band > div {
  max-width: 1180px;
  margin: 0 auto;
}
.notice-band p { color: #e8eef7; }
.notice-band strong { color: #fff; }

.disclosure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 58px;
}
.disclosure > div { padding: 22px; }

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px;
  display: grid;
  grid-template-columns: 1.2fr .65fr 1fr;
  gap: 28px;
}
.footer img { width: 218px; margin-bottom: 12px; }
.footer p, .footer li {
  color: #536075;
  font-size: 14px;
}
.footer h3 { font-size: 16px; margin-bottom: 10px; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-top: 8px; }
.footer a { text-decoration: none; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(9, 18, 31, .72);
}
.age-box {
  width: min(520px, 100%);
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.age-box p:not(.label) { color: #445166; margin-top: 12px; }
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.blocked {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
  color: #fff;
  text-align: center;
  background: #111827;
}
.blocked.is-visible { display: grid; }

.text-page main {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 20px 62px;
}
.text-card {
  padding: 26px;
  box-shadow: 0 10px 26px rgba(20, 32, 51, .07);
}
.text-card h2 {
  margin-top: 28px;
  font-size: 24px;
}
.text-card ul { margin: 12px 0 0; padding-left: 20px; }

@media (max-width: 920px) {
  h1 { font-size: 40px; }
  .hero-inner, .method, .footer-inner, .disclosure {
    grid-template-columns: 1fr;
  }
  .trust-strip, .reviews {
    grid-template-columns: 1fr 1fr;
  }
  .table-head { display: none; }
  .table-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .table-row > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
  .brand-cell {
    display: grid !important;
    justify-content: start !important;
  }
}

@media (max-width: 720px) {
  .nav { padding: 12px 16px; }
  .brand img { width: 190px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px; }
  .hero-inner { padding: 34px 16px 48px; }
  h1 { font-size: 34px; }
  .lead { font-size: 17px; }
  .trust-strip, .reviews, .metric-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 42px 16px 0; }
  .section-head h2, .method h2, .notice-band h2, .disclosure h2, .text-card h1 {
    font-size: 28px;
  }
  .table-row { padding: 16px; }
  .table-row > div {
    display: block;
  }
  .button { width: 100%; }
  .footer-inner { padding: 28px 16px; }
}
