:root {
  --ink: #eef2ff;
  --muted: #a8b1c7;
  --bg: #030817;
  --bg-deep: #01040d;
  --surface: #081126;
  --surface-2: #0d1830;
  --line: rgba(194, 207, 237, 0.18);
  --line-strong: rgba(194, 207, 237, 0.34);
  --accent: #ff5c1a;
  --accent-hot: #ff7a1a;
  --accent-soft: rgba(255, 92, 26, 0.14);
  --blue: #4384ff;
  --paper: #ede3d3;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  --header: 76px;
}

html[data-theme="light"] {
  --ink: #11182a;
  --muted: #536078;
  --bg: #f4f1ea;
  --bg-deep: #e8e3da;
  --surface: #fffdf8;
  --surface-2: #ece7de;
  --line: rgba(17, 24, 42, 0.14);
  --line-strong: rgba(17, 24, 42, 0.26);
  --accent: #d63e00;
  --accent-hot: #b73200;
  --blue: #145fc4;
  --accent-soft: rgba(214, 62, 0, 0.1);
  --shadow: 0 28px 70px rgba(40, 36, 30, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  transition: background-color 240ms ease, color 240ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  color: #fff;
  background: var(--accent);
}

.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;
  color: #07101f;
  background: #ff6a2b;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header);
  color: #f7f9ff;
  background: rgba(2, 7, 21, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner,
.footer-meta {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: 142px;
  height: auto;
}

.brand > span {
  max-width: 68px;
  color: #aeb9d2;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #c3cbe0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="true"] {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.theme-toggle,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: #d9e0f2;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  cursor: pointer;
}

.theme-toggle:hover,
.menu-toggle:hover {
  color: #fff;
  border-color: var(--accent);
}

.theme-toggle svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.menu-toggle {
  display: none;
  align-content: center;
  gap: 6px;
}

.menu-toggle > span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f8faff;
  background: #020713;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 4, 13, 0.98) 0%, rgba(1, 4, 13, 0.88) 35%, rgba(1, 4, 13, 0.24) 69%, rgba(1, 4, 13, 0.38) 100%),
    linear-gradient(0deg, rgba(1, 4, 13, 0.84) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: calc(var(--header) + 44px) auto 120px;
}

.hero-content > * {
  max-width: 760px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--accent-hot);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 10px;
  color: currentColor;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin-bottom: 34px;
  color: #cbd3e6;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero .eyebrow {
  color: #ff7a1a;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.button-primary {
  color: #07101f;
  background: #ff6a2b;
}

.button-primary:hover {
  background: #ff8554;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--accent-hot);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-index div {
  min-width: 132px;
  padding: 16px 18px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-index strong,
.hero-index span {
  display: block;
}

.hero-index strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.hero-index span {
  color: #9da9c4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(92px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
}

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

.section-intro {
  width: min(760px, 100%);
  margin-bottom: 58px;
}

.section-intro > p:last-child,
.split-heading > p,
.games-copy > p,
.responsible-copy > p {
  color: var(--muted);
}

.direct-answer {
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--ink) !important;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
}

.section-guide {
  background:
    linear-gradient(145deg, transparent 50%, var(--accent-soft) 130%),
    var(--bg);
}

.visual {
  position: relative;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.visual:hover img {
  transform: scale(1.015);
}

.visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 380px;
  padding: 12px 15px;
  color: #d7deef;
  background: rgba(2, 7, 21, 0.82);
  border-left: 2px solid var(--accent);
  font-size: 12px;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.visual-guide {
  width: 78%;
  margin-left: auto;
  aspect-ratio: 16 / 8.3;
}

.check-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 72%;
  margin: -68px 0 0;
  padding: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.check-grid li {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-grid li:nth-child(2n) {
  border-right: 0;
}

.check-grid li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.check-grid p,
.feature-ledger p,
.platform-card p,
.catalog-table,
.security-note p,
.editorial-callout p,
.faq p {
  color: var(--muted);
}

.step-number,
.card-code {
  display: block;
  margin-bottom: 24px;
  color: var(--accent-hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.security-note {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 58px;
  padding: 34px;
  background: var(--surface-2);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.security-note p:last-child {
  margin-bottom: 0;
}

.note-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  font-size: 32px;
  font-weight: 900;
  clip-path: polygon(50% 0, 91% 18%, 100% 64%, 68% 100%, 32% 100%, 0 64%, 9% 18%);
}

.section-sports {
  background: var(--bg-deep);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

.visual-wide {
  aspect-ratio: 16 / 8.3;
}

.feature-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.feature-ledger article {
  padding: 34px 34px 28px;
  border-right: 1px solid var(--line);
}

.feature-ledger article:last-child {
  border-right: 0;
}

.fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-strip span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--accent);
  transform: rotate(45deg) translateY(-1px);
}

.section-games {
  overflow: hidden;
  background: var(--bg);
}

.section-games::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -18vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw var(--accent-soft);
  pointer-events: none;
}

.games-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: center;
}

.games-copy {
  position: relative;
  z-index: 2;
}

.games-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.visual-games {
  aspect-ratio: 16 / 10;
}

.catalog-table-wrap {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  margin-top: 20px;
  overflow-x: auto;
  background: var(--surface);
  border-top: 1px solid var(--line-strong);
}

.catalog-table {
  width: 100%;
  min-width: 720px;
  color: var(--muted);
  border-collapse: collapse;
  text-align: left;
}

.catalog-table th,
.catalog-table td {
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
}

.catalog-table tbody th {
  color: var(--ink);
}

.catalog-table thead th {
  color: var(--accent-hot);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-platform {
  background:
    linear-gradient(180deg, transparent 72%, var(--accent-soft) 150%),
    var(--bg-deep);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-strong);
}

.platform-card {
  min-height: 300px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
}

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

.editorial-callout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  margin-top: 54px;
  padding: 30px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.editorial-callout p {
  margin-bottom: 0;
  font-size: 19px;
}

.section-responsible {
  background: var(--bg);
}

.responsible-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
}

.visual-responsible {
  aspect-ratio: 16 / 10;
}

.rule-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.rule-list li {
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.rule-list strong {
  color: var(--ink);
}

.age-note {
  padding: 18px;
  color: var(--ink) !important;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
}

.age-note strong {
  display: inline-block;
  margin-right: 8px;
  color: var(--accent-hot);
}

.faq {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--line-strong);
}

.faq-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
}

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

