:root {
  color-scheme: dark;
  --ink: #f7f3ff;
  --muted: #aaa6bc;
  --night: #080b18;
  --night-soft: #101527;
  --panel: rgba(18, 22, 40, 0.82);
  --panel-strong: #12172a;
  --line: rgba(153, 130, 207, 0.26);
  --violet: #b844f1;
  --violet-bright: #d76cff;
  --cyan: #60d9e6;
  --gold: #ffbe3b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--violet) var(--night);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 20%, rgba(71, 33, 130, 0.18), transparent 32rem),
    var(--night);
  font-family: var(--body);
  line-height: 1.65;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
  content: "";
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--night);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 82px;
  padding: 10px clamp(20px, 4vw, 64px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.legal-page .site-header {
  border-color: var(--line);
  background: rgba(8, 11, 24, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  width: 126px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a,
.language-button {
  min-height: 44px;
  color: #ded9eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  display: grid;
  place-items: center;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover {
  color: white;
  border-color: var(--violet-bright);
}

.language-button {
  justify-self: end;
  width: 52px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(18, 23, 42, 0.76);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-button:hover {
  border-color: var(--violet-bright);
  background: rgba(184, 68, 241, 0.18);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(740px, 100svh);
  padding: 136px max(7vw, 28px) 118px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, var(--night));
  content: "";
}

.hero-backdrop {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5, 7, 16, 0.96) 0%, rgba(5, 7, 16, 0.7) 39%, rgba(5, 7, 16, 0.14) 73%),
    linear-gradient(0deg, rgba(8, 11, 24, 0.44), rgba(8, 11, 24, 0.12)),
    url("/assets/ruins-moon.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-copy {
  z-index: 3;
  width: min(640px, 48vw);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hero-logo {
  width: clamp(260px, 34vw, 470px);
  height: auto;
  margin: -18px 0 -10px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
}

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

h1,
h2 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.65);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.5vw, 5.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: #d6d3df;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  gap: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #8727c0, var(--violet));
  box-shadow: 0 12px 40px rgba(184, 68, 241, 0.28);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(184, 68, 241, 0.42);
}

.availability {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #c7c2d5;
  font-size: 0.86rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.hero-character-wrap {
  position: absolute;
  z-index: 2;
  right: 6vw;
  bottom: 8vh;
  width: min(43vw, 620px);
}

.hero-character {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 32px 28px rgba(0, 0, 0, 0.58));
  animation: character-float 5s ease-in-out infinite;
}

.flame-halo {
  position: absolute;
  top: 25%;
  right: -2%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(180, 62, 255, 0.35);
  filter: blur(42px);
  animation: halo-pulse 2.6s ease-in-out infinite;
}

.ember {
  position: absolute;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-bright);
  box-shadow: 0 0 18px var(--violet-bright);
  animation: ember-rise 7s linear infinite;
}

.ember-one {
  right: 18%;
  bottom: 10%;
}

.ember-two {
  right: 33%;
  bottom: 6%;
  animation-delay: -3.5s;
}

.hero-stats {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 7vw;
  display: flex;
  border: 1px solid var(--line);
  background: rgba(8, 11, 24, 0.68);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  display: grid;
  min-width: 112px;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: white;
  font-size: 1.2rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

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

.section-heading {
  max-width: 800px;
  margin-bottom: 58px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 290px;
  padding: 42px;
  gap: 32px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(184, 68, 241, 0.1), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.feature-card::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(96, 217, 230, 0.12);
  transform: rotate(45deg);
  content: "";
}

.feature-card-wide {
  min-height: 350px;
  grid-column: 1 / -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 24, 0.96) 0%, rgba(8, 11, 24, 0.5) 66%),
    url("/assets/screen-game.webp") center 68% / cover;
}

.feature-card > div {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

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

.feature-card-wide p {
  color: #d4d0df;
}

.card-index {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
}

.gameplay-section {
  position: relative;
}

.gameplay-section::before {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(184, 68, 241, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
  content: "";
  pointer-events: none;
}

.run-path {
  position: relative;
  display: grid;
  padding: 0;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  background: var(--line);
}

.run-path::before {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-bright), var(--cyan), transparent);
  content: "";
}

.run-path li {
  position: relative;
  min-height: 270px;
  padding: 34px 28px;
  background: var(--panel-strong);
}

.run-path li::after {
  position: absolute;
  z-index: 3;
  top: 44px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
  content: "";
}

.run-path li:last-child::after {
  display: none;
}

.run-path li > div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.run-number {
  color: var(--violet-bright);
  font-family: var(--display);
  font-size: 1.35rem;
}

