:root {
  --ink: #12141c;
  --muted: #4a5160;
  --cobalt: #1a3a6b;
  --cobalt-deep: #122849;
  --sun: #f5c518;
  --flare: #e63946;
  --paper: #f4f6fb;
  --snow: #ffffff;
  --line: rgba(18, 40, 73, 0.14);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Karla", sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.85, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.page-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(26, 58, 107, 0.05) 0%, transparent 42%),
    linear-gradient(295deg, rgba(245, 197, 24, 0.12) 0%, transparent 38%),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 18px,
      rgba(26, 58, 107, 0.03) 18px,
      rgba(26, 58, 107, 0.03) 19px
    ),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 60;
  border-bottom: 2px solid var(--ink);
  background: rgba(244, 246, 251, 0.92);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease);
}

.brand:hover .brand__mark {
  transform: rotate(45deg) scale(1.05);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--cobalt);
}

.brand__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flare);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  background: var(--sun);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.25s var(--ease);
}

.nav-toggle:hover {
  background: var(--snow);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s 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);
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.primary-nav__link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.primary-nav__link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
  color: var(--cobalt);
  outline: none;
}

.primary-nav__link:hover::after,
.primary-nav__link:focus-visible::after,
.primary-nav__link.is-active::after {
  transform: scaleX(1);
}

.primary-nav__link.is-active {
  color: var(--cobalt);
}

.primary-nav__idx {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--flare);
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 2.4rem 0 2.8rem;
  border-bottom: 2px solid var(--ink);
}

.hero__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(48vw, 560px);
  height: 100%;
  background:
    linear-gradient(160deg, var(--cobalt) 0%, var(--cobalt-deep) 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  animation: panelIn 0.85s var(--ease) both;
}

.hero__tiles {
  position: absolute;
  right: 4%;
  top: 18%;
  width: 180px;
  height: 180px;
  transform: rotate(18deg);
  opacity: 0.9;
  animation: tilePop 0.9s var(--ease) 0.15s both;
  pointer-events: none;
  background:
    linear-gradient(var(--sun), var(--sun)) 0 0 / 32% 32% no-repeat,
    linear-gradient(var(--flare), var(--flare)) 34% 0 / 32% 32% no-repeat,
    linear-gradient(var(--snow), var(--snow)) 68% 0 / 32% 32% no-repeat,
    linear-gradient(var(--snow), var(--snow)) 0 34% / 32% 32% no-repeat,
    linear-gradient(var(--sun), var(--sun)) 34% 34% / 32% 32% no-repeat,
    linear-gradient(var(--flare), var(--flare)) 68% 34% / 32% 32% no-repeat,
    linear-gradient(var(--flare), var(--flare)) 0 68% / 32% 32% no-repeat,
    linear-gradient(var(--snow), var(--snow)) 34% 68% / 32% 32% no-repeat,
    linear-gradient(var(--sun), var(--sun)) 68% 68% / 32% 32% no-repeat;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  align-items: center;
}

.hero__copy {
  max-width: 640px;
  animation: riseIn 0.7s var(--ease) both;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--cobalt);
  margin-bottom: 0.85rem;
  background: linear-gradient(90deg, var(--cobalt) 60%, var(--flare));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
  max-width: 22ch;
}

.hero__subtitle {
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  font-weight: 500;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 1.35rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border: 2px solid var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn:hover {
  transform: translate(-3px, -3px);
}

.btn--primary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn--primary:hover {
  background: var(--flare);
  color: var(--snow);
}

.btn--ghost {
  background: var(--snow);
  color: var(--cobalt);
  box-shadow: 4px 4px 0 var(--cobalt);
}

.btn--ghost:hover {
  background: var(--cobalt);
  color: var(--snow);
}

.hero__aside {
  position: relative;
  justify-self: end;
  display: grid;
  place-items: center;
  min-height: 200px;
  width: min(100%, 240px);
  animation: riseIn 0.8s var(--ease) 0.12s both;
}

.hero__diamond {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  background: var(--sun);
  transform: rotate(45deg);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--flare);
  animation: diamondTilt 4s ease-in-out infinite;
}

