:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: #545a60;
  --line: #e4e4df;
  --panel: #f4f4f0;
  --accent: #1d5c44;
  --accent-deep: #154532;
  --accent-soft: #e6eee9;
  --on-accent: #ffffff;
  --on-accent-muted: #d3e6da;
  --f-head: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", system-ui, sans-serif;
  --f-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-s: 0.875rem;
  --fs-m: 1.0625rem;
  --fs-l: 1.25rem;
  --fs-xl: clamp(1.6rem, 3.2vw, 2.1rem);
  --fs-xxl: clamp(2.6rem, 7vw, 4.4rem);
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 48px;
  --sp-5: 96px;
  --sp-6: 140px;
  --radius: 4px;
  --wrap: 1120px;
  --measure: 68ch;
  color-scheme: light;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--fs-m);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0 0 var(--sp-2);
}

h1 {
  font-size: var(--fs-xxl);
  letter-spacing: -0.03em;
  line-height: 1.04;
}

h2 {
  font-size: var(--fs-xl);
}

h3 {
  font-size: var(--fs-l);
  line-height: 1.2;
}

p {
  margin: 0 0 var(--sp-2);
}

a {
  color: var(--accent);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 160ms ease;
}

a:hover {
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

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

ul,
ol {
  margin: 0 0 var(--sp-2);
  padding-inline-start: 1.2em;
}

li + li {
  margin-top: 6px;
}

strong {
  font-weight: 650;
}

.lo-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  z-index: 10;
}

.lo-skip:focus {
  left: 16px;
}

.lo-wrap {
  width: min(100% - 32px, var(--wrap));
  margin-inline: auto;
}

.lo-top {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.lo-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 84px;
}

.lo-top__logo {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  padding-block: 12px;
}

.lo-top__logo span {
  color: var(--accent);
}

.lo-top__nav ul {
  display: flex;
  gap: var(--sp-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.lo-top__nav li + li {
  margin-top: 0;
}

.lo-top__nav a {
  display: inline-block;
  padding: 12px 0;
  font-size: var(--fs-s);
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.lo-top__nav a:hover,
.lo-top__nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.lo-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80svh;
  border-bottom: 1px solid var(--line);
}

.lo-hero__half {
  background: var(--accent);
  color: var(--on-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-5) clamp(24px, 5vw, 72px);
}

.lo-hero__meta {
  font-size: var(--fs-s);
  color: var(--on-accent-muted);
  margin-bottom: var(--sp-3);
}

.lo-hero__half h1 {
  color: var(--on-accent);
  max-width: 14ch;
}

.lo-hero__lead {
  font-size: var(--fs-l);
  line-height: 1.5;
  max-width: 34ch;
  color: #eef5f1;
  margin-bottom: var(--sp-4);
}

.lo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.lo-hero__shot {
  margin: 0;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-4) clamp(16px, 4vw, 56px);
}

.lo-hero__shot img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 1px 2px #0000000f, 0 18px 40px -24px #0a0a0a55;
}

.lo-hero__shot figcaption {
  margin-top: var(--sp-2);
  font-size: var(--fs-s);
  color: var(--muted);
}

.lo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lo-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.lo-btn--light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.lo-btn--light:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.lo-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #ffffff99;
}

.lo-btn--ghost:hover {
  background: #fff;
  color: var(--accent-deep);
  border-color: #fff;
}

.lo-poster {
  min-height: 80svh;
  display: flex;
  align-items: center;
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--line);
}

.lo-poster--panel {
  background: var(--panel);
  border-bottom: 0;
}

.lo-poster__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-3);
  align-items: center;
}

