@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/inter-variable-v4.1.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("./fonts/space-grotesk-latin.woff2") format("woff2");
}
:root {
  color-scheme: dark;
  --canvas: #0a0a0a;
  --surface: #151715;
  --raised: #1d201e;
  --text: #f5f7f5;
  --muted: #afb6b0;
  --faint: #949d96;
  --green: #22c55e;
  --green-light: #4ade80;
  --green-ink: #052e16;
  --blue: #a0c7ff;
  --line: #2b302c;
  --line-bright: #525c54;
  --heading: "Space Grotesk", Inter, sans-serif;
  --body:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 180ms ease;
  font-family: var(--body);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a,
summary {
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 700;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 5px;
}
::selection {
  color: var(--green-ink);
  background: var(--green-light);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  color: var(--green-ink);
  background: var(--green-light);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
h2 {
  font-size: clamp(2.125rem, 3.8vw, 3.125rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
}
.section-heading > p {
  max-width: 350px;
  padding-bottom: 3px;
  color: var(--muted);
  font-size: 1rem;
}
.muted-heading {
  color: var(--muted);
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 12px 23px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 650;
  border: 1px solid transparent;
  border-radius: 999px;
  text-align: center;
}
.button span,
.text-link > span {
  font-size: 1.125rem;
  line-height: 1;
}
.button-primary {
  color: var(--green-ink);
  background: var(--green);
}
.button-primary:hover {
  background: var(--green-light);
}
.button-primary:active {
  background: #16a34a;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
}
.text-link:hover {
  color: var(--green-light);
}
.site-header {
  position: relative;
  z-index: 40;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 20px 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
}
.brand img {
  width: 208px;
  aspect-ratio: 1300 / 199;
  height: auto;
}
.site-header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 44px;
  padding: 8px 19px;
  border: 1px solid;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
}
.nav-green {
  color: #d0ead8;
  border-color: #276139;
  background: #122519;
}
.nav-green:hover {
  background: #1b3a25;
  border-color: var(--green);
}
.nav-blue {
  color: #d3e4ff;
  border-color: #3e6294;
  background: #162235;
}
.nav-blue:hover {
  background: #223753;
  border-color: #78a9ef;
}
.nav-neutral {
  color: var(--text);
  border-color: #373e38;
  background: #101210;
}
.nav-neutral:hover {
  background: #232823;
}
.hero {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 86px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -160px 0 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      var(--canvas),
      rgb(10 10 10 / 0.35) 30%,
      var(--canvas) 98%
    ),
    url("./assets/brand/acore-starfield.jpg") center 36% / cover no-repeat;
  opacity: 0.7;
}
.hero-content {
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #c1cbc3;
  margin-bottom: 26px;
}
.hero-eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--green);
}
.hero h1 {
  font-size: clamp(4.125rem, 7.8vw, 6.5rem);
  letter-spacing: -0.065em;
  line-height: 0.99;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-description {
  color: #bac2bc;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 30px auto 28px;
  max-width: 500px;
}
.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.hero-footnote {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.8125rem;
}
.hero-footnote > i {
  height: 14px;
  width: 1px;
  background: var(--line-bright);
}
.hero-footnote small {
  color: var(--faint);
  font-size: 0.75rem;
  margin-left: 5px;
}
.hero-footnote:hover {
  color: var(--text);
}
.services {
  padding-top: 56px;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 24px;
}
.game-card {
  position: relative;
  min-width: 0;
  border: 1px solid #30382f;
  background: linear-gradient(140deg, #17201a, #131613 65%);
  border-radius: 20px;
  padding: 28px 30px 24px;
}
.game-card.hytale {
  border-color: #303640;
  background: linear-gradient(140deg, #181d27, #141619 65%);
}
.game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.game-edition {
  font-size: 0.75rem;
  color: var(--muted);
}
.status-tag {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #c1e4ca;
  font-size: 0.75rem;
}
.status-tag i,
.preview-running i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.status-planned {
  color: var(--blue);
}
.game-card-main {
  display: grid;
  grid-template-columns: 1fr 46%;
  align-items: center;
  gap: 8px;
  min-height: 232px;
  padding-block: 16px;
}
.game-card h3 {
  font-size: 2.375rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 15px;
}
.game-card-main p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.game-art {
  width: 240px;
  justify-self: end;
  aspect-ratio: 1;
  object-fit: contain;
}
.game-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-bottom: 24px;
  font-size: 0.75rem;
  color: #c2cdc4;
}
.game-summary span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.game-summary span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #89998c;
}
.game-card-bottom {
  min-height: 73px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.game-card-bottom .button {
  padding-inline: 18px;
  gap: 22px;
}
.game-card-bottom .text-link {
  gap: 8px;
  font-size: 0.8125rem;
}
.planned-caption {
  color: var(--muted);
  font-size: 0.875rem;
}
.service-note {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--faint);
  font-size: 0.8125rem;
}
.service-note a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 12px;
  color: var(--muted);
}
.service-note a:hover {
  color: var(--green-light);
}
.software-section {
  border-top: 1px solid var(--line);
}
.software-explorer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.software-options {
  display: grid;
  gap: 24px;
  align-content: start;
  padding-top: 6px;
  min-width: 0;
}
.software-group h3 {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--faint);
  margin-bottom: 10px;
}
.software-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.software-option {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 48px;
  min-width: 113px;
  padding: 11px 18px;
  border: 1px solid #424b44;
  border-radius: 8px;
  color: #c9d0ca;
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 550;
}
.software-option:hover {
  background: #1b231e;
  border-color: #68796d;
}
.software-option[aria-pressed="true"] {
  color: #15251a;
  background: #edf3ee;
  border-color: #edf3ee;
}
.option-marker {
  font-size: 1rem;
}
.software-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 32px 28px;
  min-width: 0;
}
.software-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}
.detail-kicker {
  font-size: 0.75rem;
  color: var(--green-light);
}
.runtime-monogram {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #445548;
  border-radius: 8px;
  color: #b4c6b8;
  font-family: var(--heading);
  font-size: 1.125rem;
}
.software-detail h3 {
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.software-intro {
  font-size: 1rem;
  font-weight: 500;
  color: #d6ded8;
  min-height: 52px;
}
.software-explanation {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  min-height: 72px;
}
.software-facts {
  border-block: 1px solid var(--line);
  margin: 20px 0 14px;
  padding-block: 15px;
  display: grid;
  gap: 10px;
  font-size: 0.8125rem;
}
.software-facts > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
}
.software-facts dt {
  color: var(--faint);
}
.software-facts dd {
  margin: 0;
  color: #d0d9d2;
  min-height: 42px;
}
.software-warning {
  color: var(--muted);
  font-size: 0.75rem;
  min-height: 38px;
}
.software-docs {
  font-size: 0.8125rem;
  color: var(--green-light);
}
.software-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -12px 0 30px;
  font-size: 0.8125rem;
  color: var(--faint);
}
.software-footnote strong {
  color: #c8d3cb;
  font-weight: 500;
}
.no-script-note {
  color: var(--muted);
  margin-top: 20px;
  font-size: 0.875rem;
}
.essentials {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
}
.essentials-heading > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}
.essentials-heading > a {
  margin-top: 22px;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  min-height: 100px;
  padding-block: 16px;
}
.feature-row:first-child {
  border-top: 1px solid var(--line);
}
.feature-row > svg {
  color: #b6c8bb;
}
.feature-row > div {
  flex: 1;
}
.feature-row h3 {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.feature-row p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 3px;
}
.info-detail {
  position: relative;
  flex: 0 0 auto;
}
.info-detail summary {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  list-style: none;
  border-radius: 50%;
  cursor: pointer;
  color: #aab8ad;
}
.info-detail summary::-webkit-details-marker {
  display: none;
}
.info-detail summary span {
  width: 19px;
  height: 19px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  font-style: normal;
}
.info-detail summary:hover,
.info-detail[open] summary {
  color: var(--green-light);
  background: #1b281f;
}
.info-content {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  width: min(320px, calc(100vw - 48px));
  padding: 22px;
  background: #242b26;
  color: var(--text);
  border: 1px solid #59665c;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgb(0 0 0 / 0.45);
}
.info-content::before {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 14px;
  left: 0;
  right: 0;
}
.info-content > strong {
  font-size: 0.875rem;
}
.info-content > p,
.feature-row .info-content > p {
  font-size: 0.9375rem;
  color: #d0d8d2;
  line-height: 1.65;
  margin-top: 8px;
}
.info-detail.opens-up .info-content {
  top: auto;
  bottom: calc(100% + 8px);
}
.info-detail.opens-up .info-content::before {
  top: 100%;
  bottom: auto;
}
.info-detail.is-constrained .info-content {
  position: fixed;
  inset: auto 20px 20px auto;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.panel-section {
  border-top: 1px solid var(--line);
}
.panel-preview {
  background: #121412;
  border: 1px solid #343c36;
  border-radius: 16px;
  overflow: hidden;
}
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}
.preview-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
}
.preview-brand img {
  object-fit: contain;
  width: 28px;
  height: 28px;
}
.preview-label {
  color: var(--faint);
  font-size: 0.75rem;
}
.preview-body {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.preview-nav {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  background: #0f110f;
}
.preview-nav button {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  text-align: left;
  min-height: 46px;
  padding: 10px 16px;
  margin-bottom: 6px;
  background: transparent;
  border: 1px solid transparent;
  font-size: 0.8125rem;
  font-weight: 600;
}
.preview-nav button > svg {
  width: 18px;
  height: 18px;
}
.preview-nav button:hover {
  background: #1e251f;
}
.preview-nav button[aria-selected="true"] {
  background: #f7f8f8;
  color: #171717;
}
.preview-nav-note {
  display: block;
  padding: 62px 16px 12px;
  font-size: 0.75rem;
  color: var(--faint);
}
.preview-content {
  padding: 28px 32px;
  min-width: 0;
}
.preview-view {
  min-height: 333px;
}
.preview-view-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.preview-view-heading h3 {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.preview-running {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
}
.terminal {
  padding: 18px 22px 0;
  border: 1px solid #292f2b;
  border-radius: 8px;
  background: #090c0a;
  font:
    0.75rem/1.8 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  color: #d0d7d2;
}
.terminal p {
  display: flex;
  gap: 20px;
}
.terminal time {
  color: #8e9c91;
  flex-shrink: 0;
}
.terminal-success > span {
  color: var(--green-light);
}
.terminal-prompt {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 43px;
  margin-top: 16px;
  border-top: 1px solid #263229;
  color: #90a095;
}
.terminal-prompt > span {
  font-size: 1.25rem;
  color: var(--green-light);
}
.terminal-prompt i {
  width: 6px;
  height: 13px;
  margin-left: auto;
  background: #94bc9e;
}
.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.preview-metrics > div {
  border-right: 1px solid var(--line);
}
.preview-metrics > div:last-child {
  border: 0;
}
.preview-metrics > div > span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.preview-metrics strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.4375rem;
  letter-spacing: -0.03em;
}
.preview-metrics strong span {
  font-size: 0.8125rem;
  font-family: var(--body);
  font-weight: 400;
  color: var(--muted);
}
.preview-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 10px 28px;
  font-size: 0.75rem;
  color: var(--faint);
}
.preview-footer a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
  color: #d6e2d9;
}
.preview-footer a:hover {
  color: var(--green-light);
}
.file-path {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--muted);
}
.file-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  text-align: left;
}
.file-table th {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.file-table td,
.file-table th {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
}
.file-table td:first-child {
  color: #e0e8e2;
}
.file-table td:not(:first-child) {
  color: var(--muted);
}
.file-symbol {
  display: inline-block;
  width: 25px;
  color: #8aad94;
}
.preview-view-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 30px;
  max-width: 490px;
}
.crew-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.crew-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #264931;
  color: #bef2cd;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.avatar-blue {
  background: #253c5b;
  color: #c0dbff;
}
.crew-list li > div {
  flex: 1;
  font-size: 0.875rem;
}
.crew-list li > div > span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.crew-access {
  font-size: 0.75rem;
  color: #bdd5c3;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-top: 72px;
}
.about-section h2 {
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.about-section > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.start-section {
  border-top: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-number {
  color: #8aab93;
  font-family: var(--heading);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.step-number::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}
.steps h3 {
  font-size: 1.3125rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.steps p {
  color: var(--muted);
  font-size: 0.875rem;
}
.faq {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
  padding-top: 90px;
}
.faq > h3 {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  color: var(--muted);
  font-size: 1.25rem;
}
.faq summary:hover {
  color: var(--green-light);
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details > p {
  padding: 0 28px 24px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.site-footer {
  padding-top: 44px;
  border-top: 1px solid var(--line);
  padding-bottom: 32px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-main .brand img {
  width: 180px;
}
.footer-main p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8125rem;
}
.footer-main nav,
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.footer-main nav a,
.footer-bottom nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.8125rem;
}
.footer-main nav a:hover,
.footer-bottom nav a:hover {
  color: var(--green-light);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--faint);
  font-size: 0.75rem;
}
.legal-note {
  font-size: 0.6875rem;
  color: var(--faint);
  line-height: 1.7;
  max-width: 920px;
  padding-top: 16px;
}
/* The server guide and preview remain readable if scripts cannot load. */
.software-explorer:not(.is-enhanced) {
  grid-template-columns: 1fr;
}
.software-explorer:not(.is-enhanced) .software-options {
  display: none;
}
.panel-preview:not(.is-enhanced) .preview-nav {
  display: none;
}
.panel-preview:not(.is-enhanced) .preview-body {
  display: block;
}
/* Content stays visible without scripting. Only newly intersecting sections animate. */
@keyframes section-arrive {
  from {
    opacity: 0.35;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.arriving {
  animation: section-arrive 380ms ease both;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 116px;
    padding-bottom: 112px;
  }
  .section {
    padding-block: 120px;
  }
  .services {
    padding-top: 64px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .game-card {
    padding: 24px;
  }
  .game-card-bottom {
    gap: 12px;
    flex-wrap: wrap;
  }
  .game-card h3 {
    font-size: 2rem;
  }
  .software-explorer {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }
  .software-option {
    min-width: 100px;
    padding-inline: 15px;
  }
  .software-detail {
    padding: 24px;
  }
  .essentials {
    gap: 48px;
  }
  .preview-body {
    grid-template-columns: 176px 1fr;
  }
  .preview-content {
    padding: 24px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 32px;
  }
  .wrap {
    width: calc(100% - 48px);
  }
  .section {
    padding-block: 80px;
  }
  .header-inner {
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    padding-block: 20px;
  }
  .brand img {
    width: 190px;
  }
  .site-header nav {
    gap: 8px;
  }
  .nav-link {
    font-size: 0.75rem;
    padding-inline: 15px;
  }
  .hero {
    padding-top: 63px;
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: 5rem;
  }
  .hero-description {
    font-size: 1.0625rem;
  }
  .section-heading {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }
  .section-heading > p br {
    display: none;
  }
  .section-heading > p {
    max-width: 520px;
  }
  .services {
    padding-top: 44px;
  }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .game-card {
    padding: 22px;
  }
  .game-card-main {
    grid-template-columns: 1fr;
    padding-top: 22px;
  }
  .game-card-main > div {
    order: 1;
  }
  .game-art {
    width: 160px;
    justify-self: center;
  }
  .game-card-main p br {
    display: none;
  }
  .game-card h3 {
    margin-bottom: 8px;
  }
  .game-card-main p {
    font-size: 1rem;
    min-height: 80px;
  }
  .game-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .game-card-bottom {
    flex-direction: column;
    align-items: flex-start;
    min-height: 128px;
  }
  .game-card-bottom .button {
    width: 100%;
    gap: 12px;
    font-size: 0.75rem;
    padding-inline: 12px;
  }
  .hytale .game-card-bottom {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .hytale .planned-caption {
    padding-top: 12px;
  }
  .software-explorer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .software-options {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .software-group > div {
    gap: 8px;
  }
  .software-option {
    min-width: 0;
    gap: 10px;
    font-size: 0.875rem;
    padding-inline: 14px;
  }
  .software-detail {
    min-height: 394px;
  }
  .software-explanation {
    min-height: 48px;
  }
  .essentials {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .essentials-heading h2 br {
    display: none;
  }
  .essentials-heading > p:not(.eyebrow) {
    margin-top: 16px;
  }
  .essentials-heading > a {
    margin-top: 12px;
  }
  .desktop-break {
    display: none;
  }
  .preview-body {
    display: block;
  }
  .preview-nav {
    display: flex;
    padding: 12px 20px;
    gap: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .preview-nav button {
    width: auto;
    flex: 1;
    justify-content: center;
    padding-inline: 12px;
    margin: 0;
    gap: 10px;
  }
  .preview-nav-note {
    display: none;
  }
  .preview-header {
    padding: 18px 24px;
  }
  .preview-content {
    padding: 24px;
  }
  .preview-view {
    min-height: 324px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
  }
  .about-section > p {
    max-width: 640px;
  }
  .steps {
    gap: 28px;
  }
  .steps h3 {
    font-size: 1.125rem;
  }
  .steps br {
    display: none;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 64px;
  }
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  .eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 16px;
  }
  .header-inner {
    gap: 10px;
  }
  .brand img {
    width: 180px;
  }
  .site-header nav {
    width: 100%;
    justify-content: center;
    gap: 7px;
  }
  .nav-link {
    padding-inline: 10px;
    font-size: 0.8125rem;
    gap: 5px;
    border-radius: 10px;
  }
  .hero {
    padding-top: 56px;
    padding-bottom: 42px;
  }
  .hero h1 {
    font-size: clamp(3.875rem, 17vw, 5rem);
  }
  .hero-description {
    max-width: 320px;
    font-size: 1rem;
    margin-top: 24px;
  }
  .actions {
    gap: 20px;
  }
  .actions .button {
    font-size: 0.8125rem;
    padding-inline: 18px;
    gap: 16px;
  }
  .actions .text-link {
    font-size: 0.75rem;
    gap: 8px;
  }
  .hero-footnote {
    margin-top: 26px;
  }
  h2 {
    font-size: 2.125rem;
  }
  .services {
    padding-top: 42px;
  }
  .game-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .game-card {
    padding: 24px;
  }
  .game-card-top {
    flex-direction: row;
  }
  .game-card-main {
    display: flex;
    flex-wrap: wrap;
    min-height: 180px;
    padding-block: 22px;
    gap: 12px;
  }
  .game-card-main > div {
    order: 0;
    flex: 1 1 9rem;
    min-width: 0;
  }
  .game-card-main p {
    font-size: 0.9375rem;
    min-height: 0;
  }
  .game-card-main p br {
    display: none;
  }
  .game-card h3 {
    font-size: 1.875rem;
  }
  .game-art {
    width: 43%;
    max-width: 160px;
    flex: 0 1 43%;
  }
  .game-summary {
    font-size: 0.6875rem;
    gap: 10px 14px;
  }
  .game-card-bottom {
    min-height: 0;
    align-items: center;
    gap: 8px;
  }
  .game-card-bottom .button {
    font-size: 0.875rem;
  }
  .hytale .game-card-bottom {
    align-items: center;
  }
  .hytale .planned-caption {
    padding: 0;
  }
  .service-note {
    display: block;
    line-height: 1.7;
  }
  .service-note a {
    display: flex;
  }
  .software-options {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .software-group {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 10px;
    align-items: start;
  }
  .software-group h3 {
    margin: 14px 0 0;
  }
  .software-option {
    min-height: 44px;
    padding: 10px 11px;
    font-size: 0.8125rem;
  }
  .software-detail {
    padding: 20px 24px 24px;
    min-height: 0;
  }
  .software-explanation {
    min-height: 96px;
  }
  .software-facts > div {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }
  .software-facts dd {
    min-height: 63px;
  }
  .software-intro {
    min-height: 78px;
  }
  .software-warning {
    min-height: 58px;
  }
  .software-footnote {
    align-items: flex-start;
  }
  .software-footnote p {
    padding-top: 6px;
    max-width: 260px;
  }
  .feature-row {
    gap: 15px;
  }
  .feature-row h3 {
    font-size: 1.0625rem;
  }
  .feature-row > svg {
    width: 22px;
    height: 22px;
  }
  .feature-row > div > p {
    font-size: 0.8125rem;
  }
  .preview-header {
    padding: 16px;
    gap: 10px;
  }
  .preview-brand {
    font-size: 0.75rem;
    gap: 8px;
  }
  .preview-brand img {
    width: 22px;
    height: 22px;
  }
  .preview-label {
    font-size: 0.625rem;
  }
  .preview-nav {
    padding: 10px;
    gap: 7px;
  }
  .preview-nav button {
    font-size: 0.75rem;
    padding-inline: 6px;
    gap: 7px;
  }
  .preview-nav button > svg {
    width: 16px;
    height: 16px;
  }
  .preview-content {
    padding: 20px 16px;
  }
  .preview-view {
    min-height: 356px;
  }
  .preview-view-heading h3 {
    font-size: 1.0625rem;
  }
  .terminal {
    padding: 15px 12px 0;
    font-size: 0.625rem;
  }
  .terminal p {
    gap: 12px;
    padding-bottom: 3px;
  }
  .terminal p time {
    font-size: 0.5625rem;
  }
  .terminal-prompt {
    margin-top: 14px;
  }
  .preview-metrics {
    gap: 14px;
    margin-top: 24px;
  }
  .preview-metrics strong {
    font-size: 1.3125rem;
  }
  .preview-metrics > div > span {
    font-size: 0.625rem;
  }
  .preview-footer {
    padding: 12px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    font-size: 0.6875rem;
  }
  .file-path {
    font-size: 0.625rem;
  }
  .file-table th,
  .file-table td {
    padding: 14px 7px;
    font-size: 0.6875rem;
  }
  .file-table th:last-child,
  .file-table td:last-child {
    display: none;
  }
  .file-symbol {
    width: 20px;
  }
  .crew-list li {
    flex-wrap: wrap;
    gap: 12px;
  }
  .crew-access {
    padding-left: 56px;
    flex-basis: 100%;
  }
  .crew-list li > div {
    font-size: 0.8125rem;
  }
  .about-section {
    padding-top: 20px;
  }
  .about-section h2 {
    font-size: 1.75rem;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-number {
    margin-bottom: 14px;
  }
  .steps h3 {
    font-size: 1.3125rem;
  }
  .steps p {
    font-size: 0.9375rem;
  }
  .faq {
    padding-top: 52px;
  }
  .faq summary {
    font-size: 0.875rem;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-main nav,
  .footer-bottom nav {
    gap: 8px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .site-header,
  .actions,
  .info-detail summary {
    display: none;
  }
  .hero {
    padding-top: 30px;
  }
  .section {
    padding-block: 30px;
  }
  .info-content {
    position: static;
    box-shadow: none;
  }
}