.hero__orbit {
  position: absolute;
  width: 200px;
  height: 200px;
}

.hero__orbit span {
  position: absolute;
  border: 2px solid rgba(245, 197, 24, 0.45);
  inset: 0;
  border-radius: 50%;
  animation: orbitSpin 10s linear infinite;
}

.hero__orbit span:nth-child(2) {
  inset: 18px;
  border-color: rgba(230, 57, 70, 0.4);
  animation-duration: 7s;
  animation-direction: reverse;
}

.hero__orbit span:nth-child(3) {
  inset: 36px;
  border-color: rgba(244, 246, 251, 0.35);
  animation-duration: 12s;
}

.listing {
  padding: 2.75rem 0 3.25rem;
}

.listing__head {
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.listing__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 0.45rem;
}

.listing__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  letter-spacing: -0.03em;
  color: var(--cobalt);
  line-height: 1.1;
  margin-bottom: 0.55rem;
}

.listing__lead {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.listing__board {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.listing__labels {
  display: grid;
  grid-template-columns: 56px 110px minmax(140px, 1.2fr) minmax(160px, 1.3fr) 90px 170px;
  gap: 0.75rem;
  align-items: end;
  padding: 0 1rem 0.35rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer {
  border: 2px solid var(--ink);
  background: var(--snow);
  box-shadow: 6px 6px 0 var(--cobalt);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.offer:nth-of-type(1) {
  box-shadow: 6px 6px 0 var(--sun);
}

.offer:nth-of-type(2) {
  box-shadow: 6px 6px 0 var(--cobalt);
}

.offer:nth-of-type(3) {
  box-shadow: 6px 6px 0 var(--flare);
}

.offer:nth-of-type(4) {
  box-shadow: 6px 6px 0 var(--sun);
}

.offer:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.offer__row {
  display: grid;
  grid-template-columns: 56px 110px minmax(140px, 1.2fr) minmax(160px, 1.3fr) 90px 170px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 1rem;
  background:
    linear-gradient(90deg, rgba(245, 197, 24, 0.18) 0, rgba(245, 197, 24, 0.18) 56px, transparent 56px);
}

.offer__num span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.offer:nth-of-type(2) .offer__num span,
.offer:nth-of-type(4) .offer__num span {
  background: var(--flare);
  color: var(--snow);
}

.offer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.35rem;
  border: 2px solid var(--line);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(26, 58, 107, 0.04),
      rgba(26, 58, 107, 0.04) 6px,
      transparent 6px,
      transparent 12px
    ),
    var(--paper);
}

.offer__logo img {
  width: 100%;
  max-width: 108px;
  height: 48px;
  object-fit: contain;
}

.offer__name {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.offer__name strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cobalt);
}

.offer__name span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.offer__bonus .offer__label {
  display: none;
}

.offer__bonus p {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.3;
}

.offer__score {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  justify-content: center;
}

.offer__score-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--cobalt);
  line-height: 1;
}

.offer__score-max {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

.offer__cta {
  display: flex;
  justify-content: flex-end;
}

.offer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--ink);
  background: var(--cobalt);
  color: var(--snow);
  font-weight: 700;
  font-size: 0.84rem;
  text-align: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.offer__btn:hover {
  background: var(--sun);
  color: var(--ink);
  transform: translateY(-2px);
}

.offer__disclaimer {
  border-top: 2px dashed rgba(18, 40, 73, 0.2);
  padding: 0.65rem 1rem 0.75rem;
  background: rgba(26, 58, 107, 0.04);
}

.offer__disclaimer p {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 980px) {
  .listing__labels {
    display: none;
  }

  .offer__row {
    grid-template-columns: 48px 96px 1fr;
    grid-template-areas:
      "num logo name"
      "bonus bonus bonus"
      "score score cta";
    gap: 0.7rem 0.65rem;
    background: linear-gradient(180deg, rgba(245, 197, 24, 0.16) 0, rgba(245, 197, 24, 0.16) 4px, transparent 4px);
  }

  .offer__num {
    grid-area: num;
  }

  .offer__logo {
    grid-area: logo;
  }

  .offer__name {
    grid-area: name;
  }

  .offer__bonus {
    grid-area: bonus;
    padding: 0.55rem 0.65rem;
    border: 2px solid var(--line);
    background: var(--paper);
  }

  .offer__bonus .offer__label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--flare);
    margin-bottom: 0.2rem;
  }

  .offer__score {
    grid-area: score;
    justify-content: flex-start;
  }

  .offer__cta {
    grid-area: cta;
    justify-content: stretch;
  }
}

