:root {
  --bone: #f4f1ea;
  --paper: #ffffff;
  --ink: #0d1014;
  --ink-soft: #5b6472;
  --line: #0d1014;
  --hairline: rgba(13, 16, 20, 0.12);
  --tile: #10141d;
  --danger: #d92d34;
  --blue: #1b3bff;
  --lime: #d8f651;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bone);
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 68px 68px;
  background-position: -1px -1px;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2 {
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 22px;
}

.site-header {
  position: relative;
  z-index: 40;
  background: var(--bone);
  border-bottom: 2px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue);
  border: 2px solid var(--line);
  box-shadow: 3px 3px 0 var(--line);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.brand:hover .brand-mark {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--line);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.6px;
}

.brand-name-alt {
  color: var(--blue);
}

.brand-tld {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  position: relative;
  isolation: isolate;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink);
  border: 2px solid transparent;
  border-radius: 6px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
  z-index: -1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-link.is-current {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--line);
}

.nav-link.is-current::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 46px;
  padding: 0;
  border-radius: 8px;
  border: 2px solid var(--line);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--line);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 52px 0 48px;
  border-bottom: 2px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 14px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow-tick {
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.15rem, 5.4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -1.8px;
}

.hero-title em {
  font-style: normal;
  color: var(--blue);
  white-space: nowrap;
  background-image: linear-gradient(var(--lime), var(--lime));
  background-repeat: no-repeat;
  background-size: 100% 0.17em;
  background-position: 0 88%;
}

.hero-aside {
  padding-left: 30px;
  border-left: 2px solid var(--line);
}

.hero-subtitle {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts li {
  flex: 1 1 118px;
  padding: 11px 13px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--line);
}

.fact-value {
  display: block;
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  line-height: 1.2;
}

.fact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.listing {
  padding: 54px 0 66px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.section-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.row-grid {
  display: grid;
  grid-template-columns: 58px 152px minmax(130px, 1fr) minmax(180px, 1.35fr) 116px 176px;
  align-items: center;
  gap: 18px;
}

.list-head {
  padding: 0 20px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--line);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.offer-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--line);
}

.offer-card.is-top {
  border-color: var(--blue);
  box-shadow: 6px 6px 0 var(--blue);
}

.offer-card.is-top:hover {
  box-shadow: 9px 9px 0 var(--blue);
}

