@font-face {
  font-family: "Gabarito";
  src: url("/assets/fonts/gabarito-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunito-sans-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 100%;
  font-display: swap;
}

:root {
  --font-display: "Gabarito", "Arial Black", sans-serif;
  --font-body: "Nunito Sans", "Trebuchet MS", system-ui, sans-serif;

  --space-950: #061f2a;
  --space-900: #082f3d;
  --space-800: #0d4656;
  --paper-100: #f5f1e8;
  --paper-200: #e9e4d8;
  --ink-900: #132e31;
  --ink-600: #476268;
  --light-100: #f7f2e8;
  --light-300: #b9d2d3;
  --plasma-500: #2ab8c5;
  --jump-400: #cde85b;
  --jupiter-500: #d85a24;
  --taygete-300: #bdd99d;
  --themisto-300: #a8d7c8;
  --metis-300: #8cd5df;
  --ananke-300: #d5de8e;

  --shell: 75rem;
  --page-pad: clamp(1.25rem, 5vw, 4.5rem);
  --section-pad: clamp(5.5rem, 9vw, 9.5rem);
  --radius-sm: 0.5rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.75rem;
  --shadow-panel: 0 0.875rem 2.25rem rgb(0 20 28 / 18%);
  --shadow-paper: 0 0.5rem 0 rgb(4 45 55 / 16%);
}

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

html {
  color-scheme: dark light;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--space-950);
  color: var(--light-100);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 0.1875rem solid var(--jump-400);
  outline-offset: 0.25rem;
}

::selection {
  background: var(--jump-400);
  color: var(--ink-900);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  translate: 0 -200%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--jump-400);
  color: var(--ink-900);
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

.shell {
  width: min(100% - (2 * var(--page-pad)), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  isolation: isolate;
  padding-block: var(--section-pad);
}

.section--space {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgb(42 184 197 / 12%) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 65%, rgb(205 232 91 / 10%) 0 1px, transparent 2px),
    radial-gradient(circle at 60% 15%, rgb(247 242 232 / 12%) 0 1px, transparent 2px),
    var(--space-900);
  background-size: 15rem 15rem, 22rem 22rem, 18rem 18rem, auto;
  color: var(--light-100);
}

.section--paper {
  background: var(--paper-100);
  color: var(--ink-900);
}

.section--elevated {
  overflow: hidden;
  background: var(--space-800);
  color: var(--light-100);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.3vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.45rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.18;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.065em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.375rem;
  height: 0.375rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--jupiter-500);
  content: "";
}

.eyebrow--dark {
  color: var(--paper-100);
}

.eyebrow--light {
  color: var(--jupiter-500);
}

.section-copy {
  max-width: 34rem;
}

.section-copy--narrow {
  max-width: 29rem;
}

.section-copy > p:not(.eyebrow):not(.fine-print),
.section-heading > p:not(.eyebrow) {
  color: var(--ink-600);
}

.section--space .section-copy > p:not(.eyebrow),
.section--elevated .section-copy > p:not(.eyebrow),
.section--space .section-heading > p:not(.eyebrow),
.section--elevated .section-heading > p:not(.eyebrow) {
  color: var(--light-300);
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 3.5rem;
}

.section-heading--wide {
  max-width: 48rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-block: 1.875rem 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 900;
  letter-spacing: 0.0125em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: translate 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  translate: 0 -0.125rem;
}

.button:active {
  translate: 0 0.0625rem;
}

.button--primary {
  background-color: #00a79d;
  background-image: url("/assets/images/ui/button-primary.svg");
  background-position: center;
  background-size: 100% 100%;
  box-shadow: 0 0.375rem 1.25rem rgb(0 167 157 / 20%);
  color: #fff;
}

.button--primary:hover {
  background-color: #dedd2e;
  background-image: url("/assets/images/ui/button-primary-hover.svg");
  box-shadow: 0 0.5rem 1.5rem rgb(205 232 91 / 22%);
  color: var(--ink-900);
}

.button--primary:active {
  background-image: url("/assets/images/ui/button-primary-pressed.svg");
}

.button--secondary {
  background-color: #fff;
  background-image: url("/assets/images/ui/button-secondary.svg");
  background-position: center;
  background-size: 100% 100%;
  box-shadow: 0 0.375rem 1.25rem rgb(0 20 28 / 14%);
  color: var(--ink-900);
}

.button--secondary:hover {
  background-color: #00d1c6;
  background-image: url("/assets/images/ui/button-secondary-hover.svg");
}

.button--secondary:active {
  background-image: url("/assets/images/ui/button-secondary-pressed.svg");
  color: #fff;
}

.button--small {
  min-height: 2.875rem;
  padding-inline: 1.25rem;
  font-size: 0.8125rem;
}

