@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --void: #12110f;
  --ink: #1a1916;
  --paper: #f3efe6;
  --paper-2: #ebe4d6;
  --line: #1a1916;
  --signal: #f4ff47;
  --hot: #ff3d6e;
  --ice: #7ef0d4;
  --muted: #5c574e;
  --soft: #8a8376;
  --max: 1180px;
  --nav-h: 78px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --shadow: 6px 6px 0 #1a1916;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  position: relative;
  font-family: var(--font-body);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: clip;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(26, 25, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 25, 22, 0.04) 1px, transparent 1px),
    radial-gradient(900px 420px at 100% -5%, rgba(244, 255, 71, 0.35), transparent 55%),
    radial-gradient(700px 380px at -5% 20%, rgba(255, 61, 110, 0.16), transparent 50%),
    linear-gradient(165deg, #f7f3ea 0%, #efe8da 48%, #e7dfcf 100%);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  -webkit-font-smoothing: antialiased;
}

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 18px,
      rgba(26, 25, 22, 0.015) 18px,
      rgba(26, 25, 22, 0.015) 19px
    );
  z-index: 0;
}

.site-header {
  position: relative;
  z-index: 200;
  border-bottom: 3px solid var(--line);
  background: rgba(243, 239, 230, 0.94);
}

main,
.topbar,
.listings,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--signal);
  border: 3px solid var(--line);
  box-shadow: 3px 3px 0 var(--hot);
  flex-shrink: 0;
}

.brand__mark svg {
  width: 28px;
  height: 28px;
  display: block;
}

.brand__text {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  min-width: 0;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.brand__tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hot);
}

.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 3px solid var(--line);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav__toggle-bar {
  width: 18px;
  height: 3px;
  background: var(--ink);
  display: block;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) 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(-8px) rotate(-45deg);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.nav__index {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--soft);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
  outline: none;
}

.nav__link.is-active {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--line);
  box-shadow: 3px 3px 0 var(--ink);
}

.nav__link.is-active .nav__index {
  color: var(--ink);
}

.hero {
  padding: 1.75rem 0 1.5rem;
  overflow: hidden;
}

.hero .container {
  overflow: hidden;
  padding-bottom: 6px;
  padding-right: 6px;
}

.hero__shell {
  display: grid;
  grid-template-columns: 54px 1fr;
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
  overflow: hidden;
  max-width: 100%;
}

.hero__rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.35rem;
  background: var(--ink);
  color: var(--signal);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__rail span:nth-child(2) {
  color: var(--ice);
}

.hero__rail span:nth-child(3) {
  color: var(--hot);
}

.hero__panel {
  position: relative;
  overflow: hidden;
  padding: 1.55rem 1.55rem 1.7rem;
  background:
    linear-gradient(135deg, rgba(244, 255, 71, 0.22) 0%, transparent 34%),
    linear-gradient(320deg, rgba(255, 61, 110, 0.1) 0%, transparent 40%),
    var(--paper-2);
}

.hero__panel::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: var(--signal);
  border: 3px solid var(--line);
  transform: rotate(18deg);
  opacity: 0.55;
  pointer-events: none;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  background: var(--ink);
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--line);
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.6vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  max-width: 13ch;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--hot);
  background: linear-gradient(180deg, transparent 62%, rgba(244, 255, 71, 0.75) 62%);
  padding: 0 0.08em;
}

.hero h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.58;
  border-left: 4px solid var(--hot);
  padding-left: 0.9rem;
}

.topbar {
  background: var(--void);
  color: var(--paper);
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 42px;
  padding: 0.55rem 0;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.45rem;
  padding: 0 0.4rem;
  background: var(--signal);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 2px solid var(--signal);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  flex-shrink: 0;
}

.topbar__text {
  font-size: 0.78rem;
  color: rgba(243, 239, 230, 0.78);
  font-weight: 500;
  min-width: 0;
}

.topbar__text strong {
  color: var(--signal);
  font-weight: 700;
}

.topbar__year {
  justify-self: end;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
  white-space: nowrap;
}

.listings {
  padding: 1.75rem 0 2.4rem;
  overflow: hidden;
}

.listings__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.15rem;
}

