:root {
  --bg: #090b0a;
  --bg-elevated: #0f1210;
  --panel: #121613;
  --panel-soft: #171b18;
  --line: #272d28;
  --line-light: #3b433c;
  --text: #f5f7f4;
  --muted: #a5ada6;
  --muted-light: #c6ccc7;
  --ink: #0a0d0b;
  --lime: #b8ff3d;
  --lime-bright: #cdff76;
  --green: #1ee58d;
  --amber: #ffb84a;
  --blue: #75a7ff;
  --violet: #b98cff;
  --red: #ff6c62;
  --container: 1320px;
  --header-font: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

h1,
h2,
h3 {
  font-family: var(--header-font);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.site-shell {
  overflow: hidden;
}

.utility-bar {
  border-bottom: 1px solid #1b1f1c;
  background: #070807;
  color: #969d97;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-bar__inner,
.utility-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.utility-bar p {
  margin: 0;
}

.utility-links {
  gap: 14px;
}

.utility-links span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line-light);
}

.utility-links a:hover {
  color: var(--text);
}

.site-header {
  background: rgba(9, 11, 10, 0.97);
}

.header-main {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: grid;
  grid-template-columns: 38px auto;
  align-items: center;
  column-gap: 9px;
}

.brand__mark {
  grid-row: span 2;
  width: 38px;
  color: var(--lime);
}

.brand__name {
  font-family: var(--header-font);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.brand__name span {
  color: var(--lime);
}

.brand__tagline {
  color: #798079;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
  z-index: 95;
}

.language-toggle {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #3d453e;
  border-radius: 24px;
  background: #0c100d;
  color: #e1e6e2;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.language-toggle:hover,
.language-switcher.is-open .language-toggle {
  border-color: var(--lime);
}

.language-toggle__globe {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--header-font);
  font-size: 12px;
}

.language-toggle__code {
  color: var(--lime);
  letter-spacing: 0.08em;
}

.language-toggle__caret {
  color: #7d867e;
  font-size: 13px;
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-toggle__caret {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 10px);
  right: 0;
  visibility: hidden;
  width: 250px;
  padding: 7px;
  border: 1px solid #343b35;
  border-radius: 7px;
  background: #111512;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateY(-7px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms;
}

.language-switcher.is-open .language-menu {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.language-menu a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 11px;
  align-items: center;
  min-height: 53px;
  padding: 7px 9px;
  border-radius: 4px;
}

.language-menu a:hover,
.language-menu a.is-current {
  background: #1b211c;
}

.language-option__code {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #3a433b;
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 9px;
  font-weight: 900;
}

.language-menu a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.language-menu strong {
  color: #e6ebe7;
  font-size: 11px;
}

.language-menu small {
  color: #6e776f;
  font-size: 8px;
}

.language-menu b {
  color: var(--lime);
  font-size: 11px;
}

.icon-button,
.menu-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--lime);
  color: var(--ink);
}

.button--primary:hover {
  background: var(--lime-bright);
}

.button--outline {
  border-color: #404741;
  background: transparent;
}

.button--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.button--dark {
  background: var(--ink);
  color: var(--text);
}

.button--dark:hover {
  background: #222722;
}

.header-subscribe svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(-45deg);
}

.main-nav {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}

.nav-inner > a,
.nav-item__link {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  color: #d2d7d3;
  font-family: var(--header-font);
  font-size: 13px;
  font-weight: 800;
}

.nav-inner > a::after,
.nav-item__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-inner > a:hover,
.nav-inner > a.is-active,
.nav-item__link:hover,
.nav-item__link.is-active {
  color: #fff;
}

.nav-inner > a:hover::after,
.nav-inner > a.is-active::after,
.nav-item__link:hover::after,
.nav-item__link.is-active::after {
  transform: scaleX(1);
}

.nav-item {
  position: static;
  display: flex;
  align-items: center;
}

.mega-toggle {
  display: grid;
  width: 20px;
  height: 32px;
  place-items: center;
  margin-left: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #919a92;
  cursor: pointer;
}

.mega-toggle > span[aria-hidden="true"] {
  display: block;
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease;
}

.mega-toggle[aria-expanded="true"] > span[aria-hidden="true"] {
  color: var(--lime);
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  visibility: hidden;
  border-bottom: 1px solid #353d36;
  background: #121613;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms;
}

.nav-item.is-mega-open .mega-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(3, 1fr);
  gap: 0;
  padding-top: 28px;
  padding-bottom: 30px;
}

.mega-menu__grid > section {
  min-width: 0;
  padding: 5px 28px;
  border-left: 1px solid #293029;
}

.mega-menu__grid > section:first-child {
  padding-left: 0;
  border-left: 0;
}

.mega-menu__grid > section:last-child {
  padding-right: 0;
}

.mega-menu__overline,
.mega-menu__column > h2 {
  color: #778078;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-menu__intro h2 {
  max-width: 260px;
  margin: 15px 0 24px;
  font-size: 30px;
  line-height: 1.03;
}

.mega-menu__intro .button {
  min-height: 40px;
  padding-inline: 15px;
}

.mega-menu__column > h2 {
  margin: 0 0 14px;
}

.mega-menu__link {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 9px 0;
  border-bottom: 1px solid #252b26;
}

.mega-menu__link:last-child {
  border-bottom: 0;
}

.mega-menu__number {
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 900;
}

.mega-menu__link > span:nth-child(2),
.mega-story > span:last-child,
.mega-review > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mega-menu__link strong,
.mega-story strong,
.mega-review strong {
  color: #f2f5f2;
  font-family: var(--header-font);
  font-size: 15px;
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.mega-menu__link small,
.mega-story small,
.mega-review small {
  margin-top: 3px;
  color: #737c74;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
}

.mega-menu__link > b {
  color: #5e675f;
  font-size: 12px;
}

.mega-menu__link:hover strong,
.mega-menu__link:hover > b,
.mega-story:hover strong,
.mega-review:hover strong {
  color: var(--lime);
}

.mega-story {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 8px 0;
  border-bottom: 1px solid #252b26;
}

.mega-story:last-child {
  border-bottom: 0;
}

.mega-story__art {
  position: relative;
  display: block;
  width: 62px;
  height: 50px;
  overflow: hidden;
  border: 1px solid #303830;
  background: #1a211b;
}

.mega-story__art::before,
.mega-story__art::after {
  content: "";
  position: absolute;
}

.mega-story__art--slots {
  background:
    radial-gradient(circle at 50% 80%, rgba(255, 184, 74, 0.28), transparent 48%),
    #25170f;
}

.mega-story__art--slots::before {
  inset: 12px 9px;
  border: 1px solid #8e6531;
  background: repeating-linear-gradient(90deg, #ebe3cd 0 11px, #c14a2b 11px 13px);
}

.mega-story__art--security {
  background: radial-gradient(circle, rgba(117, 167, 255, 0.38), transparent 46%), #101824;
}

.mega-story__art--security::before {
  top: 11px;
  left: 22px;
  width: 20px;
  height: 26px;
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 18%, 88% 76%, 50% 100%, 12% 76%, 0 18%);
}

.mega-story__art--cards {
  background: #2c2114;
}

.mega-story__art--cards::before,
.mega-story__art--cards::after {
  top: 9px;
  width: 20px;
  height: 30px;
  border: 2px solid #e4dfd0;
  border-radius: 2px;
  background: #f0ebda;
}

.mega-story__art--cards::before {
  left: 16px;
  transform: rotate(-12deg);
}

.mega-story__art--cards::after {
  right: 14px;
  transform: rotate(11deg);
}

.mega-story__art--live {
  background: radial-gradient(circle, rgba(185, 140, 255, 0.48), transparent 40%), #21152d;
}

.mega-story__art--stadium,
.mega-story__art--tactics,
.mega-story__art--whistle,
.mega-story__art--ball {
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.17) 49% 51%, transparent 51%),
    repeating-linear-gradient(0deg, #174428 0 10px, #1a502d 10px 20px);
}

.mega-story__art--stadium::before,
.mega-story__art--tactics::before,
.mega-story__art--whistle::before,
.mega-story__art--ball::before {
  right: 10px;
  bottom: 9px;
  left: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(-15deg);
}

.mega-review {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #252b26;
}

.mega-review .review-logo {
  width: 38px;
  height: 38px;
  font-size: 15px;
}

.mega-review > b {
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 23px;
}

.mega-menu__feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 255, 61, 0.11), transparent 45%),
    transparent;
}

.mega-menu__feature h2 {
  margin: 16px 0 10px;
  color: var(--text);
  font-family: var(--header-font);
  font-size: 29px;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-transform: none;
}