.fine-print {
  margin-top: 1rem;
  color: var(--ink-600);
  font-size: 0.8125rem;
}

.paper-label {
  width: fit-content;
  margin: 0;
  padding: 0.6rem 0.9rem;
  rotate: -2deg;
  background: var(--paper-100);
  box-shadow: var(--shadow-paper);
  color: var(--ink-900);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--light-100);
}

.site-header__inner {
  display: flex;
  min-height: 6.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 7rem;
  height: auto;
}

.main-navigation {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(2rem, 7vw, 8rem);
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation ul a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-navigation ul a:hover {
  color: var(--jump-400);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.125rem;
  border: 1px solid rgb(185 210 211 / 30%);
  border-radius: 999px;
  background: rgb(6 31 42 / 45%);
}

.main-navigation ul .language-switcher a,
.main-navigation ul .language-switcher span {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.language-switcher [aria-current="true"] {
  background: var(--paper-100);
  color: var(--ink-900);
}

.menu-button {
  display: none;
}

/* Hero */
.hero {
  min-height: 54rem;
  padding-top: 11.75rem;
  padding-bottom: 8rem;
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 37rem;
}

.hero__intro {
  max-width: 34rem;
  color: var(--light-300);
  font-size: 1.25rem;
  line-height: 1.5;
}

.hero__status {
  max-width: 33rem;
  color: var(--light-300);
  font-size: 0.8125rem;
}

.hero-orbit {
  position: relative;
  width: min(100%, 38rem);
  aspect-ratio: 1 / 0.94;
  justify-self: end;
}

.hero-orbit__path {
  position: absolute;
  z-index: -1;
  inset: 8% 8% 10%;
  border: 1px solid rgb(185 210 211 / 28%);
  border-radius: 50%;
  rotate: -16deg;
}

.hero-orbit__marker {
  position: absolute;
  z-index: 3;
  bottom: 15%;
  left: 12%;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: var(--jupiter-500);
  box-shadow: 0 0 0 0.45rem rgb(216 90 36 / 12%);
  animation: marker-pulse 3s ease-in-out infinite;
}

.hero-moon {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
}

.hero-moon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-moon--taygete {
  top: 8%;
  right: 5%;
  width: 62%;
}

.hero-moon--themisto {
  top: 6%;
  left: 3%;
  width: 16%;
}

.hero-moon--metis {
  top: 0;
  right: -1%;
  width: 15%;
}

.hero-moon--ananke {
  bottom: 6%;
  left: 0;
  width: 18%;
}

.hero-orbit__logo {
  position: absolute;
  z-index: 4;
  bottom: 2%;
  left: 15%;
  width: 52%;
  height: auto;
  aspect-ratio: 361 / 286;
  filter: drop-shadow(0 0.5rem 0.9rem rgb(0 20 28 / 32%));
}

.hero-orbit__legend {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 5%;
}

@keyframes marker-pulse {
  50% { box-shadow: 0 0 0 0.75rem rgb(216 90 36 / 5%); }
}

/* Original */
.original {
  padding-block: 9.5rem;
}

.original__grid {
  display: grid;
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(30rem, 1.08fr);
}

.facts-wrap {
  position: relative;
  padding-top: 2rem;
}

.facts-wrap__creature {
  position: absolute;
  z-index: 2;
  top: -2.25rem;
  left: -2rem;
  width: 14rem;
}

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

.fact-card {
  display: flex;
  min-height: 11rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  background: var(--space-900);
  box-shadow: var(--shadow-paper);
  color: var(--light-100);
}

.fact-card strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.fact-card span {
  color: var(--light-300);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.fact-card a:hover {
  color: var(--jump-400);
}

.fact-card a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.fact-card--a { rotate: -1deg; }
.fact-card--b { rotate: 1deg; }
.fact-card--c { rotate: 1deg; }
.fact-card--d { rotate: -1deg; }

/* Moons */
.moons {
  padding-block: 8.75rem 10rem;
}

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

.moon-card {
  display: grid;
  min-height: 22.5rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-100);
  box-shadow: var(--shadow-panel);
  color: var(--ink-900);
  grid-template-columns: 1fr 1fr;
  transition: translate 180ms ease, box-shadow 180ms ease;
}

.moon-card:hover {
  translate: 0 -0.25rem;
  box-shadow: 0 1.25rem 3rem rgb(0 20 28 / 28%);
}

.moon-card__media {
  min-height: 22.5rem;
  background: var(--space-800);
}

.moon-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moon-card__copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 3vw, 3rem);
}

.moon-card__copy::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.4rem;
  content: "";
}

