:root {
  --ink: #13271f;
  --muted: #617168;
  --cream: #f3f0e7;
  --paper: #fbfaf5;
  --green: #0b5c42;
  --green-dark: #073c2d;
  --lime: #d7f15b;
  --line: #d9ded8;
  --white: #fff;
  --shadow: 0 22px 60px rgba(13, 46, 34, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.top-notice {
  min-height: 38px;
  padding: 7px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #e9f4ef;
  background: var(--green-dark);
  font-size: .76rem;
  letter-spacing: .02em;
}
.top-notice p { margin: 0; }
.top-notice span {
  padding: 2px 7px;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 3px;
  font-weight: 800;
}
.top-notice a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  height: 78px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, .95);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.02rem; letter-spacing: -.03em; }
.brand strong { color: var(--green); }
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: -.05em;
}
nav { display: flex; gap: 30px; margin-right: auto; color: var(--muted); font-size: .86rem; font-weight: 600; }
nav a:hover, .footer-links a:hover { color: var(--green); }

.hero {
  min-height: 610px;
  padding: 86px 8vw 92px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 8vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(215, 241, 91, .32), transparent 25%),
    linear-gradient(135deg, #f4f1e8 0%, #fbfaf5 60%);
}
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; background: var(--lime); }
.eyebrow.centered { justify-content: center; }
.eyebrow.light { color: var(--lime); }
h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .91;
  letter-spacing: -.07em;
  font-weight: 500;
}
h1 em { color: var(--green); font-weight: 500; }
.hero-lede { max-width: 590px; margin: 30px 0 0; color: var(--muted); font-size: 1.08rem; }
.hero-actions { margin-top: 30px; display: flex; align-items: center; gap: 28px; }
.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--green-dark); background: var(--lime); box-shadow: 0 12px 30px rgba(90, 112, 20, .18); }
.button-dark { color: var(--white); background: var(--ink); }
.button-light { color: var(--green-dark); background: var(--white); }
.button-ghost { border-color: var(--line); background: transparent; }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.4); background: transparent; }
.button-small { min-height: 38px; padding: 0 15px; font-size: .68rem; }
.button-full { width: 100%; }
.text-link { color: var(--green); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.affiliate-disclosure { max-width: 570px; margin-top: 30px; padding-left: 12px; border-left: 2px solid var(--lime); color: var(--muted); font-size: .72rem; }
.legal-reminder {
  max-width: 610px;
  margin: 12px 0 0;
  padding: 12px 14px;
  color: var(--green-dark);
  background: rgba(215, 241, 91, .25);
  border: 1px solid rgba(11, 92, 66, .16);
  border-radius: 4px;
  font-size: .7rem;
}
.stake-disclosure {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .68rem;
}

.hero-card {
  position: relative;
  max-width: 410px;
  padding: 25px 28px 30px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  pointer-events: none;
}
.hero-card-top { position: relative; display: flex; justify-content: space-between; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.status-dot::before { content: ""; width: 6px; height: 6px; margin-right: 6px; display: inline-block; background: var(--lime); border-radius: 50%; }
.limit-ring {
  width: 190px;
  height: 190px;
  margin: 35px auto 30px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255,255,255,.4);
  border-radius: 50%;
}
.limit-ring div { width: 140px; height: 140px; display: grid; place-content: center; text-align: center; background: var(--lime); border-radius: 50%; color: var(--green-dark); }
.limit-ring strong { font: 500 3.5rem/1 Georgia, serif; letter-spacing: -.06em; }
.limit-ring span { margin-top: 4px; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.check-list { position: relative; margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; font-size: .78rem; color: #dcebe5; }
.check-list li::before { content: "✓"; margin-right: 9px; color: var(--lime); font-weight: 900; }

.trust-strip { min-height: 72px; padding: 18px 8vw; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--white); border-block: 1px solid var(--line); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.trust-strip p { margin: 0; }
.trust-strip span { margin-right: 7px; color: var(--green); }

.section { padding: 105px 8vw; }
.section-heading { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-heading.compact { margin-bottom: 28px; }
.section-heading h2, .responsible-copy h2 {
  max-width: 660px;
  margin: 0;
  font: 500 clamp(2.8rem, 5vw, 5rem)/.98 Georgia, serif;
  letter-spacing: -.06em;
}
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); font-size: .86rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer-card { padding: 27px; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 6px; }
.clickable-offer {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.clickable-offer:hover,
.clickable-offer:focus-visible {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: var(--shadow);
  outline: none;
}
.offer-card.featured { border-top: 4px solid var(--lime); }
.offer-label { margin-bottom: 26px; color: var(--green); font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.offer-brand { display: flex; align-items: center; gap: 12px; }
.offer-brand h3 { margin: 0; font-size: .98rem; }
.offer-brand p { margin: 3px 0 0; color: var(--muted); font-size: .68rem; }
.offer-icon { width: 40px; height: 40px; display: grid; place-items: center; background: var(--green); border-radius: 50%; color: var(--lime); font: 500 1.25rem Georgia, serif; }
.offer-icon.alternate { color: var(--green-dark); background: var(--lime); }
.offer-value { margin: 25px 0 18px; padding: 18px 0; display: grid; gap: 5px; border-block: 1px solid var(--line); }
.offer-value span { color: var(--muted); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.offer-value strong { font: 500 1.65rem Georgia, serif; letter-spacing: -.04em; }
.offer-card ul { margin: 0 0 25px; padding: 0; display: grid; gap: 8px; color: var(--muted); list-style: none; font-size: .72rem; }
.offer-card li::before { content: "—"; margin-right: 7px; color: var(--green); }
.offer-card .button { margin-top: auto; }
.card-disclosure { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: .6rem; }
.help-card { color: var(--white); background: var(--green-dark); border-color: var(--green-dark); }
.help-card .offer-label { color: var(--lime); }
.help-card h3 { margin: 24px 0 10px; font: 500 2rem/1 Georgia, serif; letter-spacing: -.04em; }
.help-card p { margin: 0 0 25px; color: #c5d6cf; font-size: .78rem; }
.help-symbol { width: 96px; height: 96px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; color: var(--lime); font: 500 1.75rem Georgia, serif; }
.phone-link { margin-top: 15px; color: var(--lime); text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.steps-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #ccd4ce; border: 1px solid #ccd4ce; }
.steps-grid article { min-height: 220px; padding: 28px; background: var(--cream); }
.steps-grid span { color: var(--green); font: italic 500 1rem Georgia, serif; }
.steps-grid h3 { margin: 42px 0 8px; font: 500 1.6rem Georgia, serif; letter-spacing: -.04em; }
.steps-grid p { margin: 0; color: var(--muted); font-size: .78rem; }

.responsible-section { display: grid; grid-template-columns: 1.35fr .65fr; gap: 9vw; color: var(--white); background: var(--green); }
.responsible-copy h2 { color: var(--white); }
.responsible-copy > p:not(.eyebrow) { max-width: 690px; margin: 24px 0 30px; color: #c7dbd3; font-size: .9rem; }
.responsible-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.warning-list { padding-left: 35px; border-left: 1px solid rgba(255,255,255,.2); }
.warning-list h3 { margin: 0 0 20px; color: var(--lime); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.warning-list p { margin: 0; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #d9e8e2; font-size: .78rem; }

footer { padding: 50px 8vw 20px; background: #092d23; color: #c3d4cd; }
.footer-main { display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: start; gap: 50px; padding-bottom: 45px; }
.footer-brand { color: var(--white); }
.footer-main > p { margin: 0; max-width: 520px; font-size: .72rem; }
.footer-links { display: grid; justify-content: end; gap: 8px; font-size: .72rem; }
.footer-links button { padding: 0; color: inherit; background: none; border: 0; cursor: pointer; text-align: left; }
.footer-legal { padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .62rem; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(4, 24, 17, .76);
  backdrop-filter: blur(8px);
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative;
  width: min(100%, 450px);
  padding: 38px;
  background: var(--paper);
  border-radius: 7px;
  box-shadow: 0 30px 100px rgba(0,0,0,.32);
  text-align: center;
}
.modal h2 { margin: 0 0 12px; font: 500 2.45rem/1 Georgia, serif; letter-spacing: -.05em; }
.modal p { color: var(--muted); font-size: .8rem; }
.modal .age-legal-note {
  margin: 18px 0;
  padding: 12px;
  color: var(--green-dark);
  background: rgba(215, 241, 91, .25);
  border-radius: 4px;
  font-size: .7rem;
}
.modal small { display: block; margin-top: 15px; color: var(--muted); font-size: .62rem; }
.modal .button { margin-top: 12px; }
.modal-mark { width: 72px; height: 72px; margin: 0 auto 24px; display: grid; place-items: center; color: var(--green-dark); background: var(--lime); border-radius: 50%; font: 500 1.65rem Georgia, serif; }
.modal-close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--muted); background: transparent; cursor: pointer; font-size: 1.5rem; }
.promo-kicker { margin-bottom: 20px; color: var(--green); font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.text-button { margin-top: 14px; padding: 5px; color: var(--green); background: none; border: 0; cursor: pointer; font-size: .7rem; font-weight: 800; }
.disclosure-modal p { text-align: left; }
body.modal-open { overflow: hidden; }
body.age-locked > :not(#age-gate) {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 950px) {
  nav { display: none; }
  .site-header { justify-content: space-between; }
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .hero-card { max-width: 520px; transform: none; }
  .offer-grid, .steps-grid { grid-template-columns: 1fr; }
  .responsible-section { grid-template-columns: 1fr; }
  .warning-list { padding-left: 0; border-left: 0; }
}

@media (max-width: 650px) {
  .top-notice { gap: 8px; justify-content: space-between; }
  .top-notice p { max-width: 220px; }
  .site-header { height: 68px; padding-inline: 20px; }
  .site-header .button { display: none; }
  .hero, .section { padding: 65px 20px; }
  h1 { font-size: 3.65rem; }
  .hero-actions, .responsible-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { text-align: center; }
  .trust-strip { padding: 18px 20px; align-items: flex-start; flex-direction: column; gap: 9px; }
  .section-heading { align-items: start; flex-direction: column; gap: 14px; }
  .section-heading h2, .responsible-copy h2 { font-size: 2.65rem; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { justify-content: start; }
  .footer-legal { flex-direction: column; }
  .modal { padding: 32px 22px; }
}