.mega-menu__feature p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.search-panel {
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.search-form input {
  height: 48px;
  border: 1px solid var(--line-light);
  border-radius: 3px;
  background: #0b0e0c;
  color: var(--text);
  padding-inline: 16px;
}

.search-form button {
  min-width: 110px;
  border: 0;
  border-radius: 3px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.ticker {
  min-height: 42px;
  border-bottom: 1px solid var(--line);
  background: #0c0f0d;
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  align-items: center;
}

.ticker__inner {
  min-height: 42px;
}

.ticker strong {
  flex: 0 0 auto;
  margin-right: 24px;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker strong span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(184, 255, 61, 0.7);
}

.ticker__track {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.ticker__marquee {
  display: flex;
  width: max-content;
  animation: ticker-marquee 38s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  align-items: center;
  padding-right: 18px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.ticker__group i {
  display: block;
  flex: 0 0 auto;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #586059;
}

.ticker__group a:hover {
  color: var(--lime);
}

.ticker__track:hover .ticker__marquee,
.ticker__track:focus-within .ticker__marquee {
  animation-play-state: paused;
}

@keyframes ticker-marquee {
  to {
    transform: translateX(-50%);
  }
}

.hero-section {
  padding: 28px 0 72px;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #757d76;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker p {
  margin: 0;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 18px;
  min-height: 592px;
}

.lead-grid__side {
  display: grid;
  grid-template-rows: 1.05fr 0.95fr;
  gap: 18px;
}

.mini-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.story-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid #232824;
  background: var(--panel);
}

.story-card__link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}

.story-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 8, 6, 0.98) 0%, rgba(5, 8, 6, 0.64) 40%, rgba(5, 8, 6, 0.02) 78%),
    linear-gradient(90deg, rgba(5, 8, 6, 0.18), transparent 60%);
}

.story-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
}

.story-card--lead .story-card__content {
  padding: clamp(28px, 4vw, 54px);
}

.story-card h2,
.story-card h3 {
  max-width: 860px;
  margin: 12px 0;
}

.story-card--lead h2 {
  font-size: clamp(40px, 4vw, 66px);
  line-height: 0.98;
}

.story-card--lead p {
  max-width: 640px;
  margin: 0 0 20px;
  color: #d4dad5;
  font-size: 15px;
  line-height: 1.7;
}

.story-card--wide h2 {
  max-width: 590px;
  font-size: clamp(27px, 2.5vw, 39px);
}

.story-card--mini h3 {
  font-size: clamp(21px, 1.7vw, 27px);
}

.story-card .media-art,
.story-card__shade {
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-card:hover .media-art {
  transform: scale(1.035);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 5px 8px 4px;
  border-left: 2px solid currentColor;
  background: rgba(20, 24, 21, 0.82);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow--lime {
  color: var(--lime);
}

.eyebrow--amber {
  color: var(--amber);
}

.eyebrow--blue {
  color: var(--blue);
}

.eyebrow--violet {
  color: var(--violet);
}

.eyebrow--dark {
  border-color: var(--ink);
  background: rgba(0, 0, 0, 0.09);
  color: var(--ink);
}

.byline,
.story-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #afb6b0;
  font-size: 11px;
  font-weight: 600;
}

.avatar {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.byline a:hover,
.story-meta a:hover {
  color: var(--lime);
}

.media-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a211b;
}

.media-art::before,
.media-art::after {
  content: "";
  position: absolute;
}

.media-art--roulette {
  background:
    radial-gradient(circle at 74% 42%, rgba(184, 255, 61, 0.17), transparent 31%),
    radial-gradient(circle at 23% 15%, rgba(36, 229, 141, 0.13), transparent 25%),
    linear-gradient(135deg, #111712 0%, #1b2b20 47%, #071009 100%);
}

.media-art--roulette::before {
  right: -19%;
  bottom: -18%;
  width: 86%;
  aspect-ratio: 1;
  border: 36px solid #2b342d;
  border-radius: 50%;
  box-shadow:
    0 0 0 7px #a6a991,
    0 0 0 15px #161b17,
    0 0 0 17px rgba(184, 255, 61, 0.32),
    inset 0 0 0 14px #0b0e0c,
    inset 0 0 70px #000;
}

.media-art--roulette::after {
  right: 7%;
  bottom: 10%;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background:
    conic-gradient(
      #0c0f0d 0deg 20deg,
      #b6b69f 20deg 30deg,
      #1b512f 30deg 50deg,
      #b6b69f 50deg 60deg,
      #121513 60deg 80deg,
      #b6b69f 80deg 90deg,
      #1b512f 90deg 110deg,
      #b6b69f 110deg 120deg,
      #121513 120deg 140deg,
      #b6b69f 140deg 150deg,
      #1b512f 150deg 170deg,
      #b6b69f 170deg 180deg,
      #121513 180deg 200deg,
      #b6b69f 200deg 210deg,
      #1b512f 210deg 230deg,
      #b6b69f 230deg 240deg,
      #121513 240deg 260deg,
      #b6b69f 260deg 270deg,
      #1b512f 270deg 290deg,
      #b6b69f 290deg 300deg,
      #121513 300deg 320deg,
      #b6b69f 320deg 330deg,
      #1b512f 330deg 350deg,
      #b6b69f 350deg 360deg
    );
  box-shadow: inset 0 0 0 34px #0d110e;
}

.roulette-ring {
  position: absolute;
  z-index: 2;
  right: 18%;
  bottom: 21%;
  width: 21%;
  aspect-ratio: 1;
  border: 11px solid #b1a77c;
  border-radius: 50%;
  background: #3c3b2e;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.75),
    inset 0 0 0 9px #141714;
}

.roulette-ball {
  position: absolute;
  z-index: 3;
  right: 39%;
  bottom: 44%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f4f1dc;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.65);
}

.chip-stack {
  position: absolute;
  z-index: 3;
  width: 82px;
  height: 22px;
  border: 6px dashed #dce1d4;
  border-radius: 50%;
  background: #171b18;
  box-shadow:
    0 7px 0 -2px #303630,
    0 12px 0 -2px #0c0f0d;
}

.chip-stack--one {
  top: 25%;
  right: 10%;
  transform: rotate(-14deg);
}

.chip-stack--two {
  top: 19%;
  right: 24%;
  width: 66px;
  transform: rotate(18deg);
}

.media-art--stadium {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184, 255, 61, 0.24), transparent 35%),
    linear-gradient(180deg, #1c2a22 0%, #101912 52%, #060706 100%);
}

.media-art--stadium::before {
  right: -12%;
  bottom: -42%;
  left: -12%;
  height: 78%;
  border: 25px solid rgba(221, 255, 211, 0.22);
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, rgba(184, 255, 61, 0.1) 0 1px, transparent 1px 8%),
    #194326;
  box-shadow:
    inset 0 20px 60px rgba(0, 0, 0, 0.7),
    0 -30px 90px rgba(184, 255, 61, 0.15);
}

.media-art--stadium::after {
  right: 7%;
  bottom: 28%;
  left: 7%;
  height: 18%;
  background: repeating-linear-gradient(90deg, #2d372f 0 3px, #131714 3px 8px);
  clip-path: polygon(0 100%, 8% 15%, 22% 49%, 36% 3%, 52% 45%, 68% 5%, 85% 54%, 100% 18%, 100% 100%);
}

.pitch-line {
  position: absolute;
  right: 9%;
  bottom: 3%;
  width: 34%;
  height: 22%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 0;
  transform: perspective(90px) rotateX(45deg);
}

.floodlight {
  position: absolute;
  top: 4%;
  width: 9%;
  height: 5px;
  background: #eefbdd;
  box-shadow:
    0 0 8px #fff,
    0 0 35px rgba(184, 255, 61, 0.65);
}

.floodlight--one {
  left: 11%;
  transform: rotate(-8deg);
}

.floodlight--two {
  right: 11%;
  transform: rotate(8deg);
}

.media-art--cards {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 184, 74, 0.2), transparent 34%),
    linear-gradient(145deg, #281d11, #0d110e 70%);
}

.media-art--cards::before {
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 184, 74, 0.04) 20px 21px);
}

.playing-card {
  position: absolute;
  top: 17%;
  display: block;
  width: 32%;
  height: 62%;
  border: 4px solid #dbd8c6;
  border-radius: 7px;
  background: #efeddf;
  color: #1c211d;
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 800;
  padding: 8px 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.52);
}

.playing-card--one {
  left: 25%;
  transform: rotate(-17deg);
}

.playing-card--two {
  right: 24%;
  color: #a12c25;
  transform: rotate(13deg);
}

