@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink-950: #111817;
  --ink-900: #18211f;
  --smoke-800: #26302d;
  --smoke-700: #38443f;
  --shell-050: #f5f1e8;
  --shell-100: #e9e4d8;
  --shell-200: #d6d0c3;
  --coast-300: #61dec6;
  --coast-400: #22c7a9;
  --coast-500: #10a98e;
  --coast-700: #08715f;
  --copper-400: #d49a58;
  --sky-300: #7ccbd1;
  --warning-400: #e4b34b;
  --danger-400: #e97869;
  --success-400: #22c7a9;
  --border-dark: rgba(245, 241, 232, 0.16);
  --border-light: rgba(17, 24, 23, 0.18);
  --shadow-low: 0 18px 50px rgba(7, 15, 14, 0.16);
  --shadow-high: 0 34px 88px rgba(5, 12, 11, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shell-max: 1320px;
  --gutter: clamp(1rem, 3.2vw, 3rem);
  --section-space: clamp(5rem, 10vw, 10rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light dark;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--shell-050);
  color: var(--ink-950);
  font-family: "Geist", sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.125rem);
  font-weight: 420;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coast-400);
  outline-offset: 4px;
}

::selection {
  background: var(--coast-400);
  color: var(--ink-950);
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 670;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 6.7vw, 7.8rem);
}

h2 {
  font-size: clamp(2.45rem, 4.65vw, 5.6rem);
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  line-height: 1.04;
}

.site-shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell-max));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  background: var(--shell-050);
  color: var(--ink-950);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--coast-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--warm {
  color: var(--copper-400);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border: 1px solid var(--coast-400);
  border-radius: var(--radius-pill);
  background: var(--coast-400);
  color: var(--ink-950);
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out);
}

.button:hover {
  border-color: var(--coast-300);
  background: var(--coast-300);
  transform: translateY(-2px);
}

.button--outline {
  border-color: rgba(245, 241, 232, 0.38);
  background: transparent;
  color: var(--shell-050);
}

.button--outline:hover {
  border-color: var(--shell-050);
  background: var(--shell-050);
  color: var(--ink-950);
}

.button--dark {
  border-color: var(--ink-950);
  background: var(--ink-950);
  color: var(--shell-050);
}

.button--dark:hover {
  border-color: var(--smoke-700);
  background: var(--smoke-700);
}

.button--quiet {
  border-color: var(--border-dark);
  background: transparent;
  color: var(--shell-050);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  font-size: 0.93rem;
  font-weight: 660;
  text-decoration: none;
}

.text-link span {
  color: var(--coast-400);
  font-size: 1.3em;
  transition: transform 180ms var(--ease-out);
}

.text-link:hover span {
  transform: translateX(4px);
}

.utility-bar {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
  background: #0c1211;
  color: var(--shell-100);
  font-size: 0.75rem;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p {
  margin: 0;
}

.utility-bar strong {
  margin-right: 0.42rem;
  color: var(--coast-400);
}

.utility-bar a {
  font-weight: 640;
}

.site-header {
  position: relative;
  z-index: 25;
  border-bottom: 1px solid var(--border-dark);
  background: var(--ink-950);
  color: var(--shell-050);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.72rem;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 31px;
  aspect-ratio: 1;
  place-items: center;
  border: 1.5px solid var(--coast-400);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
  position: absolute;
  content: "";
}

.brand__mark::before {
  width: 15px;
  height: 1px;
  background: var(--coast-400);
}

.brand__mark::after {
  width: 1px;
  height: 15px;
  background: var(--coast-400);
}

.brand__mark span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shell-050);
}

.brand__word {
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: 0.17em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--shell-100);
  font-size: 0.86rem;
  font-weight: 560;
  text-decoration: none;
}

.site-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--coast-400);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__search {
  padding-inline: 1rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--shell-050);
}

.menu-toggle__label {
  font-size: 0.82rem;
  font-weight: 650;
}

.menu-toggle__lines {
  display: grid;
  gap: 5px;
}

