@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #12151c;
  --ink-soft: #2a3140;
  --fog: #e7eef4;
  --fog-deep: #d5e0ea;
  --paper: #f4f8fb;
  --lime: #c8f542;
  --lime-deep: #a8d42a;
  --flame: #ff5a2c;
  --line: rgba(18, 21, 28, 0.12);
  --muted: #5b6678;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(18, 21, 28, 0.12);
  --container: 1140px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--fog);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(200, 245, 66, 0.28), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 90, 44, 0.16), transparent 26%),
    linear-gradient(135deg, transparent 0 46%, rgba(18, 21, 28, 0.03) 46% 47%, transparent 47%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(18, 21, 28, 0.025) 18px,
      rgba(18, 21, 28, 0.025) 19px
    );
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  padding: 1.1rem 0 0.4rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.65rem 0.85rem 0.65rem 0.75rem;
  background: rgba(244, 248, 251, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
  border-radius: 12px;
  transform: rotate(-6deg);
  box-shadow: 6px 6px 0 var(--lime);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark svg rect {
  stroke: var(--lime);
  fill: transparent;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand-meta {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  background: var(--fog-deep);
  border-radius: 12px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.62rem 1rem;
  border-radius: 10px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.nav-link.is-active {
  color: var(--ink);
  background: var(--lime);
}

.hero {
  position: relative;
  padding: 1.6rem 0 1.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.7fr);
  gap: 1.1rem;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 1.55rem 1.6rem 1.65rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 251, 0.9) 100%);
  border: 1px solid var(--line);
  border-radius: 28px 28px 28px 8px;
  box-shadow: var(--shadow);
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(135deg, rgba(200, 245, 66, 0.55), rgba(255, 90, 44, 0.28));
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--lime) 0 42%, var(--flame) 42% 68%, var(--ink) 68% 100%);
}

.hero-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.hero h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
}

.hero-signal {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.signal-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.15rem 1.1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.signal-block--accent {
  background: linear-gradient(160deg, var(--flame) 0%, #ff7a4d 100%);
  color: var(--white);
}

.signal-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.signal-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.signal-stripe {
  height: 14px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--ink) 0 10px,
      var(--lime) 10px 20px,
      var(--flame) 20px 30px,
      var(--fog-deep) 30px 40px
    );
}

.listing {
  padding: 0.4rem 0 1.8rem;
  flex: 1;
}

.listing-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.1rem;
}

.listing-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame);
}

.listing-head h2 {
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.offer {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(18, 21, 28, 0.08);
}

.offer:nth-child(odd) {
  background:
    linear-gradient(120deg, rgba(200, 245, 66, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.86);
}

.offer:nth-child(even) {
  background:
    linear-gradient(120deg, rgba(255, 90, 44, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.86);
}

.offer-row {
  display: grid;
  grid-template-columns: 64px 148px minmax(120px, 1.1fr) minmax(160px, 1.4fr) 84px auto;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.05rem;
}

.offer-rank {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--lime);
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 var(--lime);
}

.offer:nth-child(even) .offer-rank {
  color: var(--white);
  background: var(--flame);
  box-shadow: 4px 4px 0 var(--ink);
}

.offer-media {
  width: 148px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.offer-name h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.offer-name span {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer-bonus strong {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-soft);
}

.offer-score {
  text-align: center;
}

.offer-score strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  height: 3.1rem;
  padding: 0 0.35rem;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  box-shadow: 3px 3px 0 rgba(18, 21, 28, 0.15);
}

.offer-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(18, 21, 28, 0.18);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn-visit:hover,
.btn-visit:focus-visible {
  background: var(--flame);
  color: var(--white);
  outline: none;
  transform: translateY(-1px);
}

.offer-disclaimer {
  padding: 0.7rem 1.05rem 0.85rem;
  border-top: 1px dashed rgba(18, 21, 28, 0.14);
  background: rgba(18, 21, 28, 0.03);
}

.offer-disclaimer p {
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--muted);
}

.site-footer {
  padding: 0.6rem 0 1.6rem;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-top,
.footer-responsible,
.footer-disclosure,
.footer-age-row,
.footer-bottom {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.4rem 2rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 46ch;
}

.footer-brand-link {
  display: inline-flex;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.footer-col h3,
.footer-responsible-copy h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.18s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--flame);
  outline: none;
}

.footer-responsible {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1rem 1.5rem;
  align-items: center;
}

.footer-responsible-copy p {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.35rem 0.45rem;
  background: rgba(18, 21, 28, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(18, 21, 28, 0.28);
  outline: none;
}

.footer-logo-link img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 160px;
  object-fit: contain;
}

.footer-disclosure p,
.footer-age-row p,
.footer-bottom p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-disclosure strong {
  color: var(--ink);
}

.footer-age-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(120deg, rgba(200, 245, 66, 0.18), rgba(255, 255, 255, 0.72) 42%);
}