.lo-poster__num {
  grid-column: 1 / 3;
  font-family: var(--f-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  align-self: start;
}

.lo-poster__text {
  grid-column: 3 / 11;
}

.lo-poster__text--wide {
  grid-column: 3 / 13;
}

.lo-poster__text--narrow {
  grid-column: 3 / 8;
}

.lo-poster__media {
  grid-column: 8 / 13;
  margin: 0;
}

.lo-poster__media img {
  border-radius: var(--radius);
}

.lo-poster__media--tall {
  grid-column: 9 / 12;
  max-width: 300px;
  justify-self: center;
}

.lo-poster__media figcaption {
  margin-top: var(--sp-1);
  font-size: var(--fs-s);
  color: var(--muted);
}

.lo-poster__claim {
  font-family: var(--f-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
  text-wrap: balance;
}

.lo-poster__body {
  max-width: 60ch;
  color: #26292c;
}

.lo-poster__link {
  display: inline-block;
  padding: 12px 0;
  font-weight: 600;
}

.lo-kicker {
  display: block;
  font-size: var(--fs-s);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
  font-weight: 600;
}

.lo-section {
  padding-block: var(--sp-5);
}

.lo-section--tight {
  padding-block: var(--sp-4);
}

.lo-section--air {
  padding-block: var(--sp-6);
}

.lo-section__head {
  max-width: 44rem;
  margin-bottom: var(--sp-4);
}

.lo-section__head p {
  color: var(--muted);
}

.lo-table {
  overflow-x: auto;
  border-top: 2px solid var(--ink);
  -webkit-overflow-scrolling: touch;
}

.lo-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.lo-table caption {
  text-align: left;
  font-size: var(--fs-s);
  color: var(--muted);
  padding: 12px 0;
  caption-side: bottom;
}

.lo-table th,
.lo-table td {
  text-align: left;
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.lo-table thead th {
  font-size: var(--fs-s);
  color: var(--muted);
  font-weight: 600;
}

.lo-table tbody th {
  font-weight: 650;
}

.lo-table tbody tr:hover {
  background: var(--accent-soft);
}

.lo-note {
  font-size: var(--fs-s);
  color: var(--muted);
  margin-top: var(--sp-2);
  max-width: var(--measure);
}

.lo-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-4);
  align-items: start;
}

.lo-split > * {
  min-width: 0;
}

.lo-games {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.lo-games li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-3);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--line);
  margin: 0;
}

.lo-games li:first-child {
  border-top: 1px solid var(--line);
}

.lo-games__name {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: var(--fs-l);
  line-height: 1.25;
}

.lo-games p {
  margin: 0;
}

.lo-faq {
  max-width: 48rem;
}

.lo-faq details {
  border-top: 1px solid var(--line);
  padding-block: 4px;
}

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

.lo-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 16px 32px 16px 0;
  position: relative;
  min-height: 44px;
}

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

.lo-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 12px;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 180ms ease;
}

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

.lo-faq details p {
  color: #26292c;
  max-width: var(--measure);
}

.lo-shop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4);
}

.lo-shop ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lo-shop li {
  border-bottom: 1px solid var(--line);
  margin: 0;
}

.lo-shop li a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
}

.lo-shop li span {
  display: block;
  font-weight: 400;
  font-size: var(--fs-s);
  color: var(--muted);
}

.lo-cta {
  background: var(--accent);
  color: var(--on-accent);
  padding-block: var(--sp-5);
}

.lo-cta h2 {
  color: var(--on-accent);
  max-width: 20ch;
}

.lo-cta p {
  color: #eef5f1;
  max-width: 52ch;
}

.lo-cta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.lo-cta__mail {
  font-family: var(--f-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #fff;
  font-weight: 600;
  display: inline-block;
  padding-block: 8px;
}

.lo-cta__mail:hover {
  color: var(--on-accent-muted);
}

.lo-crumbs {
  padding-top: var(--sp-3);
  font-size: var(--fs-s);
  color: var(--muted);
}

.lo-crumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lo-crumbs li + li {
  margin-top: 0;
}

.lo-crumbs li + li::before {
  content: "/";
  margin-right: 6px;
  color: #9a9fa4;
}

.lo-crumbs a {
  color: var(--muted);
  display: inline-block;
  padding-block: 12px;
}

.lo-pagehead {
  padding-block: var(--sp-4) var(--sp-5);
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: var(--sp-4);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.lo-pagehead h1 {
  font-size: clamp(2.2rem, 5.6vw, 3.8rem);
}

.lo-pagehead__lead {
  font-size: var(--fs-l);
  line-height: 1.5;
  max-width: 40ch;
  color: #26292c;
  margin: 0;
}

.lo-pagehead__facts {
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: var(--fs-s);
  border-left: 3px solid var(--accent);
  padding-left: var(--sp-2);
}

.lo-pagehead__facts dt {
  color: var(--muted);
}

.lo-pagehead__facts dd {
  margin: 0;
  font-weight: 600;
}

.lo-pagehead--story {
  grid-template-columns: 1fr;
  background: var(--panel);
  padding-inline: clamp(16px, 4vw, 48px);
  margin-top: var(--sp-2);
  border-radius: var(--radius);
  border-bottom: 0;
}

.lo-article {
  display: grid;
  grid-template-columns: minmax(0, var(--measure)) 1fr;
  gap: var(--sp-5);
  padding-block: var(--sp-5);
}

.lo-article > * {
  min-width: 0;
}

.lo-prose h2 {
  margin-top: var(--sp-4);
}

.lo-prose h2:first-child {
  margin-top: 0;
}

.lo-prose h3 {
  margin-top: var(--sp-3);
}

.lo-aside {
  align-self: start;
  position: sticky;
  top: 24px;
  display: grid;
  gap: var(--sp-3);
}

.lo-aside__box {
  background: var(--panel);
  border-radius: var(--radius);
  padding: var(--sp-3);
  font-size: 0.95rem;
}

.lo-aside__box h2 {
  font-size: var(--fs-m);
  margin-bottom: var(--sp-1);
}

.lo-aside__box ul {
  padding-inline-start: 1.1em;
  margin: 0;
}

.lo-figure {
  margin: var(--sp-4) 0;
}

.lo-figure img {
  border-radius: var(--radius);
  width: 100%;
}

.lo-figure figcaption {
  margin-top: var(--sp-1);
  font-size: var(--fs-s);
  color: var(--muted);
}

.lo-figure--tall {
  max-width: 300px;
}

.lo-figure--bleed {
  margin-inline: calc(-1 * var(--sp-4));
}

.lo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin: var(--sp-4) 0;
}

.lo-pair .lo-figure {
  margin: 0;
}

.lo-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: var(--sp-3) 0 var(--sp-4);
}