.moon-card--taygete .moon-card__copy::before { background: var(--taygete-300); }
.moon-card--themisto .moon-card__copy::before { background: var(--themisto-300); }
.moon-card--metis .moon-card__copy::before { background: var(--metis-300); }
.moon-card--ananke .moon-card__copy::before { background: var(--ananke-300); }

.moon-card__copy .eyebrow {
  font-size: 0.6875rem;
}

.moon-card__copy h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  text-transform: uppercase;
}

.moon-card__copy p:last-child {
  color: var(--ink-600);
  font-size: 0.9375rem;
}

.moon-card--image-right .moon-card__media {
  grid-column: 2;
  grid-row: 1;
}

.moon-card--image-right .moon-card__copy {
  grid-column: 1;
  grid-row: 1;
}

/* Spacepark */
.spacepark-feature {
  position: relative;
  display: grid;
  min-height: 39rem;
  margin-top: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  border: 1px solid rgb(185 210 211 / 20%);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 75% 30%, rgb(205 232 91 / 14%), transparent 34%),
    linear-gradient(135deg, var(--space-800), var(--space-950));
  box-shadow: 0 1.75rem 4rem rgb(0 20 28 / 28%);
  grid-template-columns: minmax(0, 0.9fr) minmax(31rem, 1.1fr);
}

.spacepark-feature::before {
  position: absolute;
  top: -15rem;
  right: -11rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgb(185 210 211 / 14%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.spacepark-feature__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
}

.spacepark-feature__copy h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(3rem, 5vw, 4.75rem);
}

.spacepark-feature__intro {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--light-100);
  font-size: 1.125rem;
}

.spacepark-feature__modes {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spacepark-feature__modes > div {
  padding: 1rem;
  border: 1px solid rgb(185 210 211 / 16%);
  border-radius: var(--radius-sm);
  background: rgb(6 31 42 / 48%);
}

.spacepark-feature__modes span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--jump-400);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spacepark-feature__modes p {
  margin: 0;
  color: var(--light-300);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.spacepark-feature__return,
.spacepark-feature__ticket-copy {
  max-width: 34rem;
  color: var(--light-300);
  font-size: 0.9375rem;
}

.spacepark-feature__return {
  margin-bottom: 1rem;
}

.spacepark-feature__ticket-copy {
  margin-bottom: 0;
}

.spacepark-feature__visual {
  position: relative;
  min-width: 0;
  min-height: 39rem;
}

.spacepark-feature__station {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -7%;
  width: min(46rem, 115%);
  translate: 0 -50%;
  filter: drop-shadow(0 1.5rem 1.5rem rgb(0 20 28 / 30%));
}

.spacepark-feature__station img {
  width: 100%;
  height: auto;
}

.spacepark-kuna {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: 2rem;
  width: min(19rem, calc(100% - 2.5rem));
  rotate: 1deg;
  border-radius: 0.25rem;
  background: var(--paper-100);
  box-shadow: var(--shadow-paper);
  color: var(--ink-900);
}

.spacepark-kuna__portrait {
  width: 100%;
  height: auto;
  margin-top: -4.5rem;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
}

.spacepark-kuna__ticket {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--paper-200);
}

.spacepark-kuna__ticket > img {
  width: 4.5rem;
  height: auto;
  flex: 0 0 auto;
}

.spacepark-kuna__ticket p {
  margin: 0;
  line-height: 1.2;
}

.spacepark-kuna__ticket strong,
.spacepark-kuna__ticket span {
  display: block;
}

.spacepark-kuna__ticket strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spacepark-kuna__ticket span {
  margin-top: 0.25rem;
  color: var(--ink-600);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

/* Remake */
.remake {
  padding-block: 10rem;
}

.remake__grid {
  display: grid;
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(31rem, 1fr);
}

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

.feature-card {
  min-height: 13.25rem;
  padding: 2rem;
  border-top: 0.35rem solid var(--plasma-500);
  border-radius: 0.25rem;
  background: var(--space-900);
  box-shadow: var(--shadow-paper);
  color: var(--light-100);
}

.feature-card span,
.stage-card span,
.community-card > span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--jupiter-500);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-card p {
  color: var(--light-300);
  font-size: 0.875rem;
}

/* Status */
.status {
  padding-block: 7.5rem 6rem;
}

.status::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 5%;
  width: 330px;
  height: 440px;
  background-image: url("/assets/images/figma/spitter.webp");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  pointer-events: none;
}

.status > .shell {
  position: relative;
  z-index: 1;
}

.status__heading {
  display: grid;
  align-items: end;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.72fr);
}

.status__heading .section-heading {
  margin-bottom: 0;
}

.status__intro {
  padding-bottom: 0.5rem;
  color: var(--light-300);
}