.menu-toggle__lines span {
  display: block;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(890px, calc(100vh - 116px));
  background:
    linear-gradient(90deg, var(--ink-950) 0%, var(--ink-950) 42%, rgba(17, 24, 23, 0.4) 65%, var(--ink-950) 100%);
  color: var(--shell-050);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 241, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 76%, transparent);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(890px, calc(100vh - 116px));
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: clamp(0.9rem, 1.5vw, 1.5rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero__copy {
  position: relative;
  z-index: 3;
  grid-column: 1 / span 7;
}

.hero h1 {
  max-width: 8.8ch;
  margin-bottom: 1.6rem;
  letter-spacing: -0.065em;
}

.hero__lede {
  max-width: 48ch;
  margin-bottom: 2rem;
  color: rgba(245, 241, 232, 0.78);
  font-size: clamp(1.12rem, 1rem + 0.55vw, 1.48rem);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero__guardrail {
  max-width: 57ch;
  padding-top: 1.35rem;
  margin: 1.65rem 0 0;
  border-top: 1px solid var(--border-dark);
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.8rem;
}

.hero__guardrail strong {
  margin-right: 0.3rem;
  color: var(--coast-400);
}

.hero__visual {
  position: absolute;
  top: 0;
  right: min(calc((100vw - var(--shell-max)) / -2), calc(var(--gutter) * -1));
  bottom: 0;
  left: 47%;
  overflow: hidden;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink-950) 0%, rgba(17, 24, 23, 0.45) 27%, transparent 54%),
    linear-gradient(0deg, rgba(17, 24, 23, 0.66) 0%, transparent 30%);
  content: "";
  pointer-events: none;
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: 63% center;
}

.hero__lens {
  position: absolute;
  z-index: 2;
  top: 9%;
  right: clamp(1rem, 4vw, 4.6rem);
  display: grid;
  width: clamp(132px, 13vw, 190px);
  aspect-ratio: 1;
  place-content: center;
  gap: 0.15rem;
  border: 1px solid rgba(245, 241, 232, 0.38);
  border-radius: 50%;
  background: rgba(17, 24, 23, 0.32);
  backdrop-filter: blur(8px);
  color: var(--shell-050);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.hero__lens::before,
.hero__lens::after {
  position: absolute;
  background: rgba(34, 199, 169, 0.72);
  content: "";
}

.hero__lens::before {
  top: 50%;
  right: -24%;
  left: -24%;
  height: 1px;
}

.hero__lens::after {
  top: -24%;
  bottom: -24%;
  left: 50%;
  width: 1px;
}

.hero__caption {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 4vw, 4.6rem);
  bottom: 2rem;
  margin: 0;
  color: rgba(245, 241, 232, 0.76);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verification-ribbon {
  border-block: 1px solid var(--border-light);
  background: var(--shell-050);
}

.verification-ribbon__inner {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  align-items: center;
  gap: 3rem;
  padding-block: 1.4rem;
}

.verification-ribbon__intro p:last-child {
  max-width: 32ch;
  margin: 0;
  font-size: 0.8rem;
}

.verification-ribbon__intro .eyebrow {
  margin-bottom: 0.35rem;
}

.verification-ribbon__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.verification-ribbon__list li {
  display: grid;
  min-height: 48px;
  align-content: center;
  gap: 0.1rem;
  padding-inline: 1.2rem;
  border-left: 1px solid var(--border-light);
  font-size: 0.78rem;
  font-weight: 600;
}

.verification-ribbon__list span {
  color: var(--coast-700);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.home-section {
  position: relative;
  padding-block: var(--section-space);
}

.home-section--dark,
.methodology-story,
.game-discovery,
.featured-editorial {
  background: var(--ink-950);
  color: var(--shell-050);
}

.home-section--shell {
  background: var(--shell-050);
}

.section-heading {
  margin-bottom: clamp(2.6rem, 6vw, 5.8rem);
}

.section-heading h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.section-heading--split > p,
.section-heading--split > a {
  max-width: 46ch;
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.7);
}

.home-section--shell .section-heading--split > p {
  color: rgba(17, 24, 23, 0.68);
}

.review-collection {
  border-top: 1px solid var(--border-dark);
}

.review-teaser {
  display: grid;
  grid-template-columns: 0.25fr 1.45fr 0.65fr;
  align-items: center;
  gap: 2rem;
  padding-block: clamp(1.8rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--border-dark);
}

.review-teaser__index {
  color: var(--coast-400);
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 250;
  letter-spacing: -0.08em;
}

.review-teaser h3 {
  margin-bottom: 0.65rem;
}

.review-teaser h3 a {
  text-decoration: none;
}

.review-teaser__body > p:last-child {
  max-width: 60ch;
  margin: 0;
  color: rgba(245, 241, 232, 0.67);
}

.status-label {
  margin-bottom: 0.5rem;
  color: var(--coast-400);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-teaser__action {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
}

.review-teaser__action > span {
  color: rgba(245, 241, 232, 0.54);
  font-size: 0.74rem;
}

.qualification-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.6rem, 4vw, 3.4rem);
  border: 1px solid var(--border-dark);
  background: linear-gradient(115deg, rgba(34, 199, 169, 0.08), transparent 46%);
}