.lo-steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 var(--sp-3) 56px;
  margin: 0;
}

.lo-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1rem;
}

.lo-quote {
  margin: var(--sp-4) 0;
  padding: var(--sp-3) 0 var(--sp-3) var(--sp-3);
  border-left: 3px solid var(--accent);
  font-family: var(--f-head);
  font-size: var(--fs-l);
  line-height: 1.4;
}

.lo-quote p {
  margin: 0;
}

.lo-quote footer {
  margin-top: var(--sp-1);
  font-family: var(--f-body);
  font-size: var(--fs-s);
  color: var(--muted);
}

.lo-diagram {
  margin: var(--sp-4) 0;
  padding: var(--sp-3);
  background: var(--panel);
  border-radius: var(--radius);
}

.lo-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

.lo-diagram figcaption {
  margin-top: var(--sp-2);
  font-size: var(--fs-s);
  color: var(--muted);
}

.lo-mistakes {
  list-style: none;
  padding: 0;
  margin: var(--sp-3) 0 var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}

.lo-mistakes li {
  margin: 0;
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lo-mistakes li:first-child {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.lo-mistakes strong {
  display: block;
  margin-bottom: 4px;
}

.lo-cal {
  overflow-x: auto;
  margin: var(--sp-4) 0;
}

.lo-cal table {
  border-collapse: separate;
  border-spacing: 3px;
  min-width: 620px;
  width: 100%;
  font-size: var(--fs-s);
}

.lo-cal th {
  font-weight: 600;
  text-align: left;
  padding: 6px 8px 6px 0;
}

.lo-cal thead th {
  text-align: center;
  color: var(--muted);
  padding: 4px 0;
}

.lo-cal td {
  text-align: center;
  padding: 8px 0;
  border-radius: 2px;
  background: var(--panel);
  color: var(--muted);
}

.lo-cal td.is-high {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.lo-cal td.is-mid {
  background: #b9d3c4;
  color: var(--ink);
}

.lo-cal td.is-closed {
  background: #fff;
  border: 1px dashed #9aa0a5;
  color: var(--ink);
}

.lo-cal caption {
  caption-side: bottom;
  text-align: left;
  color: var(--muted);
  padding-top: 8px;
}

.lo-hub {
  display: grid;
  gap: var(--sp-5);
  padding-block: var(--sp-5);
}

.lo-game {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--sp-4);
  align-items: start;
}

.lo-game > * {
  min-width: 0;
}

.lo-game--flip {
  grid-template-columns: 4fr 8fr;
}

.lo-game--flip .lo-game__media {
  order: -1;
}

.lo-game--narrow {
  grid-template-columns: 1fr 260px;
}

.lo-game__media {
  margin: 0;
}

.lo-game__media img {
  border-radius: var(--radius);
  width: 100%;
}

.lo-game__media figcaption {
  font-size: var(--fs-s);
  color: var(--muted);
  margin-top: var(--sp-1);
}

.lo-game__facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px var(--sp-2);
  font-size: var(--fs-s);
  margin: var(--sp-2) 0 var(--sp-3);
  padding-block: var(--sp-2);
  border-block: 1px solid var(--line);
}

.lo-game__facts dt {
  color: var(--muted);
}

.lo-game__facts dd {
  margin: 0;
}

.lo-game__play {
  display: inline-block;
  padding: 12px 0;
  font-weight: 600;
}

.lo-related {
  border-top: 2px solid var(--ink);
  padding-block: var(--sp-4) var(--sp-5);
}

.lo-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1) var(--sp-4);
}