.status__intro .button {
  margin-top: 1rem;
}

.stage-grid {
  display: grid;
  margin: 3.5rem 0 0;
  padding: 0;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.stage-card {
  min-height: 13rem;
  padding: 2rem;
  border: 1px solid rgb(185 210 211 / 20%);
  background: var(--space-900);
}

.stage-card--active {
  border: 0.1875rem solid var(--jupiter-500);
  padding: calc(2rem - 0.125rem);
}

.stage-card h3 {
  font-size: 1.5rem;
}

.stage-card p {
  color: var(--light-300);
  font-size: 0.875rem;
}

/* Heldenwerkstatt teaser */
.heldenwerkstatt-teaser {
  padding-block: 8rem;
}

.heldenwerkstatt-teaser__grid {
  display: grid;
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(27rem, 1.12fr);
}

.heldenwerkstatt-teaser .button {
  margin-top: 1rem;
}

.toff-stage {
  position: relative;
  display: grid;
  min-height: 31rem;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--space-900);
  box-shadow: var(--shadow-panel);
}

.toff-stage__portrait {
  position: relative;
  width: 82%;
  max-width: 26.875rem;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 171, 163, 0.24);
  box-shadow: 0 0 4rem rgb(42 184 197 / 26%);
}

.toff-stage__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toff-stage .paper-label {
  position: absolute;
  right: 7%;
  bottom: 8%;
}

/* Community */
.community {
  padding-block: 8.5rem;
}

.community__grid {
  display: grid;
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
}

.community-card {
  position: relative;
  width: min(100%, 25rem);
  min-height: 23rem;
  justify-self: end;
  padding: 3rem 2.5rem 2.5rem;
  rotate: 1deg;
  background: var(--paper-100);
  box-shadow: var(--shadow-paper);
  color: var(--ink-900);
}

.community-card picture {
  position: absolute;
  top: -4rem;
  right: -2rem;
  width: 8.5rem;
}
.community-card img {
    max-width: 200px;
}

.community-card h3 {
  margin-bottom: 2rem;
  font-size: 2.25rem;
}

.community-socials {
  display: grid;
  align-items: center;
  gap: 1.5rem 3rem;
  grid-template-columns: auto minmax(0, 1fr);
  margin-top: 4.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(185 210 211 / 24%);
}

.community-socials > p {
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-socials ul {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-socials a {
  position: relative;
  display: flex;
  min-height: 4.5rem;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 2.75rem 0.75rem 1rem;
  border: 1px solid rgb(185 210 211 / 24%);
  border-radius: var(--radius-sm);
  color: var(--text-on-dark);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.community-socials a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--plasma-500);
  content: "\2197";
  font-size: 1.1rem;
  transform: translateY(-50%);
}

.community-socials a:hover {
  border-color: var(--plasma-500);
  background: rgb(13 70 86 / 72%);
  transform: translateY(-2px);
}

.community-socials strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.community-socials span {
  color: var(--text-on-dark-muted);
  font-size: 0.75rem;
}

/* FAQ */
.faq-section {
  padding-block: 8rem 10rem;
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(20rem, 0.82fr) minmax(32rem, 1.18fr);
}

.faq-list {
  border-top: 1px solid rgb(19 46 49 / 16%);
}

.faq-list details {
  border-bottom: 1px solid rgb(19 46 49 / 16%);
}

.faq-list summary {
  position: relative;
  min-height: 4.5rem;
  padding: 1.45rem 3.5rem 1.2rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1.15rem;
  right: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-200);
  color: var(--jupiter-500);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 900;
}

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

.faq-list details p {
  max-width: 42rem;
  padding: 0 3.5rem 1.5rem 0;
  color: var(--ink-600);
  font-size: 0.9375rem;
}

/* Footer */
.site-footer {
  padding-block: 0 3rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgb(19 46 49 / 14%);
}

.site-footer__about {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-footer__about img {
  width: 4.75rem;
  padding: 0.35rem;
  background: var(--space-900);
}

.site-footer__about p {
  max-width: 27rem;
  margin: 0;
  color: var(--ink-600);
  font-size: 0.6875rem;
  line-height: 1.45;
}

.site-footer__about span {
  color: var(--ink-900);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.4rem;
}

.site-footer nav a {
  min-height: 2.75rem;
  align-content: center;
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--jupiter-500);
}

/* Interior pages */
.page-shell {
  min-height: 100vh;
  background: var(--paper-100);
  color: var(--ink-900);
}

.page-shell .site-header {
  position: relative;
  background: var(--space-900);
}

.page-hero {
  padding-block: 6rem 4rem;
  background: var(--space-900);
  color: var(--light-100);
}