.qualification-empty__seal {
  display: grid;
  width: clamp(88px, 10vw, 130px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--coast-400);
  border-radius: 50%;
}

.qualification-empty__seal span {
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 260;
}

.qualification-empty h3 {
  max-width: 21ch;
  margin-bottom: 0.8rem;
}

.qualification-empty p:last-child {
  max-width: 65ch;
  margin: 0;
  color: rgba(245, 241, 232, 0.67);
}

.payment-discovery__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  align-items: start;
  gap: clamp(3rem, 10vw, 10rem);
}

.section-heading--sticky {
  position: sticky;
  top: 2rem;
  margin: 0;
}

.section-heading--sticky h2 {
  max-width: 7.5ch;
  margin-bottom: 1.5rem;
}

.section-heading--sticky p:not(.eyebrow) {
  max-width: 43ch;
  color: rgba(17, 24, 23, 0.67);
}

.decision-stack {
  display: grid;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.decision-card {
  display: grid;
  min-height: 270px;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--shell-050);
}

.decision-card:nth-child(2) {
  background: var(--shell-100);
}

.decision-card__number {
  color: var(--coast-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.decision-card h3 {
  max-width: 13ch;
  margin-bottom: 0.7rem;
}

.decision-card p {
  max-width: 45ch;
  margin: 0;
  color: rgba(17, 24, 23, 0.68);
}

.methodology-story::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 20%, rgba(34, 199, 169, 0.07), transparent 22%),
    linear-gradient(112deg, transparent 70%, rgba(212, 154, 88, 0.05));
  content: "";
  pointer-events: none;
}

.methodology-story .site-shell {
  position: relative;
}

.evidence-accordion {
  display: flex;
  min-height: 470px;
  border: 1px solid var(--border-dark);
}

.evidence-step {
  display: grid;
  overflow: clip;
  min-width: 0;
  flex: 0.72;
  grid-template-columns: 1fr;
  border-right: 1px solid var(--border-dark);
  transition: flex 500ms var(--ease-out), background 280ms ease;
}

.evidence-step:last-child {
  border-right: 0;
}

.evidence-step[open] {
  flex: 2.5;
  background: rgba(34, 199, 169, 0.055);
}

.evidence-step summary {
  display: grid;
  min-width: 92px;
  cursor: pointer;
  grid-template-rows: auto 1fr;
  gap: 1.4rem;
  padding: 1.5rem;
  list-style: none;
}

.evidence-step summary::-webkit-details-marker {
  display: none;
}

.evidence-step summary span {
  color: var(--coast-400);
  font-size: 0.72rem;
  font-weight: 700;
}

.evidence-step summary strong {
  align-self: end;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.evidence-step > div {
  display: none;
  align-content: end;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.evidence-step[open] > div {
  display: grid;
}

.evidence-step h3 {
  max-width: 14ch;
  margin-bottom: 1rem;
}

.evidence-step p {
  max-width: 44ch;
  margin: 0;
  color: rgba(245, 241, 232, 0.66);
}

.bonus-education__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 10vw, 10rem);
}

.bonus-education h2 {
  max-width: 8ch;
  margin-bottom: 1.5rem;
}

.section-lede {
  max-width: 46ch;
  margin-bottom: 2rem;
  color: rgba(17, 24, 23, 0.68);
  font-size: 1.12rem;
}

.terms-decoder {
  border-block: 1px solid var(--border-light);
}

.terms-decoder > div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: 1rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--border-light);
}

.terms-decoder > div:last-child {
  border-bottom: 0;
}

.terms-decoder span {
  color: var(--coast-700);
  font-size: 0.74rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-decoder strong {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.38rem);
  line-height: 1.22;
}

.game-bento {
  display: grid;
  min-height: 570px;
  grid-template-columns: 1.15fr 0.95fr 0.8fr;
  grid-template-rows: 1fr 0.9fr;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.game-tile {
  position: relative;
  display: grid;
  overflow: hidden;
  align-content: end;
  gap: 0.7rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--ink-900);
  color: var(--shell-050);
  text-decoration: none;
}

.game-tile::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent, rgba(34, 199, 169, 0.11));
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.game-tile:hover::before {
  opacity: 1;
}

.game-tile > * {
  position: relative;
  z-index: 1;
}