.lo-related li + li {
  margin-top: 0;
}

.lo-related a {
  display: inline-block;
  padding: 12px 0;
  font-weight: 600;
}

.lo-legal {
  max-width: 46rem;
  padding-block: var(--sp-4) var(--sp-5);
}

.lo-legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.lo-legal h2 {
  font-size: 1.3rem;
  margin-top: var(--sp-4);
}

.lo-legal__meta {
  color: var(--muted);
  font-size: var(--fs-s);
}

.lo-legal dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px var(--sp-3);
}

.lo-legal dt {
  color: var(--muted);
}

.lo-legal dd {
  margin: 0;
}

.lo-foot {
  border-top: 1px solid var(--line);
  padding-block: var(--sp-4);
  font-size: 0.95rem;
  margin-top: var(--sp-4);
}

.lo-foot__grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: var(--sp-4);
}

.lo-foot__card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: var(--sp-3);
}

.lo-foot__card p {
  margin: 0 0 6px;
}

.lo-foot__name {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: var(--fs-l);
}

.lo-foot h2 {
  font-size: var(--fs-s);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: var(--sp-1);
}

.lo-foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lo-foot li + li {
  margin-top: 0;
}

.lo-foot li a {
  display: inline-block;
  padding: 12px 0;
  color: var(--ink);
}

.lo-foot li a:hover {
  color: var(--accent);
}

.lo-foot__small {
  margin-top: var(--sp-3);
  font-size: var(--fs-s);
  color: var(--muted);
}

.lo-legal .lo-cta__mail {
  color: var(--accent);
}

.lo-legal .lo-cta__mail:hover {
  color: var(--ink);
}

.lo-404 {
  min-height: 60svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--sp-5);
}

.lo-404__code {
  font-family: var(--f-head);
  font-size: clamp(4rem, 16vw, 9rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

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

.js .lo-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@container (max-width: 520px) {
  .lo-game__facts {
    grid-template-columns: 1fr;
  }
}

.lo-game__text {
  container-type: inline-size;
}

@media (max-width: 1000px) {
  .lo-article {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-4);
  }

  .lo-aside {
    position: static;
  }

  .lo-figure--bleed {
    margin-inline: 0;
  }

  .lo-foot__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lo-foot__card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .lo-top__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 12px;
  }

  .lo-top__nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .lo-top__nav ul {
    gap: var(--sp-3);
    white-space: nowrap;
  }

  .lo-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lo-hero__half {
    padding: var(--sp-4) 16px;
  }

  .lo-hero__shot {
    padding: var(--sp-3) 16px;
  }

  .lo-poster {
    min-height: 0;
    padding-block: var(--sp-4);
  }

  .lo-poster__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }

  .lo-poster__num,
  .lo-poster__text,
  .lo-poster__text--wide,
  .lo-poster__text--narrow,
  .lo-poster__media {
    grid-column: 1 / -1;
  }

  .lo-poster__num {
    font-size: 2.6rem;
  }

  .lo-split,
  .lo-shop,
  .lo-pagehead,
  .lo-game,
  .lo-game--flip,
  .lo-game--narrow {
    grid-template-columns: 1fr;
  }

  .lo-game--flip .lo-game__media {
    order: 0;
  }

  .lo-game--narrow .lo-game__media,
  .lo-poster__media--tall {
    max-width: 260px;
  }

  .lo-games li {
    grid-template-columns: 1fr;
    gap: var(--sp-1);
  }

  .lo-shop {
    padding: var(--sp-3);
    gap: var(--sp-2);
  }

  .lo-section,
  .lo-cta,
  .lo-hub {
    padding-block: var(--sp-4);
  }

  .lo-section--air {
    padding-block: var(--sp-5);
  }

  .lo-pagehead {
    padding-block: var(--sp-3) var(--sp-4);
  }

  .lo-article {
    padding-block: var(--sp-4);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }

  .lo-hero__actions .lo-btn,
  .lo-cta .lo-btn {
    width: 100%;
  }

  .lo-pair {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-1);
  }

  .lo-foot__grid {
    grid-template-columns: 1fr;
  }

  .lo-legal dl {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .lo-legal dd {
    margin-bottom: var(--sp-1);
  }

  .lo-steps li {
    padding-left: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .js .lo-reveal {
    opacity: 1;
    transform: none;
  }
}