.media-art--chart {
  background:
    radial-gradient(circle at 80% 20%, rgba(117, 167, 255, 0.23), transparent 34%),
    linear-gradient(145deg, #0b141e, #111713 72%);
}

.media-art--chart::before {
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 43px, rgba(117, 167, 255, 0.1) 43px 44px),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(117, 167, 255, 0.1) 52px 53px);
}

.chart-line {
  position: absolute;
  height: 4px;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(117, 167, 255, 0.52);
  transform-origin: left center;
}

.chart-line--one {
  top: 52%;
  left: 14%;
  width: 40%;
  transform: rotate(-19deg);
}

.chart-line--two {
  top: 39%;
  left: 48%;
  width: 35%;
  transform: rotate(14deg);
}

.chart-dot {
  position: absolute;
  top: 31%;
  right: 15%;
  width: 15px;
  height: 15px;
  border: 4px solid var(--blue);
  border-radius: 50%;
  background: #0b1116;
  box-shadow: 0 0 24px var(--blue);
}

section:not(.hero-section) {
  padding: 82px 0;
}

.section-heading {
  min-height: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-heading > div {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.section-heading h2 {
  margin: 0 0 -7px;
  padding: 0 13px 0 0;
  background: var(--bg);
  font-size: clamp(30px, 3vw, 45px);
}

.section-heading__index {
  margin-bottom: -1px;
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 9px;
  color: #c8cec9;
  font-size: 12px;
  font-weight: 800;
}

.text-link span {
  color: var(--lime);
  font-size: 17px;
}

.text-link:hover {
  color: var(--lime);
}

.news-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0f0d;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.news-card__visual {
  position: relative;
  display: block;
  height: 230px;
  inset: auto;
}

.news-card__body {
  min-height: 285px;
  padding: 24px;
}

.news-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(23px, 2vw, 29px);
}

.news-card h3 a:hover,
.feed-story h3 a:hover,
.guide-card h3 a:hover {
  color: var(--lime);
}

.news-card p,
.feed-story p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.media-art--slots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 184, 74, 0.18), transparent 40%),
    linear-gradient(145deg, #2b1811, #111513);
}

.media-art--slots::before {
  inset: 15% 13%;
  border: 1px solid rgba(255, 184, 74, 0.3);
  background: rgba(5, 7, 6, 0.42);
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.6),
    0 20px 60px rgba(0, 0, 0, 0.3);
}

.slot-reel {
  position: relative;
  z-index: 2;
  display: grid;
  width: 23%;
  aspect-ratio: 0.78;
  place-items: center;
  border: 1px solid #866a3b;
  background: #f1ead6;
  color: #c44328;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.media-art--security {
  background:
    radial-gradient(circle at 50% 50%, rgba(117, 167, 255, 0.24), transparent 25%),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(117, 167, 255, 0.04) 22px 23px),
    #101820;
}

.media-art--security::before,
.media-art--security::after {
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(117, 167, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.media-art--security::after {
  width: 250px;
  height: 250px;
  border-style: dashed;
  opacity: 0.4;
}

.shield-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 80px;
  height: 94px;
  place-items: center;
  background: var(--blue);
  color: #08101b;
  clip-path: polygon(50% 0, 100% 18%, 90% 76%, 50% 100%, 10% 76%, 0 18%);
  font-size: 31px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.media-art--live {
  background:
    radial-gradient(circle at 50% 50%, rgba(185, 140, 255, 0.3), transparent 19%),
    linear-gradient(145deg, #22152f, #101512 72%);
}

.live-orbit,
.live-core {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.live-orbit {
  border: 1px solid rgba(205, 183, 255, 0.62);
}

.live-orbit--one {
  width: 190px;
  height: 95px;
  transform: translate(-50%, -50%) rotate(18deg);
}

.live-orbit--two {
  width: 95px;
  height: 190px;
  transform: translate(-50%, -50%) rotate(32deg);
}

.live-core {
  width: 54px;
  height: 54px;
  background: var(--violet);
  box-shadow:
    0 0 0 10px rgba(185, 140, 255, 0.08),
    0 0 40px rgba(185, 140, 255, 0.55);
}

.content-rail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1000px);
  justify-content: center;
  align-items: start;
}

.feed-list {
  border-top: 1px solid var(--line);
}

.feed-story {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feed-story__visual {
  position: relative;
  inset: auto;
  min-height: 182px;
}

.feed-story__content {
  align-self: center;
}

.feed-story h3 {
  margin: 12px 0 9px;
  font-size: clamp(25px, 2.4vw, 34px);
}

.feed-story p {
  margin-bottom: 14px;
}

.media-art--tactics {
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, 0.27) 49.7% 50.3%, transparent 50.3%),
    radial-gradient(circle at 50% 50%, transparent 0 26px, rgba(255, 255, 255, 0.22) 27px 28px, transparent 29px),
    repeating-linear-gradient(0deg, #174728 0 28px, #194d2b 28px 56px);
}

.media-art--tactics::before {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.tactics-arrow,
.tactics-player {
  position: absolute;
  z-index: 2;
}

.tactics-arrow {
  color: var(--lime);
  font-size: 32px;
  font-weight: 300;
}

.tactics-arrow--one {
  top: 27%;
  left: 31%;
  transform: rotate(-17deg);
}

.tactics-arrow--two {
  right: 20%;
  bottom: 19%;
}

.tactics-player {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.45);
}

.tactics-player--one {
  top: 25%;
  left: 22%;
}

.tactics-player--two {
  top: 52%;
  left: 53%;
}

.tactics-player--three {
  right: 20%;
  bottom: 25%;
  background: var(--blue);
}

.media-art--whistle {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 184, 74, 0.18), transparent 28%),
    linear-gradient(145deg, #312317, #101412 78%);
}

.whistle-shape {
  position: absolute;
  top: 35%;
  left: 28%;
  width: 46%;
  height: 29%;
  border-radius: 44% 10% 12% 44%;
  background: #d9d6c8;
  transform: rotate(-14deg);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.42);
}

.whistle-shape::before {
  content: "";
  position: absolute;
  right: -13%;
  top: 21%;
  width: 42%;
  height: 58%;
  border-radius: 4px;
  background: #979b91;
}

.whistle-ring {
  position: absolute;
  top: 32%;
  left: 23%;
  width: 48px;
  height: 48px;
  border: 8px solid #d9d6c8;
  border-radius: 50%;
  transform: rotate(-14deg);
}