.game-tile span {
  color: var(--copper-400);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-tile strong {
  max-width: 16ch;
  font-size: clamp(1.3rem, 2.5vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.game-tile i {
  color: var(--coast-400);
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 220ms var(--ease-out);
}

.game-tile:hover i {
  transform: translateX(5px);
}

.game-tile--lead {
  grid-row: 1 / span 2;
  background:
    linear-gradient(0deg, rgba(17, 24, 23, 0.86), rgba(17, 24, 23, 0.1)),
    repeating-linear-gradient(132deg, rgba(212, 154, 88, 0.14) 0 1px, transparent 1px 26px),
    #3c3226;
}

.game-tile--sea {
  grid-column: 2 / span 2;
  background:
    linear-gradient(100deg, rgba(17, 24, 23, 0.6), transparent),
    radial-gradient(circle at 80% 25%, rgba(124, 203, 209, 0.25), transparent 35%),
    #173433;
}

.game-tile--line {
  background:
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(245, 241, 232, 0.07) 33px),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(245, 241, 232, 0.07) 33px),
    var(--ink-900);
}

.game-tile--light {
  background: var(--shell-100);
  color: var(--ink-950);
}

.game-tile--light span {
  color: var(--coast-700);
}

.aviator-gateway {
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  background: #0d1413;
  color: var(--shell-050);
}

.aviator-gateway__grid {
  display: grid;
  min-height: 500px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.aviator-gateway__visual {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--border-dark);
  background:
    linear-gradient(rgba(245, 241, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 25% 74%, rgba(34, 199, 169, 0.12), transparent 22%);
  background-size: 48px 48px, 48px 48px, auto;
}

.flight-line {
  position: absolute;
  right: 8%;
  bottom: 24%;
  left: 8%;
  height: 42%;
  border-top: 1px solid var(--coast-400);
  border-radius: 50% 50% 0 0;
  transform: rotate(-8deg);
}

.flight-line::after {
  position: absolute;
  top: -5px;
  right: 1%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coast-400);
  box-shadow: 0 0 0 10px rgba(34, 199, 169, 0.12);
  content: "";
}

.flight-point {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper-400);
}

.flight-point--one {
  right: 28%;
  bottom: 53%;
}

.flight-point--two {
  right: 50%;
  bottom: 42%;
}

.aviator-gateway h2 {
  max-width: 8.5ch;
  margin-bottom: 1.4rem;
}

.aviator-gateway p:not(.eyebrow) {
  max-width: 48ch;
  margin-bottom: 2rem;
  color: rgba(245, 241, 232, 0.69);
}

.safety-entry {
  background: var(--shell-100);
}

.safety-entry__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(3rem, 10vw, 10rem);
}

.safety-entry h2 {
  max-width: 9ch;
}

.safety-entry__items {
  border-top: 1px solid var(--border-light);
}

.safety-entry__items a {
  display: grid;
  min-height: 86px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}

.safety-entry__items span {
  color: var(--coast-700);
  font-size: 0.72rem;
  font-weight: 700;
}

.safety-entry__items strong {
  font-size: clamp(1rem, 1rem + 0.25vw, 1.25rem);
}

.safety-entry__items i {
  color: var(--coast-700);
  font-size: 1.25rem;
  font-style: normal;
  transition: transform 200ms var(--ease-out);
}

.safety-entry__items a:hover i {
  transform: translateX(5px);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.content-card {
  display: grid;
  min-width: 0;
  background: var(--ink-900);
}

.content-card:first-child {
  grid-row: span 2;
}

.content-card__media {
  display: block;
  overflow: hidden;
  min-height: 210px;
}

.content-card:first-child .content-card__media {
  min-height: 360px;
}

.content-card__media img,
.content-card__material {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.content-card:hover .content-card__media img {
  transform: scale(1.03);
}

.content-card__material {
  display: block;
  background:
    linear-gradient(120deg, transparent, rgba(34, 199, 169, 0.12)),
    repeating-linear-gradient(36deg, rgba(245, 241, 232, 0.07) 0 1px, transparent 1px 18px),
    #29322f;
}

.content-card__body {
  display: grid;
  align-content: start;
  padding: clamp(1.3rem, 3vw, 2.5rem);
}

.content-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.1vw, 2.5rem);
  line-height: 1.03;
}

.content-card h2 a {
  text-decoration: none;
}

.content-card__body > p:not(.eyebrow) {
  color: rgba(245, 241, 232, 0.65);
}

.content-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--border-dark);
}

.content-card__meta > span {
  color: rgba(245, 241, 232, 0.48);
  font-size: 0.72rem;
}

