@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Syne:wght@600;700;800&display=swap');

:root {
  --ink: #0c1222;
  --ink-mid: #243047;
  --azure: #2457ff;
  --azure-deep: #1639c9;
  --coral: #ff5a3c;
  --coral-soft: #ff8a74;
  --fog: #eef2f8;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #d7deeb;
  --muted: #66758f;
  --hero-a: #0b1430;
  --hero-b: #152656;
  --hero-c: #1e3f8f;
  --shadow: 0 12px 32px rgba(12, 18, 34, 0.1);
  --radius: 12px;
  --container: 1140px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --ease: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(36, 87, 255, 0.08), transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(255, 90, 60, 0.07), transparent 38%),
    var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--ink);
  color: #dce5f5;
  border-bottom: 2px solid var(--coral);
  font-size: 0.8rem;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.topbar__left {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 1.4rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.topbar__label {
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.topbar__text {
  text-align: right;
  opacity: 0.9;
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__icon {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  flex-shrink: 0;
}

.brand__icon-shape {
  position: absolute;
  inset: 0;
  border-radius: 30% 70% 55% 45% / 45% 35% 65% 55%;
  background: linear-gradient(135deg, var(--azure) 0%, var(--azure-deep) 55%, #0f2f9e 100%);
}

.brand__icon-dot {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--coral);
  right: -0.1rem;
  top: -0.05rem;
  border: 2px solid var(--white);
}

.brand__icon-meta {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}

.brand__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--fog);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--ease), background var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--azure);
  background: #e8eeff;
  outline: none;
}

.nav-toggle__bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-menu a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 0.55rem 0.9rem;
  transition: color var(--ease);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--azure-deep);
  outline: none;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, var(--hero-a) 0%, var(--hero-b) 48%, var(--hero-c) 100%);
  color: var(--white);
}

.hero__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  right: -8rem;
  top: -12rem;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

.hero__band {
  position: absolute;
  inset: auto -10% -35% auto;
  width: 55%;
  height: 120%;
  background: linear-gradient(160deg, transparent 20%, rgba(36, 87, 255, 0.35) 100%);
  transform: skewX(-16deg);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black 20%, transparent 85%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2.4rem 0 2.55rem;
}

.hero__copy {
  max-width: 40rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f2f5ff;
}

.hero__chip--accent {
  border-color: rgba(255, 90, 60, 0.45);
  background: rgba(255, 90, 60, 0.18);
  color: #ffd8d0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 0.8rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--coral-soft);
}

.hero h2 {
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(226, 233, 248, 0.9);
  max-width: 34rem;
}

.hero__panel {
  justify-self: end;
  width: min(100%, 15.5rem);
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 14, 34, 0.42);
  box-shadow: var(--shadow);
}

.hero__panel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 0.55rem;
}

.hero__panel-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.hero__panel-list {
  display: grid;
  gap: 0.55rem;
}

.hero__panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: rgba(226, 233, 248, 0.88);
  line-height: 1.4;
}

.hero__panel-list li::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 0 3px rgba(36, 87, 255, 0.25);
  flex-shrink: 0;
}

.listing {
  padding: 3.25rem 0 3.75rem;
  background:
    linear-gradient(180deg, #e8eef8 0%, var(--paper) 28%, var(--paper) 100%);
}

.listing__head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.listing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure-deep);
}

.listing__eyebrow::before {
  content: '';
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--azure), var(--coral));
  transform: rotate(12deg);
}

.listing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.listing__intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.listing__stack {
  display: grid;
  gap: 1rem;
}

.offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 18, 34, 0.05);
  position: relative;
}

.offer::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--azure) 0%, var(--coral) 100%);
}

