@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&display=swap');

:root {
  --yellow: #ffdd00;
  --yellow-deep: #dfbf00;
  --blue: #3e97c7;
  --blue-dark: #0068b3;
  --red: #d62416;
  --green: #35ac11;
  --ink: #111111;
  --paper: #ffffff;
  --muted: #5f5f5f;
  --line: rgba(17, 17, 17, 0.16);
  --shadow: 14px 16px 0 rgba(17, 17, 17, 0.18);
  --soft-shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
  --header-h: 84px;
  --page-gutter: clamp(24px, 7vw, 110px);
  --content-max: 1600px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: var(--blue-dark) rgba(255, 255, 255, 0.72);
  background: var(--yellow);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
}

body.intro-active {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 4px;
}

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

.hero-copy,
.hero-visual,
.rule-card-list,
.rule-media,
.rule-copy,
.action-copy,
.action-media,
.video-commercial-heading > div,
.final-heading > div,
.action-gallery-heading > div {
  min-width: 0;
}

/* ─────────────────────────────
   INTRO / LETRAS TIPO SLOT
───────────────────────────── */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  clip-path: circle(150% at 50% 50%);
  background: var(--yellow);
  color: var(--blue-dark);
}

.intro-screen::before,
.intro-screen::after {
  content: "";
  position: absolute;
  width: min(72vw, 850px);
  aspect-ratio: 1;
  border: 2px solid rgba(0, 104, 179, 0.23);
  border-radius: 50%;
}

.intro-screen::after {
  width: min(54vw, 620px);
  border-style: dashed;
  animation: introSpin 11s linear infinite reverse;
}

.intro-ring {
  position: absolute;
  width: min(88vw, 1020px);
  aspect-ratio: 1;
  border: 5px solid rgba(0, 104, 179, 0.12);
  border-radius: 50%;
  animation: introSpin 16s linear infinite;
}

.intro-ring span {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-dark);
}

.intro-ring span:nth-child(1) {
  top: -12px;
  left: 50%;
}

.intro-ring span:nth-child(2) {
  top: 29%;
  right: 5%;
}

.intro-ring span:nth-child(3) {
  bottom: 18%;
  left: 11%;
}