.editorial-empty {
  display: grid;
  min-height: 350px;
  align-content: end;
  padding: clamp(1.8rem, 5vw, 5rem);
  border: 1px solid var(--border-dark);
  background:
    radial-gradient(circle at 86% 24%, rgba(34, 199, 169, 0.12), transparent 18%),
    repeating-linear-gradient(138deg, rgba(245, 241, 232, 0.035) 0 1px, transparent 1px 24px);
}

.editorial-empty h3 {
  max-width: 26ch;
}

.editorial-empty p:last-child {
  max-width: 58ch;
  margin: 0;
  color: rgba(245, 241, 232, 0.64);
}

.decision-gateway {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--coast-400);
  color: var(--ink-950);
}

.decision-gateway .eyebrow {
  color: var(--ink-950);
}

.decision-gateway .section-heading {
  margin-bottom: 3rem;
}

.decision-gateway__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(17, 24, 23, 0.32);
}

.decision-gateway__grid a {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  border-right: 1px solid rgba(17, 24, 23, 0.32);
  text-decoration: none;
  transition: background 180ms ease;
}

.decision-gateway__grid a:last-child {
  border-right: 0;
}

.decision-gateway__grid a:hover {
  background: rgba(245, 241, 232, 0.24);
}

.decision-gateway__grid span {
  font-size: 0.72rem;
  font-weight: 700;
}

.decision-gateway__grid strong {
  max-width: 15ch;
  font-size: clamp(1.25rem, 2.2vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.decision-gateway__grid i {
  font-size: 1.4rem;
  font-style: normal;
}

.site-footer {
  background: #0c1211;
  color: var(--shell-050);
}

.site-footer__lead {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.9fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.brand--footer {
  margin-bottom: 1.5rem;
}

.site-footer__summary {
  max-width: 38ch;
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.9rem;
}

.site-footer__column h2 {
  margin-bottom: 1.2rem;
  color: var(--copper-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__column ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__column a,
.site-footer__column p {
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.84rem;
}

.site-footer__column a:hover {
  color: var(--shell-050);
}

.site-footer__help p {
  max-width: 33ch;
}

.site-footer__base {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border-dark);
  color: rgba(245, 241, 232, 0.52);
  font-size: 0.72rem;
}

.site-footer__base p {
  margin: 0;
}

.site-footer__base div {
  display: flex;
  gap: 1.2rem;
}

.archive-main,
.reading-main,
.review-main,
.not-found-main {
  background: var(--shell-050);
}

.archive-hero,
.article-hero,
.page-hero,
.review-hero,
.not-found-main {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  color: var(--shell-050);
}

.archive-hero::before,
.article-hero::before,
.page-hero::before,
.review-hero::before,
.not-found-main::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 24%, rgba(34, 199, 169, 0.12), transparent 18%),
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.025) 0 1px, transparent 1px 24px);
  content: "";
  pointer-events: none;
}

.archive-hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 510px;
  align-content: end;
  padding-block: clamp(4rem, 9vw, 8rem);
}

.archive-hero__inner {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}

.archive-hero__copy {
  min-width: 0;
}

.archive-hero h1,
.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.6rem, 8vw, 8.6rem);
}

.archive-hero__copy > p:last-child,
.page-hero__inner > p:last-child,
.archive-hero__description {
  max-width: 58ch;
  margin: 0;
  color: rgba(245, 241, 232, 0.68);
  font-size: 1.15rem;
}

.archive-proof {
  padding: clamp(1.35rem, 2.5vw, 2.3rem);
  border: 1px solid var(--border-dark);
  background: rgba(245, 241, 232, 0.035);
  backdrop-filter: blur(14px);
}

.archive-proof ol {
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.archive-proof li {
  display: grid;
  min-height: 58px;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border-dark);
  color: rgba(245, 241, 232, 0.78);
}

.archive-proof li:last-child {
  border-bottom: 1px solid var(--border-dark);
}

.archive-proof li span {
  color: var(--copper-400);
  font-size: 0.68rem;
  font-weight: 720;
}

.archive-proof > a {
  color: var(--coast-400);
  font-size: 0.82rem;
  font-weight: 680;
  text-decoration: none;
}