.offer-ribbon {
  position: absolute;
  top: -14px;
  left: 20px;
  padding: 4px 12px;
  background: var(--lime);
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.offer-main {
  padding: 22px 20px;
}

.offer-rank span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 10px;
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.offer-card.is-top .offer-rank span {
  background: var(--blue);
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 10px 12px;
  background: radial-gradient(circle at 50% 18%, #232c3d 0%, var(--tile) 72%);
  border: 2px solid var(--line);
  border-radius: 10px;
}

.offer-card.is-top .offer-logo {
  background: radial-gradient(circle at 50% 18%, #22305c 0%, var(--tile) 72%);
}

.offer-logo img {
  display: block;
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer-name h3 {
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.offer-meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.bonus-main {
  display: block;
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--blue);
}

.bonus-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.score-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--lime);
  border: 2px solid var(--line);
  border-radius: 8px;
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.1;
}

.score-bar {
  display: block;
  width: 100%;
  max-width: 96px;
  height: 6px;
  margin-top: 8px;
  background: rgba(13, 16, 20, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar span {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 999px;
}

.btn-visit {
  display: block;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--bone);
  border: 2px solid var(--line);
  border-radius: 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--lime);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.btn-visit:hover,
.btn-visit:focus-visible {
  background: var(--blue);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--lime);
}

.offer-terms {
  margin: 0;
  padding: 13px 20px 16px;
  border-top: 2px dashed var(--hairline);
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.col-label {
  display: none;
  margin-bottom: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-footer {
  background: var(--ink);
  color: var(--bone);
  border-top: 2px solid var(--line);
  padding: 52px 0 30px;
}

.footer-notice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 38px;
}

.notice-card {
  padding: 20px 22px;
  background: var(--tile);
  border: 2px solid rgba(244, 241, 234, 0.16);
  border-radius: 14px;
}

.notice-card h3 {
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 9px;
  color: var(--lime);
}

.notice-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(244, 241, 234, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.16);
}

.footer-brand .brand-mark {
  box-shadow: 3px 3px 0 var(--lime);
  border-color: rgba(244, 241, 234, 0.3);
  margin-bottom: 14px;
}

.footer-name {
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.footer-name span {
  color: var(--lime);
}

.footer-about {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(244, 241, 234, 0.66);
  max-width: 330px;
}

.footer-col h3 {
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.footer-col li + li {
  margin-top: 9px;
}

.footer-col a {
  font-size: 0.87rem;
  color: rgba(244, 241, 234, 0.72);
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--lime);
  padding-left: 4px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.16);
}

.badge-link,
.badge-static {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 56px;
  padding: 10px 16px;
  background: var(--tile);
  border: 2px solid rgba(244, 241, 234, 0.16);
  border-radius: 12px;
}

.badge-link {
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.badge-link:hover,
.badge-link:focus-visible {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.badge-static {
  min-width: 66px;
  border-color: rgba(216, 246, 81, 0.45);
}

.footer-badges img {
  display: block;
  width: auto;
  height: 30px;
  max-width: 100%;
}

.badge-static img {
  height: 34px;
}

.footer-disclosure {
  margin: 0;
  padding: 24px 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(244, 241, 234, 0.62);
  border-bottom: 1px solid rgba(244, 241, 234, 0.16);
}

.footer-disclosure strong {
  color: var(--bone);
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  padding: 18px 20px;
  background: var(--tile);
  border: 2px solid var(--lime);
  border-radius: 14px;
}

.age-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-age p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(244, 241, 234, 0.78);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 241, 234, 0.16);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(244, 241, 234, 0.62);
}

.footer-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-mini a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.62);
  transition: color 0.15s ease;
}

.footer-mini a:hover,
.footer-mini a:focus-visible {
  color: var(--lime);
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 22px;
  background: rgba(8, 10, 15, 0.88);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

html.age-locked .age-gate {
  display: flex;
}

html.age-locked,
html.age-locked body {
  overflow: hidden;
}

.age-gate-panel {
  width: 100%;
  max-width: 480px;
  padding: 30px 28px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--blue);
  text-align: center;
}

.age-gate.is-blocked .age-gate-panel {
  box-shadow: 8px 8px 0 var(--danger);
  border-color: var(--danger);
}

.age-gate-view.is-hidden {
  display: none;
}

.age-gate-badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  background: var(--lime);
  border: 2px solid var(--line);
  border-radius: 50%;
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
}

.age-gate-badge.is-block {
  background: var(--danger);
  color: var(--paper);
  border-color: var(--danger);
}

.age-gate-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.age-gate-text {
  margin: 0 0 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.age-gate-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-age {
  padding: 15px 18px;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-age.is-yes {
  background: var(--ink);
  color: var(--bone);
  box-shadow: 3px 3px 0 var(--lime);
}

.btn-age.is-yes:hover,
.btn-age.is-yes:focus-visible {
  background: var(--blue);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--lime);
}

.btn-age.is-no {
  background: var(--paper);
  color: var(--ink);
}

.btn-age.is-no:hover,
.btn-age.is-no:focus-visible {
  background: var(--bone);
}

.age-gate-note {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.age-gate-note a {
  color: var(--blue);
  font-weight: 600;
}

.cookie-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 16px 0;
  background: var(--ink);
  border-top: 2px solid var(--lime);
}

.cookie-bar.is-open {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.74);
  max-width: 760px;
}

.cookie-text strong {
  color: var(--bone);
}

.cookie-text a {
  color: var(--lime);
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.btn-cookie {
  padding: 12px 18px;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--lime);
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-cookie:hover,
.btn-cookie:focus-visible {
  background: var(--bone);
  border-color: var(--bone);
}

.btn-cookie.is-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244, 241, 234, 0.35);
}