.intro-kicker,
.intro-hint {
  position: relative;
  z-index: 2;
  font-size: clamp(0.65rem, 1vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro-kicker {
  margin-bottom: 22px;
}

.intro-hint {
  margin-top: 24px;
  opacity: 0.58;
}

.intro-word {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  overflow: hidden;
  color: var(--blue-dark);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.intro-letter {
  display: inline-block;
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
}

@keyframes introSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ─────────────────────────────
   CURSOR / BARRA DE DESPLAZAMIENTO
───────────────────────────── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border: 2px solid var(--blue-dark);
  border-radius: 50%;
  transform: translate(-50px, -50px);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

#cursor.is-hovering {
  width: 38px;
  height: 38px;
  background: rgba(0, 104, 179, 0.16);
}

/* Barra de desplazamiento nativa del navegador */
html::-webkit-scrollbar {
  width: 14px;
}

html::-webkit-scrollbar-track {
  border-left: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

html::-webkit-scrollbar-thumb {
  min-height: 72px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: var(--blue-dark);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--ink);
}

/* ═══════════════════════════════════════════════
   CORRECCIONES DE DIAGRAMACIÓN — JUNIO 2026
═══════════════════════════════════════════════ */
/* 1. Header completamente blanco */
/* Tipografía más grande en los botones del header */
/* ─────────────────────────────
   HEADER INTERACTIVO
───────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  display: flex;
  width: 100%;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-brand {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
  white-space: nowrap;
}

.mini-header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.3vw, 34px);
}

.header-action {
  position: relative;
  flex: 0 1 auto;
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: clamp(0.95rem, 1.15vw, 1.18rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.header-action::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-2px);
}

.header-action:hover::after,
.header-action:focus-visible::after {
  transform: scaleX(1);
}

.header-action--movement {
  color: var(--blue-dark);
}

.header-action--attack {
  color: var(--red);
}

.header-action--win {
  color: var(--green);
}

.tuerca-wrapper {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.tuerca-btn {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--paper);
  background: var(--blue-dark);
  box-shadow: var(--soft-shadow);
  font-size: 2.6rem;
  clip-path: polygon(28% 0%, 72% 0%, 100% 25%, 100% 75%, 72% 100%, 28% 100%, 0% 75%, 0% 25%);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), background 0.25s ease;
}

.tuerca-wrapper:hover .tuerca-btn {
  background: var(--ink);
  transform: rotate(90deg) scale(1.08);
}

/* ─────────────────────────────
   ESTRUCTURA GENERAL
───────────────────────────── */
.page-shell {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-number {
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.16;
}

/* ─────────────────────────────
   HERO
───────────────────────────── */
/* 2. Hero más corto, unido y completamente blanco */
/* ═══════════════════════════════════════════════
   AJUSTE HERO-CARD — DOS COLUMNAS REALES
═══════════════════════════════════════════════ */
.hero {
  min-height: auto;
  padding: calc(var(--header-h) + 28px) clamp(20px, 5vw, 72px) 42px;
}

.hero-card {
  position: relative;
  display: grid;
  width: min(100%, var(--content-max));
  height: clamp(500px, 68vh, 620px);
  height: clamp(500px, 68svh, 620px);
  min-height: 0;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
  margin-inline: auto;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
  background: var(--paper);
}

.hero-copy h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.45vw, 3.65rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.hero-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.hero-link span {
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}

.hero-link:hover span {
  transform: translateY(5px);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  border-left: 2px solid var(--paper);
  background: var(--paper);
}

.hero-gif {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("assets/ini.gif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(82%, 620px) auto;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-visual::before {
  width: min(88%, 720px);
  border: 1.5px solid rgba(17, 17, 17, 0.18);
}

.hero-visual::after {
  width: min(62%, 500px);
  border: 1.5px dashed rgba(17, 17, 17, 0.28);
}

.dress-btn {
  position: absolute;
  bottom: 8%;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
}

.dress-btn img {
  width: 76px;
  filter: drop-shadow(0 14px 16px rgba(17, 17, 17, 0.25));
  animation: pawnFloat 2.6s ease-in-out infinite;
  transition: width 0.3s ease, filter 0.3s ease;
}

.dress-btn:hover img {
  width: 92px;
  filter: drop-shadow(0 18px 18px rgba(17, 17, 17, 0.3)) hue-rotate(40deg);
}

@keyframes pawnFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ─────────────────────────────
   INTRO A REGLAS
───────────────────────────── */
/* ─────────────────────────────
   REGLAS GIRATORIAS
───────────────────────────── */
/* ─────────────────────────────
   REGLAS EN TARJETAS INDEPENDIENTES
───────────────────────────── */
/* ═══════════════════════════════════════════════
   CORRECCIÓN — REGLAS EN TARJETAS INDEPENDIENTES
═══════════════════════════════════════════════ */
/* La sección ahora crece de forma natural: una tarjeta debajo de otra. */
.rules-scroll {
  position: relative;
  min-height: auto;
  padding: 40px 0 110px;
}

.rules-stage {
  position: relative;
  display: grid;
  width: min(100%, var(--content-max));
  min-height: 0;
  grid-template-columns: minmax(210px, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  margin-inline: auto;
  padding: calc(var(--header-h) + 38px) var(--page-gutter) 30px;
  overflow: visible;
}

/* Índice lateral fijo durante el recorrido de las tres tarjetas. */
.disc-nav {
  position: sticky;
  top: calc(var(--header-h) + 42px);
  display: block;
  min-height: 0;
  align-self: start;
  padding: 24px 0;
}

.disc-window {
  display: none;
}

.disc-line {
  display: none;
}

.disc-steps {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 14px;
  padding-left: 2px;
}

.disc-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  width: 2px;
  background: rgba(17, 17, 17, 0.14);
}

.disc-step {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 4px 10px 4px 0;
  border: 0;
  color: rgba(17, 17, 17, 0.47);
  background: transparent;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.disc-step span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0.7rem;
}

.disc-step.is-active {
  color: var(--ink);
  transform: translateX(10px);
}

.disc-step.is-active span {
  color: var(--paper);
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

/* Contenedor vertical de las tarjetas. */
.rule-card-list {
  display: grid;
  gap: clamp(34px, 5vw, 62px);
}

.rule-card-list .rule-card {
  position: relative;
  display: grid;
  min-height: clamp(430px, 58vh, 590px);
  grid-template-columns: minmax(250px, 0.86fr) minmax(320px, 1.14fr);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 10px 12px 0 rgba(17, 17, 17, 0.13);
  opacity: 1;
  visibility: visible;
  transform: none;
  transform-origin: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.rule-card-list .rule-card.is-active {
  border-color: var(--blue-dark);
  box-shadow: 14px 16px 0 rgba(0, 104, 179, 0.16);
  transform: translateY(-4px);
}

.rule-media {
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  border-right: 2px solid var(--ink);
  background: #f4f4f2;
}

.rule-media img {
  width: 100%;
  height: 100%;
  padding: clamp(20px, 3vw, 44px);
  object-fit: contain;
}

.media-preparacion {
  display: flex;
  flex-direction: column; /* esto los pone uno arriba y otro abajo */
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.media-preparacion img {
  width: 100%;
  height: auto;
  max-height: 70%;
  padding: 2px;
  object-fit: contain;
}

.rule-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

.rule-copy h3 {
  margin: 5px 0 14px;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.rule-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(0.96rem, 1.2vw, 1.13rem);
  line-height: 1.7;
}

.rule-copy > p + p {
  margin-top: 16px;
}

.rule-emphasis {
  padding-left: 17px;
  border-left: 4px solid var(--yellow);
  color: var(--ink) !important;
  font-weight: 700;
}

.rule-extra {
  width: min(100%, 360px);
  max-height: 120px;
  margin-top: 24px;
  object-fit: contain;
  object-position: left center;
}

.scroll-cue {
  display: none;
}

/* ─────────────────────────────
   MOVIMIENTOS / ATAQUE / GANAR
───────────────────────────── */
/* 3. Galería central de Muévete / Ten cuidado / Gana */
/* ═══════════════════════════════════════════════
   AJUSTE EXTRA — CARRUSEL HORIZONTAL TIPO VOLVO
═══════════════════════════════════════════════ */
.action-gallery-section {
  padding: 82px var(--page-gutter) 90px;
  overflow: hidden;
}

.action-gallery-heading {
  display: grid;
  width: min(100%, 1400px);
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: clamp(22px, 5vw, 70px);
  margin: 0 auto 32px;
}

.action-gallery-heading h2 {
  max-width: 900px;
  margin-top: 10px;
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.action-gallery {
  position: relative;
  display: block;
  width: min(100%, 1180px);
  height: 370px;
  margin: 0 auto;
  overflow: visible;
}

.action-gallery .action-card {
  position: absolute;
  top: 50%;
  display: grid;
  width: clamp(285px, 27vw, 350px);
  height: clamp(195px, 19vw, 235px);
  min-height: 0;
  grid-template-columns: minmax(95px, 34%) minmax(0, 1fr);
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 10px 12px 0 rgba(17, 17, 17, 0.16);
  cursor: pointer;
  transform-origin: center center;
  transition:
    left 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    right 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    opacity 0.35s ease;
}

.action-gallery .action-card.is-left {
  right: auto;
  left: 2.5%;
  z-index: 1;
  box-shadow: 9px 11px 0 rgba(17, 17, 17, 0.12);
  transform: translateY(-50%) scale(0.88) rotate(-1.2deg);
}

.action-gallery .action-card.is-center {
  right: auto;
  left: 50%;
  z-index: 4;
  width: clamp(500px, 49vw, 640px);
  height: clamp(270px, 25vw, 320px);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) scale(1);
}

.action-gallery .action-card.is-right {
  right: 2.5%;
  left: auto;
  z-index: 2;
  box-shadow: 9px 11px 0 rgba(17, 17, 17, 0.12);
  transform: translateY(-50%) scale(0.88) rotate(1.2deg);
}

/* ZOOM VISUAL DE LAS TARJETAS AL HACER HOVER
   No cambia cuál tarjeta está seleccionada ni su posición. */
@media (hover: hover) and (pointer: fine) {
  .action-gallery .action-card.is-left:hover {
    z-index: 5;
    transform: translateY(-50%) scale(0.97) rotate(-1.2deg);
    box-shadow: 13px 16px 0 rgba(17, 17, 17, 0.17);
  }

  .action-gallery .action-card.is-center:hover {
    transform: translate(-50%, -50%) scale(1.045);
    box-shadow: 17px 19px 0 rgba(17, 17, 17, 0.2);
  }

  .action-gallery .action-card.is-right:hover {
    z-index: 5;
    transform: translateY(-50%) scale(0.97) rotate(1.2deg);
    box-shadow: 13px 16px 0 rgba(17, 17, 17, 0.17);
  }
}

.action-gallery .action-media {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-right: 2px solid var(--ink);
  background: #f4f4f2;
}

.action-gallery .action-media img {
  width: 100%;
  height: 100%;
  padding: clamp(10px, 1.6vw, 24px);
  object-fit: contain;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.action-gallery .action-card:hover .action-media img,
.action-gallery .action-card.is-expanded .action-media img {
  transform: scale(1.045) rotate(-1deg);
}

.action-gallery .action-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(17px, 2vw, 27px);
}

.action-gallery .action-copy h2 {
  margin: 6px 0 0;
  font-size: clamp(1.55rem, 2.25vw, 2.45rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.action-gallery .action-card.is-center .action-copy h2 {
  font-size: clamp(2.8rem, 4.65vw, 4.9rem);
}

.movimientos .action-copy h2 {
  color: var(--blue-dark);
}

.ataque .action-copy h2 {
  color: var(--red);
}

.Ganar .action-copy h2 {
  color: var(--green);
}

.action-gallery .action-copy > p:not(.eyebrow) {
  max-width: 650px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 0.44s ease, opacity 0.3s ease, transform 0.38s ease, margin-top 0.38s ease;
}

.action-gallery .action-card.is-center .action-copy > p:not(.eyebrow) {
  max-height: 125px;
  margin-top: 11px;
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════
   PUENTE CONCEPTUAL — DEL TABLERO A LO DIGITAL
═══════════════════════════════════════════════ */
/* ─────────────────────────────
   PUENTE CONCEPTUAL — DEL TABLERO A LO DIGITAL
───────────────────────────── */
/* CENTRAR PUENTE CONCEPTUAL Y SECCIÓN PIX */
/* CENTRAR PUENTE CONCEPTUAL SIN CAMBIAR SU DISEÑO */
.concept-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(28px, 6vw, 90px);
  padding: 110px var(--page-gutter);
  background: var(--yellow);
}

/* Este elemento está vacío, por lo que no necesita ocupar espacio */
.concept-bridge-number {
  display: none;
}

/* Mantiene ambas cajas centradas y una debajo de la otra */
.concept-bridge > .concept-bridge-content,
.concept-bridge > .game-extra-section {
  grid-column: 1 / -1;
  width: min(100%, 1050px);
  max-width: 1050px;
  justify-self: center;
  margin-right: auto;
  margin-left: auto;
}

.concept-bridge-content {
  padding: clamp(38px, 6vw, 78px);
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.concept-bridge-content h2 {
  max-width: 820px;
  margin: 10px 0 28px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.concept-bridge-content > p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.concept-bridge-content > p + p {
  margin-top: 18px;
}

.concept-bridge-content strong {
  color: var(--blue-dark);
  font-weight: 900;
}

.concept-bridge-link {
  display: inline-flex;
  width: fit-content;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  padding: 16px 28px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.concept-bridge-link span {
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}

.concept-bridge-link:hover,
.concept-bridge-link:focus-visible {
  color: var(--paper);
  background: var(--blue-dark);
  box-shadow: 8px 9px 0 rgba(17, 17, 17, 0.16);
  transform: translateY(-5px);
}

.concept-bridge-link:hover span {
  transform: translateX(6px);
}

/* ─────────────────────────────
   ESTILOS DE LA SECCIÓN DESPLEGABLE CON IFRAME
───────────────────────────── */
.game-extra-section {
  margin-top: clamp(24px, 4vw, 44px);
}

.game-extra-trigger {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: clamp(28px, 4.5vw, 48px);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 10px 12px 0 rgba(17, 17, 17, 0.14);
  text-align: left;
  cursor: pointer;
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.game-extra-trigger::before {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -116px;
  width: 285px;
  aspect-ratio: 1;
  border: 36px solid rgba(0, 104, 179, 0.09);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.5s ease, border-color 0.28s ease;
}

.game-extra-trigger:hover,
.game-extra-trigger:focus-visible {
  color: var(--paper);
  background: var(--blue-dark);
  box-shadow: 14px 16px 0 rgba(17, 17, 17, 0.18);
  transform: translateY(-5px);
}

.game-extra-trigger:hover::before,
.game-extra-trigger:focus-visible::before {
  border-color: rgba(255, 255, 255, 0.13);
  transform: rotate(32deg) scale(1.08);
}

.game-extra-trigger-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.game-extra-kicker {
  color: var(--blue-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.28s ease;
}

.game-extra-title {
  max-width: 790px;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.game-extra-description {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.58;
  transition: color 0.28s ease;
}

.game-extra-trigger:hover .game-extra-kicker,
.game-extra-trigger:focus-visible .game-extra-kicker,
.game-extra-section.is-open .game-extra-kicker {
  color: var(--yellow);
}

.game-extra-trigger:hover .game-extra-description,
.game-extra-trigger:focus-visible .game-extra-description,
.game-extra-section.is-open .game-extra-description {
  color: rgba(255, 255, 255, 0.76);
}

.game-extra-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(60px, 7vw, 80px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  transition: color 0.28s ease, background 0.28s ease, transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.game-extra-icon::before,
.game-extra-icon::after {
  content: "";
  position: absolute;
  width: 29px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.35s ease;
}

.game-extra-icon::after {
  transform: rotate(90deg);
}

.game-extra-section.is-open .game-extra-trigger {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 10px 12px 0 rgba(0, 104, 179, 0.2);
  transform: none;
}

.game-extra-section.is-open .game-extra-icon {
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(180deg);
}

.game-extra-section.is-open .game-extra-icon::after {
  transform: rotate(0deg);
}

.game-extra-panel {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  border: 0 solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 0 0 rgba(17, 17, 17, 0);
  opacity: 0;
  transform: translateY(-16px);
  transition:
    max-height 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    margin-top 0.45s ease,
    border-width 0.15s ease,
    opacity 0.35s ease,
    transform 0.45s ease,
    box-shadow 0.35s ease;
}

.game-extra-section.is-open .game-extra-panel {
  max-height: 1250px;
  margin-top: 24px;
  border-width: 2px;
  box-shadow: var(--shadow);
  opacity: 1;
  transform: translateY(0);
}

.game-extra-panel-head {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 3vw, 34px);
  border-bottom: 2px solid var(--ink);
  background: var(--yellow);
}

.game-extra-panel-head p {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.game-extra-close {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.game-extra-close:hover,
.game-extra-close:focus-visible {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.game-extra-close span {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 0.7;
}

.game-extra-frame-wrap {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 104, 179, 0.08), rgba(255, 221, 0, 0.12)),
    var(--paper);
}

.game-extra-frame-wrap::before {
  content: "Cargando bitácora…";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.game-extra-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: min(78vh, 914px);
  min-height: 620px;
  border: 0;
  background: transparent;
}

.game-extra-fallback {
  padding: 16px clamp(20px, 3vw, 34px) 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.game-extra-fallback a {
  color: var(--blue-dark);
  font-weight: 900;
}

/* ─────────────────────────────
   VIDEO COMERCIAL
───────────────────────────── */
.video-commercial {
  padding: 110px var(--page-gutter);
  color: var(--paper);
  background: var(--ink);
}

.video-commercial-heading {
  display: grid;
  width: min(100%, 1400px);
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: clamp(22px, 5vw, 70px);
  margin: 0 auto 52px;
}

.video-commercial .section-number {
  color: var(--paper);
}

.video-commercial-heading h2 {
  max-width: 900px;
  margin-top: 10px;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.video-commercial-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.youtube-player {
  position: relative;
  width: min(100%, 1180px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--paper);
  border-radius: 28px;
  background: #000000;
  box-shadow: 14px 16px 0 rgba(255, 221, 0, 0.3);
  cursor: pointer;
}

.youtube-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.35s ease;
}

.youtube-player::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
}

/* Cuando el video comienza, elimina la capa decorativa */
.youtube-player.is-playing::after {
  display: none;
}

.youtube-player:hover img {
  opacity: 0.82;
  transform: scale(1.04);
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(78px, 10vw, 120px);
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
}

.youtube-player:hover .youtube-play {
  background: var(--paper);
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-player-label {
  position: absolute;
  bottom: clamp(20px, 4vw, 42px);
  left: clamp(22px, 4vw, 50px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.youtube-player-label span {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.youtube-player-label strong {
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 900;
}

.youtube-player iframe {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─────────────────────────────
   GALERÍA FINAL
───────────────────────────── */
/* 4. Galería final más breve y compacta */
.final {
  padding: 82px 0 90px;
}

.final-heading {
  display: grid;
  width: min(100%, var(--content-max));
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: clamp(22px, 5vw, 70px);
  margin-inline: auto;
  padding: 0 var(--page-gutter) 42px;
}

.final-heading h2 {
  margin-top: 10px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.scroll-gallery-section {
  position: relative;
  min-height: 350vh;
}

.gallery-stage {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  display: flex;
  height: calc(76vh - var(--header-h));
  height: calc(76svh - var(--header-h));
  align-items: center;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 0 var(--page-gutter);
  will-change: transform;
}

.gallery-track figure {
  width: min(56vw, 560px);
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 12px 14px 0 rgba(17, 17, 17, 0.16);
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 48px 24px 0;
}

.bttn1,
.bttn3 {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.bttn3 {
  color: var(--ink);
  background: var(--paper);
}

.bttn1:hover,
.bttn3:hover {
  color: var(--paper);
  background: var(--blue-dark);
  transform: translateY(-5px);
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.info-final {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding: 72px var(--page-gutter);
  border-top: 2px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.info-final h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.info-final p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* LOGOS DEL FOOTER */
.logos-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}

.logos-footer img {
  width: auto;
  max-width: 130px;
  max-height: 65px;
  object-fit: contain;
  /* Si los logos son negros, los transforma a blanco */
  filter: brightness(0) invert(1);
}

/* ═══════════════════════════════════════════════
   HEADER DE TEXTO + SCROLLBAR NATIVA
═══════════════════════════════════════════════ */
/* Responsive */
/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 1050px) {
  :root {
    --header-h: 78px;
  }

  .hero-card {
    grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  }

  .hero-gif {
    background-size: min(86%, 560px) auto;
  }

  .rules-stage {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 28px;
    padding-inline: 30px;
  }

  .rule-card-list .rule-card {
    grid-template-columns: minmax(190px, 0.76fr) minmax(260px, 1.24fr);
  }

  .rule-card-list .rule-copy {
    padding: 34px;
  }

  .action-gallery {
    width: min(100%, 930px);
    height: 350px;
  }

  .action-gallery .action-card {
    width: clamp(250px, 29vw, 300px);
  }

  .action-gallery .action-card.is-center {
    width: clamp(450px, 52vw, 545px);
  }

  .action-gallery .action-card.is-left {
    left: 0;
  }

  .action-gallery .action-card.is-right {
    right: 0;
  }
}

@media (max-width: 820px) {
  #cursor {
    display: none;
  }

  .site-header {
    gap: 30px;
    padding: 10px 16px;
  }

  .site-brand {
    font-size: 0.8rem;
  }

  .mini-header {
    gap: 14px;
  }

  .header-action {
    font-size: 0.82rem;
  }

  .tuerca-wrapper {
    bottom: 14px;
    left: 14px;
  }

  .tuerca-btn {
    width: 58px;
    height: 58px;
    font-size: 2rem;
  }

  .tuerca-wrapper > span:last-child {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 30px;
  }

  .hero-card {
    height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    height: auto;
    padding: 38px 28px 22px;
  }

  .hero-visual {
    min-height: 390px;
    border-top: 2px solid var(--ink);
    border-left: 2px solid var(--paper);
  }

  .hero-gif {
    background-size: min(76%, 480px) auto;
  }

  .rules-scroll {
    padding-top: 10px;
    padding-bottom: 72px;
  }

  .rules-stage {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 22px;
    padding: calc(var(--header-h) + 18px) 16px 24px;
  }

  .disc-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 20;
    width: 100%;
    padding: 12px 8px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 18px;
    background: rgba(255, 221, 0, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .disc-steps {
    flex-direction: row;
    justify-content: space-between;
    gap: 6px;
    padding: 0;
  }

  .disc-steps::before {
    top: 18px;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 2px;
  }

  .disc-step {
    width: auto;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    padding: 0;
    font-size: 0.66rem;
    text-align: center;
  }

  .disc-step.is-active {
    transform: translateY(-4px);
  }

  .disc-step span {
    width: 36px;
    height: 36px;
    font-size: 0.66rem;
  }

  .rule-card-list {
    gap: 28px;
  }

  .rule-card-list .rule-card {
    min-height: 0;
    grid-template-columns: 1fr;
    transform: none;
  }

  .rule-card-list .rule-card.is-active {
    transform: none;
  }

  .rule-card-list .rule-media {
    min-height: 250px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .rule-media img {
    max-height: 300px;
  }

  .rule-card-list .rule-copy {
    padding: 30px 26px 36px;
  }

  .action-gallery-section {
    padding: 72px 16px 82px;
    overflow: visible;
  }

  .action-gallery-heading {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .action-gallery {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    min-height: 0;
    align-items: stretch;
    gap: 18px;
    padding: 12px 4px 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .action-gallery .action-card,
  .action-gallery .action-card.is-expanded,
  .action-gallery .action-card:hover,
  .action-gallery .action-card:focus-visible,
  .action-gallery .action-card.is-left,
  .action-gallery .action-card.is-center,
  .action-gallery .action-card.is-right {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    flex: 0 0 min(82vw, 560px);
    width: auto;
    height: auto;
    min-height: 300px;
    grid-template-columns: minmax(105px, 34%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    scroll-snap-align: center;
    box-shadow: 10px 12px 0 rgba(17, 17, 17, 0.16);
    transform: none;
  }

  .action-gallery .action-media {
    border-right: 2px solid var(--ink);
  }

  .action-gallery .action-copy > p:not(.eyebrow) {
    max-height: 170px;
    margin-top: 11px;
    opacity: 1;
    transform: none;
  }

  .action-gallery .action-copy h2,
  .action-gallery .action-card.is-center .action-copy h2 {
    font-size: clamp(2.6rem, 9vw, 4.8rem);
  }

  .concept-bridge {
    gap: 24px;
    padding: 76px 16px;
  }

  .concept-bridge-content {
    padding: 38px 28px;
  }

  .concept-bridge-content h2 {
    font-size: clamp(2.3rem, 10vw, 4rem);
  }

  .game-extra-section {
    margin-top: 0;
  }

  .game-extra-trigger,
  .game-extra-panel {
    border-radius: 24px;
  }

  .game-extra-frame-wrap,
  .game-extra-frame {
    min-height: 540px;
  }

  .game-extra-frame {
    height: 72vh;
  }

  .video-commercial {
    padding: 76px 16px;
  }

  .video-commercial-heading {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .youtube-player {
    border-radius: 22px;
  }

  .scroll-gallery-section {
    min-height: 125vh;
  }

  .gallery-stage {
    height: 64vh;
    height: 64svh;
  }

  .gallery-track figure {
    width: 74vw;
  }

  .info-final {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .intro-word {
    font-size: clamp(2.55rem, 15vw, 4.5rem);
  }

  .site-header {
    gap: 12px;
  }

  .site-brand {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .mini-header {
    gap: 9px;
  }

  .header-action {
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  html::-webkit-scrollbar {
    width: 10px;
  }

  .hero-visual {
    min-height: 335px;
  }

  .hero-gif {
    background-size: min(86%, 420px) auto;
  }

  .section-number {
    font-size: 4rem;
  }

  .rule-card-list .rule-media {
    min-height: 215px;
  }

  .action-gallery .action-card,
  .action-gallery .action-card.is-expanded,
  .action-gallery .action-card:hover,
  .action-gallery .action-card:focus-visible,
  .action-gallery .action-card.is-left,
  .action-gallery .action-card.is-center,
  .action-gallery .action-card.is-right {
    flex-basis: 88vw;
    min-height: 280px;
  }

  .concept-bridge {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .concept-bridge-content {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .concept-bridge-link {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .game-extra-trigger {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px;
  }

  .game-extra-icon {
    width: 58px;
  }

  .game-extra-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .game-extra-close {
    width: 100%;
  }

  .game-extra-frame-wrap,
  .game-extra-frame {
    min-height: 500px;
  }

  .game-extra-frame {
    height: 68vh;
  }

  .final-heading {
    grid-template-columns: 1fr;
  }

  .gallery-track figure {
    width: 80vw;
  }

  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .logos-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .logos-footer img {
    max-width: 150px;
  }
}

/* Ajuste adicional para teléfonos especialmente angostos. */
@media (max-width: 380px) {
  .site-header {
    padding-inline: 12px;
  }

  .site-brand {
    font-size: 0.66rem;
  }

  .mini-header {
    gap: 7px;
  }

  .header-action {
    font-size: 0.62rem;
  }

  .hero-copy h2 {
    font-size: clamp(2rem, 11vw, 2.35rem);
  }

  .action-gallery .action-card,
  .action-gallery .action-card.is-expanded,
  .action-gallery .action-card:hover,
  .action-gallery .action-card:focus-visible,
  .action-gallery .action-card.is-left,
  .action-gallery .action-card.is-center,
  .action-gallery .action-card.is-right {
    grid-template-columns: minmax(92px, 33%) minmax(0, 1fr);
  }

  .action-gallery .action-copy {
    padding: 16px;
  }

  .action-gallery .action-copy h2,
  .action-gallery .action-card.is-center .action-copy h2 {
    font-size: clamp(2rem, 11vw, 2.6rem);
  }
}

@media (min-width: 1800px) {
  .hero-copy h2 {
    font-size: 3.65rem;
  }

  .rules-stage,
  .final-heading {
    max-width: var(--content-max);
  }
}

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

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