.archive-layout {
  padding-block: var(--section-space);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.archive-grid .content-card {
  background: var(--shell-050);
  color: var(--ink-950);
}

.archive-grid .content-card:first-child {
  grid-row: auto;
}

.archive-grid .content-card__body > p:not(.eyebrow) {
  color: rgba(17, 24, 23, 0.66);
}

.archive-grid .content-card__meta {
  border-color: var(--border-light);
}

.archive-grid .content-card__meta > span {
  color: rgba(17, 24, 23, 0.54);
}

.navigation.pagination {
  margin-top: 3rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-links .page-numbers {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--border-light);
  color: var(--ink-950);
  text-decoration: none;
}

.nav-links .current {
  border-color: var(--ink-950);
  background: var(--ink-950);
  color: var(--shell-050);
}

.empty-state {
  display: grid;
  min-height: 420px;
  align-content: center;
  justify-items: start;
  padding: clamp(1.5rem, 6vw, 6rem);
  border: 1px solid var(--border-light);
  background:
    radial-gradient(circle at 82% 28%, rgba(34, 199, 169, 0.12), transparent 20%),
    var(--shell-100);
}

.empty-state h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
}

.empty-state p {
  max-width: 50ch;
  color: rgba(17, 24, 23, 0.66);
}

.article-hero__grid,
.review-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.article-hero h1,
.review-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7vw, 7.6rem);
}

.review-hero h1 {
  max-width: 15ch;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.article-hero__lede,
.review-hero__verdict {
  max-width: 57ch;
  color: rgba(245, 241, 232, 0.7);
  font-size: clamp(1.12rem, 1rem + 0.45vw, 1.42rem);
  line-height: 1.5;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dark);
  color: rgba(245, 241, 232, 0.54);
  font-size: 0.76rem;
}

.article-hero__media {
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--border-dark);
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.article-layout,
.review-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}

.article-layout--page {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.article-rail,
.review-summary {
  position: sticky;
  top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
  color: rgba(17, 24, 23, 0.65);
  font-size: 0.82rem;
}

.article-rail strong {
  color: var(--ink-950);
}

.article-rail a {
  color: var(--coast-700);
  font-weight: 650;
}

.article-content {
  grid-column: 2;
  color: #1d2725;
  font-size: clamp(1.0625rem, 0.99rem + 0.2vw, 1.1875rem);
  line-height: 1.72;
}

.article-layout--page .article-content {
  grid-column: 1;
}

.article-content > * {
  max-width: 100%;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  scroll-margin-top: 2rem;
  color: var(--ink-950);
}

.article-content h2 {
  margin-top: 4.8rem;
  margin-bottom: 1.4rem;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.article-content h3 {
  margin-top: 3.2rem;
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content table,
.article-content blockquote {
  margin-bottom: 1.55rem;
}

.article-content a {
  color: var(--coast-700);
  font-weight: 600;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35rem;
}

.article-content li + li {
  margin-top: 0.65rem;
}

.article-content blockquote {
  padding: 1.4rem 0 1.4rem 1.6rem;
  border-left: 3px solid var(--coast-400);
  color: rgba(17, 24, 23, 0.72);
  font-size: 1.16em;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92em;
}

.article-content th,
.article-content td {
  padding: 0.9rem;
  border: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  background: var(--ink-950);
  color: var(--shell-050);
}

.article-content td {
  background: rgba(233, 228, 216, 0.45);
}

.disclosure {
  padding: 1.25rem 1.4rem;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--coast-400);
  background: rgba(34, 199, 169, 0.08);
  font-size: 0.88em;
}

.disclosure p {
  margin-bottom: 0.4rem;
}

.responsible-note {
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-top: 5rem;
  background: var(--ink-950);
  color: var(--shell-050);
}

.responsible-note h2 {
  max-width: 12ch;
  margin-top: 0;
  color: var(--shell-050);
}

.responsible-note p:not(.eyebrow) {
  color: rgba(245, 241, 232, 0.68);
}

.source-list {
  padding-top: 2rem;
  margin-top: 5rem;
  border-top: 1px solid var(--border-light);
}

.source-list h2 {
  margin-top: 0;
}

.source-list li {
  overflow-wrap: anywhere;
}

.source-list span {
  color: rgba(17, 24, 23, 0.56);
  font-size: 0.78em;
}

.review-hero__status {
  display: grid;
  min-height: 300px;
  align-content: end;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border-dark);
  background: rgba(245, 241, 232, 0.03);
}

.review-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--border-dark);
  background: #111817;
}

.review-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 14, 13, 0.9));
  content: "";
  pointer-events: none;
}

.review-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.review-hero__status--overlay {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  min-height: 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.35rem 0.9rem;
  padding: 1rem;
  border-color: rgba(245, 241, 232, 0.18);
  background: rgba(12, 19, 18, 0.94);
}

.review-hero__status--overlay .review-status-mark {
  width: 42px;
  grid-row: 1 / span 2;
  margin: 0;
}

.review-hero__status--overlay p,
.review-hero__status--overlay strong {
  grid-column: 2;
}