.page-hero h1 {
  max-width: 16ch;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--light-300);
  font-size: 1.125rem;
}

.prose {
  width: min(100% - (2 * var(--page-pad)), 52rem);
  margin-inline: auto;
  padding-block: 5rem 8rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.prose h2 {
  margin-top: 3.5rem;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 2.5rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--ink-600);
}

.prose a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: #087b86;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding-block: 4rem;
  background:
    radial-gradient(circle at 72% 28%, rgb(42 184 197 / 18%), transparent 22rem),
    var(--space-900);
  color: var(--light-100);
}

.not-found .shell {
  max-width: 48rem;
}

.not-found img {
  margin-bottom: 3rem;
}

.not-found > .shell > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--light-300);
}

.legal-notice {
  padding: 1rem 1.25rem;
  border-left: 0.3rem solid var(--jupiter-500);
  background: var(--paper-200);
  color: var(--ink-900) !important;
}

/* Heldenwerkstatt application */
.heldenwerkstatt-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgb(42 184 197 / 24%), transparent 22rem),
    var(--space-900);
}

.heldenwerkstatt-app {
  padding-block: 6.5rem 8rem;
}

.heldenwerkstatt-app__heading {
  display: grid;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3.5rem;
  grid-template-columns: 1fr minmax(20rem, 0.75fr);
}

.heldenwerkstatt-app__heading h2 {
  margin-bottom: 0;
}

.heldenwerkstatt-app__heading > p {
  color: var(--ink-600);
}

.customizer {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-200);
  box-shadow: var(--shadow-panel);
  grid-template-columns: minmax(25rem, 1fr) minmax(30rem, 1.1fr);
}

.customizer__preview {
  position: relative;
  display: grid;
  min-height: 42rem;
  overflow: hidden;
  place-items: center;
  padding: 3rem;
  background:
    radial-gradient(circle at center, #0b6771 0 28%, transparent 28.5%),
    var(--space-900);
}

.customizer__preview::before,
.customizer__preview::after {
  position: absolute;
  border: 1px solid rgb(185 210 211 / 18%);
  border-radius: 50%;
  content: "";
}

.customizer__preview::before {
  width: 77%;
  aspect-ratio: 1;
}

.customizer__preview::after {
  width: 96%;
  aspect-ratio: 1;
}

.customizer__halo {
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 5rem rgb(42 184 197 / 34%);
}

.customizer__svg {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(88%, 30rem);
  height: 30rem;
  place-items: center;
  color: var(--light-300);
}

.customizer__svg svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 1.5rem 1.5rem rgb(0 20 28 / 30%));
}

.customizer__preview .paper-label {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
}

.customizer__controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.control-panel {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid rgb(19 46 49 / 14%);
  border-radius: var(--radius-md);
  background: var(--paper-100);
}

.control-panel legend {
  padding: 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field + .field {
  margin-top: 1rem;
}

.field > span,
.color-control label,
.toggle strong {
  font-weight: 800;
}

.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.5rem 2.5rem 0.5rem 0.8rem;
  border: 1px solid rgb(19 46 49 / 28%);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-900);
}

.control-panel--icons {
  min-width: 0;
}

.icon-picker__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.icon-picker__heading p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.8125rem;
}

.icon-picker__heading output {
  flex: 0 0 auto;
  color: var(--ink-900);
  font-size: 0.75rem;
  font-weight: 900;
}

.icon-picker {
  display: grid;
  max-height: 16.25rem;
  overflow-y: auto;
  padding: 0.25rem;
  gap: 0.45rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  scrollbar-gutter: stable;
}

.icon-picker__option {
  display: grid;
  min-width: 0;
  min-height: 3.25rem;
  place-items: center;
  padding: 0.35rem;
  border: 1px solid rgb(19 46 49 / 18%);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--ink-900);
  cursor: pointer;
}

.icon-picker__option:hover {
  border-color: var(--plasma-500);
  background: #ecf8f7;
}

.icon-picker__option[aria-pressed="true"] {
  border-color: var(--jupiter-500);
  background: #fff4ec;
  box-shadow: inset 0 0 0 1px var(--jupiter-500);
}

.icon-picker__option:focus-visible {
  outline: 0.1875rem solid var(--plasma-500);
  outline-offset: 0.125rem;
}

.icon-picker__option svg {
  width: 100%;
  height: 2.4rem;
  overflow: visible;
  pointer-events: none;
}

.icon-picker__loading {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.8125rem;
  grid-column: 1 / -1;
}

.icon-measurement {
  position: fixed;
  left: -10000px;
  width: 10rem;
  height: 10rem;
  overflow: visible;
  visibility: hidden;
  pointer-events: none;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
  cursor: pointer;
}

.toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.toggle__track {
  position: relative;
  width: 3rem;
  height: 1.7rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #b8c4c3;
  transition: background 160ms ease;
}

.toggle__track::after {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.1rem 0.3rem rgb(0 0 0 / 25%);
  content: "";
  transition: translate 160ms ease;
}

.toggle input:checked + .toggle__track {
  background: var(--jupiter-500);
}

.toggle input:checked + .toggle__track::after {
  translate: 1.3rem 0;
}

.toggle input:focus-visible + .toggle__track {
  outline: 0.1875rem solid var(--plasma-500);
  outline-offset: 0.2rem;
}

.toggle small {
  display: block;
  color: var(--ink-600);
  font-size: 0.75rem;
}

.control-panel--colors {
  display: grid;
  gap: 1.25rem;
}

.color-control {
  display: grid;
  gap: 0.5rem;
}

.color-control[hidden] {
  display: none;
}

.color-control__header,
.color-control__inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.color-control output {
  color: var(--ink-600);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.color-control__swatch {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 1px solid rgb(19 46 49 / 20%);
  border-radius: 50%;
  background-color: #fff;
  box-shadow: inset 0 0 0 0.2rem #fff;
}

.color-control input[type="range"] {
  width: 100%;
  height: 2.75rem;
  margin: 0;
  accent-color: var(--plasma-500);
  cursor: pointer;
}

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

.customizer__actions .button--primary {
  grid-column: 1 / -1;
}

.customizer__actions button:disabled {
  cursor: wait;
  filter: grayscale(0.6);
  opacity: 0.65;
}

.heldenwerkstatt-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--ink-600);
  font-size: 0.8125rem;
}

.heldenwerkstatt-message[data-error],
.heldenwerkstatt-message--error {
  color: #a32626;
  font-weight: 800;
}

.heldenwerkstatt-note {
  display: grid;
  align-items: center;
  gap: 1rem 3rem;
  margin-top: 3rem;
  padding: 2rem;
  border-left: 0.35rem solid var(--jupiter-500);
  background: var(--paper-200);
  grid-template-columns: 0.7fr 1.3fr auto;
}

.heldenwerkstatt-note h2,
.heldenwerkstatt-note p {
  margin: 0;
}

.heldenwerkstatt-note h2 {
  font-size: 1.75rem;
}

.heldenwerkstatt-note p {
  color: var(--ink-600);
}

.heldenwerkstatt-note a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: #087b86;
  font-weight: 900;
}