.media-art--ball {
  background:
    radial-gradient(circle at 50% 45%, rgba(117, 167, 255, 0.2), transparent 25%),
    linear-gradient(145deg, #101a2b, #101412 78%);
}

.media-art--ball::before {
  right: -20%;
  bottom: -40%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(117, 167, 255, 0.23);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(117, 167, 255, 0.025),
    0 0 0 80px rgba(117, 167, 255, 0.018);
}

.football-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #171a18 0 15%, transparent 16%),
    conic-gradient(from 8deg, #ecebdc 0 14%, #181b19 14% 20%, #ecebdc 20% 34%, #181b19 34% 40%, #ecebdc 40% 54%, #181b19 54% 60%, #ecebdc 60% 74%, #181b19 74% 80%, #ecebdc 80% 94%, #181b19 94%);
  box-shadow:
    inset -17px -14px 27px rgba(0, 0, 0, 0.26),
    0 25px 38px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.reviews-section {
  border-top: 1px solid #d9dfd5;
  background: #eef1eb;
  color: var(--ink);
}

.section-heading--light {
  border-bottom-color: #bbc2ba;
}

.section-heading--light h2 {
  background: #eef1eb;
}

.section-heading--light .text-link {
  color: #363c37;
}

.reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 40px;
}

.reviews-intro > p {
  max-width: 710px;
  margin: 0;
  color: #464d47;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #c1c8c0;
  border-bottom: 1px solid #c1c8c0;
}

.trust-points span {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-right: 1px solid #c1c8c0;
  color: #616861;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-points span:last-child {
  border-right: 0;
}

.trust-points b {
  color: var(--ink);
  font-family: var(--header-font);
  font-size: 24px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.review-card {
  padding: 28px;
  border: 1px solid #c8cec7;
  background: #fff;
  box-shadow: 0 16px 60px rgba(19, 32, 22, 0.06);
}

.review-card__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #dce1db;
}

.review-logo {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 900;
}

.review-logo--north {
  background: #112d25;
  box-shadow: inset 0 0 0 6px #285449;
}

.review-logo--meridian {
  background: #291b3b;
  box-shadow: inset 0 0 0 6px #5c4774;
}

.review-logo--image {
  overflow: hidden;
  background: #0dc2ee;
  box-shadow: inset 0 0 0 1px rgba(6, 29, 35, 0.12);
}

.review-logo--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card .eyebrow {
  background: #eef1eb;
  color: #478500;
}

.review-card h3 {
  margin: 7px 0 0;
  font-size: 25px;
}

.rating {
  text-align: right;
}

.rating strong {
  display: block;
  font-family: var(--header-font);
  font-size: 34px;
  line-height: 0.9;
}

.rating span {
  color: #747b75;
  font-size: 10px;
}

.score-bars {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.score-bars > div {
  display: grid;
  grid-template-columns: 70px 1fr 27px;
  gap: 12px;
  align-items: center;
  color: #656c66;
  font-size: 11px;
  font-weight: 700;
}

.score-bars i {
  position: relative;
  display: block;
  height: 5px;
  background: #e2e6e1;
}

.score-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #6da325;
}

.review-score-list .score-width-25,
.score-bars .score-width-25::after {
  width: 25%;
}

.review-score-list .score-width-30,
.score-bars .score-width-30::after {
  width: 30%;
}

.review-score-list .score-width-35,
.score-bars .score-width-35::after {
  width: 35%;
}

.review-score-list .score-width-40,
.score-bars .score-width-40::after {
  width: 40%;
}

.review-score-list .score-width-48,
.score-bars .score-width-48::after {
  width: 48%;
}

.review-score-list .score-width-50,
.score-bars .score-width-50::after {
  width: 50%;
}

.review-score-list .score-width-70,
.score-bars .score-width-70::after {
  width: 70%;
}

.review-score-list .score-width-74,
.score-bars .score-width-74::after {
  width: 74%;
}

.review-score-list .score-width-78,
.score-bars .score-width-78::after {
  width: 78%;
}

.review-score-list .score-width-82,
.score-bars .score-width-82::after {
  width: 82%;
}

.review-score-list .score-width-84,
.score-bars .score-width-84::after {
  width: 84%;
}

.review-score-list .score-width-85,
.score-bars .score-width-85::after {
  width: 85%;
}

.review-score-list .score-width-86,
.score-bars .score-width-86::after {
  width: 86%;
}

.review-score-list .score-width-87,
.score-bars .score-width-87::after {
  width: 87%;
}

.review-score-list .score-width-88,
.score-bars .score-width-88::after {
  width: 88%;
}

.review-score-list .score-width-89,
.score-bars .score-width-89::after {
  width: 89%;
}

.review-score-list .score-width-91,
.score-bars .score-width-91::after {
  width: 91%;
}

.review-score-list .score-width-94,
.score-bars .score-width-94::after {
  width: 94%;
}

.score-bars b {
  color: var(--ink);
}

.review-card > p {
  min-height: 52px;
  color: #5d645e;
  font-size: 12px;
  line-height: 1.7;
}

.review-card .button--outline {
  color: var(--ink);
}

.review-card .button--outline:hover {
  border-color: #4c7c13;
  color: #3b6905;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: #0e110f;
}

.guide-card:last-child {
  border-right: 0;
}

.guide-card--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(117, 167, 255, 0.16), transparent 32%),
    #111613;
}

.guide-card__number {
  color: #4d564e;
  font-family: var(--header-font);
  font-size: 12px;
  font-weight: 900;
}

.guide-card h3 {
  margin: 14px 0 0;
  font-size: clamp(25px, 2.6vw, 38px);
}

.guide-card--featured h3 {
  font-size: clamp(32px, 3.1vw, 46px);
}

.guide-card p {
  max-width: 560px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.circle-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  align-self: flex-end;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--lime);
  font-size: 20px;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.circle-link:hover {
  background: var(--lime);
  color: var(--ink);
}

.analysis-section {
  position: relative;
  border-top: 1px solid #213025;
  background: #101812;
}

.analysis-section::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: calc(50% - min(50%, 660px));
  color: rgba(184, 255, 61, 0.07);
  font-family: Georgia, serif;
  font-size: 310px;
  line-height: 1;
}

.analysis-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
}

.analysis-grid h2 {
  max-width: 760px;
  margin: 15px 0 0;
  font-size: clamp(42px, 5vw, 74px);
}

.analysis-grid > div:last-child > p {
  color: #bdc5be;
  font-size: 16px;
  line-height: 1.8;
}

.newsletter-section {
  background: var(--lime);
  color: var(--ink);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.newsletter-grid h2 {
  margin: 15px 0 10px;
  font-size: clamp(42px, 4vw, 60px);
}

.newsletter-grid > div > p {
  max-width: 590px;
  margin: 0;
  color: #35421e;
}

.newsletter-form label {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.newsletter-form input {
  min-width: 0;
  height: 52px;
  border: 1px solid rgba(10, 13, 11, 0.35);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  padding: 0 16px;
}

.newsletter-form input::placeholder {
  color: #536035;
}

.newsletter-form .button {
  min-width: 125px;
  height: 52px;
}

.newsletter-form .button:disabled {
  cursor: default;
  opacity: 0.72;
}

.form-note {
  margin: 9px 0 0;
  color: #4b582e;
  font-size: 9px;
}

.site-footer {
  padding: 0 0 24px;
  border-top: 1px solid #242a24;
  background:
    radial-gradient(circle at 78% 0, rgba(184, 255, 61, 0.045), transparent 24%),
    #070907;
}

.footer-market-row {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #202420;
}

.footer-market {
  display: inline-flex;
  min-width: 255px;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid #303630;
  border-radius: 3px;
  background: #0c100d;
}

.footer-market__icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 900;
}

.footer-market > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-market strong {
  color: #e2e7e2;
  font-size: 12px;
}

.footer-market small {
  color: #6f776f;
  font-size: 9px;
}

.footer-standard {
  text-align: right;
}

.footer-standard > span {
  display: block;
  margin-bottom: 10px;
}

.footer-standard p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #adb5ae;
  font-size: 10px;
  font-weight: 800;
}

.footer-standard i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(28px, 4vw, 68px);
  padding-top: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid #202420;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links h2 {
  margin-bottom: 11px;
  color: #747b75;
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: #bac0bb;
  font-size: 11px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-identity {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #202420;
}

.footer-brand .brand {
  display: inline-grid;
}

.footer-brand > p {
  max-width: 530px;
  margin: 20px 0 0;
  color: #8d958e;
  font-size: 12px;
  line-height: 1.8;
}

.footer-contact {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 16px;
  align-items: start;
}

.footer-contact__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid #3b443c;
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--header-font);
  font-weight: 900;
}

.footer-contact div > span {
  color: #6f786f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-contact h2 {
  margin: 5px 0 9px;
  font-size: 24px;
}

.footer-contact a {
  color: #abb4ac;
  font-size: 10px;
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--lime);
}

.footer-contact b {
  margin-left: 6px;
  color: var(--lime);
}

.footer-trust {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 2fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #202420;
}

.footer-trust__heading > span {
  display: block;
  margin-bottom: 10px;
}

.footer-trust__heading h2 {
  max-width: 300px;
  margin: 0;
  font-size: clamp(29px, 3vw, 42px);
}

.footer-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #2a302b;
  border-left: 1px solid #2a302b;
}

.footer-trust-card {
  display: flex;
  min-height: 147px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-right: 1px solid #2a302b;
  border-bottom: 1px solid #2a302b;
  background: #0c100d;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.footer-trust-card:hover {
  background: #111711;
}

.footer-trust-card strong {
  margin-bottom: auto;
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 28px;
}

.footer-trust-card span {
  color: #d5dbd5;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-trust-card small {
  margin-top: 5px;
  color: #6f786f;
  font-size: 8px;
}

.responsibility-note {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid #202420;
  border-bottom: 1px solid #202420;
}

.responsibility-note strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #525952;
  border-radius: 50%;
  font-family: var(--header-font);
}