@media (max-width: 560px) {
  .offer {
    box-shadow: 4px 4px 0 var(--cobalt);
  }

  .offer:hover {
    transform: none;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .offer__row {
    grid-template-columns: 42px 1fr;
    grid-template-areas:
      "num name"
      "logo logo"
      "bonus bonus"
      "score cta";
    padding: 0.85rem;
  }

  .offer__logo {
    min-height: 64px;
  }

  .offer__logo img {
    max-width: 140px;
    height: 52px;
  }

  .offer__cta {
    justify-content: stretch;
  }
}

.page {
  padding: 2.4rem 0 3rem;
  border-bottom: 2px solid var(--ink);
}

.page__hero {
  margin-bottom: 1.75rem;
  max-width: 720px;
}

.page__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 0.45rem;
}

.page__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.035em;
  color: var(--cobalt);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.page__lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 60ch;
}

.prose {
  display: grid;
  gap: 1.1rem;
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cobalt);
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.prose a {
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose strong {
  color: var(--ink);
}

.content-panel {
  margin-top: 1.5rem;
  padding: 1.25rem 1.2rem;
  border: 2px solid var(--ink);
  background: var(--snow);
  box-shadow: 6px 6px 0 var(--sun);
  max-width: 760px;
}

.content-panel--cobalt {
  background: var(--cobalt);
  color: var(--snow);
  box-shadow: 6px 6px 0 var(--flare);
}

.content-panel--cobalt p,
.content-panel--cobalt li {
  color: rgba(244, 246, 251, 0.88);
}

.content-panel--cobalt a {
  color: var(--sun);
}

.content-panel__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 0.45rem;
}

.content-panel--cobalt .content-panel__label {
  color: var(--sun);
}

.content-panel__email {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--cobalt);
}

.review-card {
  margin-top: 1.25rem;
  border: 2px solid var(--ink);
  background: var(--snow);
  box-shadow: 6px 6px 0 var(--cobalt);
  max-width: 760px;
}

.review-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 2px solid var(--line);
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.18), transparent 55%);
}

.review-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cobalt);
}

.review-card__score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
}

.review-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.site-footer {
  background: var(--ink);
  color: rgba(244, 246, 251, 0.82);
  padding: 2.4rem 0 1.5rem;
  border-top: 2px solid var(--sun);
}

.footer-age {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(245, 197, 24, 0.55);
  background: rgba(245, 197, 24, 0.08);
}

.footer-age__icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--snow);
  box-shadow: 4px 4px 0 var(--flare);
}

.footer-age__copy {
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-age__copy strong {
  color: var(--sun);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 246, 251, 0.12);
}

.footer-badges__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 64px;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(244, 246, 251, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer-badges__item:hover {
  background: rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.55);
}

.footer-badges__item img {
  width: auto;
  max-width: 110px;
  height: 48px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand__name {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--sun);
  margin-bottom: 0.55rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 32ch;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--snow);
  margin-bottom: 0.75rem;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(244, 246, 251, 0.78);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--sun);
}

.footer-affiliate {
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--flare);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-affiliate strong {
  color: var(--sun);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(244, 246, 251, 0.12);
  font-size: 0.82rem;
}

.footer-bottom__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.1rem 0.35rem;
  margin: 0 0.15rem;
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
}

.section-head {
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flare);
  margin-bottom: 0.45rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--cobalt);
  line-height: 1.12;
  margin-bottom: 0.55rem;
}

.section-head__lead {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.features {
  padding: 2.75rem 0;
  border-top: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.35);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.2rem 1.15rem;
  border: 2px solid var(--ink);
  background: var(--snow);
  box-shadow: 5px 5px 0 var(--cobalt);
  transition: transform 0.3s var(--ease);
}