@media (min-width: 70rem) {
  .customizer {
    grid-template-columns: minmax(23rem, 0.8fr) minmax(39rem, 1.2fr);
  }

  .customizer__preview {
    min-height: 44rem;
    padding: 2rem;
  }

  .customizer__svg {
    width: min(90%, 27rem);
    height: 27rem;
  }

  .customizer__controls {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 1.5rem;
    grid-template-areas:
      "model colors"
      "icons icons"
      "actions actions"
      "status status";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .control-panel {
    padding: 1rem;
  }

  .control-panel legend {
    font-size: 1.0625rem;
  }

  .control-panel--model {
    grid-area: model;
  }

  .control-panel--icons {
    grid-area: icons;
  }

  .control-panel--colors {
    gap: 0.625rem;
    grid-area: colors;
  }

  .customizer__actions {
    grid-area: actions;
    grid-template-columns: 1fr 1fr 1.35fr;
  }

  .customizer__actions .button--primary {
    grid-column: auto;
  }

  .customizer__controls > .heldenwerkstatt-message {
    grid-area: status;
  }

  .field {
    gap: 0.25rem;
  }

  .field + .field {
    margin-top: 0.625rem;
  }

  .field select {
    min-height: 2.75rem;
  }

  .toggle {
    gap: 0.625rem;
    margin-top: 0.875rem;
  }

  .toggle__track {
    width: 2.75rem;
    height: 1.55rem;
  }

  .toggle__track::after {
    top: 0.175rem;
    left: 0.175rem;
    width: 1.2rem;
    height: 1.2rem;
  }

  .toggle input:checked + .toggle__track::after {
    translate: 1.2rem 0;
  }

  .icon-picker__heading {
    margin-bottom: 0.5rem;
  }

  .icon-picker {
    max-height: none;
    overflow-y: visible;
    gap: 0.35rem;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    scrollbar-gutter: auto;
  }

  .icon-picker__option {
    min-height: 2.75rem;
    padding: 0.25rem;
  }

  .icon-picker__option svg {
    height: 2rem;
  }

  .color-control {
    gap: 0.2rem;
  }

  .color-control__header,
  .color-control__inputs {
    gap: 0.5rem;
  }

  .color-control__swatch {
    width: 2rem;
    height: 2rem;
  }

  .color-control input[type="range"] {
    height: 2rem;
  }
}

@media (min-width: 75rem) {
  .icon-picker {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}

@media (min-width: 80rem) {
  .icon-picker {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media (max-width: 67.5rem) {
  :root {
    --page-pad: 2.5rem;
  }

  .hero__grid,
  .original__grid,
  .remake__grid,
  .heldenwerkstatt-teaser__grid {
    gap: 3.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 1fr);
  }

  .hero-orbit__legend {
    right: 4%;
  }

  .moon-card {
    min-height: 20rem;
  }

  .moon-card__media {
    min-height: 20rem;
  }

  .moon-card__copy {
    padding: 1.75rem;
  }

  .spacepark-feature {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.9fr);
  }

  .main-navigation {
    gap: 2rem;
  }
}

@media (max-width: 56rem) {
  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-orbit {
    width: 100%;
  }

  .original__grid,
  .remake__grid,
  .heldenwerkstatt-teaser__grid,
  .community__grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .original__grid,
  .remake__grid,
  .heldenwerkstatt-teaser__grid,
  .community__grid {
    gap: 4rem;
  }

  .section-copy {
    max-width: 42rem;
  }

  .moon-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .status__heading {
    grid-template-columns: 1fr 0.8fr;
  }

  .community-card {
    justify-self: start;
  }

  .faq-layout {
    gap: 3rem;
  }

  .heldenwerkstatt-app__heading,
  .customizer,
  .heldenwerkstatt-note {
    grid-template-columns: 1fr;
  }

  .customizer__preview {
    min-height: 34rem;
  }

  .heldenwerkstatt-note {
    align-items: start;
  }
}

@media (max-width: 47.99rem) {
  :root {
    --page-pad: 1.25rem;
    --section-pad: 5.5rem;
  }

  html {
    scroll-padding-top: 4.5rem;
  }

  body {
    font-size: 1rem;
  }

  h1 {
    max-width: 9ch;
    font-size: 2.875rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.04;
  }

  .site-header__inner {
    min-height: 4.75rem;
  }

  .brand img {
    width: 4.4rem;
  }

  .menu-button {
    display: inline-flex;
    min-width: 3.25rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(185 210 211 / 30%);
    border-radius: var(--radius-sm);
    background: rgb(6 31 42 / 60%);
    color: var(--light-100);
    cursor: pointer;
  }

  .menu-button__label {
    font-size: 0.6875rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .menu-button__icon {
    display: grid;
    gap: 0.2rem;
  }

  .menu-button__icon i {
    display: block;
    width: 1rem;
    height: 0.125rem;
    background: currentColor;
    transition: rotate 160ms ease, translate 160ms ease, opacity 160ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
    translate: 0 0.325rem;
    rotate: 45deg;
  }

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

  .menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
    translate: 0 -0.325rem;
    rotate: -45deg;
  }

  .main-navigation {
    position: fixed;
    z-index: -1;
    inset: 4.75rem 0 auto;
    display: grid;
    padding: 1.25rem;
    gap: 1rem;
    background: rgb(6 31 42 / 98%);
    box-shadow: 0 1.5rem 2rem rgb(0 0 0 / 26%);
    opacity: 0;
    pointer-events: none;
    translate: 0 -0.75rem;
    visibility: hidden;
    transition: opacity 160ms ease, translate 160ms ease;
  }

  .main-navigation[data-open] {
    z-index: 30;
    opacity: 1;
    pointer-events: auto;
    translate: 0;
    visibility: visible;
  }

  .main-navigation ul {
    display: grid;
    gap: 0;
  }

  .main-navigation ul a {
    width: 100%;
    min-height: 3.25rem;
    border-bottom: 1px solid rgb(185 210 211 / 14%);
  }

  .main-navigation ul .language-switcher {
    width: fit-content;
    margin-top: 0.75rem;
  }

  .main-navigation ul .language-switcher a,
  .main-navigation ul .language-switcher span {
    width: auto;
    min-width: 3rem;
    min-height: 3rem;
    border-bottom: 0;
  }

  .navigation-cta {
    width: 100%;
  }

  .hero {
    padding-top: 7.75rem;
    padding-bottom: 5rem;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3.5rem;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__intro {
    font-size: 1.0625rem;
  }

  .button-row {
    display: grid;
  }

  .button-row .button,
  .section-copy > .button,
  .status__intro .button {
    width: 100%;
  }

  .hero-orbit {
    width: min(100%, 23rem);
    align-self: center;
    aspect-ratio: 1 / 0.96;
  }

  .hero-orbit__path {
    inset: 10% 5% 8%;
  }

  .hero-moon--taygete {
    top: 12%;
    right: 6%;
    width: 62%;
  }

  .hero-moon--themisto {
    top: 3%;
    left: 6%;
    width: 17%;
  }

  .hero-moon--metis {
    top: 2%;
    right: 0;
    width: 16%;
  }

  .hero-moon--ananke {
    bottom: 9%;
    left: 2%;
    width: 18%;
  }

  .hero-orbit__logo {
    bottom: 2%;
    left: 14%;
    width: 49%;
  }

  .hero-orbit__legend {
    right: 1%;
    bottom: 4%;
    max-width: 10rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.5rem;
  }

  .original {
    padding-block: 6rem;
  }

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

  .facts-wrap {
    padding-top: 1rem;
  }

  .facts-wrap__creature {
    top: -2.25rem;
    left: calc(48% - 0.25rem);
    width: 10rem;
  }

  .facts-grid {
    gap: 0.75rem;
  }

  .fact-card {
    min-height: 8.75rem;
    padding: 1.25rem;
  }

  .fact-card strong {
    font-size: 1.9rem;
  }

  .fact-card span {
    font-size: 0.56rem;
  }

  .moons {
    padding-block: 5.75rem 6.5rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .moon-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .moon-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .moon-card__media,
  .moon-card--image-right .moon-card__media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 350 / 255;
    order: 1;
  }

  .moon-card__copy,
  .moon-card--image-right .moon-card__copy {
    min-height: 13.5rem;
    order: 2;
    padding: 1.75rem;
  }

  .moon-card__copy h3 {
    font-size: 1.55rem;
  }

  .spacepark-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .spacepark-feature__copy {
    padding: 2.5rem 2rem 1rem;
  }

  .spacepark-feature__visual {
    min-height: 33rem;
  }

  .spacepark-feature__station {
    top: 45%;
    right: -3rem;
    width: min(40rem, 105%);
  }

  .spacepark-kuna {
    right: 2rem;
    bottom: 2rem;
  }

  .remake {
    padding-block: 6rem;
  }

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

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

  .feature-card {
    min-height: 10.75rem;
  }

  .status {
    padding-block: 5.75rem 4rem;
  }

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

  .stage-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .stage-card {
    min-height: 10.5rem;
  }

  .status::after {
    display: none;
  }

  .heldenwerkstatt-teaser {
    padding-block: 5.75rem 6.25rem;
  }

  .heldenwerkstatt-teaser__grid {
    grid-template-columns: 1fr;
  }

  .toff-stage {
    min-height: 21rem;
  }

  .community {
    padding-block: 6rem;
  }

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

  .community-card {
    width: calc(100% - 0.5rem);
    min-height: 20rem;
    justify-self: center;
    padding: 2.5rem 1.75rem 2rem;
  }

  .community-card h3 {
    font-size: 2rem;
  }

  .community-card picture {
    right: -0.5rem;
  }

  .community-socials {
    align-items: stretch;
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .community-socials ul {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding-block: 5.75rem 7rem;
  }

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

  .faq-list summary {
    min-height: 4.25rem;
    padding-right: 3rem;
    font-size: 0.9375rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .site-footer__inner,
  .site-footer__about {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    gap: 1.75rem;
  }

  .site-footer__about {
    gap: 1rem;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 0.5rem 1.1rem;
  }

  .page-hero {
    padding-block: 4.5rem 3.5rem;
  }

  .prose {
    padding-block: 3.5rem 6rem;
  }

  .heldenwerkstatt-app {
    padding-block: 4.5rem 6rem;
  }

  .heldenwerkstatt-app__heading {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .customizer {
    border-radius: var(--radius-md);
  }

  .customizer__preview {
    min-height: 26rem;
    padding: 1.5rem;
  }

  .customizer__svg {
    width: 90%;
    height: 21rem;
  }

  .customizer__preview .paper-label {
    right: 1rem;
    bottom: 1rem;
  }

  .customizer__controls {
    padding: 1.25rem;
  }

  .control-panel {
    padding: 1.1rem;
  }

  .icon-picker {
    gap: 0.35rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    scrollbar-gutter: auto;
  }

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

  .customizer__actions .button--primary {
    grid-column: auto;
  }

  .heldenwerkstatt-note {
    padding: 1.4rem;
  }
}

@media (max-width: 22rem) {
  .icon-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .fact-card {
    min-height: 7.5rem;
  }
}

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

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

@media print {
  .site-header,
  .button,
  .site-footer nav,
  .hero-orbit {
    display: none !important;
  }

  .section,
  .site-footer {
    padding-block: 2rem;
    background: #fff !important;
    color: #000 !important;
  }
}