.listings__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.listings__title {
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.listings__board {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.offer {
  border: 3px solid var(--line);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}

.offer:nth-child(odd) {
  background:
    linear-gradient(90deg, rgba(244, 255, 71, 0.16), transparent 28%),
    var(--paper);
}

.offer:nth-child(even) {
  background:
    linear-gradient(90deg, rgba(255, 61, 110, 0.1), transparent 28%),
    var(--paper-2);
}

.offer__row {
  display: grid;
  grid-template-columns: 58px 158px minmax(120px, 1.2fr) minmax(150px, 1.4fr) 84px auto;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 0.9rem 1rem;
}

.offer__rank {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--ink);
  color: var(--signal);
  border: 2px solid var(--line);
}

.offer:nth-child(even) .offer__rank {
  color: var(--ice);
}

.offer__logo {
  width: 150px;
  height: 96px;
  border: 2px solid var(--line);
  background: #0d0c0a;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0.35rem;
}

.offer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.offer__identity {
  min-width: 0;
}

.offer__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.offer__label {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
}

.offer__bonus,
.offer__score {
  min-width: 0;
}

.offer__bonus-kicker,
.offer__score-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.2rem;
}

.offer__bonus strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.offer__score {
  text-align: center;
}

.offer__score strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.35rem 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--signal);
  border: 2px solid var(--line);
  box-shadow: 2px 2px 0 var(--hot);
}

.offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  background: var(--hot);
  color: #fff;
  border: 3px solid var(--line);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: center;
}

.offer__cta:hover,
.offer__cta:focus-visible {
  background: var(--ink);
  color: var(--signal);
  outline: none;
}

.offer__disclaimer {
  border-top: 2px dashed rgba(26, 25, 22, 0.28);
  padding: 0.7rem 1rem 0.85rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
  background: rgba(26, 25, 22, 0.04);
}

.page {
  padding: 1.6rem 0 2.2rem;
}

.page__intro {
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(244, 255, 71, 0.18) 0%, transparent 36%),
    var(--paper-2);
  padding: 1.35rem 1.35rem 1.45rem;
}

.page__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.page__intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 0.7rem;
}

.page__intro h1 em {
  font-style: normal;
  color: var(--hot);
  background: linear-gradient(180deg, transparent 62%, rgba(244, 255, 71, 0.75) 62%);
}

.page__lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.55;
}

.page__body {
  padding: 1.6rem 0 0.4rem;
}

.prose {
  display: grid;
  gap: 1.1rem;
  border: 3px solid var(--line);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 1.35rem 1.25rem 1.5rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  border-left: 4px solid var(--hot);
  padding-left: 0.75rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.prose p,
.prose li {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.prose a {
  color: var(--hot);
  text-decoration: underline;
}

.prose strong {
  color: var(--ink);
}

.contact-card {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.35rem;
  padding: 1rem;
  border: 3px solid var(--line);
  background: linear-gradient(120deg, rgba(244, 255, 71, 0.2), transparent 55%), var(--paper-2);
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
}

.contact-card__mail {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.contact-card__mail:hover,
.contact-card__mail:focus-visible {
  color: var(--hot);
  outline: none;
}

.site-footer {
  margin-top: auto;
  background: var(--void);
  color: rgba(243, 239, 230, 0.78);
  padding: 2.2rem 0 1.5rem;
  border-top: 3px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr auto;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(243, 239, 230, 0.14);
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--signal);
  margin-bottom: 0.55rem;
}

.footer-brand__text,
.footer-play p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(243, 239, 230, 0.72);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 0.65rem;
}

.footer-age {
  margin-top: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 2px solid rgba(244, 255, 71, 0.35);
  background: rgba(244, 255, 71, 0.08);
  color: var(--paper);
  font-size: 0.84rem;
}

.footer-age strong {
  color: var(--signal);
  margin-right: 0.25rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  max-width: 320px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.45rem 0.55rem;
  background: #0d0c0a;
  border: 2px solid rgba(243, 239, 230, 0.22);
}

.footer-badge img {
  width: auto;
  max-width: 120px;
  height: 36px;
  object-fit: contain;
}

.footer-badge:last-child img {
  width: 42px;
  height: 42px;
  max-width: none;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(243, 239, 230, 0.14);
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(243, 239, 230, 0.72);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--signal);
  outline: none;
}

.footer-legal {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem 0 1.2rem;
  border-bottom: 1px solid rgba(243, 239, 230, 0.14);
}

.footer-legal p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(243, 239, 230, 0.62);
}

