:root {
  --ink: #10201d;
  --muted: #5f716c;
  --paper: #f7f4eb;
  --panel: #fffdf7;
  --line: #ded8c9;
  --green: #0f6f59;
  --mint: #54c6a1;
  --gold: #f5c34b;
  --red: #d94a45;
  --blue: #1d3154;
  --shadow: 0 20px 48px rgba(16, 32, 29, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
body.locked { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 880px; margin-bottom: 18px; font-size: clamp(40px, 6vw, 78px); line-height: .98; letter-spacing: 0; }
h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.08; letter-spacing: 0; }
h3 { line-height: 1.15; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 16, 14, .84);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.age-gate.show { opacity: 1; visibility: visible; pointer-events: auto; }
.age-box {
  width: min(560px, 100%);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translateY(16px) scale(.97);
  transition: transform .24s ease;
}
.age-gate.show .age-box { transform: translateY(0) scale(1); }
.age-badge {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}
.age-box p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 235, .95);
  backdrop-filter: blur(12px);
}
.logo, .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}
.logo img { width: 42px; height: 42px; }
nav { display: flex; gap: 6px; }
nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 7px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
nav a:hover, nav a.active { background: #e4f1e8; color: var(--green); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 12px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
}

.button, .age-box button, .contact-form button, .brand-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 18px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.secondary { background: var(--panel); color: var(--green); border-color: var(--line); }
.button:hover, .brand-cta:hover, .age-box button:hover { filter: brightness(.96); transform: translateY(-1px); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 4px 10px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, .84);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .92fr);
  gap: 42px;
  align-items: center;
  padding: 66px clamp(18px, 5vw, 72px) 58px;
  background:
    linear-gradient(135deg, rgba(84,198,161,.18), transparent 44%),
    linear-gradient(315deg, rgba(245,195,75,.20), transparent 48%);
}
.hero p, .section-head p, .info-card p, .brand-card p, .brand-card small, .legal-copy p, .page-hero p, .table-row span, .contact-card p { color: var(--muted); }
.hero-media {
  align-self: stretch;
  display: grid;
  place-items: center;
}
.hero-media img {
  width: min(100%, 720px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-actions, .action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.trust-row span, .pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section, .page-hero { padding: 72px clamp(18px, 5vw, 72px); }
.content-band { background: var(--panel); border-block: 1px solid var(--line); }
.section-head { max-width: 820px; margin-bottom: 30px; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card, .contact-card, .legal-copy, .not-found-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(16, 32, 29, .08);
}
.info-card strong {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #e4f1e8;
  color: var(--green);
}

.brand-grid { display: grid; gap: 18px; }
.brand-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.brand-card.featured { border-color: rgba(15,111,89,.42); }
.rank {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}
.brand-logo-img {
  width: 220px;
  height: 74px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 16px;
}
.score-line { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 16px 0; }
.score-line strong {
  min-width: 64px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #38260a;
  font-size: 20px;
}
.license-box {
  display: grid;
  gap: 5px;
  padding: 14px;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8ef;
}
.license-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.brand-card ul { padding-left: 20px; color: var(--muted); }
.brand-side {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #e8f3ee;
}
.brand-side span { color: var(--green); font-weight: 900; text-transform: uppercase; font-size: 12px; }
.brand-cta { width: 100%; }

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.table-row {
  display: grid;
  grid-template-columns: 1.05fr .85fr 1fr .7fr;
  gap: 16px;
  padding: 16px;
  border-top: 1px solid var(--line);
}
.table-row:first-child { border-top: 0; }
.table-row.head { background: #0b2d28; color: #fff; font-size: 13px; text-transform: uppercase; }
.table-row a { color: var(--green); font-weight: 900; }

.notice-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 72px);
  background: var(--blue);
  color: #fff;
}
.notice-strip p { color: rgba(255,255,255,.78); margin-bottom: 0; }
.notice-strip .button { background: #fff; color: var(--blue); }

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 900; font-size: 18px; }
.faq p { margin: 12px 0 0; color: var(--muted); }

.page-hero {
  min-height: 350px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(84,198,161,.16), transparent 42%),
    linear-gradient(315deg, rgba(29,49,84,.13), transparent 52%);
}
.legal-copy { max-width: 940px; }
.legal-copy h2 { font-size: 28px; margin-top: 28px; }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 20px;
}
.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.contact-form textarea { min-height: 130px; resize: vertical; }

.site-footer {
  padding: 48px clamp(18px, 5vw, 72px);
  background: #0b2d28;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr) minmax(220px, .8fr);
  gap: 28px;
}
.site-footer p, .site-footer small { color: rgba(255,255,255,.72); }
.footer-logo { color: #fff; font-size: 22px; margin-bottom: 10px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.86); text-decoration: none; font-weight: 800; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .brand-card { grid-template-columns: 54px minmax(0, 1fr); }
  .brand-side { grid-column: 2; }
  .grid-3, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .table-row { grid-template-columns: 1fr 1fr; }
  .notice-strip { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .menu-button { display: inline-flex; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
  }
  nav.open { display: flex; }
  nav a { width: 100%; }
  h1 { font-size: 40px; }
  .hero, .section, .page-hero { padding-inline: 18px; }
  .brand-card { grid-template-columns: 1fr; padding: 18px; }
  .rank { width: 48px; height: 48px; }
  .brand-side { grid-column: auto; }
  .brand-logo-img { width: 190px; }
  .table-row { grid-template-columns: 1fr; }
  .table-row.head { display: none; }
  .age-box { padding: 22px; }
}