.review-status-mark {
  display: block;
  width: 70px;
  aspect-ratio: 1;
  margin-bottom: auto;
  border: 1px solid var(--coast-400);
  border-radius: 50%;
  background: radial-gradient(circle, var(--coast-400) 0 5px, transparent 6px);
}

.review-hero__status p {
  margin-bottom: 0.4rem;
  color: rgba(245, 241, 232, 0.54);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.review-hero__status strong {
  max-width: 25ch;
  font-size: 1.15rem;
  line-height: 1.3;
}

.review-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-right: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}

.review-facts > div {
  display: grid;
  min-height: 138px;
  align-content: center;
  gap: 0.45rem;
  padding: 1.3rem;
  border-right: 1px solid var(--border-light);
}

.review-facts > div:last-child {
  border-right: 0;
}

.review-facts span,
.review-summary dt,
.fact-row span {
  color: var(--coast-700);
  font-size: 0.7rem;
  font-weight: 690;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-facts strong {
  overflow-wrap: anywhere;
  font-size: 0.95rem;
  line-height: 1.35;
}

.review-layout {
  grid-template-columns: 290px minmax(0, 760px) minmax(0, 1fr);
}

.review-summary dl {
  margin: 0;
}

.review-summary dl > div {
  padding-block: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.review-summary dd {
  margin: 0.35rem 0 0;
  color: var(--ink-950);
  line-height: 1.45;
}

.review-data-table {
  margin-top: 5rem;
}

.fact-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.fact-row strong {
  font-size: 0.92em;
  line-height: 1.45;
}

.search-form {
  display: flex;
  width: min(100%, 620px);
  min-height: 54px;
  margin-top: 2rem;
}

.search-field {
  min-width: 0;
  flex: 1;
  padding-inline: 1rem;
  border: 1px solid rgba(245, 241, 232, 0.32);
  border-right: 0;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  background: rgba(245, 241, 232, 0.06);
  color: var(--shell-050);
}

.search-field::placeholder {
  color: rgba(245, 241, 232, 0.48);
}

.search-form button {
  padding-inline: 1.4rem;
  border: 1px solid var(--coast-400);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--coast-400);
  color: var(--ink-950);
  font-weight: 680;
}

.empty-state .search-form {
  margin-bottom: 2rem;
}

.empty-state .search-field {
  border-color: var(--border-light);
  background: var(--shell-050);
  color: var(--ink-950);
}

.empty-state .search-field::placeholder {
  color: rgba(17, 24, 23, 0.5);
}

.not-found-main {
  min-height: 76vh;
}

.not-found {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 76vh;
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
  padding-block: 4rem;
}

.not-found__code {
  margin: 0;
  color: var(--coast-400);
  font-size: clamp(7rem, 22vw, 20rem);
  font-weight: 190;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.not-found h1 {
  max-width: 9ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.not-found > div > p:not(.eyebrow) {
  max-width: 55ch;
  color: rgba(245, 241, 232, 0.68);
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-nav__list {
    gap: 0.85rem;
  }

  .site-nav__list a {
    font-size: 0.8rem;
  }

  .hero__copy {
    grid-column: 1 / span 8;
  }

  .hero__visual {
    left: 42%;
  }

  .site-footer__lead {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 20;
    inset: 116px 0 0;
    display: none;
    overflow-y: auto;
    align-content: start;
    padding: 1.5rem var(--gutter) 3rem;
    background: var(--ink-950);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav__list {
    display: grid;
    width: 100%;
    gap: 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--border-dark);
  }

  .site-nav__list a {
    width: 100%;
    min-height: 64px;
    font-size: 1.2rem;
  }

  .site-nav__search {
    width: max-content;
    margin-top: 1.5rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 5rem;
    padding-bottom: 0;
  }

  .hero__copy {
    grid-column: 1;
    padding-bottom: 3rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 10vw, 6rem);
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% + (2 * var(--gutter)));
    min-height: 620px;
    margin-left: calc(var(--gutter) * -1);
  }

  .hero__visual::after {
    background: linear-gradient(180deg, var(--ink-950), transparent 32%, rgba(17, 24, 23, 0.54));
  }

  .hero__visual img {
    object-position: 67% center;
  }

  .verification-ribbon__inner,
  .payment-discovery__grid,
  .bonus-education__grid,
  .aviator-gateway__grid,
  .safety-entry__grid {
    grid-template-columns: 1fr;
  }

  .verification-ribbon__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .verification-ribbon__list li:nth-child(3) {
    border-top: 1px solid var(--border-light);
  }

  .verification-ribbon__list li:nth-child(4) {
    border-top: 1px solid var(--border-light);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .qualification-empty {
    grid-template-columns: auto 1fr;
  }

  .qualification-empty .button {
    grid-column: 2;
    justify-self: start;
  }

  .section-heading--sticky {
    position: static;
    margin-bottom: 3rem;
  }

  .evidence-accordion {
    min-height: 0;
    flex-direction: column;
  }

  .evidence-step,
  .evidence-step[open] {
    flex: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border-dark);
  }

  .evidence-step:last-child {
    border-bottom: 0;
  }

  .evidence-step summary {
    min-height: 66px;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    padding: 1rem 1.2rem;
  }

  .evidence-step summary strong {
    align-self: center;
    writing-mode: initial;
    transform: none;
  }

  .evidence-step > div {
    padding-top: 0;
  }

  .game-bento {
    min-height: 720px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .game-tile--lead {
    grid-row: 1 / span 2;
  }

  .game-tile--sea {
    grid-column: 2;
  }

  .editorial-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .editorial-grid .content-card:last-child {
    grid-column: 2;
  }

  .decision-gateway__grid {
    grid-template-columns: 1fr;
  }

  .decision-gateway__grid a {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 23, 0.32);
  }

  .decision-gateway__grid a:last-child {
    border-bottom: 0;
  }

  .site-footer__lead {
    grid-template-columns: repeat(2, 1fr);
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .article-hero__grid,
  .review-hero__grid {
    min-height: 560px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 2rem;
  }

  .article-hero__media {
    min-height: 340px;
  }

  .article-hero__media img {
    min-height: 340px;
  }

  .review-hero__visual,
  .review-hero__visual img {
    min-height: 340px;
  }

  .article-layout,
  .review-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-rail,
  .review-summary {
    position: static;
    max-width: 760px;
  }

  .article-content {
    grid-column: 1;
    max-width: 760px;
  }

  .review-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-facts > div:nth-child(2) {
    border-right: 0;
  }

  .review-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-light);
  }

  .not-found {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .not-found__code {
    font-size: clamp(7rem, 30vw, 14rem);
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1rem;
    --section-space: 5rem;
  }

  .utility-bar__inner {
    min-height: 40px;
  }

  .utility-bar p {
    max-width: 27ch;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .utility-bar a {
    font-size: 0.68rem;
    text-align: right;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-nav {
    inset: 112px 0 0;
  }

  .brand__word {
    font-size: 0.88rem;
  }

  .menu-toggle__label {
    display: none;
  }

  .hero__grid {
    padding-top: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero__lens {
    top: 7%;
    right: 1rem;
    width: 112px;
  }

  .hero__caption {
    right: 1rem;
    bottom: 1.2rem;
  }

  .verification-ribbon__inner {
    gap: 1.2rem;
  }

  .verification-ribbon__list li {
    min-height: 58px;
    padding-inline: 0.75rem;
  }

  .review-teaser {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .review-teaser__index {
    font-size: 2.4rem;
  }

  .review-teaser__action {
    grid-column: 2;
  }

  .qualification-empty {
    grid-template-columns: 1fr;
  }

  .qualification-empty__seal {
    width: 84px;
  }

  .qualification-empty .button {
    grid-column: 1;
  }

  .decision-card {
    min-height: 230px;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .terms-decoder > div {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .game-bento {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .game-tile,
  .game-tile--lead,
  .game-tile--sea {
    min-height: 230px;
    grid-column: auto;
    grid-row: auto;
  }

  .aviator-gateway__visual {
    min-height: 260px;
  }

  .safety-entry__items a {
    min-height: 78px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid .content-card,
  .editorial-grid .content-card:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .content-card:first-child .content-card__media,
  .content-card__media {
    min-height: 240px;
  }

  .site-footer__lead {
    grid-template-columns: 1fr;
  }

  .site-footer__base {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.2rem;
  }

  .site-footer__base div {
    flex-wrap: wrap;
  }

  .archive-hero__inner,
  .page-hero__inner {
    min-height: 430px;
  }

  .archive-proof {
    padding: 1.2rem;
  }

  .archive-hero h1,
  .page-hero h1,
  .article-hero h1,
  .review-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .article-hero__grid,
  .review-hero__grid {
    min-height: 500px;
    padding-block: 4rem;
  }

  .article-content h2 {
    margin-top: 3.8rem;
  }

  .review-facts {
    grid-template-columns: 1fr;
  }

  .review-facts > div,
  .review-facts > div:nth-child(2) {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .review-facts > div:last-child {
    border-bottom: 0;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .search-form {
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