.offer:nth-child(2)::before {
  background: linear-gradient(180deg, #3d7bff 0%, #7aa2ff 100%);
}

.offer:nth-child(3)::before {
  background: linear-gradient(180deg, #ff7a45 0%, #ffb199 100%);
}

.offer:nth-child(4)::before {
  background: linear-gradient(180deg, #1f2a44 0%, #5c6b8a 100%);
}

.offer__row {
  display: grid;
  grid-template-columns: 4.2rem 7.5rem minmax(8rem, 1.1fr) minmax(11rem, 1.45fr) 5.5rem minmax(9rem, 10.5rem);
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1.15rem 1.25rem 1.15rem 1.45rem;
}

.offer__rank {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.offer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  padding: 0.45rem 0.6rem;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  border: 1px solid var(--line);
}

.offer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.offer__name strong,
.offer__bonus strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.offer__bonus strong {
  color: var(--azure-deep);
}

.offer__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.offer__score-ring {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0%, #eef3ff 55%, #dce6ff 100%);
  border: 2px solid rgba(36, 87, 255, 0.35);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}

.offer__score .offer__label {
  margin-bottom: 0;
}

.offer__cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral) 0%, #ff3d1f 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: 0 8px 18px rgba(255, 90, 60, 0.28);
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.btn-visit:hover,
.btn-visit:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 22px rgba(255, 90, 60, 0.34);
  outline: none;
}

.offer__disclaimer {
  padding: 0.7rem 1.25rem 0.85rem 1.45rem;
  border-top: 1px dashed #d9e1f0;
  background: linear-gradient(90deg, #f6f8fc 0%, #fbfcfe 100%);
}

.offer__disclaimer p {
  font-size: 0.72rem;
  line-height: 1.5;
  color: #7a879c;
}

@media (max-width: 1100px) {
  .offer__row {
    grid-template-columns: 3.5rem 6.5rem minmax(7rem, 1fr) minmax(9rem, 1.3fr) 5rem minmax(8rem, 9.5rem);
    gap: 0.7rem 0.75rem;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 2.15rem 0 2.3rem;
  }

  .hero__panel {
    justify-self: start;
    width: 100%;
    max-width: 26rem;
  }

  .offer__row {
    grid-template-columns: 3.2rem 1fr auto;
    grid-template-areas:
      "rank logo score"
      "name name name"
      "bonus bonus bonus"
      "cta cta cta";
    gap: 0.75rem;
    padding: 1.1rem 1.1rem 1.1rem 1.3rem;
  }

  .offer__rank { grid-area: rank; }
  .offer__logo { grid-area: logo; width: 8rem; }
  .offer__score { grid-area: score; }
  .offer__name { grid-area: name; }
  .offer__bonus { grid-area: bonus; }
  .offer__cta { grid-area: cta; justify-content: stretch; }

  .offer__disclaimer {
    padding-left: 1.3rem;
    padding-right: 1.1rem;
  }
}

@media (max-width: 768px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.7rem 0;
  }

  .topbar__text {
    text-align: left;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.7rem 1rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.9rem 0.85rem;
  }

  .nav-menu a::after {
    left: 0.85rem;
    right: auto;
    width: 1.4rem;
    bottom: 0.55rem;
  }

  .listing {
    padding: 2.5rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 1.02rem;
  }

  .brand__icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand__tag {
    display: none;
  }

  .offer__row {
    grid-template-columns: 2.8rem 1fr auto;
  }

  .offer__logo {
    width: 7rem;
    height: 3.2rem;
  }

  .footer-ribbon__inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-badges {
    gap: 0.65rem;
  }

  .footer-badge {
    width: calc(50% - 0.35rem);
    min-width: 0;
    height: 3.4rem;
  }

  .footer-legal-blocks {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    font-size: 0.72rem;
  }

  .age-gate__dialog {
    padding: 1.35rem 1.15rem 1.25rem;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }

  .cookie-bar {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.95rem 1rem;
  }

  .cookie-bar__actions {
    width: 100%;
  }

  .cookie-bar__btn {
    flex: 1;
  }
}

body.age-locked {
  overflow: hidden;
}

.site-footer {
  background: linear-gradient(180deg, #0d1428 0%, #0a1020 100%);
  color: #c9d3e8;
  margin-top: 0.5rem;
}

.footer-ribbon {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer-ribbon__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  padding: 1.15rem 0;
}

.footer-ribbon__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-ribbon__item p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #b8c4db;
}

.footer-ribbon__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 1.45rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-ribbon__icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 2px solid var(--azure);
  box-shadow: inset 0 0 0 3px rgba(36, 87, 255, 0.25);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-main {
  padding: 2.1rem 0 1.75rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 3.6rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  transition: transform var(--ease), opacity var(--ease);
}

.footer-badge:hover,
.footer-badge:focus-visible {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: none;
  outline: none;
}

.footer-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.7fr)) minmax(0, 1.15fr);
  gap: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
}

