:root {
  color-scheme: light;
  --cream: #fcf9f0;
  --cream-low: #f7f3ea;
  --paper: #ffffff;
  --paper-dim: #f1eee5;
  --paper-high: #e5e2da;
  --ink: #1c1c17;
  --ink-soft: #534436;
  --outline: #867464;
  --outline-soft: #d9c2b1;
  --orange: #e58b27;
  --orange-deep: #8c5000;
  --orange-soft: #ffdcbf;
  --gold: #ffc641;
  --gold-soft: #ffdfa0;
  --red-soft: #ffdad6;
  --red: #93000a;
  --grid-line: rgba(134, 116, 100, 0.19);
  --container: 1280px;
  --gutter: clamp(1.25rem, 3.5vw, 4rem);
  --section: clamp(4.5rem, 8vw, 7.5rem);
  --radius-card: 28px;
  --radius-small: 12px;
  --border: 4px;
  --hard-shadow: 8px 8px 0 var(--ink);
  --font-display: "Plus Jakarta", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Fira Sans", Arial, sans-serif;
  --font-label: "Quicksand", "Trebuchet MS", sans-serif;
}

@font-face {
  font-family: "Plus Jakarta";
  src: url("assets/fonts/PlusJakartaSans.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/Quicksand.ttf") format("truetype");
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  background-color: var(--cream);
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  transform: translateY(-150%);
  border: var(--border) solid var(--ink);
  border-radius: var(--radius-small);
  background: var(--gold);
  padding: 0.65rem 1rem;
  font-family: var(--font-label);
  font-weight: 800;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--border) solid var(--ink);
  background: color-mix(in srgb, var(--cream) 96%, transparent);
  backdrop-filter: blur(10px);
}

.nav-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.55rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.4vw, 1.2rem);
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 0.55rem 0.8rem;
  font-family: var(--font-label);
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--gold);
}

.nav-link:active {
  transform: translate(2px, 2px);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: var(--border) solid var(--ink);
  border-radius: 28px;
  padding: 0.75rem 1.35rem;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.button.secondary {
  background: var(--cream);
}

.button.compact {
  min-height: 46px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
}

.mobile-nav {
  display: none;
  border-top: 2px solid var(--outline-soft);
  padding: 0.75rem var(--gutter) 1rem;
  background: var(--cream);
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.35rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: var(--section) calc(var(--section) * 0.85);
}

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

.eyebrow,
.status-chip,
.card-kicker,
.legal-kicker {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
}

.eyebrow::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

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

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.45rem;
  font-size: clamp(3.6rem, 6.7vw, 6.35rem);
  line-height: 0.91;
  text-transform: uppercase;
}

h1 .accent {
  display: block;
  color: var(--orange);
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 1.6rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}

.status-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.status-row {
  margin-bottom: 1.45rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-small);
  background: var(--gold-soft);
  padding: 0.45rem 0.65rem;
  letter-spacing: 0.05em;
}

.status-chip.muted {
  background: var(--paper-dim);
  color: var(--ink-soft);
}

.hero-note {
  width: 100%;
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.game-window-wrap {
  position: relative;
  min-width: 0;
  padding: 1rem 1rem 1.2rem 0;
}

.decor-square {
  position: absolute;
  z-index: 0;
  border: var(--border) solid var(--ink);
}

.decor-square.gold {
  top: -0.4rem;
  right: 0;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--gold);
}

.decor-square.orange {
  bottom: -0.35rem;
  left: 8%;
  width: 24%;
  aspect-ratio: 1.4;
  transform: rotate(12deg);
  background: var(--orange);
}

.game-window {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 490px;
  overflow: hidden;
  border: var(--border) solid var(--ink);
  border-radius: 2px;
  background: var(--paper-dim);
  box-shadow: var(--hard-shadow);
  cursor: pointer;
}

.game-window img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.96) contrast(0.98);
  transition: transform 260ms ease, filter 260ms ease;
}

.game-window:hover img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.01);
}

.game-window-overlay {
  position: absolute;
  inset: auto 1.1rem 1.1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  padding: 0.75rem 1rem;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 3px solid var(--orange-deep);
  border-radius: 50%;
  color: var(--orange-deep);
}

.play-mark svg {
  width: 20px;
  height: 20px;
}

.section {
  padding-bottom: var(--section);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.3rem, 5vw, 4.2rem);
  text-align: center;
}

.section-heading h2,
.build-copy h2,
.faq-heading h2,
.legal-hero h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 1.06;
}

.section-heading p,
.build-copy p,
.faq-heading p,
.legal-hero p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.paperclip {
  position: absolute;
  top: -4.4rem;
  right: 2rem;
  width: 34px;
  height: 68px;
  transform: rotate(15deg);
  border: 5px solid var(--outline);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  opacity: 0.55;
}

.feature-card {
  min-height: 320px;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--cream);
  padding: clamp(1.5rem, 2.7vw, 2.2rem);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--hard-shadow);
}

.icon-tile {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 1.45rem;
  border: 3px solid var(--ink);
  border-radius: 16px;
}

.icon-tile.red {
  background: var(--red-soft);
  color: var(--red);
}

.icon-tile.gold {
  background: var(--gold-soft);
  color: #5c4300;
}

.icon-tile.orange {
  background: var(--orange-soft);
  color: #6a3b00;
}

.icon-tile svg {
  width: 35px;
  height: 35px;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
  overflow: hidden;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--paper);
}

