:root {
  --ink: #122525;
  --muted: #667674;
  --bg: #fbf7ee;
  --paper: #ffffff;
  --line: #dfe7e3;
  --deep: #0b2f2d;
  --green: #16805f;
  --teal: #72d3c2;
  --gold: #f2c94c;
  --red: #e34848;
  --blue: #16345f;
  --shadow: 0 22px 65px rgba(18, 37, 37, .13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bg); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { letter-spacing: 0; line-height: 1.04; }
p { margin-top: 0; }

.age-gate,
.brand-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 47, 45, .91);
  backdrop-filter: blur(12px);
}
.age-gate.is-hidden,
.brand-modal { display: none; }
.brand-modal.is-open { display: grid; z-index: 900; }
.age-box,
.brand-picker {
  width: min(560px, 100%);
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.age-badge {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 950;
}
.age-box h2,
.brand-picker h2 { margin: 0 0 12px; font-size: clamp(1.85rem, 6vw, 2.8rem); }
.age-box p,
.brand-picker p { color: var(--muted); }
.brand-picker { position: relative; width: min(800px, calc(100vw - 40px)); max-height: calc(100vh - 40px); overflow: auto; }
.brand-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  font-weight: 900;
  cursor: pointer;
}
.modal-brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.modal-brand-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f8f5;
}
.modal-brand-card img { height: 70px; width: 100%; object-fit: contain; }
.modal-brand-card h3 { margin: 0; font-size: 1rem; }
.modal-brand-card small { color: var(--muted); }

.button,
.cta,
.age-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
  font-weight: 850;
  cursor: pointer;
  text-align: center;
}
.button.secondary { color: var(--deep); background: transparent; border: 1px solid var(--green); }
.button.alert { background: var(--red); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 238, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 950; }
.logo img { width: 42px; height: 42px; }
nav { display: flex; gap: 6px; align-items: center; }
nav a { padding: 10px 12px; color: var(--muted); font-weight: 800; }
nav a.active,
nav a:hover { color: var(--green); }
.menu-button { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: 6px; padding: 9px 12px; font-weight: 850; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 56px) 38px;
}
.eyebrow {
  color: var(--green);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1 { margin: 12px 0 18px; font-size: clamp(2.4rem, 6vw, 5rem); line-height: .97; max-width: 820px; }
.hero p { color: var(--muted); font-size: 1.08rem; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-board {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 14px; background: var(--line); border-radius: 6px; overflow: hidden; }
.hero-stats div { padding: 15px; background: #eef7f2; }
.hero-stats strong { display: block; font-size: 1.55rem; line-height: 1; }
.hero-stats span { color: var(--muted); font-size: .9rem; }

.notice-strip {
  margin: 0 clamp(18px, 4vw, 56px) 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
}
.notice-strip strong { display: grid; place-items: center; width: 62px; height: 62px; color: var(--ink); background: var(--gold); border-radius: 50%; font-size: 1.25rem; }
.notice-strip p { margin: 0; color: #dcebe5; }

.section { padding: 68px clamp(18px, 4vw, 56px); }
.section.tint { background: #edf7f1; }
.section-head { max-width: 840px; margin-bottom: 28px; }
.section-head h2 { margin: 8px 0 10px; font-size: clamp(2rem, 4vw, 3.45rem); }
.section-head p { color: var(--muted); }

.brand-stack { display: grid; gap: 18px; }
.brand-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 190px;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 37, 37, .07);
}
.brand-logo-box { display: grid; place-items: center; min-height: 112px; padding: 10px; background: #f4f8f5; border: 1px solid var(--line); border-radius: 8px; }
.brand-card h3 { margin: 0 0 8px; font-size: clamp(1.35rem, 3vw, 2rem); }
.brand-card p { color: var(--muted); margin-bottom: 12px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { padding: 7px 10px; border-radius: 999px; background: #eef7f2; color: var(--deep); font-size: .84rem; font-weight: 800; }
.brand-side { display: grid; gap: 12px; justify-items: stretch; }
.score { padding: 16px; border-radius: 8px; background: var(--deep); color: #fff; font-size: 2rem; font-weight: 950; text-align: center; }
.score small { display: block; color: #b9d6cf; font-size: .78rem; font-weight: 700; }
.terms-note { color: var(--muted); font-size: .86rem; }

.method-grid,
.legal-grid,
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.info-card strong { color: var(--red); font-size: 1.4rem; }
.info-card h3 { margin: 8px 0; font-size: 1.3rem; }
.info-card p { color: var(--muted); }
.info-card a { color: var(--green); font-weight: 850; }

.comparison-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
table { width: 100%; border-collapse: collapse; min-width: 850px; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--deep); color: #fff; }
tr:last-child td { border-bottom: 0; }

.responsible-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}
.responsible-band > div { padding: 28px; background: var(--deep); color: #fff; }
.responsible-band p { color: #dcebe5; }
.responsible-band .eyebrow { color: var(--gold); }

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

.subhero {
  padding: 56px clamp(18px, 4vw, 56px) 34px;
  background: var(--deep);
  color: #fff;
}
.subhero h1 { max-width: 900px; margin: 10px 0; font-size: clamp(2.2rem, 5vw, 4.2rem); }
.subhero p { max-width: 780px; color: #dcebe5; }
.page-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.page-card h2 { margin-top: 0; }
.page-card p,
.page-card li { color: var(--muted); }
.page-card a { color: var(--green); font-weight: 850; }

.site-footer {
  margin-top: 68px;
  padding: 42px clamp(18px, 4vw, 56px) 26px;
  background: #102525;
  color: #fff;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 28px; }
.site-footer p,
.site-footer a { color: #c9d8d4; }
.site-footer a { display: block; margin: 8px 0; }
.site-footer h3 { margin-top: 0; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: #c9d8d4; font-size: .9rem; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .brand-card { grid-template-columns: 150px 1fr; }
  .brand-side { grid-column: 1 / -1; grid-template-columns: 160px 1fr; align-items: center; }
  .method-grid, .legal-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .responsible-band { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; }
  .menu-button { display: inline-flex; }
  nav {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  nav.is-open { display: flex; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(2.25rem, 13vw, 3.2rem); }
  .notice-strip { grid-template-columns: 1fr; }
  .brand-card { grid-template-columns: 1fr; }
  .brand-side { grid-template-columns: 1fr; }
  .method-grid, .legal-grid, .contact-grid, .footer-grid, .modal-brand-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .age-box, .brand-picker { padding: 22px; }
}
