:root {
  --ink: #061321;
  --ink-deep: #030b14;
  --ink-soft: #0d2034;
  --ivory: #f5f1ea;
  --ivory-bright: #fbf9f5;
  --paper: #fffefd;
  --accent: #b51638;
  --accent-deep: #8f0d2b;
  --accent-soft: #d53a55;
  --text: #07111f;
  --muted: #657083;
  --dark-muted: #aab2bf;
  --line: rgba(7, 17, 31, 0.13);
  --dark-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 70px rgba(3, 11, 20, 0.18);
  --radius-small: 10px;
  --radius: 18px;
  --shell: min(1440px, calc(100vw - 96px));
  --header-height: 88px;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--text);
}

.preview-banner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #8e1732;
  color: #fff8f5;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.preview-banner strong {
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body[data-menu-open] {
  overflow: hidden;
}

body[data-dialog-open] {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

img,
svg {
  display: block;
}

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

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 700;
}

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(3, 11, 20, 0.78);
  color: #f8f4ee;
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 11px;
}

.desktop-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
}

.desktop-nav a,
.site-footer nav a,
.language-link {
  position: relative;
  color: rgba(248, 244, 238, 0.74);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  inset: auto 0 -12px;
  height: 2px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current],
.language-link:hover,
.language-link:focus-visible {
  color: white;
}

.desktop-nav a[aria-current]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.language-switcher-footer {
  justify-self: end;
}