.faq details {
  border-bottom: 1px solid var(--line-strong);
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq summary span {
  color: var(--accent-hot);
  font-size: 25px;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 690px;
  padding: 0 48px 24px 4px;
}

.site-footer {
  color: #cbd3e7;
  background: #01040d;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr 0.7fr;
  align-items: start;
  gap: 64px;
  padding: 68px 0;
}

.footer-brand {
  width: fit-content;
}

.footer-inner p {
  margin-bottom: 0;
  color: #8f9bb6;
}

.footer-inner nav {
  display: grid;
  gap: 10px;
}

.footer-inner nav a {
  width: fit-content;
  color: #cbd3e7;
  font-size: 14px;
  text-decoration: none;
}

.footer-inner nav a:hover {
  color: var(--accent-hot);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 28px;
  color: #74809b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.03em;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header: 70px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    height: calc(100vh - var(--header));
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 30px 24px;
    background: #030817;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 260ms cubic-bezier(0.2, 0.75, 0.2, 1), visibility 0s linear 260ms;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .main-nav a {
    padding: 18px 6px;
    color: #eef2ff;
    font-size: 21px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: 780px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(1, 4, 13, 0.95) 0%, rgba(1, 4, 13, 0.7) 75%, rgba(1, 4, 13, 0.5) 100%),
      linear-gradient(0deg, rgba(1, 4, 13, 0.9) 0%, transparent 58%);
  }

  .hero-content {
    margin-bottom: 150px;
  }

  .hero-index {
    left: 24px;
    right: 24px;
  }

  .visual-guide,
  .check-grid {
    width: 100%;
  }

  .check-grid {
    margin-top: 28px;
  }

  .security-note {
    grid-template-columns: 82px 1fr;
  }

  .security-note .text-link {
    grid-column: 2;
  }

  .split-heading,
  .games-layout,
  .responsible-layout,
  .faq {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .games-layout,
  .responsible-layout,
  .faq {
    gap: 34px;
  }

  .responsible-copy {
    order: -1;
  }

  .feature-ledger {
    grid-template-columns: 1fr;
  }

  .feature-ledger article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-ledger article:last-child {
    border-bottom: 0;
  }

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

  .platform-card:nth-child(2) {
    border-right: 0;
  }

  .faq {
    margin-top: 64px;
    padding-top: 64px;
  }

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

  .footer-inner nav {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

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

  .header-inner,
  .footer-inner,
  .footer-meta,
  .section-shell,
  .hero-content {
    width: min(100% - 30px, var(--max));
  }

  .brand img {
    width: 118px;
  }

  .brand > span {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(1, 4, 13, 0.98) 0%, rgba(1, 4, 13, 0.86) 58%, rgba(1, 4, 13, 0.38) 100%);
  }

  .hero-content {
    margin-top: 170px;
    margin-bottom: 180px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 55px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-index {
    left: 15px;
    right: 15px;
    bottom: 24px;
  }

  .hero-index div {
    min-width: 0;
    padding: 14px 10px 0;
  }

  .hero-index strong {
    font-size: 22px;
  }

  .hero-index span {
    font-size: 9px;
  }

  .section {
    padding: 88px 0;
  }

  .section-intro,
  .split-heading {
    margin-bottom: 38px;
  }

  .visual,
  .visual-guide,
  .visual-wide,
  .visual-games,
  .visual-responsible {
    aspect-ratio: 4 / 3;
  }

  .visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

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

  .check-grid li,
  .platform-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .check-grid li:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .security-note {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .security-note .text-link {
    grid-column: 1;
  }

  .note-mark {
    width: 62px;
    height: 62px;
  }

  .feature-ledger article {
    padding-inline: 0;
  }

  .catalog-table {
    min-width: 650px;
  }

  .platform-card:nth-child(2) {
    border-right: 0;
  }

  .editorial-callout {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq details p {
    padding-right: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-inner nav {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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