.responsibility-note p {
  max-width: 1000px;
  margin: 0;
  color: #747c75;
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  color: #59605a;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #949b95;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav-inner {
    gap: 20px;
  }

  .lead-grid {
    min-height: 530px;
  }

  .content-rail__grid {
    grid-template-columns: minmax(0, 1000px);
  }

  .feed-story {
    grid-template-columns: 220px 1fr;
  }

  .reviews-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .header-main {
    min-height: 82px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(400px, 90vw);
    border: 0;
    background: #0d110e;
    box-shadow: -25px 0 80px rgba(0, 0, 0, 0.55);
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 260ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-inner {
    width: 100%;
    min-height: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 30px 30px;
  }

  .nav-inner > a,
  .nav-item__link {
    min-height: 56px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .nav-inner > a::after,
  .nav-item__link::after {
    display: none;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr 54px;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }

  .nav-item__link {
    border-bottom: 0;
  }

  .mega-toggle {
    width: 54px;
    height: 56px;
    margin: 0;
    border-left: 1px solid var(--line);
  }

  .mega-menu {
    position: static;
    grid-column: 1 / -1;
    visibility: hidden;
    max-height: 0;
    border-bottom: 0;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    transform: none;
    transition:
      max-height 300ms ease,
      opacity 180ms ease,
      visibility 180ms;
  }

  .nav-item.is-mega-open .mega-menu {
    visibility: visible;
    max-height: 1800px;
    opacity: 1;
  }

  .mega-menu__grid {
    display: block;
    width: 100%;
    padding: 5px 0 20px;
  }

  .mega-menu__grid > section {
    padding: 16px 0;
    border-top: 1px solid #262d27;
    border-left: 0;
  }

  .mega-menu__grid > section:first-child {
    padding-left: 0;
  }

  .mega-menu__grid > section:last-child {
    padding-right: 0;
  }

  .mega-menu__intro,
  .mega-menu__feature {
    display: none;
  }

  .mega-menu__link {
    min-height: 60px;
  }

  .mega-menu__link strong,
  .mega-story strong,
  .mega-review strong {
    font-size: 16px;
  }

  .menu-toggle {
    z-index: 60;
  }

  .ticker__track {
    overflow: hidden;
  }

  .ticker__marquee {
    animation-duration: 32s;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-card--lead {
    min-height: 570px;
  }

  .story-card--wide {
    min-height: 330px;
  }

  .story-card--mini {
    min-height: 280px;
  }

  .news-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .news-card:last-child .news-card__visual {
    height: 100%;
    min-height: 250px;
  }

  .content-rail__grid {
    grid-template-columns: 1fr;
  }

  .review-grid,
  .analysis-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-card--featured {
    grid-column: span 2;
  }

  .analysis-grid {
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-trust {
    grid-template-columns: 1fr;
  }

  .footer-trust__heading h2 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .utility-bar__inner > p,
  .utility-links span,
  .utility-links a:last-child,
  .header-subscribe,
  .brand__tagline,
  .section-kicker p:last-child {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

  .header-main {
    min-height: 72px;
  }

  .brand {
    grid-template-columns: 31px auto;
  }

  .brand__mark {
    width: 31px;
  }

  .brand__name {
    font-size: 15px;
  }

  .icon-button,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .ticker strong {
    margin-right: 15px;
  }

  .ticker__group {
    gap: 14px;
    padding-right: 14px;
  }

  .hero-section {
    padding: 18px 0 52px;
  }

  .story-card--lead {
    min-height: 510px;
  }

  .story-card--lead h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .story-card--lead p {
    display: none;
  }

  .story-card--lead .story-card__content,
  .story-card__content {
    padding: 22px;
  }

  .mini-story-grid {
    grid-template-columns: 1fr;
  }

  .story-card--mini {
    min-height: 260px;
  }

  section:not(.hero-section) {
    padding: 60px 0;
  }

  .section-heading {
    align-items: flex-start;
    gap: 20px;
  }

  .section-heading > div {
    align-items: baseline;
  }

  .section-heading h2 {
    margin-bottom: -5px;
    font-size: 29px;
  }

  .section-heading .text-link {
    padding-top: 8px;
    font-size: 0;
  }

  .section-heading .text-link span {
    font-size: 18px;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .news-card:last-child {
    grid-column: auto;
    display: block;
  }

  .news-card:last-child .news-card__visual,
  .news-card__visual {
    height: 215px;
    min-height: 0;
  }

  .news-card__body {
    min-height: 0;
  }

  .feed-story {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feed-story__visual {
    min-height: 210px;
  }

  .feed-story h3 {
    font-size: 27px;
  }

  .review-grid,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .trust-points span {
    flex-direction: row;
    align-items: baseline;
    gap: 9px;
    border-right: 0;
    border-bottom: 1px solid #c1c8c0;
  }

  .trust-points span:last-child {
    border-bottom: 0;
  }

  .review-card {
    padding: 21px;
  }

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

  .rating {
    grid-column: 2;
    text-align: left;
  }

  .rating strong,
  .rating span {
    display: inline;
  }

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

  .guide-card,
  .guide-card--featured {
    grid-column: auto;
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-card:last-child {
    border-bottom: 0;
  }

  .guide-card--featured h3 {
    font-size: 34px;
  }

  .analysis-grid h2 {
    font-size: 42px;
  }

  .newsletter-form > div {
    grid-template-columns: 1fr;
  }

  .newsletter-form .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }

  .footer-market-row,
  .footer-standard p {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-market-row {
    justify-content: center;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-market {
    width: 100%;
  }

  .footer-standard {
    width: 100%;
    text-align: left;
  }

  .footer-standard p {
    gap: 6px;
  }

  .footer-standard i {
    display: none;
  }

  .footer-identity {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .responsibility-note {
    align-items: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker__marquee {
    animation: none;
  }

  .ticker__group[aria-hidden="true"] {
    display: none;
  }

  .ticker__track {
    mask-image: none;
  }
}

/* Interior publication templates */

.interior-page .site-header {
  position: relative;
  z-index: 30;
}

.breadcrumbs {
  margin-bottom: 54px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #747c75;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #3f4640;
}

.breadcrumbs a:hover {
  color: var(--lime);
}

.page-index {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-hero {
  position: relative;
  padding: 48px 0 78px !important;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0 69%, rgba(184, 255, 61, 0.05) 69% 69.1%, transparent 69.1%),
    linear-gradient(0deg, #090b0a, #0e130f);
}

.archive-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(184, 255, 61, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(184, 255, 61, 0.018),
    0 0 0 120px rgba(184, 255, 61, 0.01);
}

.archive-hero .container {
  position: relative;
  z-index: 2;
}

.archive-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(62px, 9vw, 132px);
  line-height: 0.85;
  text-transform: uppercase;
}

.archive-hero > .container > p {
  max-width: 720px;
  margin: 34px 0 0;
  color: #b7beb8;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.65;
}

.archive-content {
  padding: 78px 0 96px !important;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.listing-grid {
  display: grid;
  gap: 22px;
}

.listing-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 256px;
  border: 1px solid var(--line);
  background: #0d100e;
}

.listing-card__visual {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.listing-card__brand {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  background:
    radial-gradient(circle at 30% 28%, rgba(29, 207, 246, 0.24), transparent 36%),
    #101a1c;
}

.listing-card__brand img {
  width: min(64%, 188px);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 189, 235, 0.25);
}

.page-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.listing-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.listing-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.listing-card__rating {
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.listing-card__rating small {
  color: #778078;
  font-family: var(--body-font);
  font-size: 9px;
}

.listing-card h2 {
  margin: 14px 0 11px;
  font-size: clamp(28px, 2.5vw, 39px);
}

.listing-card h2 a:hover {
  color: var(--lime);
}

.listing-card__body > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.listing-card .story-meta a:hover {
  color: var(--lime);
}

.listing-card:hover .page-art {
  transform: scale(1.035);
}

.listing-card .page-art {
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-aside {
  position: sticky;
  top: 26px;
  padding: 28px;
  border-top: 3px solid var(--lime);
  background: #151a16;
}

.archive-aside h2,
.sidebar-card h2 {
  margin: 20px 0 14px;
  font-size: 30px;
}

.archive-aside p,
.sidebar-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.article-header {
  padding: 48px 0 58px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 1080px;
  margin: 22px 0 25px;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.94;
}

.article-dek {
  max-width: 820px;
  margin-bottom: 32px;
  color: #bdc5bf;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #b7beb8;
  font-size: 11px;
}

.article-byline > div {
  display: flex;
  flex-direction: column;
}

.article-byline > div > a {
  color: #fff;
  font-weight: 800;
}

.article-byline > div > a:hover {
  color: var(--lime);
}

.article-byline > div > span {
  color: #747c75;
  font-size: 9px;
}

.article-byline dl {
  display: flex;
  gap: 26px;
  margin: 0 0 0 24px;
  padding-left: 26px;
  border-left: 1px solid var(--line-light);
}

.article-byline dl > div {
  display: flex;
  flex-direction: column;
}

.article-byline dt {
  color: #69716a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-byline dd {
  margin: 0;
  font-size: 10px;
}

.article-engagement {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  max-width: 760px;
  margin-top: 28px;
  font-family: var(--body-font);
}

.article-view-status,
.article-share {
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line-light);
  background: #101411;
}

.article-view-status {
  gap: 9px;
  padding: 8px 14px;
}

.article-view-status > span,
.article-share > span {
  color: #788079;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-view-status strong {
  color: #d9dfda;
  font-family: var(--header-font);
  font-size: 21px;
}

.article-view-status small {
  max-width: 74px;
  color: #727a73;
  font-size: 7px;
  line-height: 1.35;
}

.article-share {
  position: relative;
  flex: 1;
  flex-wrap: wrap;
  gap: 7px;
  padding: 7px 9px 7px 14px;
}

.article-share > span {
  margin-right: 4px;
}

.article-share a,
.article-share button {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid #39423b;
  border-radius: 2px;
  background: #171d18;
  color: #dce2dd;
  font: 800 9px/1 var(--body-font);
  cursor: pointer;
}

.article-share a:hover,
.article-share button:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.article-share [data-share-status] {
  flex-basis: 100%;
  min-height: 10px;
  color: #9fac9f;
  font-size: 8px;
}

.article-feature {
  position: relative;
  height: min(52vw, 620px);
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.article-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 8, 6, 0.45), transparent 55%);
  pointer-events: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: clamp(50px, 8vw, 120px);
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 96px;
}

.article-content {
  color: #d4dad5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.9;
}

.article-content > section {
  margin-bottom: 40px;
  padding: 0;
}

.article-content h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-family: var(--header-font);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.04;
}

.article-content p {
  margin-bottom: 23px;
}

.article-content ul {
  margin: 27px 0;
  padding: 0;
  list-style: none;
}

.article-content li {
  position: relative;
  margin: 13px 0;
  padding-left: 28px;
}

.article-content li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 11px;
  height: 2px;
  background: var(--lime);
}

.article-carousel {
  margin: 30px 0 8px;
  border: 1px solid var(--line);
  background: #101511;
  font-family: var(--body-font);
}

.article-inline-image {
  margin: 30px 0 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101511;
}

.article-inline-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-inline-image figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  color: #aab1aa;
  font-size: 12px;
  line-height: 1.55;
}

.article-carousel__toolbar {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 13px 10px 18px;
  border-bottom: 1px solid var(--line);
}

.article-carousel__toolbar > strong {
  color: #dbe1dc;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-carousel__toolbar > div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.article-carousel__toolbar button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #3b443c;
  background: #171d18;
  color: #e2e7e3;
  cursor: pointer;
}

.article-carousel__toolbar button:hover:not(:disabled) {
  border-color: var(--lime);
  color: var(--lime);
}

.article-carousel__toolbar button:disabled {
  opacity: 0.35;
  cursor: default;
}

.article-carousel__toolbar [data-carousel-status] {
  min-width: 42px;
  color: #8c958d;
  font-size: 9px;
  text-align: center;
}

.article-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #4e5a50 #101511;
}

.article-carousel figure {
  min-width: 100%;
  margin: 0;
  scroll-snap-align: start;
}

.article-carousel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 19 / 7;
  object-fit: cover;
}

.article-carousel figcaption {
  min-height: 66px;
  padding: 14px 17px;
  color: #929b93;
  font-size: 9px;
  line-height: 1.65;
}

.takeaway {
  margin-bottom: 58px;
  padding: 25px 28px;
  border-left: 3px solid var(--lime);
  background: #131814;
}

.takeaway span {
  color: var(--lime);
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.takeaway p {
  margin: 9px 0 0;
  color: #f1f4f1;
  font-family: var(--header-font);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}

.article-disclosure {
  padding: 22px;
  border: 1px solid var(--line);
  color: #8d958e;
  font-family: var(--body-font);
  font-size: 10px;
  line-height: 1.7;
}

.article-disclosure strong {
  display: block;
  margin-bottom: 7px;
  color: #d7dcd8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-disclosure p {
  margin: 0;
}

.article-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
  font-family: var(--body-font);
}

.article-post-nav__item {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  background: #101511;
}

.article-post-nav__item small {
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-post-nav__item strong {
  margin: 19px 0;
  color: #e8ece9;
  font-family: var(--header-font);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.1;
}

.article-post-nav__item > span {
  color: #7d867e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-post-nav__item--next {
  text-align: right;
}

a.article-post-nav__item:hover {
  z-index: 1;
  outline: 1px solid var(--lime);
  background: #141b15;
}

.article-post-nav__item--empty {
  justify-content: flex-start;
  opacity: 0.55;
}

.article-post-nav__item--empty strong {
  color: #8b938c;
}

.article-author-box {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 25px;
  margin-top: 42px;
  padding: 30px;
  border-top: 3px solid var(--lime);
  background: #121713;
  font-family: var(--body-font);
}

.article-author-box .author-monogram {
  width: 76px;
  height: 76px;
  margin: 0;
  font-size: 23px;
}

.article-author-box__overline {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-author-box h2 {
  margin: 6px 0 2px;
  font-size: 32px;
}

.article-author-box h2 a:hover {
  color: var(--lime);
}

.article-author-box__role {
  margin: 0 0 13px !important;
  color: #8f988f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-author-box__content > p:not(.article-author-box__role) {
  margin-bottom: 15px;
  color: #b7bfb8;
  font-size: 12px;
  line-height: 1.7;
}

.article-author-box ul,
.article-author-box li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-author-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.article-author-box li {
  padding: 6px 9px;
  border: 1px solid #343c35;
  border-radius: 20px;
  color: #c5ccc6;
  font-size: 9px;
}

.article-author-box li::before {
  display: none;
}

.article-author-box__links,
.author-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-card {
  padding: 25px;
  border: 1px solid var(--line);
  background: #111512;
}

.related-section,
.author-stories {
  padding: 78px 0 !important;
  border-top: 1px solid var(--line);
  background: #0c0f0d;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-grid .listing-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.related-grid .listing-card__visual {
  height: 200px;
  min-height: 200px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.related-grid .listing-card__body {
  flex: 1;
  justify-content: flex-start;
  padding: 22px;
}

.related-grid .listing-card h2 {
  font-size: 25px;
}

.review-hero {
  padding: 48px 0 68px;
  background: #0e120f;
}

.review-hero__grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 70px;
  align-items: end;
}

.review-hero h1 {
  margin: 20px 0;
  font-size: clamp(54px, 7vw, 96px);
}

.review-hero__grid > div:first-child > p {
  max-width: 770px;
  color: var(--muted-light);
  font-size: 18px;
}

.review-score {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-top: 3px solid var(--lime);
  background: #edf0ea;
  color: var(--ink);
}

.review-score > span {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-score strong {
  font-family: var(--header-font);
  font-size: 86px;
  line-height: 1;
}

.review-score small {
  color: #667066;
  font-size: 12px;
}

.review-score p {
  margin: 12px 0 0;
  color: #737a73;
  font-size: 9px;
}

.review-score > img {
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  opacity: 0.14;
  transform: rotate(-8deg);
}

.prototype-notice {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 26px;
  padding-top: 18px;
  padding-bottom: 18px;
  border: 1px solid #684f1f;
  background: #211a0e;
  color: #d7c69f;
  font-size: 11px;
}

.prototype-notice strong {
  padding-left: 18px;
  color: var(--amber);
  text-transform: uppercase;
}

.prototype-notice p {
  margin: 0;
  padding-right: 18px;
}

.review-verdict {
  border-color: #815a1d;
  background: #20190d;
}

.review-feature-image {
  margin-top: 28px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101511;
}

.review-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 19 / 7;
  object-fit: cover;
}

.review-feature-image--logo {
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px) 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(28, 205, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #071b27, #0c1210 72%);
}

.review-feature-image--logo img {
  width: min(220px, 46vw);
  aspect-ratio: 1;
  border-radius: 28%;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 187, 255, 0.26));
}

.review-feature-image.review-feature-image--logo figcaption {
  width: 100%;
  max-width: 420px;
  margin-top: 18px;
  padding: 0;
  text-align: center;
}

.review-feature-image figcaption {
  padding: 13px 17px;
  color: #8e978f;
  font-size: 9px;
  line-height: 1.6;
}

.review-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 54px;
}

.review-breakdown,
.pros-cons {
  padding: 28px;
  border: 1px solid var(--line);
  background: #111512;
}

.review-breakdown > h2,
.pros-cons h2 {
  font-size: 27px;
}

.review-score-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.review-score-list > div {
  display: grid;
  grid-template-columns: 90px 1fr 32px;
  gap: 14px;
  align-items: center;
  color: #b7beb8;
  font-size: 11px;
  font-weight: 700;
}

.review-score-list i {
  display: block;
  height: 5px;
  background: #242b25;
}

.review-score-list i b {
  display: block;
  height: 100%;
  background: var(--lime);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pros-cons > div + div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.pros-cons ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #bdc5be;
  font-size: 12px;
}

.pros-cons li {
  position: relative;
  margin: 12px 0;
  padding-left: 18px;
}

.pros-cons li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

.review-faq {
  margin-top: 68px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}

.review-faq > h2 {
  margin-bottom: 25px;
}

.review-faq details {
  border-bottom: 1px solid var(--line);
  font-family: var(--body-font);
}

.review-faq summary {
  padding: 18px 34px 18px 0;
  color: #e4e9e5;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
}

.review-faq details p {
  margin: 0;
  padding: 0 0 20px;
  color: #aeb6b0;
  font-family: var(--body-font);
  font-size: 12px;
  line-height: 1.75;
}

.review-referral {
  margin-top: 50px;
  padding: 30px;
  border: 1px solid #4f653d;
  border-top: 3px solid var(--lime);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 255, 61, 0.12), transparent 38%),
    #121812;
  font-family: var(--body-font);
}

.review-referral > span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-referral h2 {
  margin: 13px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.review-referral p {
  max-width: 620px;
  margin-bottom: 20px;
  color: #b4bdb5;
  font-family: var(--body-font);
  font-size: 12px;
  line-height: 1.7;
}

.review-referral .review-referral__disclosure {
  padding-left: 13px;
  border-left: 2px solid var(--amber);
  color: #d8c9a9;
  font-weight: 700;
}

.review-referral__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.review-referral .button {
  width: fit-content;
  color: var(--ink);
}

.review-referral .button--outline {
  border-color: rgba(184, 255, 61, 0.52);
  color: #fff;
}

.review-referral .button--outline:hover {
  border-color: var(--lime);
  background: rgba(184, 255, 61, 0.08);
  color: var(--lime);
}

.review-referral > small {
  display: block;
  margin-top: 15px;
  color: #7f8981;
  font-size: 8px;
  line-height: 1.6;
}

.pros-cons > div + div li::before {
  content: "–";
  color: var(--amber);
}

.methodology-hero h1 {
  max-width: 900px;
  margin-top: 22px;
  text-transform: none;
}

.methodology-content {
  padding: 84px 0 100px !important;
}

.methodology-intro {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 54px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
}

.methodology-intro strong {
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 140px;
  line-height: 0.8;
}

.methodology-intro p {
  max-width: 790px;
  margin: 0;
  color: #c4cbc5;
  font-size: 20px;
  line-height: 1.7;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 76px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-grid article {
  position: relative;
  min-height: 255px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-grid article > span {
  color: #59615a;
  font-size: 10px;
  font-weight: 900;
}

.method-grid article > b {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 23px;
}

.method-grid h2 {
  margin: 60px 0 12px;
  font-size: 28px;
}

.method-grid p,
.method-copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.method-copy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.method-copy h2 {
  font-size: 31px;
}

.text-page-hero {
  padding: 48px 0 76px !important;
  border-bottom: 1px solid var(--line);
  background: #0d110e;
}

.text-page-hero h1 {
  max-width: 1000px;
  margin: 22px 0;
  font-size: clamp(58px, 8vw, 112px);
}

.text-page-hero > .container > p {
  max-width: 800px;
  color: #b8c0b9;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

.text-page-content {
  padding: 82px 0 100px !important;
}

.text-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) 310px;
  gap: clamp(50px, 8vw, 120px);
  justify-content: center;
  align-items: start;
}

.text-page-copy section {
  padding: 0 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.text-page-copy h2 {
  margin-bottom: 17px;
  font-size: clamp(34px, 3vw, 46px);
}

.text-page-copy p {
  color: #bdc5be;
  font-size: 16px;
  line-height: 1.85;
}

.authors-section {
  padding: 78px 0 100px !important;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.author-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #101411;
}

.author-monogram {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--header-font);
  font-size: 20px;
  font-weight: 900;
}

.author-card > p:first-of-type,
.author-hero .container > p:first-of-type {
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-card h2 {
  margin: 0 0 14px;
  font-size: 31px;
}

.author-card h2 a:hover {
  color: var(--lime);
}

.author-card > p:not(:first-of-type) {
  min-height: 82px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.author-hero {
  padding: 48px 0 78px;
  border-bottom: 1px solid var(--line);
}

.author-hero .author-monogram {
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  font-size: 27px;
}

.author-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(58px, 8vw, 108px);
}

.author-hero .container > p:not(:first-of-type) {
  max-width: 760px;
  color: #b9c1ba;
  font-size: 18px;
  line-height: 1.75;
}

.author-hero .text-link {
  margin-top: 12px;
}

.author-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 800px;
  margin-top: 25px;
}

.author-expertise span {
  padding: 8px 12px;
  border: 1px solid #3b443c;
  border-radius: 20px;
  color: #c5ccc6;
  font-size: 10px;
  font-weight: 700;
}

.author-profile-links .text-link {
  margin-top: 0;
}

.search-page-hero {
  padding: 48px 0 76px !important;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 25%, rgba(184, 255, 61, 0.08), transparent 24%),
    #0d110e;
}

.search-page-hero h1 {
  max-width: 900px;
  margin: 22px 0 18px;
  font-size: clamp(58px, 8vw, 108px);
}

.search-page-hero > .container > p {
  max-width: 720px;
  color: #b7beb8;
  font-size: 18px;
}

.search-page-form {
  max-width: 820px;
  margin-top: 36px;
}

.search-page-form > label {
  display: block;
  margin-bottom: 9px;
  color: #8e968f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.search-page-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.search-page-form input {
  min-width: 0;
  height: 54px;
  border: 1px solid var(--line-light);
  border-radius: 3px;
  background: #070907;
  color: var(--text);
  padding: 0 17px;
}

.search-page-form .button {
  min-width: 125px;
}

.search-results-section {
  padding: 70px 0 100px !important;
}

.search-summary {
  margin-bottom: 27px;
  color: #838c84;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.search-result {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0e110f;
}

.search-result > p:first-child {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.search-result h2 {
  margin: 16px 0 12px;
  font-size: clamp(27px, 2.5vw, 37px);
}

.search-result h2 a:hover {
  color: var(--lime);
}

.search-result > p:last-child,
.search-empty {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.search-empty {
  grid-column: 1 / -1;
  padding: 30px;
}

.error-page {
  min-height: 620px;
  display: flex;
  align-items: center;
}

.error-page h1 {
  max-width: 850px;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

@media (max-width: 1050px) {
  .archive-layout {
    grid-template-columns: 1fr;
  }

  .archive-aside {
    position: static;
  }

  .listing-card {
    grid-template-columns: 280px 1fr;
  }

  .article-layout,
  .text-page-grid {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 45px;
  }

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

@media (max-width: 800px) {
  .breadcrumbs {
    margin-bottom: 38px;
  }

  .archive-hero h1 {
    font-size: clamp(52px, 15vw, 90px);
  }

  .listing-card {
    grid-template-columns: 1fr;
  }

  .listing-card__visual {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-header h1 {
    font-size: clamp(47px, 12vw, 76px);
  }

  .article-layout,
  .text-page-grid,
  .review-hero__grid,
  .review-detail-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .article-feature {
    height: 56vw;
  }

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

  .related-grid .listing-card:last-child {
    grid-column: span 2;
  }

  .review-score {
    max-width: 280px;
  }

  .method-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .archive-hero,
  .article-header,
  .review-hero,
  .text-page-hero,
  .author-hero {
    padding-top: 32px !important;
    padding-bottom: 54px !important;
  }

  .archive-hero > .container > p,
  .article-dek,
  .text-page-hero > .container > p {
    font-size: 16px;
  }

  .archive-content,
  .article-layout,
  .methodology-content,
  .text-page-content,
  .authors-section {
    padding-top: 54px !important;
    padding-bottom: 66px !important;
  }

  .listing-card__visual {
    min-height: 225px;
  }

  .listing-card__body {
    padding: 22px;
  }

  .listing-card h2 {
    font-size: 29px;
  }

  .article-byline {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .article-byline dl {
    width: 100%;
    margin: 10px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .article-engagement {
    align-items: stretch;
    flex-direction: column;
  }

  .article-view-status,
  .article-share {
    width: 100%;
  }

  .article-post-nav {
    grid-template-columns: 1fr;
  }

  .article-post-nav__item {
    min-height: 128px;
  }

  .article-post-nav__item--next {
    text-align: left;
  }

  .article-feature {
    width: 100%;
    height: 72vw;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
  }

  .article-layout {
    gap: 40px;
  }

  .article-content {
    font-size: 17px;
  }

  .article-author-box {
    grid-template-columns: 1fr;
    padding: 23px;
  }

  .article-author-box .author-monogram {
    width: 64px;
    height: 64px;
    font-size: 19px;
  }

  .article-author-box__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .article-sidebar {
    display: flex;
  }

  .related-grid,
  .author-grid,
  .method-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .search-page-form > div {
    grid-template-columns: 1fr;
  }

  .search-page-form .button {
    width: 100%;
  }

  .related-grid .listing-card:last-child {
    grid-column: auto;
  }

  .review-hero h1 {
    font-size: 52px;
  }

  .prototype-notice,
  .methodology-intro {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .prototype-notice strong,
  .prototype-notice p {
    padding-right: 18px;
    padding-left: 18px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .pros-cons > div + div {
    padding-top: 25px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .article-carousel__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-carousel figcaption {
    min-height: 0;
  }

  .review-referral {
    padding: 24px;
  }

  .methodology-intro strong {
    font-size: 100px;
  }

  .method-grid article {
    min-height: 220px;
  }

  .author-card > p:not(:first-of-type) {
    min-height: 0;
  }
}

/* Malaysia-first casino review hero */

.malaysia-hero {
  position: relative;
  padding: clamp(54px, 7vw, 96px) 0;
  border-bottom: 1px solid rgba(184, 255, 61, 0.22);
  background:
    radial-gradient(circle at 18% 8%, rgba(184, 255, 61, 0.2), transparent 27%),
    radial-gradient(circle at 82% 84%, rgba(30, 229, 141, 0.22), transparent 35%),
    linear-gradient(115deg, #07100a 0%, #0d2b1b 50%, #17643a 100%);
  overflow: hidden;
}

.malaysia-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(205, 255, 118, 0.2) 0.8px, transparent 0.8px);
  background-size: 26px 26px;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.malaysia-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
}

.malaysia-hero__copy {
  max-width: 720px;
}

.malaysia-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px 6px;
  border: 1px solid rgba(184, 255, 61, 0.38);
  border-radius: 999px;
  background: rgba(4, 22, 11, 0.52);
  color: var(--lime-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.malaysia-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 5.5vw, 84px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.malaysia-hero h1 span {
  display: block;
  color: var(--lime);
}

.malaysia-hero__copy > p:not(.malaysia-hero__legal) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

.malaysia-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.malaysia-hero .button--primary {
  background: var(--lime);
  color: var(--ink);
}

.malaysia-hero .button--primary:hover {
  background: var(--lime-bright);
}

.malaysia-hero .button--ghost {
  border: 1px solid rgba(184, 255, 61, 0.38);
  background: rgba(4, 28, 14, 0.38);
  color: #fff;
}

.malaysia-hero .button--ghost:hover {
  border-color: var(--lime);
  background: rgba(8, 45, 23, 0.72);
}

.malaysia-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(184, 255, 61, 0.24);
  border-bottom: 1px solid rgba(184, 255, 61, 0.24);
  list-style: none;
}

.malaysia-hero__trust li {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border-right: 1px solid rgba(184, 255, 61, 0.24);
}

.malaysia-hero__trust li:last-child {
  border-right: 0;
}

.malaysia-hero__trust strong {
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 27px;
  line-height: 1;
}

.malaysia-hero__trust span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.malaysia-hero__legal {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  line-height: 1.6;
}

.malaysia-hero__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-hub-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(184, 255, 61, 0.18);
  border-radius: 10px;
  background: rgba(7, 25, 14, 0.9);
  box-shadow: 0 24px 60px rgba(0, 8, 3, 0.3);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-hub-card--primary {
  border-color: rgba(184, 255, 61, 0.72);
  background: linear-gradient(145deg, rgba(25, 75, 43, 0.98), rgba(6, 28, 15, 0.98));
}

.hero-hub-card:hover {
  border-color: rgba(184, 255, 61, 0.7);
  background: rgba(14, 52, 29, 0.98);
  transform: translateY(-4px);
}

.hero-hub-card__icon {
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--header-font);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 8px 26px rgba(184, 255, 61, 0.2);
}

.hero-hub-card__label {
  color: #b9f4cb;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-hub-card h2 {
  margin: 6px 42px 5px 0;
  color: #fff;
  font-size: 27px;
}

.hero-hub-card p {
  margin: 0 30px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.55;
}

.hero-hub-card b {
  position: absolute;
  right: 24px;
  bottom: 26px;
  color: var(--lime);
  font-size: 25px;
}

@media (max-width: 1120px) {
  .malaysia-hero__grid {
    grid-template-columns: 1fr;
  }

  .malaysia-hero__copy {
    max-width: 820px;
  }
}

@media (max-width: 680px) {
  .hero-section.malaysia-hero {
    padding: 42px 0 50px;
  }

  .malaysia-hero__grid {
    gap: 38px;
  }

  .malaysia-hero h1 {
    font-size: clamp(43px, 13.5vw, 58px);
  }

  .malaysia-hero__copy > p:not(.malaysia-hero__legal) {
    margin-top: 21px;
    font-size: 15px;
  }

  .malaysia-hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .malaysia-hero__actions .button {
    width: 100%;
  }

  .malaysia-hero__trust li {
    padding: 12px 9px;
  }

  .malaysia-hero__trust strong {
    font-size: 23px;
  }

  .malaysia-hero__links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-hub-card {
    min-height: 168px;
  }
}

/* Localized language hubs */

.localized-page .localized-nav .nav-inner {
  gap: clamp(30px, 5vw, 72px);
}

.localized-hero h1 {
  font-size: clamp(50px, 5.6vw, 82px);
  line-height: 1.03;
}

.localized-hero .hero-hub-card__icon {
  font-size: 15px;
}

.language-overview {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 255, 61, 0.07), transparent 23%),
    #0c100d;
}

.language-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.language-overview h2 {
  max-width: 560px;
  margin: 17px 0 0;
  font-size: clamp(46px, 5vw, 74px);
}

.language-overview__grid > div:last-child > p {
  margin: 0;
  color: #b5beb6;
  font-size: 17px;
  line-height: 1.8;
}

.language-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid #2a312b;
  border-left: 1px solid #2a312b;
}

.language-principles span {
  display: flex;
  min-height: 100px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid #2a312b;
  border-bottom: 1px solid #2a312b;
  color: #7c857d;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.language-principles strong {
  margin-bottom: 7px;
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 28px;
}

.language-method {
  padding: 90px 0 100px;
}

.language-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.language-check-grid article {
  min-height: 255px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d110e;
}

.language-check-grid article > span {
  color: var(--lime);
  font-family: var(--header-font);
  font-size: 12px;
  font-weight: 900;
}

.language-check-grid h3 {
  margin: 55px 0 14px;
  font-size: 28px;
}

.language-check-grid p {
  margin: 0;
  color: #8e978f;
  font-size: 12px;
  line-height: 1.75;
}

.language-safety {
  padding: 92px 0;
  background: #e9eee9;
  color: #121612;
}

.language-safety__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 140px);
}

.language-safety h2 {
  margin: 17px 0 22px;
  font-size: clamp(45px, 4.8vw, 70px);
}

.language-safety__grid > div > p {
  color: #59625b;
  font-size: 15px;
  line-height: 1.8;
}

.language-safety ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid #c8d0c9;
  list-style: none;
}

.language-safety li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #c8d0c9;
}

.language-safety li span {
  color: #598600;
  font-family: var(--header-font);
  font-size: 15px;
  font-weight: 900;
}

.language-safety li p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.language-about {
  padding: 90px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 159, 67, 0.18), transparent 28%),
    #25105d;
}

.language-about__grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 8vw, 120px);
}