.footer-legal strong {
  color: var(--ice);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: space-between;
  padding-top: 1.1rem;
  font-size: 0.86rem;
  color: rgba(243, 239, 230, 0.68);
}

.footer-bottom strong {
  color: var(--signal);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(600px 320px at 80% 10%, rgba(244, 255, 71, 0.18), transparent 60%),
    rgba(10, 9, 8, 0.88);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate__panel {
  width: min(100%, 460px);
  border: 3px solid var(--line);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--hot);
  padding: 1.5rem 1.35rem 1.4rem;
}

.age-gate__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.age-gate__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.age-gate__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.age-gate__actions {
  display: grid;
  gap: 0.65rem;
}

.age-gate__btn {
  min-height: 48px;
  border: 3px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0.7rem 1rem;
}

.age-gate__btn--yes {
  background: var(--signal);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.age-gate__btn--no {
  background: var(--paper-2);
  color: var(--ink);
}

.age-gate__btn:hover,
.age-gate__btn:focus-visible {
  background: var(--ink);
  color: var(--signal);
  outline: none;
}

.age-gate__view[hidden] {
  display: none !important;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
}

.cookie-bar[hidden] {
  display: none !important;
}

.cookie-bar__inner {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.1rem;
  padding: 0.95rem 1rem;
  border: 3px solid var(--line);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.cookie-bar__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.cookie-bar__copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.cookie-bar__copy p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-bar__copy a {
  color: var(--hot);
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-bar__btn {
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border: 2px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-bar__btn--accept {
  background: var(--signal);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.cookie-bar__btn--reject {
  background: var(--paper-2);
  color: var(--ink);
}

.cookie-bar__btn:hover,
.cookie-bar__btn:focus-visible {
  background: var(--ink);
  color: var(--signal);
  outline: none;
}

body.is-age-locked > :not(.age-gate):not(script) {
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1100px) {
  .offer__row {
    grid-template-columns: 52px 130px minmax(110px, 1fr) minmax(130px, 1.2fr) 76px minmax(120px, auto);
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .offer__logo {
    width: 122px;
    height: 82px;
  }

  .offer__cta {
    padding: 0.65rem 0.8rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 860px) {
  .topbar__inner {
    grid-template-columns: auto 1fr;
  }

  .topbar__year {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.65rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.65rem;
    border: 3px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    z-index: 300;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .hero {
    padding: 1.15rem 0 1.15rem;
  }

  .hero .container {
    padding-bottom: 4px;
    padding-right: 4px;
  }

  .hero__shell {
    grid-template-columns: 1fr;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .hero__rail {
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: row;
    justify-content: space-around;
    padding: 0.55rem 0.75rem;
    gap: 0.5rem;
  }

  .hero__panel {
    padding: 1.25rem 1.1rem 1.4rem;
  }

  .hero__panel::after {
    width: 90px;
    height: 90px;
    right: -24px;
    top: -24px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .listings {
    padding: 1.35rem 0 1.9rem;
  }

  .offer__row {
    grid-template-columns: 46px 120px 1fr;
    grid-template-areas:
      "rank logo identity"
      "bonus bonus bonus"
      "score score cta";
    gap: 0.75rem;
  }

  .offer__rank { grid-area: rank; width: 42px; height: 42px; }
  .offer__logo { grid-area: logo; width: 120px; height: 80px; }
  .offer__identity { grid-area: identity; }
  .offer__bonus { grid-area: bonus; }
  .offer__score {
    grid-area: score;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }
  .offer__score-kicker { margin-bottom: 0; }
  .offer__cta {
    grid-area: cta;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    justify-content: flex-start;
    max-width: none;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .topbar__text {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .brand__tag {
    display: none;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .hero__rail span:nth-child(2) {
    display: none;
  }

  .offer__row {
    grid-template-columns: 40px 112px 1fr;
    padding: 0.8rem;
  }

  .offer__logo {
    width: 112px;
    height: 76px;
  }

  .offer__cta {
    white-space: normal;
    padding: 0.65rem 0.75rem;
  }

  .offer__disclaimer {
    padding: 0.65rem 0.8rem 0.8rem;
    font-size: 0.68rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-bar {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .cookie-bar__actions {
    width: 100%;
  }

  .cookie-bar__btn {
    flex: 1 1 auto;
  }
}