.feature:nth-child(2) {
  box-shadow: 5px 5px 0 var(--sun);
}

.feature:nth-child(3) {
  box-shadow: 5px 5px 0 var(--flare);
}

.feature:hover {
  transform: translate(-3px, -3px);
}

.feature__idx {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--flare);
  margin-bottom: 0.55rem;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cobalt);
  margin-bottom: 0.45rem;
}

.feature__text {
  color: var(--muted);
  font-size: 0.95rem;
}

.guide {
  padding: 2.75rem 0;
  border-top: 2px solid var(--ink);
}

.guide__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.guide__steps {
  margin: 1.1rem 0 1.4rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 600;
}

.guide__panel {
  padding: 1.4rem 1.25rem;
  background: var(--cobalt);
  color: var(--snow);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--sun);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide__panel-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 0.65rem;
}

.guide__panel-text {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.guide__panel-link {
  font-weight: 700;
  color: var(--sun);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust {
  padding: 2.5rem 0 3rem;
  border-top: 2px solid var(--ink);
  background:
    linear-gradient(120deg, rgba(245, 197, 24, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.4);
}

.trust__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust__item {
  padding: 1rem 1.05rem;
  border-top: 3px solid var(--cobalt);
  background: rgba(255, 255, 255, 0.7);
}

.trust__item:nth-child(2) {
  border-top-color: var(--sun);
}

.trust__item:nth-child(3) {
  border-top-color: var(--flare);
}

.trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cobalt);
  margin-bottom: 0.35rem;
}

.trust__item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.age-gate,
.age-block {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 197, 24, 0.2), transparent 40%),
    rgba(18, 20, 28, 0.88);
}

.age-gate[hidden],
.age-block[hidden],
.cookie-consent[hidden] {
  display: none !important;
}

.age-gate__card,
.age-block__card {
  width: min(100%, 460px);
  padding: 1.6rem 1.4rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--sun);
  text-align: center;
}

.age-gate__badge,
.age-block__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  background: var(--sun);
  border: 2px solid var(--ink);
  color: var(--ink);
}

.age-gate__brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cobalt);
  margin-bottom: 0.35rem;
}

.age-gate__title,
.age-block__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.age-gate__text,
.age-block__text,
.age-block__help {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.age-block__help a {
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: underline;
}

.age-gate__actions {
  display: grid;
  gap: 0.65rem;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  padding: 1rem;
}

.cookie-consent__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  background: var(--snow);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--cobalt);
}

.cookie-consent__copy {
  flex: 1 1 280px;
}

.cookie-consent__copy h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cobalt);
  margin-bottom: 0.3rem;
}

.cookie-consent__copy p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-consent__copy a {
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.is-age-locked {
  overflow: hidden;
}

body.is-age-locked #site-shell {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tilePop {
  from {
    opacity: 0;
    transform: rotate(18deg) scale(0.85);
  }
  to {
    opacity: 0.9;
    transform: rotate(18deg) scale(1);
  }
}

@keyframes diamondTilt {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
  }
  50% {
    transform: rotate(52deg) scale(1.05);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    width: 100%;
    height: 42%;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
  }

  .hero__aside {
    justify-self: start;
    min-height: 140px;
  }

  .hero__tiles {
    top: auto;
    bottom: 8%;
    right: 6%;
    width: 120px;
    height: 120px;
  }

  .hero__title {
    max-width: none;
  }

  .features__grid,
  .trust__row,
  .guide__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 0.85rem 1rem 1.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    width: min(100%, var(--max));
    margin-inline: auto;
  }

  .primary-nav__link {
    width: 100%;
    padding: 0.9rem 0.75rem;
    border-left: 3px solid transparent;
  }

  .primary-nav__link.is-active,
  .primary-nav__link:hover {
    border-left-color: var(--sun);
    background: rgba(26, 58, 107, 0.05);
  }

  .primary-nav__link::after {
    display: none;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 560px) {
  .brand__tag {
    display: none;
  }

  .hero {
    padding: 1.8rem 0 2.2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__tiles {
    display: none;
  }

  .hero__aside {
    width: 100%;
  }

  .footer-age {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