.language-about h2 {
  max-width: 820px;
  margin: 0 0 25px;
  font-size: clamp(45px, 5vw, 72px);
}

.language-about p {
  max-width: 800px;
  margin: 0 0 28px;
  color: #d1c8e8;
  font-size: 16px;
  line-height: 1.8;
}

.localized-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(170px, 0.65fr));
  gap: clamp(45px, 8vw, 120px);
  padding-top: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid #202420;
}

@media (max-width: 1120px) {
  .language-toggle__label {
    display: none;
  }

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

@media (max-width: 800px) {
  .language-overview__grid,
  .language-safety__grid,
  .language-about__grid {
    grid-template-columns: 1fr;
  }

  .localized-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .localized-footer-grid .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .language-toggle {
    gap: 6px;
    padding: 0 9px;
  }

  .language-toggle__globe {
    width: 19px;
    height: 19px;
  }

  .language-menu {
    width: min(270px, calc(100vw - 24px));
  }

  .localized-hero h1 {
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .language-overview,
  .language-method,
  .language-safety,
  .language-about {
    padding: 58px 0;
  }

  .language-overview h2,
  .language-safety h2,
  .language-about h2 {
    font-size: 43px;
  }

  .language-principles {
    grid-template-columns: 1fr;
  }

  .language-principles span {
    min-height: 78px;
  }

  .language-check-grid {
    grid-template-columns: 1fr;
  }

  .language-check-grid article {
    min-height: 220px;
  }

  .localized-footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .localized-footer-grid .footer-brand {
    grid-column: auto;
  }
}