.age-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.3rem;
  padding: 0 0.35rem;
  border-radius: 6px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.age-chip--lg {
  min-width: 3rem;
  height: 2.2rem;
  padding: 0 0.55rem;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 4px 4px 0 var(--lime);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom strong {
  color: var(--ink);
  font-weight: 700;
}

.overlay-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 245, 66, 0.18), transparent 36%),
    rgba(7, 10, 16, 0.82);
  backdrop-filter: blur(8px);
}

.overlay-gate[hidden] {
  display: none;
}

.gate-card {
  width: min(100%, 460px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gate-panel {
  padding: 1.5rem 1.35rem 1.4rem;
  text-align: center;
}

.gate-panel .age-chip {
  margin-bottom: 0.85rem;
}

.gate-panel h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.gate-panel p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
}

.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.gate-btn--yes {
  background: var(--ink);
  color: var(--lime);
}

.gate-btn--yes:hover,
.gate-btn--yes:focus-visible {
  background: var(--flame);
  color: var(--white);
  outline: none;
}

.gate-btn--no {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.gate-btn--no:hover,
.gate-btn--no:focus-visible {
  background: rgba(18, 21, 28, 0.05);
  outline: none;
}

.gate-panel--restrict {
  background: linear-gradient(160deg, rgba(255, 90, 44, 0.12), transparent 55%);
}

body.gate-locked {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  padding: 0.85rem 0 1rem;
  background: rgba(18, 21, 28, 0.96);
  border-top: 1px solid rgba(200, 245, 66, 0.25);
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-copy h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 0.25rem;
}

.cookie-copy p {
  color: #d7e0ea;
  font-size: 0.86rem;
  max-width: 62ch;
}

.cookie-copy a {
  color: var(--lime);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-actions .gate-btn--no {
  color: #eef5f8;
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-actions .gate-btn--no:hover,
.cookie-actions .gate-btn--no:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  padding: 1.5rem 0 0.6rem;
}

.page-hero-card {
  padding: 1.4rem 1.35rem 1.45rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 251, 0.9) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--lime) 0 42%, var(--flame) 42% 68%, var(--ink) 68% 100%);
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
  color: var(--ink);
  max-width: 18ch;
}

.page-hero .lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 58ch;
}

.content-section {
  padding: 1rem 0 1.8rem;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.content-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 12px 28px rgba(18, 21, 28, 0.06);
}

.content-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.content-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.9rem 0 0.4rem;
  color: var(--ink);
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.content-card p + p {
  margin-top: 0.7rem;
}

.content-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.content-card a {
  color: var(--flame);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus-visible {
  background: var(--flame);
  color: var(--white);
  outline: none;
}

@media (max-width: 1100px) {
  .offer-row {
    grid-template-columns: 56px 128px minmax(110px, 1fr) minmax(140px, 1.3fr);
    grid-template-areas:
      "rank media name cta"
      "rank media bonus score";
  }

  .offer-rank { grid-area: rank; }
  .offer-media { grid-area: media; width: 128px; height: 64px; }
  .offer-name { grid-area: name; }
  .offer-bonus { grid-area: bonus; }
  .offer-score { grid-area: score; text-align: left; }
  .offer-cta { grid-area: cta; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-signal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .signal-stripe {
    grid-column: 1 / -1;
  }

  .hero h1 {
    max-width: 18ch;
  }

  .footer-top,
  .footer-responsible {
    grid-template-columns: 1fr;
  }

  .footer-logos {
    justify-content: flex-start;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .gate-btn {
    flex: 1;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 0.7rem;
    background: rgba(244, 248, 251, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    padding: 0.9rem 1rem;
  }

  .navbar {
    position: relative;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .brand-meta {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    box-shadow: 4px 4px 0 var(--lime);
  }

  .hero {
    padding: 1.15rem 0 1.05rem;
  }

  .hero-copy {
    padding: 1.25rem 1.15rem 1.4rem;
    border-radius: 22px 22px 22px 8px;
  }

  .hero-signal {
    grid-template-columns: 1fr;
  }

  .offer-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-areas:
      "rank name score"
      "media media media"
      "bonus bonus bonus"
      "cta cta cta";
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .offer-rank {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .offer-media {
    grid-area: media;
    width: 100%;
    max-width: 240px;
    height: 88px;
    padding: 0.5rem;
    justify-self: start;
  }

  .offer-media img {
    max-width: 100%;
    max-height: 100%;
  }

  .offer-score {
    justify-self: end;
  }

  .offer-score .offer-label {
    display: none;
  }

  .offer-cta {
    justify-content: stretch;
  }

  .btn-visit {
    width: 100%;
  }

  .offer-disclaimer {
    padding: 0.65rem 0.9rem 0.8rem;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-age-row {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