.btn-cookie.is-ghost:hover,
.btn-cookie.is-ghost:focus-visible {
  background: rgba(244, 241, 234, 0.12);
  border-color: var(--bone);
  color: var(--bone);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .row-grid {
    grid-template-columns: 50px 124px minmax(112px, 1fr) minmax(150px, 1.2fr) 100px 152px;
    gap: 14px;
  }

  .offer-rank span {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .bonus-main {
    font-size: 1rem;
  }

  .btn-visit {
    padding: 13px 12px;
    font-size: 0.74rem;
    letter-spacing: 0.8px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 22px 22px;
    background: var(--bone);
    border-bottom: 2px solid var(--line);
    box-shadow: 0 18px 30px rgba(13, 16, 20, 0.16);
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-link {
    padding: 14px 16px;
    background: var(--paper);
    border-color: var(--line);
    border-radius: 8px;
    box-shadow: 3px 3px 0 var(--line);
    text-align: center;
    font-size: 0.86rem;
  }

  .nav-link::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .hero-aside {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 2px solid var(--line);
  }

  .listing {
    padding: 40px 0 52px;
  }

  .list-head {
    display: none;
  }

  .row-grid {
    grid-template-columns: 64px 1fr;
    align-items: start;
    gap: 16px;
  }

  .col-label {
    display: block;
  }

  .offer-logo {
    justify-self: start;
    width: 100%;
    max-width: 200px;
    min-height: 56px;
  }

  .offer-name,
  .offer-bonus,
  .offer-score,
  .offer-action {
    grid-column: 1 / -1;
  }

  .offer-name,
  .offer-bonus,
  .offer-score {
    padding-top: 14px;
    border-top: 2px dashed var(--hairline);
  }

  .score-bar {
    max-width: 100%;
  }

  .btn-visit {
    padding: 15px 18px;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
  }

  .footer-notice {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-about {
    max-width: none;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-cookie {
    flex: 1 1 auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .hero {
    padding: 36px 0 34px;
  }

  .hero::before {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -70px;
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 1px;
  }

  .hero-facts li {
    flex: 1 1 100%;
  }

  .offer-main {
    padding: 20px 15px;
  }

  .offer-ribbon {
    left: 14px;
  }

  .offer-terms {
    padding: 12px 15px 15px;
  }

  .row-grid {
    grid-template-columns: 56px 1fr;
    gap: 13px;
  }

  .site-footer {
    padding: 38px 0 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-badges {
    gap: 10px;
  }

  .badge-link,
  .badge-static {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }

  .footer-age {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .age-gate-panel {
    padding: 24px 20px;
  }

  .age-gate-title {
    font-size: 1.34rem;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

.content-hero {
  padding: 50px 0 40px;
  border-bottom: 2px solid var(--line);
}

.content-hero-inner {
  max-width: 820px;
}

.content-title {
  max-width: 760px;
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.content-intro {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink-soft);
}

.content-section {
  padding: 46px 0 62px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 42px;
}

.prose {
  min-width: 0;
}

.prose-section {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px dashed var(--hairline);
}

.prose-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.prose h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.7px;
  margin-bottom: 12px;
}

.prose h3 {
  font-family: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 22px 0 8px;
}

.prose p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.prose li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
}

.prose li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border: 2px solid var(--line);
  border-radius: 2px;
}

.prose a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--ink);
}

.content-aside {
  position: sticky;
  top: 20px;
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--blue);
}

.content-aside h2 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.content-aside p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.content-aside a {
  display: inline-block;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.info-card {
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--line);
}

.info-card h3 {
  margin-top: 0;
  color: var(--ink);
}

.contact-email {
  display: inline-block;
  margin: 8px 0 18px;
  padding: 14px 18px;
  background: var(--blue);
  color: var(--paper) !important;
  border: 2px solid var(--line);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--lime);
  font-size: 1rem;
  text-decoration: none !important;
}

.callout {
  margin: 20px 0;
  padding: 18px 20px;
  background: rgba(216, 246, 81, 0.35);
  border: 2px solid var(--line);
  border-radius: 12px;
}

.callout p {
  color: var(--ink);
}

@media (max-width: 860px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .content-hero {
    padding: 36px 0 30px;
  }

  .content-title {
    letter-spacing: -1.2px;
  }

  .content-section {
    padding: 34px 0 44px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