.language-switcher-mobile {
  display: grid;
  gap: 12px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

[hidden] {
  display: none !important;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

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

.button:focus-visible,
.menu-button:focus-visible,
.text-action:focus-visible,
.language-link:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu a:focus-visible {
  outline: 3px solid rgba(213, 58, 85, 0.46);
  outline-offset: 4px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  box-shadow: 0 13px 28px rgba(181, 22, 56, 0.24);
}

.button-primary:hover {
  box-shadow: 0 17px 34px rgba(181, 22, 56, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.025);
  color: white;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

.button-large {
  min-height: 62px;
  padding: 0 28px;
  font-size: 16px;
}

.header-download {
  white-space: nowrap;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding-top: var(--header-height);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 62%, rgba(181, 22, 56, 0.34), transparent 34%),
    linear-gradient(118deg, var(--ink-deep) 0%, var(--ink) 56%, #170b16 100%);
  color: #f8f4ee;
}

.hero-glow,
.download-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(181, 22, 56, 0.22);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow {
  right: -140px;
  bottom: -90px;
}

.hero-grid {
  min-height: calc(780px - var(--header-height));
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(560px, 1fr);
  align-items: center;
  gap: 24px;
  padding-block: 68px 48px;
}

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

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(56px, 5.2vw, 82px);
  font-weight: 820;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero-line {
  display: block;
}

@media (min-width: 981px) {
  .hero-line {
    white-space: nowrap;
  }
}

.hero h1 span,
.section-heading h2 span {
  color: var(--accent-soft);
}

.hero-platform {
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  line-height: 1.4;
}

.app-preview figcaption {
  padding: 10px 14px;
  color: var(--dark-muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-body {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--dark-muted);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 660px;
  margin-top: 34px;
  color: rgba(248, 244, 238, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.chip-compatibility {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  gap: 5px 9px;
  align-items: start;
  max-width: 680px;
  margin-top: 16px;
  color: rgba(248, 244, 238, 0.74);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.chip-compatibility-dot {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: #d9ad54;
  box-shadow: 0 0 0 4px rgba(217, 173, 84, 0.14);
}

.chip-compatibility[data-state="supported"] .chip-compatibility-dot {
  background: #72c693;
  box-shadow: 0 0 0 4px rgba(114, 198, 147, 0.14);
}

.chip-compatibility[data-state="unsupported"] {
  color: #ffd4d8;
}

.chip-compatibility[data-state="unsupported"] .chip-compatibility-dot,
.chip-compatibility[data-state="non-mac"] .chip-compatibility-dot {
  background: #ed6674;
  box-shadow: 0 0 0 4px rgba(237, 102, 116, 0.14);
}

.chip-compatibility-help {
  grid-column: 2;
  width: fit-content;
  color: inherit;
  font-weight: 550;
}

.chip-compatibility-help summary {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  opacity: 0.78;
}

.chip-compatibility-help p {
  max-width: 560px;
  margin: 8px 0 0;
  color: inherit;
  font-size: 12px;
}

.hero-proof .icon {
  color: #d7dde5;
  font-size: 19px;
}

.hero-proof .native-mark {
  width: 21px;
  height: 21px;
  color: #d7dde5;
  flex: 0 0 auto;
}

.proof-divider {
  width: 1px;
  height: 28px;
  margin-inline: 4px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-icon {
  position: absolute;
  z-index: 1;
  top: 4%;
  left: 4%;
  width: min(560px, 73%);
  height: auto;
  filter: drop-shadow(0 36px 50px rgba(0, 0, 0, 0.42));
  transform: rotate(-2deg);
}

.app-preview {
  position: absolute;
  z-index: 2;
  right: -12%;
  bottom: 3%;
  width: min(720px, 88%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
  background: white;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.46);
  transform: rotate(1.5deg);
}

.app-preview img {
  width: 100%;
  height: auto;
}

.features-section,
.conflict-section,
.roadmap-section,
.support-section,
.pricing-section,
.legal-section {
  background: var(--ivory);
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-block: 42px;
}

.feature {
  min-height: 178px;
  display: grid;
  grid-template-columns: 94px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 34px;
  border-right: 1px solid var(--line);
}

.feature:first-child {
  border-left: 1px solid var(--line);
}

.feature-icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: linear-gradient(145deg, #15334e, #071728);
  color: #ebe4d8;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.13), 0 16px 30px rgba(6, 19, 33, 0.17);
}

.feature-icon-inspect {
  background: linear-gradient(145deg, #c32548, #720a24);
}

.feature-icon-recover {
  background: linear-gradient(145deg, #66686c, #252a31);
}

.feature-icon .icon {
  width: 50px;
  height: 50px;
  stroke-width: 1.45;
}

.feature h3,
.plan h3,
.release-safeguards h3,
.support-guides h3 {
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.feature p,
.plan p,
.release-safeguards p,
.support-section p,
.support-guides li,
.legal-section p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-arrow {
  color: #9da2a7;
  font-size: 28px;
}

.workflow-section {
  position: relative;
  overflow: hidden;
  padding-block: 116px 128px;
  background:
    radial-gradient(circle at 75% 85%, rgba(181, 22, 56, 0.24), transparent 32%),
    linear-gradient(120deg, var(--ink-deep), var(--ink));
  color: #f8f4ee;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 64px;
}

.section-heading h2,
.support-intro h2,
.download-copy h2,
.legal-layout h2 {
  margin-bottom: 16px;
  font-size: clamp(43px, 4.6vw, 72px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading p,
.download-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.section-heading-dark p {
  color: var(--dark-muted);
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.workflow-rail::before {
  position: absolute;
  content: "";
  top: 29px;
  right: 3%;
  left: 3%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.42) 0 6px, transparent 6px 12px);
}

.workflow-step {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: var(--ink);
  color: #f8f4ee;
  font-size: 21px;
  font-weight: 800;
}

.workflow-step:nth-child(1) .step-number,
.workflow-step:nth-child(3) .step-number {
  border-color: var(--accent-soft);
}

.workflow-step h3 {
  margin-bottom: 10px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.workflow-step:nth-child(3) h3 {
  color: var(--accent-soft);
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--dark-muted);
  font-size: 13px;
  line-height: 1.55;
}

.conflict-section {
  padding-block: 108px 116px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 14%, rgba(181, 22, 56, 0.08), transparent 25%),
    var(--ivory-bright);
}

.conflict-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 88px;
  align-items: end;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.conflict-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(43px, 4.6vw, 72px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.conflict-heading h2 span {
  color: var(--accent-deep);
}

.conflict-heading > p,
.conflict-policy-copy p,
.conflict-rule p,
.conflict-limit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.conflict-heading > p {
  font-size: 17px;
}

.conflict-policy {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: center;
  padding: 40px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 52px rgba(6, 19, 33, 0.08);
}

.conflict-policy-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.conflict-policy-copy p {
  font-size: 14px;
}

.compatibility-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.compatibility-tier {
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f0ece6;
}

.compatibility-tier small {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.compatibility-tier strong {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.compatibility-tier p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.compatibility-tier-paid {
  border-color: rgba(181, 22, 56, 0.28);
  background: linear-gradient(145deg, rgba(181, 22, 56, 0.11), rgba(181, 22, 56, 0.045));
}

.compatibility-tier-paid small,
.compatibility-tier-paid strong {
  color: var(--accent-deep);
}

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

.conflict-rule {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 30px 32px;
  border-right: 1px solid var(--line);
}

.conflict-rule:last-child {
  border-right: 0;
}

.conflict-rule-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.conflict-rule h3 {
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.conflict-rule p,
.conflict-limit p {
  font-size: 13px;
}

.conflict-limit {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 22px;
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid #8f5c20;
  border-radius: 0 10px 10px 0;
  background: rgba(183, 121, 45, 0.09);
}

.conflict-limit strong {
  color: #764617;
  font-size: 13px;
}

.compatibility-scope {
  margin-top: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(181, 22, 56, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(181, 22, 56, 0.09), rgba(181, 22, 56, 0.025)),
    var(--paper);
  box-shadow: 0 18px 38px rgba(65, 16, 27, 0.07);
}

.compatibility-scope-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.compatibility-scope-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(181, 22, 56, 0.18);
}

.compatibility-scope-icon .icon {
  width: 23px;
  height: 23px;
}

.compatibility-scope .section-eyebrow {
  margin-bottom: 8px;
}

.compatibility-scope h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.compatibility-scope-heading p,
.compatibility-scope-report {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.compatibility-scope ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.compatibility-scope li {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(181, 22, 56, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
}

.compatibility-scope li strong {
  color: var(--ink);
  font-size: 14px;
}

.compatibility-scope li span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.compatibility-scope-report {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(181, 22, 56, 0.16);
  color: var(--ink-soft);
  font-weight: 650;
}

.compatibility-report-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  margin-top: 28px;
  padding: 30px 34px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 30%, rgba(181, 22, 56, 0.28), transparent 31%),
    linear-gradient(120deg, var(--ink-deep), var(--ink));
  color: #f8f4ee;
  box-shadow: 0 20px 44px rgba(6, 19, 33, 0.14);
}

.compatibility-report-entry .section-eyebrow {
  margin-bottom: 10px;
  color: #ff7188;
}

.compatibility-report-entry h3 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.compatibility-report-entry p {
  max-width: 820px;
  margin: 0;
  color: var(--dark-muted);
  font-size: 14px;
  line-height: 1.6;
}

.compatibility-report-entry .button {
  white-space: nowrap;
}

.roadmap-section {
  padding-block: 106px 120px;
}

.roadmap-heading {
  width: 100%;
  max-width: none;
}

.section-heading .roadmap-commitment {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding: 15px 18px;
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: rgba(181, 22, 56, 0.06);
  font-size: 14px;
  line-height: 1.6;
}

.roadmap-commitment strong {
  flex: 0 0 auto;
  color: var(--ink);
}

.roadmap-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-rail::before {
  position: absolute;
  z-index: 0;
  content: "";
  top: 38px;
  right: 8.33%;
  left: 8.33%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0 8%, #d8d1c7 8% 100%);
}

.game-node {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 210px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 20px;
  padding-inline: 8px;
  text-align: center;
}

.game-node-active {
  color: var(--ink);
}

.game-icon {
  width: 70px;
  height: 70px;
  display: grid;
  flex: 0 0 auto;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 3px;
  padding: 11px 10px 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, #fff, #e5dfd6);
  color: #565a61;
  box-shadow: inset 0 1px white, 0 10px 24px rgba(17, 24, 39, 0.08);
  margin-inline: auto;
}

.game-icon svg {
  width: 34px;
  height: 34px;
}

.game-icon small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.game-icon-re2 {
  background: linear-gradient(145deg, #eef3f6, #cbd6de);
  color: #23445c;
}

.game-icon-re3 {
  background: linear-gradient(145deg, #f3e9dc, #d6c3a8);
  color: #744322;
}

.game-icon-village {
  background: linear-gradient(145deg, #edf0ea, #c7d0c1);
  color: #3c5945;
}

.game-icon-re7 {
  background: linear-gradient(145deg, #eee8df, #cbc0b3);
  color: #57483b;
}

.game-icon-more {
  border-style: dashed;
  background: rgba(244, 241, 236, 0.78);
  color: #7a7d82;
}

.game-copy {
  min-width: 0;
}

.game-node-active .game-icon {
  border-color: rgba(181, 22, 56, 0.78);
  background: linear-gradient(145deg, #c52a49, #7f0a25);
  color: white;
  box-shadow: 0 12px 28px rgba(181, 22, 56, 0.24);
}

.game-node-future {
  color: var(--muted);
}

.game-node h3 {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.2;
}

.game-node-active h3 {
  color: var(--accent);
}

.game-original-name {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.game-node p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.game-node-active p {
  color: var(--accent);
  font-weight: 720;
}

.game-node-active .game-original-name {
  color: var(--muted);
}

.support-section {
  padding-block: 112px;
  border-top: 1px solid var(--line);
  background: var(--ivory-bright);
}

.support-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: start;
}

.support-intro h2 {
  font-size: clamp(42px, 4vw, 65px);
}

.support-intro > p {
  max-width: 620px;
  font-size: 17px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-deep);
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.tutorial-link {
  max-width: 390px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
  padding-block: 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tutorial-link > .icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-deep);
}

.tutorial-link span {
  display: grid;
  gap: 4px;
}

.tutorial-link strong {
  color: var(--text);
  font-size: 15px;
}

.tutorial-link small {
  color: var(--muted);
  font-size: 13px;
}

.tutorial-link-disabled {
  cursor: default;
}

a.tutorial-link:hover strong,
a.tutorial-link:focus-visible strong {
  color: var(--accent-deep);
}

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

.support-guides > div {
  padding: 30px 32px 34px 0;
  border-bottom: 1px solid var(--line);
}

.support-guides > div:nth-child(even) {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.support-guides > div:nth-child(odd) {
  padding-right: 32px;
}

.support-guides ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.support-guides li {
  margin-bottom: 12px;
  padding-left: 5px;
}

.pricing-section {
  padding-block: 116px 126px;
}

.section-heading-pricing h2 span {
  color: var(--accent-deep);
}

.pricing-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 253, 0.7);
}

.plan {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 44px;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.plan:last-child {
  border-right: 0;
}

.plan-featured {
  background: linear-gradient(180deg, rgba(65, 112, 130, 0.12), rgba(255, 255, 255, 0.65) 48%);
  box-shadow: inset 0 5px #416f80;
}

.plan-single {
  background: linear-gradient(180deg, rgba(183, 121, 45, 0.14), rgba(255, 253, 249, 0.7) 48%);
  box-shadow: inset 0 5px #b7792d;
}

.plan-all {
  background: linear-gradient(180deg, rgba(181, 22, 56, 0.12), rgba(255, 251, 251, 0.72) 48%);
  box-shadow: inset 0 5px var(--accent-deep);
}

.plan-heading {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.plan-price {
  display: grid;
  justify-items: end;
  gap: 3px;
  min-width: 150px;
  text-align: right;
}

.plan-price-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.plan-price-regular {
  display: flex;
  gap: 7px;
  align-items: baseline;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
}

.plan-price-regular s {
  text-decoration-thickness: 1px;
}

.plan-price-caption {
  max-width: 210px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}

.plan-price strong {
  font-size: clamp(38px, 3.2vw, 56px);
  letter-spacing: -0.05em;
}

.plan-free .plan-heading h3,
.plan-free .plan-price strong {
  color: #315f70;
}

.plan-single .plan-price strong {
  white-space: nowrap;
  font-size: clamp(22px, 1.9vw, 30px);
}

.plan-single .plan-heading h3,
.plan-single .plan-price strong {
  color: #925a19;
}

.plan-all .plan-heading h3,
.plan-all .plan-price strong {
  color: #941c38;
}

.plan-all .plan-price strong {
  max-width: 250px;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.05;
}

.plan p {
  margin-bottom: 22px;
  font-size: 16px;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
}

.plan-features li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--accent-deep);
  font-weight: 850;
}

.plan-free .plan-features li::before {
  color: #315f70;
}

.plan-single .plan-features li::before {
  color: #a36820;
}

.plan-button,
.plan-actions {
  margin-top: auto;
  align-self: center;
}

.plan-actions {
  display: flex;
  justify-content: center;
}

.plan-single .planned-label {
  background: #f2dfc3;
  color: #764617;
}

.plan-all .planned-label {
  background: #f1d7dd;
  color: #86162f;
}

.planned-label {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  border-radius: 8px;
  background: #ede4d9;
  color: #87552f;
  font-size: 13px;
  font-weight: 750;
}

.sandbox-checkout-button {
  min-height: 44px;
}

.single-game-dialog {
  width: min(1040px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px 30px 30px;
  border: 1px solid rgba(183, 121, 45, 0.32);
  border-radius: 18px;
  background: linear-gradient(120deg, #fff8ec, #fffefb 58%);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(8, 13, 24, 0.32);
}

.single-game-dialog::backdrop {
  background: rgba(8, 13, 24, 0.76);
  backdrop-filter: blur(7px);
}

.single-game-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.single-game-catalog-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: end;
  margin: 8px 48px 22px 0;
}

.single-game-catalog-heading h3,
.single-game-catalog-heading p,
.single-game-offer p {
  margin: 0;
}

.single-game-catalog-heading h3 {
  color: #754611;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.025em;
}

.single-game-catalog-heading p {
  color: var(--muted);
  line-height: 1.6;
}

.single-game-catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.single-game-offer {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.single-game-offer > div {
  display: grid;
  gap: 8px;
}

.single-game-offer strong {
  font-size: 14px;
  line-height: 1.35;
}

.single-game-offer span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(119, 110, 100, 0.1);
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.single-game-offer p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.single-game-offer-available {
  border-color: rgba(183, 121, 45, 0.62);
  background: #fff9ef;
  box-shadow: inset 0 3px #b7792d;
}

.single-game-offer-available span {
  background: #f1dcb9;
  color: #754611;
}

.single-game-offer-available p {
  color: #754611;
  font-size: 18px;
}

.single-game-offer-actions {
  display: flex;
  align-items: center;
}

.single-game-offer-actions .sandbox-checkout-button {
  width: 100%;
  min-height: 40px;
  padding-inline: 12px;
  font-size: 12px;
}

.all-games-confirmation-dialog {
  width: min(760px, calc(100vw - 40px));
  border-color: rgba(181, 22, 56, 0.35);
  background: linear-gradient(125deg, #fff7f8, #fffefd 62%);
}

.checkout-email-dialog {
  width: min(620px, calc(100vw - 40px));
  border-color: rgba(49, 113, 73, 0.4);
  background: linear-gradient(125deg, #f5fcf7, #fffefd 62%);
}

.checkout-email-form {
  display: grid;
}

.checkout-email-field {
  display: grid;
  gap: 8px;
}

.checkout-email-field > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.checkout-email-field input {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.checkout-email-field input:focus {
  border-color: #317149;
  outline: 3px solid rgba(49, 113, 73, 0.13);
}

.checkout-email-payment-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 3px solid #b8781d;
  border-radius: 0 8px 8px 0;
  background: rgba(184, 120, 29, 0.09);
  color: #71470c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.all-games-confirmation-heading {
  margin: 6px 54px 24px 0;
}

.all-games-confirmation-heading > span {
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.all-games-confirmation-heading h3 {
  margin: 7px 0 10px;
  color: #86162f;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
}

.all-games-confirmation-heading p,
.all-games-delivery-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.all-games-delivery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
}

.all-games-delivery-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
}

.all-games-delivery-grid article small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.all-games-delivery-grid article strong {
  line-height: 1.45;
}

.all-games-delivery-current {
  border-color: rgba(49, 113, 73, 0.38) !important;
  background: rgba(232, 246, 236, 0.78) !important;
  box-shadow: inset 0 3px #317149;
}

.all-games-delivery-current small,
.all-games-delivery-current strong {
  color: #28613d;
}

.all-games-acknowledgement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 16px;
  padding: 15px 16px;
  border: 1px solid rgba(181, 22, 56, 0.25);
  border-radius: 12px;
  background: rgba(181, 22, 56, 0.06);
  color: #4e2730;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
  cursor: pointer;
}

.all-games-acknowledgement input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent-deep);
}

.all-games-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.all-games-confirmation-actions .planned-label {
  margin-right: auto;
}

.all-games-confirmation-actions .sandbox-checkout-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sandbox-checkout-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(52, 106, 127, 0.35);
  border-radius: 12px;
  background: linear-gradient(110deg, rgba(49, 95, 112, 0.12), rgba(255, 255, 255, 0.82));
  box-shadow: inset 4px 0 #315f70;
}

.sandbox-checkout-panel[hidden] {
  display: none;
}

.sandbox-checkout-panel > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.sandbox-checkout-panel span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #315f70;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sandbox-checkout-panel p {
  margin: 0;
  color: var(--muted);
}

.sandbox-checkout-panel[data-preview-kind="live"] {
  border-color: rgba(181, 22, 56, 0.42);
  background: linear-gradient(110deg, rgba(181, 22, 56, 0.14), rgba(255, 253, 250, 0.9));
  box-shadow: inset 4px 0 var(--accent-deep);
}

.sandbox-checkout-panel[data-preview-kind="live"] span {
  background: var(--accent-deep);
}

.sandbox-checkout-panel[data-preview-kind="live"] p {
  color: var(--accent-deep);
  font-weight: 680;
}

.license-success-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 38px;
  border: 1px solid rgba(181, 22, 56, 0.22);
  border-radius: 22px;
  background: #fffdfa;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(8, 13, 24, 0.32);
}

.license-success-dialog::backdrop {
  background: rgba(8, 13, 24, 0.76);
  backdrop-filter: blur(7px);
}

.license-success-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.license-success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, #bd1539, #7f142c);
  color: #fff;
  box-shadow: 0 12px 32px rgba(181, 22, 56, 0.25);
  font-size: 28px;
  font-weight: 850;
}

.license-success-dialog[data-state="processing"] .license-success-mark {
  background: linear-gradient(145deg, #294d69, #18354b);
  animation: license-status-pulse 1.4s ease-in-out infinite;
}

.license-success-dialog[data-state="error"] .license-success-mark {
  background: linear-gradient(145deg, #a5671e, #71410f);
}

@keyframes license-status-pulse {
  50% {
    transform: scale(0.92);
    opacity: 0.72;
  }
}

.catalog-page {
  background: var(--ivory-bright);
}

.catalog-main {
  min-height: calc(100vh - 230px);
  padding-block: 84px 110px;
}

.catalog-title {
  max-width: 850px;
}

.catalog-title > span,
.admin-toolbar .section-eyebrow,
.admin-detail-header .section-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-title h1,
.admin-toolbar h1 {
  margin: 12px 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.catalog-title p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.catalog-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 36px 0;
  padding: 20px 22px;
  border: 1px solid rgba(181, 22, 56, 0.18);
  border-radius: var(--radius-small);
  background: rgba(181, 22, 56, 0.045);
  color: #4d5969;
}

.catalog-notice .icon {
  margin-top: 2px;
  color: var(--accent);
}

.catalog-notice p {
  margin: 0;
  line-height: 1.65;
}

.catalog-alphabet {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.catalog-alphabet > span {
  color: #596476;
  font-size: 12px;
  font-weight: 750;
}

.catalog-letter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-letter-list button,
.catalog-pagination button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  color: #4b5666;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.catalog-letter-list button:hover,
.catalog-pagination button:not(:disabled):hover {
  border-color: rgba(181, 22, 56, 0.4);
  color: var(--accent);
}

.catalog-letter-list button[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 7px 18px rgba(181, 22, 56, 0.18);
}

.catalog-letter-list button:focus-visible,
.catalog-pagination button:focus-visible {
  outline: 3px solid rgba(181, 22, 56, 0.22);
  outline-offset: 2px;
}

.catalog-filters,
.admin-toolbar form {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(180px, 0.6fr));
  gap: 14px;
}

.catalog-filters label,
.admin-field {
  display: grid;
  gap: 8px;
  color: #596476;
  font-size: 12px;
  font-weight: 750;
}

.catalog-filters input,
.catalog-filters select,
.admin-toolbar input,
.admin-toolbar select,
.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: var(--paper);
  color: var(--text);
  font: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.catalog-filters input:focus,
.catalog-filters select:focus,
.admin-toolbar input:focus,
.admin-toolbar select:focus,
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
  border-color: rgba(181, 22, 56, 0.55);
  box-shadow: 0 0 0 3px rgba(181, 22, 56, 0.1);
}

.catalog-summary {
  min-height: 24px;
  margin: 24px 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.catalog-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(3, 11, 20, 0.05);
}

.catalog-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.catalog-card h2 {
  margin-bottom: 6px;
  font-size: 21px;
  line-height: 1.25;
}

.catalog-byline,
.catalog-card-notes {
  color: var(--muted);
  line-height: 1.55;
}

.catalog-byline {
  margin: 0;
  font-size: 13px;
}

.catalog-card-notes {
  margin: 18px 0;
}

.catalog-status,
.admin-status,
.admin-queue {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef1f4;
  color: #475467;
  font-size: 11px;
  font-weight: 800;
}

.catalog-status-compatible,
.admin-status-fixed {
  background: #e8f5eb;
  color: #25763d;
}

.catalog-status-limited,
.catalog-status-investigating,
.admin-status-investigating,
.admin-status-reproducing,
.admin-status-planned {
  background: #fff3da;
  color: #8b5b09;
}

.catalog-status-incompatible,
.admin-status-unsupported {
  background: #fbe8ec;
  color: #9d1734;
}

.catalog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #7a8493;
  font-size: 12px;
}

.catalog-meta-item strong {
  color: #4b5666;
}

.catalog-source-link,
.admin-source-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.catalog-source-link:hover,
.admin-source-link:hover {
  text-decoration: underline;
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 60px 24px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.catalog-loading {
  grid-column: 1 / -1;
  min-height: 150px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.catalog-pagination {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.catalog-pagination[hidden] {
  display: none;
}

.catalog-pagination button {
  min-height: 44px;
  padding: 0 18px;
}

.catalog-pagination button:first-child {
  justify-self: end;
}

.catalog-pagination button:last-child {
  justify-self: start;
}

.catalog-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.catalog-pagination span {
  min-width: 92px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.catalog-error {
  color: var(--accent-deep);
}

.admin-page {
  overflow: hidden;
  background: #f2f3f5;
}

.admin-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.admin-header-identity {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.admin-header-identity span {
  color: var(--muted);
  font-size: 12px;
}

.admin-page .button-secondary {
  border-color: #d9a7b2;
  background: #fff7f8;
  color: #8d1731;
  box-shadow: none;
}

.admin-page .button-secondary:hover {
  border-color: #bd6f81;
  background: #fbe8ec;
  color: #761127;
}

.admin-page .button-secondary:focus-visible {
  outline-color: #b51638;
  background: #fff;
  color: #761127;
}

.admin-catalog-open[aria-expanded="true"],
.admin-catalog-open[aria-current="page"] {
  border-color: #99112e;
  background: #b51638;
  color: #fff;
  box-shadow: 0 8px 20px rgb(181 22 56 / 20%);
}

.admin-catalog-open[aria-expanded="true"]:hover,
.admin-catalog-open[aria-current="page"]:hover {
  border-color: #7d0e26;
  background: #99112e;
  color: #fff;
}

.admin-catalog-dialog {
  width: min(1180px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 28px 80px rgb(15 23 42 / 24%);
}

.admin-catalog-dialog::backdrop {
  background: rgb(15 23 42 / 52%);
  backdrop-filter: blur(3px);
}

.admin-catalog-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: calc(100vh - 40px);
}

.admin-catalog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--line);
}

.admin-catalog-header h2,
.admin-catalog-form-heading h3 {
  margin: 4px 0 0;
}

.admin-catalog-header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-dialog-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--text);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.admin-dialog-close:hover { background: #f7f1f2; }

.admin-catalog-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(560px, 1.35fr);
}

.admin-catalog-sidebar {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: #f7f8fa;
}

.admin-catalog-sidebar > .button { width: 100%; }

.admin-catalog-list {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow: auto;
}

.admin-catalog-row {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--paper);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.admin-catalog-row:hover,
.admin-catalog-row[data-selected] {
  border-color: #e2b7c1;
  background: #fff8fa;
}

.admin-catalog-row[data-selected] { box-shadow: inset 3px 0 var(--accent); }

.admin-catalog-row-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-catalog-row-heading strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-catalog-row-meta,
.admin-catalog-published,
.admin-catalog-draft {
  color: var(--muted);
  font-size: 12px;
}

.admin-catalog-published { color: #25763d; font-weight: 750; }
.admin-catalog-draft { color: #8a6370; }

.admin-catalog-form {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 15px 18px;
  padding: 24px 28px 30px;
  overflow: auto;
}

.admin-catalog-form-heading,
.admin-field-wide { grid-column: 1 / -1; }

.admin-catalog-form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-catalog-draft-note {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f2f3f5;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.admin-catalog-source-help {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.admin-catalog-form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-delete-button {
  border-color: #e8b8c2;
  background: #fff7f8;
  color: #a21d39;
}

.admin-delete-button:hover { background: #fbe8ec; }

.admin-catalog-feedback {
  flex: 1 1 220px;
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
}

.admin-catalog-feedback[data-kind="error"] { color: #a21d39; }
.admin-catalog-feedback[data-kind="success"] { color: #25763d; }

.admin-main {
  height: calc(100vh - 76px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  padding: 28px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: auto minmax(560px, 1fr);
  align-items: end;
  gap: 36px;
}

.admin-toolbar h1 {
  margin: 6px 0 0;
  font-size: 38px;
}

.admin-toolbar form {
  grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(112px, 0.42fr));
}

.admin-feedback {
  min-height: 28px;
  margin: 14px 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.admin-feedback[data-kind="error"] { color: #a21d39; }
.admin-feedback[data-kind="success"] { color: #25763d; }

.admin-report-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(540px, 1.25fr);
  gap: 18px;
}

.admin-report-list,
.admin-detail {
  min-height: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.admin-report-list {
  padding: 8px;
}

.admin-report-row {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.admin-report-row:hover,
.admin-report-row[data-selected] {
  background: #f7f1f2;
}

.admin-report-row[data-selected] {
  box-shadow: inset 3px 0 var(--accent);
}

.admin-report-row-top,
.admin-report-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-report-row-middle,
.admin-report-row time {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-queue-paid { background: #fbe8ec; color: #9d1734; }

.admin-detail {
  padding: 26px;
}

.admin-detail-empty,
.admin-empty {
  padding: 36px 24px;
  color: var(--muted);
  text-align: center;
}

.admin-detail-header h2 {
  margin: 7px 0 20px;
  font-size: 30px;
}

.admin-definitions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 0 0 22px;
}

.admin-definition dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.admin-definition dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.admin-copy-block {
  margin-top: 20px;
}

.admin-copy-block h3,
.admin-form h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.admin-copy-block p {
  margin: 0;
  color: #4d5969;
  line-height: 1.65;
  white-space: pre-wrap;
}

.admin-diagnostics {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f5f6f7;
  font-size: 13px;
}

.admin-diagnostics pre {
  overflow: auto;
  font-size: 11px;
}

.admin-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.admin-field textarea {
  min-height: 96px;
  padding-block: 12px;
  resize: vertical;
}

.admin-form .button {
  width: fit-content;
}

.admin-form-help {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.admin-check-field {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
}

.admin-check-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

@media (max-width: 980px) {
  .catalog-filters,
  .catalog-results,
  .admin-toolbar,
  .admin-report-layout {
    grid-template-columns: 1fr;
  }

  .admin-page { overflow: auto; }
  .admin-main { height: auto; }
  .admin-report-list,
  .admin-detail { max-height: none; overflow: visible; }
  .admin-toolbar form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-catalog-layout { grid-template-columns: minmax(230px, 0.55fr) minmax(480px, 1.45fr); }
}

@media (max-width: 640px) {
  .catalog-main { padding-block: 56px 76px; }
  .catalog-title h1 { font-size: 42px; }
  .catalog-letter-list { gap: 6px; }
  .catalog-letter-list button { min-width: 36px; min-height: 36px; }
  .catalog-filters,
  .admin-toolbar form,
  .admin-definitions { grid-template-columns: 1fr; }
  .catalog-card-header { display: grid; }
  .catalog-status { width: fit-content; }
  .catalog-pagination { grid-template-columns: 1fr 1fr; }
  .catalog-pagination span { grid-column: 1 / -1; grid-row: 1; }
  .catalog-pagination button:first-child,
  .catalog-pagination button:last-child { width: 100%; justify-self: stretch; }
  .admin-header { padding-inline: 16px; }
  .admin-header .brand span { display: none; }
  .admin-header-actions { gap: 8px; }
  .admin-header-identity { display: none; }
  .admin-main { padding: 18px 14px; }
  .admin-catalog-dialog {
    width: 100vw;
    max-height: 100vh;
    border: 0;
    border-radius: 0;
  }
  .admin-catalog-shell { max-height: 100vh; }
  .admin-catalog-header { padding: 18px; }
  .admin-catalog-layout {
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .admin-catalog-sidebar {
    min-height: 260px;
    max-height: 42vh;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-catalog-form {
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 20px 18px 28px;
  }
  .admin-catalog-form > * { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .license-success-dialog[data-state="processing"] .license-success-mark {
    animation: none;
  }
}

.license-success-eyebrow {
  margin: 0 0 7px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.license-success-dialog h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -0.04em;
}

.license-success-email {
  margin: 12px 0 24px;
  color: var(--muted);
  line-height: 1.55;
}

.license-success-summary {
  display: grid;
  grid-template-columns: minmax(105px, 0.75fr) minmax(0, 1.55fr) minmax(140px, 1fr);
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(238, 233, 225, 0.42);
}

.license-success-summary > div {
  min-width: 0;
  padding: 15px;
  border-right: 1px solid var(--line);
}

.license-success-summary > div:last-child {
  border-right: 0;
}

.license-success-summary dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.license-success-summary dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.license-success-key {
  padding: 18px;
  border-radius: 14px;
  background: #101722;
  color: #f6e9ca;
}

.license-success-key span {
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 233, 202, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.license-success-key code {
  overflow-wrap: anywhere;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
}

.license-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.license-success-actions .button-secondary {
  border-color: rgba(16, 23, 34, 0.25);
  background: #fff;
  color: var(--ink);
}

.license-success-actions .button-secondary:hover {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}

.license-chip-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.license-success-activation {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.license-success-activation h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.license-success-activation ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
}

.license-success-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 620px) {
  .license-success-dialog {
    padding: 28px 20px 24px;
    border-radius: 18px;
  }

  .license-success-summary {
    grid-template-columns: 1fr;
  }

  .license-success-summary > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .license-success-summary > div:last-child {
    border-bottom: 0;
  }

  .license-success-actions .button {
    width: 100%;
  }
}

.pricing-comparison {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 253, 0.78);
}

.comparison-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: end;
  padding: 32px 36px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(105deg, rgba(65, 112, 130, 0.1), rgba(183, 121, 45, 0.08) 52%, rgba(181, 22, 56, 0.1));
}

.comparison-heading h3 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 38px);
  letter-spacing: -0.035em;
}

.comparison-heading p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.comparison-table tr > :last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  background: #171b25;
  color: #f8f4ee;
  font-size: 14px;
}

.comparison-table thead th:nth-child(2) {
  background: #315f70;
}

.comparison-table thead th:nth-child(3) {
  background: #8f5c20;
}

.comparison-table thead th:nth-child(4) {
  background: #861b35;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  width: 25%;
}

.comparison-table tbody th {
  background: rgba(238, 233, 225, 0.58);
  color: var(--ink);
  font-size: 14px;
}

.comparison-table tbody tr:nth-child(even) th {
  background: rgba(226, 219, 209, 0.72);
}

.comparison-table td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.comparison-table tbody td:nth-child(2) {
  background: rgba(65, 112, 130, 0.065);
}

.comparison-table tbody td:nth-child(3) {
  background: rgba(183, 121, 45, 0.075);
}

.comparison-table tbody td:nth-child(4) {
  background: rgba(181, 22, 56, 0.065);
}

.comparison-table thead th:last-child {
  background: #861b35;
}

.comparison-common td {
  color: var(--ink);
  font-weight: 650;
}

.comparison-check {
  margin-right: 8px;
  color: var(--accent-deep);
  font-weight: 850;
}

.pricing-upgrade-policy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  margin-top: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(181, 22, 56, 0.2);
  border-left: 4px solid var(--accent-deep);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(255, 254, 253, 0.9), rgba(181, 22, 56, 0.055));
}

.pricing-upgrade-policy h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.pricing-upgrade-policy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-upgrade-policy ul {
  display: grid;
  gap: 10px;
  align-content: center;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.pricing-upgrade-policy li {
  position: relative;
  padding-left: 22px;
}

.pricing-upgrade-policy li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--accent-deep);
  font-weight: 850;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  background:
    radial-gradient(circle at 88% 40%, rgba(181, 22, 56, 0.34), transparent 28%),
    linear-gradient(120deg, var(--ink-deep), var(--ink));
  color: #f8f4ee;
}

.download-glow {
  right: -120px;
  top: -130px;
}

.download-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

.download-copy h2 {
  font-size: clamp(47px, 4.6vw, 72px);
}

.download-copy > p {
  margin-bottom: 34px;
  color: var(--dark-muted);
}

.chip-compatibility-download {
  margin-top: 18px;
}

.release-metadata {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: -8px 0 28px;
  padding: 1px;
  border-radius: 14px;
  background: var(--dark-line);
}

.release-metadata-with-date {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.release-metadata > div {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(5, 13, 23, 0.82);
}

.release-metadata dt {
  margin-bottom: 5px;
  color: var(--dark-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.release-metadata dd {
  margin: 0;
  color: #f8f4ee;
  font-size: 14px;
  font-weight: 750;
}

.release-metadata small {
  color: var(--dark-muted);
  font-size: 12px;
  font-weight: 600;
}

.release-metadata .release-checksum {
  grid-column: 1 / -1;
}

.release-checksum code {
  display: block;
  overflow-wrap: anywhere;
  color: #f6e9ca;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.release-safeguards {
  border-left: 1px solid var(--dark-line);
  padding-left: 56px;
}

.release-safeguards article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 25px;
  align-items: center;
  padding-block: 28px;
  border-bottom: 1px solid var(--dark-line);
}

.release-safeguards article:last-child {
  border-bottom: 0;
}

.release-safeguards h3 {
  color: #f8f4ee;
}

.release-safeguards p {
  color: var(--dark-muted);
}

.safeguard-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ede6dc;
}

.safeguard-icon-red {
  border-color: rgba(213, 58, 85, 0.64);
  background: rgba(181, 22, 56, 0.18);
  color: #ff6b83;
}

.safeguard-icon .icon {
  width: 34px;
  height: 34px;
}

.faq-section {
  padding-block: 104px;
  background: #f4efe8;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-heading h2 {
  max-width: 540px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 4.2vw, 64px);
}

.faq-heading p {
  max-width: 500px;
  margin: 0;
  font-size: 16px;
}

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

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

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 24px;
  align-items: center;
  padding-block: 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  background: var(--accent-deep);
  content: "";
  transition: transform 180ms ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 48px 24px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-answer a {
  color: var(--accent-deep);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-section {
  padding-block: 86px;
  border-bottom: 1px solid var(--line);
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.legal-layout h2 {
  font-size: clamp(38px, 3.6vw, 56px);
}

.legal-layout > div > p {
  max-width: 640px;
  font-size: 16px;
}

.legal-notes {
  border-top: 1px solid var(--line);
}

.legal-notes article {
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.legal-notes h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.legal-notes h3 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(181, 22, 56, 0.28);
  text-underline-offset: 5px;
}

.legal-notes h3 a:hover {
  color: var(--accent-deep);
  text-decoration-color: currentColor;
}

.legal-notes p {
  margin: 0;
}

.site-footer {
  padding: 42px 0 30px;
  background: var(--ink-deep);
  color: #f8f4ee;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--dark-line);
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-language {
  padding: 11px 16px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-top: 25px;
  color: rgba(248, 244, 238, 0.54);
  font-size: 12px;
  line-height: 1.5;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px 22px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-social .icon {
  width: 17px;
  height: 17px;
}

.footer-policy-row {
  padding-top: 25px;
}

.policy-links,
.site-footer nav.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.policy-links a,
.footer-legal a {
  color: rgba(248, 244, 238, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.policy-links a:hover,
.footer-legal a:hover {
  color: #fff;
}

.policy-page {
  background: var(--paper);
}

.policy-site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 242, 0.96);
}

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

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

.policy-header-actions > a:first-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.policy-header-actions .language-link {
  color: var(--muted);
}

.policy-header-actions .language-link:hover,
.policy-header-actions .language-link:focus-visible {
  color: var(--ink);
}

.policy-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(56px, 8vw, 130px);
  padding-block: clamp(64px, 8vw, 118px);
}

.policy-title {
  align-self: start;
  position: sticky;
  top: 42px;
}

.policy-title > span {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-title h1 {
  margin: 18px 0 20px;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.policy-title p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-title small {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.policy-document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 254, 252, 0.88);
  box-shadow: 0 20px 55px rgba(7, 17, 31, 0.07);
}

.policy-section {
  padding: 34px clamp(26px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section h2 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.025em;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.policy-section p + p {
  margin-top: 14px;
}

.policy-section ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.policy-section a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-footer {
  margin-top: 0;
}

.status-dialog {
  width: min(510px, calc(100vw - 36px));
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--ivory-bright);
  color: var(--text);
  box-shadow: var(--shadow);
}

.status-dialog::backdrop {
  background: rgba(3, 11, 20, 0.7);
  backdrop-filter: blur(6px);
}

.status-dialog h2 {
  margin-bottom: 12px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.status-dialog p {
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.55;
}

.report-dialog {
  width: min(920px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--ivory-bright);
  color: var(--text);
  box-shadow: var(--shadow);
}

.report-dialog::backdrop {
  background: rgba(3, 11, 20, 0.76);
  backdrop-filter: blur(7px);
}

.license-recovery-dialog {
  width: min(620px, calc(100vw - 40px));
}

.license-recovery-form {
  padding-top: 26px;
}

.recovery-privacy-notice {
  border-left-color: var(--accent-deep);
  background: rgba(181, 22, 56, 0.055);
  color: var(--muted);
}

.recovery-email-field {
  max-width: 480px;
}

.license-recovery-form .report-turnstile {
  justify-content: flex-start;
}

.report-dialog-header {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px 38px 28px;
  border-bottom: 1px solid var(--line);
}

.report-dialog-header .section-eyebrow {
  margin-bottom: 10px;
}

.report-dialog-header h2 {
  margin-bottom: 9px;
  font-size: clamp(30px, 3.2vw, 43px);
  letter-spacing: -0.045em;
}

.report-dialog-header p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.report-dialog-close {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.report-dialog-close:hover {
  border-color: rgba(181, 22, 56, 0.35);
  color: var(--accent-deep);
}

.report-local-notice {
  margin: 24px 38px 0;
  padding: 14px 16px;
  border-left: 3px solid #8f5c20;
  border-radius: 0 9px 9px 0;
  background: rgba(183, 121, 45, 0.09);
  color: #694f31;
  font-size: 13px;
  line-height: 1.55;
}

.report-scope-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 24px 38px 0;
  padding: 14px 16px;
  border: 1px solid rgba(181, 22, 56, 0.22);
  border-radius: 9px;
  background: rgba(181, 22, 56, 0.07);
  color: #77162c;
}

.report-scope-notice .icon {
  width: 19px;
  height: 19px;
  margin-top: 1px;
}

.report-scope-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.compatibility-report-form {
  padding: 4px 38px 34px;
}

.report-honeypot {
  position: fixed !important;
  inset-inline-start: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.report-required-note {
  margin: 18px 0 2px;
  color: var(--muted);
  font-size: 12px;
}

.compatibility-report-form fieldset {
  margin: 24px 0 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.compatibility-report-form legend {
  padding: 0 14px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.report-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.report-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.report-field-wide {
  grid-column: 1 / -1;
}

.report-field > span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.report-field input,
.report-field select,
.report-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(7, 17, 31, 0.18);
  border-radius: 9px;
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.report-field textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.5;
}

.report-field input:focus,
.report-field select:focus,
.report-field textarea:focus {
  outline: 3px solid rgba(181, 22, 56, 0.15);
  border-color: rgba(181, 22, 56, 0.55);
}

.report-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.report-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--accent-deep);
}

.report-turnstile {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 22px;
}

.report-form-status {
  min-height: 22px;
  margin: 22px 0 0;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.report-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.report-cancel {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
}

.report-submit:disabled,
[data-report-submit]:disabled {
  cursor: progress;
  opacity: 0.62;
}

.dialog-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
}

.dialog-mark .icon {
  width: 28px;
  height: 28px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.22,.68,.2,1);
}

.js [data-reveal][data-visible] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  :root {
    --shell: min(1120px, calc(100vw - 56px));
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    gap: 24px;
  }

  .language-switcher-header {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(500px, 1.08fr) minmax(380px, 0.92fr);
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(54px, 5.2vw, 64px);
  }

  .feature {
    grid-template-columns: 74px 1fr;
    padding: 20px;
  }

  .feature-icon {
    width: 74px;
    height: 74px;
  }

  .feature-arrow {
    display: none;
  }

  .roadmap-rail,
  .workflow-rail {
    gap: 16px;
  }

  .game-node {
    display: grid;
  }

  .game-icon {
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
    --shell: min(840px, calc(100vw - 40px));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: var(--header-height);
    padding-inline: 20px;
  }

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

  .desktop-nav,
  .header-download {
    display: none;
  }

  .language-link,
  .menu-button {
    display: inline-flex;
  }

  .menu-button {
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: white;
    cursor: pointer;
  }

  .menu-button span {
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: rgba(3, 11, 20, 0.97);
    transition: max-height 240ms ease;
  }

  .mobile-menu[data-open] {
    max-height: calc(100vh - var(--header-height));
    border-bottom: 1px solid var(--dark-line);
  }

  .mobile-menu a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding-inline: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 650;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 76px 30px;
  }

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

  .hero h1 {
    font-size: clamp(58px, 9.3vw, 84px);
  }

  .hero-media {
    min-height: 580px;
  }

  .hero-icon {
    left: 10%;
    width: 68%;
  }

  .app-preview {
    right: -4%;
    width: 70%;
  }

  .feature-rail {
    grid-template-columns: 1fr;
    padding-block: 20px;
  }

  .feature,
  .feature:first-child {
    min-height: 130px;
    grid-template-columns: 76px 1fr auto;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-arrow {
    display: block;
  }

  .workflow-rail {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }

  .workflow-rail::before {
    display: none;
  }

  .conflict-heading,
  .conflict-policy {
    grid-template-columns: 1fr;
  }

  .conflict-heading {
    gap: 22px;
  }

  .conflict-policy {
    gap: 30px;
  }

  .compatibility-report-entry {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .compatibility-report-entry .button {
    justify-self: start;
  }

  .roadmap-rail {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    padding: 0;
  }

  .section-heading .roadmap-commitment {
    display: grid;
    gap: 6px;
    padding: 14px 15px;
    font-size: 13px;
  }

  .roadmap-rail::before {
    top: 32px;
    right: auto;
    bottom: 32px;
    left: 31px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--accent) 0 12%, #d8d1c7 12% 100%);
  }

  .game-node {
    min-height: 0;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    padding: 0 0 34px;
    text-align: left;
  }

  .game-node:last-child {
    padding-bottom: 0;
  }

  .game-icon {
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .game-icon svg {
    width: 30px;
    height: 30px;
  }

  .game-copy {
    padding-top: 5px;
  }

  .support-layout,
  .download-layout,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .faq-heading {
    position: static;
  }

  .pricing-rail {
    grid-template-columns: 1fr;
  }

  .single-game-catalog-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .single-game-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-upgrade-policy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan:last-child {
    border-bottom: 0;
  }

  .release-safeguards {
    border-top: 1px solid var(--dark-line);
    border-left: 0;
    padding-top: 18px;
    padding-left: 0;
  }

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

  .site-footer nav {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 34px);
  }

  .preview-banner {
    display: grid;
    gap: 3px;
    padding-block: 10px;
  }

  .policy-header-inner {
    min-height: 72px;
  }

  .policy-header-actions > a:first-child {
    display: none;
  }

  .policy-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 52px 72px;
  }

  .policy-title {
    position: static;
  }

  .policy-title h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .policy-section {
    padding: 28px 22px;
  }

  .footer-policy-row {
    padding-top: 22px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-link {
    font-size: 13px;
  }

  .hero-grid {
    padding-top: 56px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(45px, 13vw, 62px);
    line-height: 1.02;
  }

  html[lang="zh-CN"] .hero h1 {
    font-size: clamp(38px, 10.8vw, 52px);
  }

  .hero-body {
    font-size: 17px;
  }

  .hero-actions,
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-proof {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px 10px;
    font-size: 12px;
  }

  .proof-divider {
    display: none;
  }

  .hero-media {
    min-height: 410px;
  }

  .hero-icon {
    top: 0;
    left: 7%;
    width: 86%;
  }

  .app-preview {
    display: none;
  }

  .feature {
    min-height: 122px;
    grid-template-columns: 68px 1fr auto;
    gap: 17px;
    padding-inline: 6px;
  }

  .feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 13px;
  }

  .feature-icon .icon {
    width: 35px;
    height: 35px;
  }

  .feature h3 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .feature p {
    font-size: 12px;
  }

  .workflow-section,
  .conflict-section,
  .roadmap-section,
  .support-section,
  .pricing-section,
  .download-section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .conflict-heading h2,
  .support-intro h2,
  .download-copy h2,
  .legal-layout h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .section-heading p,
  .conflict-heading > p,
  .download-copy > p {
    font-size: 16px;
  }

  .conflict-heading {
    margin-bottom: 32px;
  }

  .conflict-policy {
    padding: 26px 22px;
  }

  .compatibility-tiers,
  .conflict-rules {
    grid-template-columns: 1fr;
  }

  .compatibility-tier {
    min-height: 0;
  }

  .conflict-rule {
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .conflict-rule:last-child {
    border-bottom: 0;
  }

  .conflict-limit {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .compatibility-scope {
    padding: 25px 22px;
  }

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

  .compatibility-scope ul {
    grid-template-columns: 1fr;
  }

  .compatibility-report-entry {
    padding: 25px 22px;
  }

  .compatibility-report-entry .button {
    width: 100%;
    white-space: normal;
  }

  .report-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 15px;
  }

  .license-recovery-dialog {
    width: calc(100vw - 16px);
  }

  .support-actions {
    display: grid;
    justify-items: start;
  }

  .report-dialog-header {
    gap: 14px;
    padding: 25px 20px 22px;
  }

  .report-dialog-header h2 {
    font-size: 31px;
  }

  .report-local-notice,
  .report-scope-notice {
    margin: 18px 20px 0;
  }

  .compatibility-report-form {
    padding: 2px 20px 24px;
  }

  .report-field-grid {
    grid-template-columns: 1fr;
  }

  .report-field-wide {
    grid-column: auto;
  }

  .report-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .report-turnstile {
    justify-content: center;
  }

  .report-form-actions .button {
    width: 100%;
  }

  .pricing-comparison {
    margin-top: 24px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .comparison-heading {
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 14px 14px 0 0;
    background: linear-gradient(135deg, rgba(65, 112, 130, 0.13), rgba(183, 121, 45, 0.08) 55%, rgba(181, 22, 56, 0.1));
  }

  .comparison-heading h3 {
    font-size: 28px;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table {
    table-layout: auto;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .comparison-table tbody tr {
    margin-top: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 254, 253, 0.78);
  }

  .comparison-table tbody th {
    width: 100%;
    padding: 18px 20px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(238, 233, 225, 0.72);
    font-size: 15px;
  }

  .comparison-table td {
    display: grid;
    grid-template-columns: minmax(104px, 0.75fr) minmax(0, 1.25fr);
    gap: 14px;
    padding: 15px 20px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 254, 253, 0.78);
  }

  .comparison-table td::before {
    content: attr(data-plan);
    color: var(--ink);
    font-size: 12px;
    font-weight: 750;
  }

  .comparison-table tbody tr td:nth-child(2) {
    background: rgba(65, 112, 130, 0.09);
  }

  .comparison-table tbody tr td:nth-child(3) {
    background: rgba(183, 121, 45, 0.1);
  }

  .comparison-table tbody tr td:last-child {
    border-bottom: 0;
    background: rgba(181, 22, 56, 0.085);
  }

  .comparison-table td:nth-child(2)::before {
    color: #315f70;
  }

  .comparison-table td:nth-child(3)::before {
    color: #8f5c20;
  }

  .comparison-table td:nth-child(4)::before {
    color: #861b35;
  }

  .comparison-check {
    display: none;
  }

  .single-game-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 22px 20px;
  }

  .single-game-catalog-grid {
    grid-template-columns: 1fr;
  }

  .all-games-delivery-grid {
    grid-template-columns: 1fr;
  }

  .all-games-confirmation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .all-games-confirmation-actions .button,
  .all-games-confirmation-actions .planned-label {
    width: 100%;
    justify-content: center;
  }

  .single-game-offer {
    min-height: 0;
  }

  .pricing-upgrade-policy {
    margin-top: 18px;
    padding: 21px 20px;
    border-left-width: 3px;
  }

  .pricing-upgrade-policy h3 {
    font-size: 20px;
  }

  .workflow-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    padding-block: 13px;
    border-bottom: 1px solid var(--dark-line);
  }

  .step-number {
    width: 38px;
    height: 38px;
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 14px;
  }

  .workflow-step h3 {
    margin: 0 0 4px;
  }

  .workflow-step p {
    grid-column: 2;
  }

  .game-node {
    min-height: 0;
  }

  .support-layout {
    gap: 42px;
  }

  .support-guides {
    grid-template-columns: 1fr;
  }

  .support-guides > div,
  .support-guides > div:nth-child(odd),
  .support-guides > div:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }

  .plan {
    min-height: 0;
    padding: 30px 25px;
  }

  .plan-price strong {
    font-size: 38px;
  }

  .plan-heading {
    gap: 12px;
  }

  .plan-all .plan-price strong {
    font-size: 28px;
  }

  .release-metadata {
    grid-template-columns: 1fr;
  }

  .download-layout {
    gap: 46px;
  }

  .release-safeguards article {
    grid-template-columns: 50px 1fr;
    gap: 17px;
  }

  .safeguard-icon {
    width: 48px;
    height: 48px;
  }

  .safeguard-icon .icon {
    width: 25px;
    height: 25px;
  }

  .legal-section {
    padding-block: 62px;
  }

  .faq-section {
    padding-block: 72px;
  }

  .faq-item summary {
    gap: 16px;
    padding-block: 21px;
    font-size: 16px;
  }

  .faq-answer {
    padding-right: 32px;
  }

  .footer-main,
  .footer-legal {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .footer-language {
    justify-self: start;
  }

  .language-switcher-footer {
    justify-self: start;
    flex-wrap: wrap;
  }

  .status-dialog {
    padding: 28px;
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