.fact {
  min-width: 0;
  padding: 1.25rem 1rem;
  text-align: center;
}

.fact + .fact {
  border-left: 3px solid var(--ink);
}

.fact strong {
  display: block;
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-family: var(--font-label);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.system-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--cream);
  padding: 1.25rem;
}

.system-card .icon-tile {
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 13px;
}

.system-card .icon-tile svg {
  width: 27px;
  height: 27px;
}

.system-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.system-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.build-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--paper-high);
  padding: clamp(2rem, 5vw, 4.7rem);
  box-shadow: 10px 10px 0 var(--ink);
}

.build-card::after {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  width: 110px;
  height: 92px;
  display: grid;
  place-items: center;
  transform: rotate(10deg);
  border: 3px solid var(--ink);
  background: var(--orange-soft);
  color: var(--ink);
  content: "QA BUILD\A 0.1.0";
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: pre;
}

.build-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.truth-note {
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 8rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--cream);
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1rem 1.2rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] {
  background: var(--gold-soft);
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.2rem 1.25rem;
  color: var(--ink-soft);
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  margin-bottom: 0;
}

.site-footer {
  border-top: var(--border) solid var(--ink);
  background: var(--paper-high);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-block: clamp(3.2rem, 7vw, 5.8rem);
}

.footer-brand {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-copy {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 0.5rem;
}

.footer-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(28, 28, 23, 0.88);
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-dialog {
  position: relative;
  width: min(100%, 780px);
  max-height: 92vh;
  overflow: auto;
  border: var(--border) solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--orange);
  padding: 1rem;
}

.lightbox-dialog img {
  width: min(100%, 540px);
  max-height: 78vh;
  margin-inline: auto;
  object-fit: contain;
  border: 3px solid var(--ink);
  border-radius: 18px;
}

.lightbox-caption {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
}

.legal-main {
  min-height: 70vh;
  padding-block: clamp(3.8rem, 8vw, 7rem);
}

.legal-shell {
  width: min(100% - (var(--gutter) * 2), 980px);
  margin-inline: auto;
}

.legal-hero {
  margin-bottom: 2rem;
}

.legal-hero h1 {
  max-width: none;
  margin-top: 0.85rem;
  text-transform: none;
}

.development-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.5rem;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--gold-soft);
  padding: 1.2rem;
}

.development-notice svg {
  width: 30px;
  height: 30px;
}

.development-notice p {
  margin-bottom: 0;
}

.legal-sections {
  display: grid;
  gap: 1.25rem;
}

.legal-card {
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--cream);
  padding: clamp(1.35rem, 4vw, 2.2rem);
}

.legal-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.legal-card-head .icon-tile {
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 14px;
}

.legal-card-head .icon-tile svg {
  width: 28px;
  height: 28px;
}

.legal-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-meta {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

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

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

  .hero-copy {
    max-width: 760px;
  }

  h1 {
    max-width: 12ch;
  }

  .game-window-wrap {
    width: min(100%, 850px);
    margin-inline: auto;
  }

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

  .feature-card {
    min-height: auto;
  }

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

  .build-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 1.1rem;
    --section: 4.4rem;
    --border: 3px;
    --radius-card: 22px;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand span {
    max-width: 12rem;
    white-space: normal;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-top: 3.7rem;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .game-window,
  .game-window img {
    min-height: 430px;
  }

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

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

  .fact + .fact {
    border-left: 0;
  }

  .fact:nth-child(even) {
    border-left: 3px solid var(--ink);
  }

  .fact:nth-child(n + 3) {
    border-top: 3px solid var(--ink);
  }

  .fact:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    justify-items: start;
  }

  .build-card::after {
    right: 0.4rem;
    bottom: -2.6rem;
    transform: rotate(6deg) scale(0.82);
  }
}

@media (max-width: 430px) {
  .brand span {
    max-width: 9.6rem;
    font-size: 0.94rem;
    line-height: 1.05;
  }

  .hero-actions,
  .hero-actions .button,
  .build-actions,
  .build-actions .button {
    width: 100%;
  }

  .game-window,
  .game-window img {
    min-height: 390px;
  }

  .game-window-overlay {
    inset: auto 0.7rem 0.7rem;
    font-size: 0.72rem;
  }

  .feature-card {
    padding: 1.35rem;
  }

  .build-card {
    padding: 1.6rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --cream: #26241f;
    --cream-low: #211f1b;
    --paper: #302d27;
    --paper-dim: #37332c;
    --paper-high: #3d3932;
    --ink: #fff8eb;
    --ink-soft: #ddd0bf;
    --outline: #c3ad98;
    --outline-soft: #65584d;
    --orange: #ffad5c;
    --orange-deep: #ffc488;
    --orange-soft: #674019;
    --gold: #f6be39;
    --gold-soft: #5b481c;
    --red-soft: #592c2b;
    --red: #ffb4ab;
    --grid-line: rgba(217, 194, 177, 0.09);
    --hard-shadow: 8px 8px 0 #0f0e0c;
  }

  .site-header {
    background: color-mix(in srgb, var(--cream) 96%, transparent);
  }

  .game-window-overlay {
    background: color-mix(in srgb, var(--cream) 94%, transparent);
  }
}

@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;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .legal-main {
    padding: 0;
  }

  .legal-card,
  .development-notice {
    break-inside: avoid;
    box-shadow: none;
  }
}