.brand--footer .brand__name {
  color: var(--white);
}

.brand--footer .brand__tag {
  color: #8e9db8;
}

.footer-brand__text {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #9aabc7;
  max-width: 22rem;
}

.footer-col h3,
.footer-cert h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: #a7b6d0;
  transition: color var(--ease);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--coral-soft);
  outline: none;
}

.footer-cert {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(36, 87, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(36, 87, 255, 0.16) 0%, rgba(255, 90, 60, 0.08) 100%);
}

.footer-cert__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 0.4rem;
}

.footer-cert p:last-child {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #b4c2db;
}

.footer-legal-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-note {
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-note h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-note p {
  font-size: 0.76rem;
  line-height: 1.55;
  color: #8fa0bc;
}

.footer-bottom {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  color: #7f90ad;
  line-height: 1.5;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(36, 87, 255, 0.28), transparent 42%),
    rgba(8, 12, 24, 0.86);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__dialog {
  width: min(100%, 26rem);
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 1.6rem 1.45rem 1.45rem;
  text-align: center;
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 1.7rem;
  padding: 0 0.65rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
}

.age-gate__badge--dark {
  background: var(--ink);
}

.age-gate h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.age-gate p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.age-gate__btn {
  min-height: 2.75rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter var(--ease), background var(--ease), border-color var(--ease);
}

.age-gate__btn--yes {
  background: linear-gradient(135deg, var(--azure) 0%, var(--azure-deep) 100%);
  color: var(--white);
}

.age-gate__btn--no {
  background: var(--fog);
  border-color: var(--line);
  color: var(--ink-mid);
}

.age-gate__btn:hover,
.age-gate__btn:focus-visible {
  filter: brightness(1.04);
  outline: none;
}

.age-gate__panel[hidden] {
  display: none;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  width: min(calc(100% - 2rem), 42rem);
  margin-inline: auto;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(12, 18, 34, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: #d7e0f2;
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.cookie-bar__inner p {
  flex: 1 1 14rem;
  font-size: 0.84rem;
  line-height: 1.5;
}

.cookie-bar__inner a {
  color: var(--coral-soft);
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.cookie-bar__btn {
  min-height: 2.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter var(--ease);
}

.cookie-bar__btn--accept {
  background: var(--coral);
  color: var(--white);
}

.cookie-bar__btn--decline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #d7e0f2;
}

.cookie-bar__btn:hover,
.cookie-bar__btn:focus-visible {
  filter: brightness(1.06);
  outline: none;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cert {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .footer-ribbon__inner {
    grid-template-columns: 1fr;
  }

  .footer-legal-blocks {
    grid-template-columns: 1fr;
  }
}

.page {
  padding: 2.4rem 0 3.4rem;
}

.page__intro {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure-deep);
}

.page__eyebrow::before {
  content: '';
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--azure), var(--coral));
  transform: rotate(12deg);
}

.page__intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.page__lede {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.prose {
  display: grid;
  gap: 1.15rem;
  max-width: 46rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 0.55rem;
}

.prose p,
.prose li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-mid);
}

.prose ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.prose a {
  color: var(--azure-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-card {
  margin-top: 0.35rem;
  padding: 1.25rem 1.3rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, #ffffff 0%, #f3f6fb 100%);
  box-shadow: var(--shadow);
  max-width: 28rem;
}

.contact-card__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-card__email {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--azure-deep);
}

.contact-card__email:hover,
.contact-card__email:focus-visible {
  color: var(--coral);
  outline: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0.4rem 0 0.6rem;
}

.about-card {
  padding: 1.1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.about-card h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.about-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 1.9rem 0 2.6rem;
  }
}