.run-path p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading-row {
  display: grid;
  max-width: none;
  gap: 60px;
  grid-template-columns: 1fr minmax(280px, 440px);
  align-items: end;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  margin-bottom: 8px;
}

.screenshot-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

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

.screenshot-main {
  grid-column: 1 / -1;
}

.screenshot img {
  width: 100%;
  aspect-ratio: 20 / 9;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot:hover img {
  transform: scale(1.018);
}

.screenshot figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: white;
  background: rgba(8, 11, 24, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 620px;
  margin-top: 80px;
  padding: 80px max(8vw, 32px);
  grid-template-columns: minmax(280px, 520px) minmax(340px, 680px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 11, 24, 0.22), rgba(8, 11, 24, 0.98)),
    url("/assets/ruins-moon.webp") center / cover;
}

.final-cta > img {
  z-index: 2;
  width: min(90%, 510px);
  justify-self: center;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.6));
}

.final-cta > div:not(.final-cta-glow) {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.final-cta p:not(.eyebrow) {
  max-width: 600px;
  color: #cbc7d6;
}

.final-cta-glow {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(184, 68, 241, 0.26);
  filter: blur(80px);
}

.coming-soon {
  display: inline-flex;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 20px;
  align-items: center;
  border: 1px solid rgba(255, 190, 59, 0.5);
  color: var(--gold);
  background: rgba(255, 190, 59, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.site-footer {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  min-height: 240px;
  margin: 0 auto;
  padding: 56px 0;
  gap: 40px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.site-footer img {
  width: 150px;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.site-footer nav a {
  min-height: 44px;
  color: #d9d5e3;
  font-size: 0.84rem;
  line-height: 44px;
}

.site-footer nav a:hover {
  color: var(--violet-bright);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes character-float {
  0%,
  100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes halo-pulse {
  0%,
  100% { opacity: 0.62; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes ember-rise {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate(-70px, -530px) scale(1.3); }
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 75% 8%, rgba(89, 34, 154, 0.22), transparent 28rem),
    var(--night);
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 100px;
}

.legal-hero {
  margin-bottom: 54px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
}

.legal-hero p {
  max-width: 680px;
  color: var(--muted);
}

.legal-meta {
  display: flex;
  gap: 12px 30px;
  flex-wrap: wrap;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-content {
  counter-reset: legal-section;
}

.legal-content section {
  position: relative;
  margin-bottom: 24px;
  padding: 34px clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(18, 23, 42, 0.68);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-family: var(--body);
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  color: #c1bdca;
}

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

.legal-content ul {
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-note {
  background:
    linear-gradient(90deg, rgba(215, 108, 255, 0.12), transparent 28%),
    rgba(18, 23, 42, 0.68) !important;
}

/* Support */
.support-main {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 136px 0 110px;
}

.support-hero {
  display: grid;
  min-height: 560px;
  padding: clamp(32px, 6vw, 72px);
  gap: clamp(36px, 6vw, 80px);
  grid-template-columns: minmax(300px, 0.9fr) minmax(390px, 1.1fr);
  align-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(8, 11, 24, 0.98), rgba(16, 21, 39, 0.84)),
    url("/assets/ruins-moon.webp") center / cover;
  box-shadow: var(--shadow);
}

.support-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.8vw, 6.4rem);
}

.support-hero > div > p:not(.eyebrow) {
  max-width: 560px;
  color: #c5c1cf;
  font-size: 1.05rem;
}

.support-shortcuts {
  display: flex;
  margin-top: 34px;
  gap: 10px;
  flex-wrap: wrap;
}

.support-shortcuts a {
  display: inline-grid;
  min-height: 44px;
  padding: 0 16px;
  place-items: center;
  border: 1px solid var(--line);
  color: #ded9e8;
  background: rgba(184, 68, 241, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.support-shortcuts a:hover {
  border-color: var(--violet-bright);
  background: rgba(184, 68, 241, 0.2);
}

.support-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(96, 217, 230, 0.28);
  background: var(--panel-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
  transform: rotate(1.5deg);
}

.support-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  content: "";
  pointer-events: none;
}

.support-visual img {
  width: 100%;
  aspect-ratio: 20 / 9;
  object-fit: cover;
}

.support-visual figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--cyan);
  background: rgba(8, 11, 24, 0.9);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.support-section {
  padding: 116px 0 0;
  scroll-margin-top: 90px;
}

.support-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.support-heading h2 {
  margin-bottom: 0;
}

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

.support-card {
  position: relative;
  min-height: 330px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(184, 68, 241, 0.08), transparent 45%),
    var(--panel);
}

.support-card h3 {
  max-width: calc(100% - 70px);
  margin-bottom: 24px;
  font-size: 1.45rem;
}

.support-card p,
.support-card li {
  color: #c1bdca;
}

.support-card p:last-child,
.support-card ol:last-child {
  margin-bottom: 0;
}

.support-card ol {
  padding-left: 22px;
}

.support-card li + li {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(18, 23, 42, 0.76);
}

.faq-list summary {
  position: relative;
  min-height: 72px;
  padding: 22px 62px 22px 26px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  color: var(--violet-bright);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary {
  color: var(--violet-bright);
}

.faq-list p {
  margin: 0;
  padding: 0 62px 26px 26px;
  color: #bbb6c7;
}

.support-report {
  display: grid;
  margin-top: 116px;
  padding: clamp(34px, 6vw, 70px);
  gap: clamp(38px, 7vw, 90px);
  grid-template-columns: 1fr 1fr;
  align-items: start;
  border: 1px solid rgba(255, 190, 59, 0.34);
  background:
    linear-gradient(130deg, rgba(255, 190, 59, 0.07), transparent 40%),
    var(--panel-strong);
  scroll-margin-top: 90px;
}

.support-report h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.support-report > div > p:not(.eyebrow) {
  color: #c1bdca;
}

.report-checklist {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1px;
  list-style: none;
  background: var(--line);
}

.report-checklist li {
  display: grid;
  min-height: 82px;
  padding: 16px 20px;
  gap: 4px;
  align-content: center;
  background: #101527;
}

.report-checklist strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.report-checklist span {
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    gap: 18px;
  }

  .hero {
    min-height: 920px;
    padding-top: 120px;
    align-items: start;
  }

  .hero-copy {
    width: min(680px, 100%);
  }

  .hero-character-wrap {
    right: 5vw;
    bottom: 78px;
    width: min(62vw, 560px);
    opacity: 0.9;
  }

  .hero-stats {
    right: 5vw;
    bottom: 22px;
    left: 5vw;
  }

  .hero-stats div {
    min-width: 0;
    flex: 1;
  }

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

  .run-path::before,
  .run-path li::after {
    display: none;
  }

  .section-heading-row {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .final-cta {
    min-height: auto;
    grid-template-columns: minmax(240px, 0.7fr) 1fr;
  }

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

  .support-visual {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    padding: 8px 18px;
  }

  .brand {
    width: 100px;
  }

  .main-nav {
    display: none;
  }

  .language-button {
    grid-column: 3;
  }

  .hero {
    min-height: 840px;
    padding: 106px 22px 134px;
  }

  .hero-backdrop {
    background-image:
      linear-gradient(180deg, rgba(5, 7, 16, 0.64) 0%, rgba(5, 7, 16, 0.78) 48%, rgba(5, 7, 16, 0.94) 100%),
      url("/assets/ruins-moon.webp");
    background-position: 58% center;
  }

  .hero-logo {
    width: 240px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero-character-wrap {
    right: -16vw;
    bottom: 110px;
    width: 88vw;
    opacity: 0.55;
  }

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

  .hero-stats {
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stats div {
    padding: 12px 8px;
    text-align: center;
  }

  .hero-stats span {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .section {
    width: min(100% - 36px, var(--max));
    padding: 88px 0;
  }

  .feature-grid,
  .screenshot-grid,
  .run-path {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    min-height: 310px;
    padding: 30px 24px;
    grid-column: auto;
  }

  .feature-card-wide {
    background:
      linear-gradient(0deg, rgba(8, 11, 24, 0.96) 0%, rgba(8, 11, 24, 0.46) 78%),
      url("/assets/screen-game.webp") center / cover;
  }

  .screenshot-main {
    grid-column: auto;
  }

  .screenshot img {
    aspect-ratio: 16 / 9;
  }

  .run-path li {
    min-height: 220px;
  }

  .final-cta {
    min-height: 760px;
    padding: 70px 24px;
    grid-template-columns: 1fr;
    align-content: center;
    background:
      linear-gradient(0deg, rgba(8, 11, 24, 0.98), rgba(8, 11, 24, 0.5)),
      url("/assets/ruins-moon.webp") center / cover;
  }

  .final-cta > img {
    width: min(86%, 360px);
  }

  .site-footer {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .copyright {
    grid-column: auto;
  }

  .legal-main {
    padding-top: 120px;
  }

  .support-main {
    width: calc(100% - 36px);
    padding-top: 106px;
  }

  .support-hero {
    min-height: auto;
    padding: 34px 22px;
  }

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

  .support-section {
    padding-top: 86px;
  }

  .support-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .support-report {
    margin-top: 86px;
    padding: 32px 22px;
  }
}

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

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

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