:root {
  color-scheme: dark;
  --bg: #050315;
  --bg-deep: #02010b;
  --panel: rgba(18, 16, 54, 0.78);
  --panel-strong: rgba(30, 23, 82, 0.9);
  --line: rgba(112, 229, 255, 0.28);
  --line-hot: rgba(255, 75, 212, 0.36);
  --text: #ffffff;
  --muted: #b7c6ef;
  --cyan: #35e9ff;
  --cyan-deep: #0fbad5;
  --pink: #ff4bd4;
  --gold: #ffc72f;
  --orange: #ff8d1f;
  --green: #6dff8d;
  --shadow-cyan: 0 0 30px rgba(53, 233, 255, 0.28);
  --shadow-pink: 0 0 30px rgba(255, 75, 212, 0.3);
  --max: 1180px;
  --radius: 18px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 20% 8%, rgba(68, 232, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 74% 18%, rgba(255, 75, 212, 0.15), transparent 26rem),
    radial-gradient(circle at 80% 76%, rgba(255, 199, 47, 0.1), transparent 26rem),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(rgba(5, 3, 21, 0.7), rgba(5, 3, 21, 0.92)),
    url("../images/ui/galaxy-bg.jpg") center / cover;
  opacity: 0.72;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(53, 233, 255, 0.85) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 75, 212, 0.8) 0 1px, transparent 1.8px);
  background-position:
    0 0,
    48px 78px,
    120px 34px;
  background-size:
    180px 180px,
    240px 240px,
    320px 320px;
  opacity: 0.48;
  animation: starDrift 42s linear infinite;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  padding: 12px 0;
  margin: 0 auto;
}

.site-header::before {
  position: absolute;
  inset: 10px -14px;
  z-index: -1;
  content: "";
  background: rgba(4, 4, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(240px, 24vw, 330px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 16px rgba(53, 233, 255, 0.26));
}

.site-nav {
  display: flex;
  gap: clamp(10px, 1.4vw, 20px);
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--cyan));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.6);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.download-button,
.ghost-button,
.pink-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.download-button {
  gap: 9px;
  color: #120800;
  background: linear-gradient(180deg, #ffe16b, var(--gold) 55%, #ff9d20);
  box-shadow: 0 13px 28px rgba(255, 171, 31, 0.28), inset 0 -2px 0 rgba(85, 35, 0, 0.16);
}

.download-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.download-button.is-disabled {
  color: rgba(255, 255, 255, 0.72);
  cursor: not-allowed;
  background: linear-gradient(180deg, rgba(112, 119, 143, 0.86), rgba(62, 68, 88, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.24);
  filter: saturate(0.25);
  pointer-events: none;
}

.ghost-button {
  color: #fff;
  background: rgba(14, 11, 48, 0.52);
  border: 2px solid rgba(176, 96, 255, 0.72);
  box-shadow: var(--shadow-pink);
}

.pink-button {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #ff46bd, #f03793 52%, #a344ff);
  box-shadow: 0 16px 34px rgba(255, 75, 212, 0.28);
}

.download-button:hover,
.ghost-button:hover,
.pink-button:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.08);
}

.download-button.is-disabled:hover {
  transform: none;
  filter: saturate(0.25);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100svh - 78px);
  padding: clamp(18px, 3vw, 42px) 0 70px;
  margin: 0 auto;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  filter: blur(2px);
}

.hero::before {
  width: 310px;
  height: 310px;
  top: 6%;
  left: -22%;
  background: radial-gradient(circle at 34% 36%, #2fe8ff, #1446b8 46%, transparent 68%);
  opacity: 0.64;
}

.hero::after {
  right: -17%;
  bottom: 10%;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle at 45% 40%, #ffe76b, #ff4bd4 42%, transparent 70%);
  opacity: 0.26;
}

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

.hero-kicker {
  margin-bottom: 14px;
}

.hero-logo {
  width: min(215px, 62vw);
  margin: 0 0 6px -12px;
  filter: drop-shadow(0 0 22px rgba(53, 233, 255, 0.26));
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  font-weight: 1000;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 0 20px rgba(53, 233, 255, 0.28), 0 7px 0 rgba(0, 0, 0, 0.18);
}

.hero p {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 650;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-actions .pink-button {
  width: auto;
}

.availability-banner {
  display: inline-grid;
  gap: 3px;
  min-width: min(100%, 280px);
  padding: 10px 15px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(20, 24, 44, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--cyan);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.availability-banner span {
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.availability-banner strong {
  color: #fff;
  font-size: 1rem;
}

.availability-banner + .hero-actions {
  margin-top: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 550px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.hero-facts li {
  min-width: 0;
  padding: 14px 12px;
  background: rgba(7, 8, 35, 0.7);
  border: 1px solid rgba(53, 233, 255, 0.22);
  border-radius: 16px;
  box-shadow: inset 0 0 24px rgba(53, 233, 255, 0.07);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--gold);
  font-size: 1.08rem;
}

.hero-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: clamp(330px, 38vw, 490px);
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  inset: 12% 1% 2%;
  z-index: -2;
  content: "";
  background: radial-gradient(ellipse, rgba(53, 233, 255, 0.24), rgba(255, 75, 212, 0.12) 34%, transparent 68%);
  border-radius: 50%;
  filter: blur(20px);
}

.snack-planet {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(540px, 100%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 38px rgba(255, 199, 47, 0.24));
  animation: planetFloat 7s ease-in-out infinite;
}

.planet-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(650px, 92%);
  height: 170px;
  border: 10px solid rgba(53, 233, 255, 0.58);
  border-right-color: rgba(255, 75, 212, 0.75);
  border-bottom-color: rgba(255, 199, 47, 0.7);
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(53, 233, 255, 0.48));
  transform: translate(-50%, -50%) rotate(-14deg);
  opacity: 0.75;
}

.ring-two {
  width: min(590px, 84%);
  height: 130px;
  border-width: 5px;
  border-left-color: rgba(255, 75, 212, 0.7);
  border-top-color: rgba(255, 199, 47, 0.66);
  transform: translate(-50%, -48%) rotate(18deg);
  animation: ringPulse 3.8s ease-in-out infinite;
}

.hero-ship {
  position: absolute;
  top: 4%;
  right: 5%;
  z-index: 4;
  width: clamp(92px, 15vw, 150px);
  transform: rotate(32deg);
  filter: drop-shadow(0 0 18px rgba(255, 75, 212, 0.44));
  animation: shipCruise 8s ease-in-out infinite;
}

.float-snack {
  position: absolute;
  z-index: 5;
  width: clamp(48px, 7vw, 90px);
  filter: drop-shadow(0 0 16px rgba(255, 199, 47, 0.4));
  animation: snackBob 5s ease-in-out infinite;
}

.snack-one {
  top: 7%;
  left: 16%;
}

.snack-two {
  right: 4%;
  bottom: 20%;
  animation-delay: -1.4s;
}

.snack-three {
  left: 4%;
  bottom: 22%;
  animation-delay: -2.8s;
}

.snack-four {
  top: 24%;
  right: 0;
  animation-delay: -3.5s;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(53, 233, 255, 0.32);
  border-radius: 50%;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 13px;
  height: 13px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-3px) rotate(45deg);
  animation: cuePulse 1.5s ease-in-out infinite;
}

main > section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading.inline {
  margin: 0 0 18px;
  text-align: left;
}

.section-heading h2,
.showcase-copy h2,
.policy-card h2,
.support-grid h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 1000;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(53, 233, 255, 0.22);
}

.section-heading h2 {
  color: var(--cyan);
}

.section-heading p,
.showcase-copy p,
.policy-card p,
.support-hero p,
.support-grid p {
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.65;
}

.feature-strip,
.play-section,
.showcase-section,
.galaxy-section,
.roadmap-section,
.join-crew-section,
.faq-feedback-section,
.support-cta-section {
  padding: clamp(54px, 8vw, 110px) 0;
}

.join-crew-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 233, 255, 0.13), rgba(255, 75, 212, 0.15)),
    rgba(8, 7, 35, 0.82);
  border: 1px solid rgba(53, 233, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35), 0 0 42px rgba(255, 75, 212, 0.1);
}

.join-crew-art {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
}

.join-crew-art::before,
.join-crew-art::after {
  position: absolute;
  width: min(270px, 90%);
  height: 104px;
  content: "";
  border: 2px solid rgba(53, 233, 255, 0.65);
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: crewOrbit 8s linear infinite;
}

.join-crew-art::after {
  width: min(220px, 76%);
  height: 82px;
  border-color: rgba(255, 75, 212, 0.62);
  transform: rotate(26deg);
  animation-direction: reverse;
}

.join-crew-art img {
  position: relative;
  z-index: 1;
  width: min(220px, 78%);
  filter: drop-shadow(0 0 24px rgba(53, 233, 255, 0.42));
  animation: crewFloat 4.8s ease-in-out infinite;
}

.join-crew-orbit {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 199, 47, 0.85);
}

.orbit-a {
  top: 24%;
  left: 18%;
}

.orbit-b {
  right: 14%;
  bottom: 24%;
  background: var(--pink);
  box-shadow: 0 0 14px rgba(255, 75, 212, 0.85);
}

.join-crew-copy {
  max-width: 690px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.join-crew-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 1000;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(53, 233, 255, 0.24);
}

.join-crew-copy > p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.6;
}

.crew-wallpaper-offer {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(4, 4, 24, 0.42);
  border: 1px solid rgba(255, 199, 47, 0.26);
  border-radius: 16px;
}

.crew-wallpaper-offer-copy h3 {
  margin: 6px 0 0;
  color: #fff;
  font-size: 1.15rem;
}

.crew-wallpaper-offer-copy p {
  margin: 6px 0 0;
  color: rgba(183, 198, 239, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.crew-wallpaper-badge {
  display: inline-block;
  padding: 5px 8px;
  color: #160d2d;
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crew-signup-form {
  margin-top: 24px;
}

.crew-signup-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.crew-signup-row input {
  min-width: 0;
  flex: 1 1 auto;
  min-height: 52px;
  padding: 0 16px;
  color: #fff;
  background: rgba(4, 4, 24, 0.72);
  border: 1px solid rgba(53, 233, 255, 0.35);
  border-radius: 14px;
  outline: 0;
}

.crew-signup-row input::placeholder {
  color: rgba(183, 198, 239, 0.72);
}

.crew-signup-row input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 233, 255, 0.14), var(--shadow-cyan);
}

.crew-signup-row .pink-button {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

.crew-signup-note {
  margin: 10px 0 0;
  color: rgba(183, 198, 239, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.crew-signup-note .text-link,
.crew-email-fallback {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.crew-signup-form .form-note {
  margin-top: 10px;
}

.crew-email-fallback {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.84rem;
  font-weight: 800;
}

@keyframes crewFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-9px) rotate(2deg);
  }
}

@keyframes crewOrbit {
  0% {
    transform: rotate(-18deg) scale(0.96);
  }
  50% {
    transform: rotate(8deg) scale(1.03);
  }
  100% {
    transform: rotate(-18deg) scale(0.96);
  }
}

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

.feature-card,
.play-steps article,
.route-map article,
.crew-panel,
.roadmap-line article,
.faq-panel,
.feedback-panel,
.support-grid article,
.policy-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(38, 28, 105, 0.72), rgba(9, 9, 35, 0.76)),
    radial-gradient(circle at top left, rgba(53, 233, 255, 0.14), transparent 55%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 0 35px rgba(53, 233, 255, 0.05);
  backdrop-filter: blur(16px);
}

.feature-card,
.play-steps article {
  position: relative;
  min-width: 0;
  padding: 20px 16px;
  text-align: center;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card {
  isolation: isolate;
  overflow: hidden;
}

.feature-card::before {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 0;
  width: 168px;
  height: 168px;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 199, 47, 0.45), transparent 34%),
    radial-gradient(circle, rgba(255, 75, 212, 0.35), transparent 56%),
    radial-gradient(circle, rgba(53, 233, 255, 0.28), transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0;
  transform: translateX(-50%) scale(0.65);
  transition: opacity 220ms ease, transform 220ms ease;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card.is-visible,
.play-steps article.is-visible,
.route-map article.is-visible,
.crew-panel.is-visible,
.roadmap-line article.is-visible,
.faq-panel.is-visible,
.feedback-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 18px rgba(255, 199, 47, 0.28));
  transform: scale(1);
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform;
}

.feature-card:nth-child(2) img {
  width: 118px;
  object-fit: contain;
}

.feature-card:nth-child(3) img,
.feature-card:nth-child(4) img {
  width: 112px;
  height: 112px;
}

.feature-card.is-visible:hover {
  border-color: rgba(255, 199, 47, 0.62);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(255, 75, 212, 0.22),
    0 0 42px rgba(53, 233, 255, 0.18),
    inset 0 0 42px rgba(255, 199, 47, 0.08);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1.08);
}

.feature-card:hover img {
  filter:
    drop-shadow(0 0 22px rgba(255, 199, 47, 0.58))
    drop-shadow(0 0 28px rgba(255, 75, 212, 0.28));
  transform: scale(1.22) translateY(-4px);
}

.feature-card h3,
.play-steps h3,
.route-map h3,
.crew-cards h3,
.roadmap-line h3,
.support-hero h1,
.policy-hero h1 {
  margin: 0;
  color: var(--gold);
  font-size: 1.16rem;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card p,
.play-steps p,
.route-map p,
.crew-cards p,
.roadmap-line p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.48;
}

.play-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.play-steps::before {
  position: absolute;
  top: 46px;
  right: 8%;
  left: 8%;
  z-index: -1;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--gold), var(--cyan));
  border-radius: 999px;
  box-shadow: var(--shadow-cyan);
}

.play-steps article {
  position: relative;
  overflow: visible;
  padding-top: 26px;
}

.play-steps article > span {
  position: absolute;
  top: -18px;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 1000;
  background: linear-gradient(180deg, #5b6dff, #5729c8);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: var(--shadow-pink);
  transform: translateX(-50%);
}

.play-steps img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 8px auto 14px;
  filter: drop-shadow(0 0 22px rgba(53, 233, 255, 0.22));
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.showcase-copy h2 {
  color: #fff;
}

.showcase-copy p {
  margin: 22px 0 0;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-list span {
  padding: 10px 12px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  background: rgba(53, 233, 255, 0.1);
  border: 1px solid rgba(53, 233, 255, 0.25);
  border-radius: 999px;
}

.phone-shell {
  position: relative;
  padding: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(53, 233, 255, 0.18), rgba(255, 75, 212, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), var(--shadow-cyan);
}

.phone-shell::before {
  position: absolute;
  inset: auto 20% -10px;
  height: 26px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 199, 47, 0.75), transparent);
  filter: blur(12px);
}

.phone-shell img {
  width: 100%;
  border-radius: 18px;
}

.planet-showcase {
  min-height: clamp(330px, 35vw, 520px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 199, 47, 0.18), transparent 23%),
    radial-gradient(circle at 24% 24%, rgba(53, 233, 255, 0.2), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(255, 75, 212, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(10, 21, 58, 0.78), rgba(46, 20, 82, 0.76));
}

.planet-showcase::after {
  position: absolute;
  inset: 12%;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(53, 233, 255, 0.62) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 75, 212, 0.54) 0 1px, transparent 1.6px);
  background-position: 0 0, 42px 24px, 86px 58px;
  background-size: 132px 112px, 158px 138px, 188px 152px;
  opacity: 0.45;
  pointer-events: none;
}

.planet-carousel {
  position: relative;
  z-index: 1;
  width: min(540px, 86%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.planet-carousel::before,
.planet-carousel::after {
  position: absolute;
  inset: 16%;
  content: "";
  border: 4px solid rgba(53, 233, 255, 0.45);
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(53, 233, 255, 0.4));
  transform: rotate(-18deg) scaleY(0.34);
}

.planet-carousel::after {
  border-color: rgba(255, 75, 212, 0.45);
  filter: drop-shadow(0 0 18px rgba(255, 75, 212, 0.42));
  transform: rotate(22deg) scaleY(0.31);
}

.planet-carousel img {
  position: absolute;
  width: min(390px, 78%);
  height: min(390px, 78%);
  object-fit: contain;
  opacity: 0;
  border-radius: 0;
  filter:
    drop-shadow(0 0 22px rgba(53, 233, 255, 0.38))
    drop-shadow(0 0 34px rgba(255, 75, 212, 0.24));
  transform: scale(0.92) rotate(-2deg);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}

.planet-carousel img.is-active {
  opacity: 1;
  filter:
    drop-shadow(0 0 30px rgba(255, 199, 47, 0.42))
    drop-shadow(0 0 50px rgba(53, 233, 255, 0.34));
  transform: scale(1) rotate(0deg);
}

.route-crew-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 22px;
}

.route-map {
  display: grid;
  gap: 16px;
}

.route-map article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.route-map img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 199, 47, 0.26));
}

.crew-panel {
  position: relative;
  padding: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.crew-scene {
  width: 100%;
  border-radius: 14px;
}

.crew-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.crew-cards article {
  min-width: 0;
  padding: 12px;
  background: rgba(5, 4, 24, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.crew-cards h3 {
  color: var(--cyan);
  font-size: 0.88rem;
}

.crew-cards p {
  font-size: 0.8rem;
}

.roadmap-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-line::before {
  position: absolute;
  top: 38px;
  right: 8%;
  left: 8%;
  z-index: -1;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--gold), var(--pink), var(--cyan));
  border-radius: 999px;
  box-shadow: var(--shadow-cyan);
}

.roadmap-line article {
  padding: 18px;
  text-align: center;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.roadmap-line article > img {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border: 5px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(12, 12, 50, 0.94);
  box-shadow: var(--shadow-pink);
  object-fit: cover;
  object-position: center 12%;
}

.roadmap-line .done > img {
  border-color: rgba(109, 255, 141, 0.9);
  box-shadow: 0 0 24px rgba(109, 255, 141, 0.34), var(--shadow-cyan);
}

.faq-feedback-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 0.95fr) minmax(240px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.faq-panel,
.feedback-panel {
  padding: 24px;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.accordion {
  display: grid;
  gap: 8px;
}

.accordion button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  background: rgba(4, 4, 24, 0.62);
  border: 1px solid rgba(53, 233, 255, 0.2);
  border-radius: 12px;
}

.accordion button span {
  position: relative;
  width: 18px;
  height: 18px;
}

.accordion button span::before,
.accordion button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 3px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.accordion button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 160ms ease;
}

.accordion button[aria-expanded="true"] span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion button + div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion button[aria-expanded="true"] + div {
  grid-template-rows: 1fr;
}

.accordion button + div > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.55;
}

.accordion button[aria-expanded="true"] + div > p {
  padding: 10px 12px 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--cyan);
  font-weight: 950;
}

.feedback-form {
  display: grid;
  gap: 12px;
}

.feedback-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 900;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  color: #fff;
  background: rgba(4, 4, 24, 0.62);
  border: 1px solid rgba(53, 233, 255, 0.25);
  border-radius: 12px;
  outline: none;
}

.feedback-form input {
  min-height: 46px;
  padding: 0 14px;
}

.feedback-form textarea {
  min-height: 124px;
  padding: 12px 14px;
  resize: vertical;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 199, 47, 0.15);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
}

.feedback-contact {
  width: 100%;
  margin-top: 2px;
}

.snack-bus {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 75, 212, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pink);
}

.snack-bus img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 50% 50%;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  padding: 34px 0 40px;
  margin: 0 auto;
  border-top: 1px solid rgba(53, 233, 255, 0.16);
}

.footer-logo img {
  width: 156px;
  filter: drop-shadow(0 0 16px rgba(53, 233, 255, 0.2));
}

.site-footer p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: end;
  justify-self: end;
}

.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.footer-links small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  text-align: right;
}

.policy-shell {
  width: min(960px, calc(100% - 32px));
  padding: 52px 0 80px;
  margin: 0 auto;
}

.support-shell {
  width: min(1120px, calc(100% - 32px));
  padding: 52px 0 80px;
  margin: 0 auto;
}

.policy-hero,
.support-hero {
  display: grid;
  gap: 24px;
  align-items: center;
  margin: 34px 0;
}

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

.policy-hero img {
  width: 120px;
  border-radius: 26px;
  box-shadow: var(--shadow-cyan);
}

.policy-hero h1,
.support-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
}

.policy-hero p,
.support-hero p {
  margin: 12px 0 0;
}

.policy-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
}

.policy-card h2 {
  margin-top: 32px;
  color: var(--cyan);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.7;
}

.policy-card ul {
  display: grid;
  gap: 8px;
  padding-left: 24px;
}

.policy-card li::marker {
  color: var(--gold);
}

.policy-card a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-owner {
  padding: 16px 18px;
  background: rgba(53, 233, 255, 0.08);
  border-left: 3px solid var(--cyan);
  border-radius: 4px;
}

.support-hero {
  grid-template-columns: 1fr minmax(180px, 280px);
  padding: clamp(26px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(53, 233, 255, 0.13), rgba(255, 75, 212, 0.12));
  border: 1px solid rgba(53, 233, 255, 0.2);
  border-radius: var(--radius);
}

.support-hero img {
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255, 199, 47, 0.24));
}

.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.support-hero-actions .ghost-button {
  margin-top: 0;
}

.support-cta-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.support-cta-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.support-cta-link {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(53, 233, 255, 0.14), rgba(176, 96, 255, 0.16)),
    rgba(7, 8, 35, 0.72);
  border: 1px solid rgba(53, 233, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow-cyan);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-cta-link:hover,
.support-cta-link:focus-visible {
  border-color: rgba(255, 199, 47, 0.7);
  box-shadow: var(--shadow-pink);
  transform: translateY(-3px);
}

.support-cta-link span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-cta-link strong {
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 1000;
}

.support-cta-link small {
  max-width: 500px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.support-tabs {
  display: grid;
  gap: 18px;
  width: 100%;
}

.support-hub-grid {
  align-items: stretch;
}

.support-hub-grid .support-tab-panel,
.faq-page-panel,
.feedback-page-panel {
  min-height: 0;
}

.support-hub-grid .support-tab-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.support-hub-grid .support-tab-panel .section-heading {
  margin-bottom: 0;
}

.support-hub-grid .support-tab-panel .pink-button,
.support-hub-grid .support-tab-panel .ghost-button {
  width: auto;
  margin-top: auto;
}

.support-tablist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 8px;
  background: rgba(7, 8, 35, 0.7);
  border: 1px solid rgba(53, 233, 255, 0.2);
  border-radius: 18px;
}

.support-tab {
  min-height: 54px;
  padding: 12px 18px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 950;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-tab:hover,
.support-tab:focus-visible {
  color: #fff;
  background: rgba(53, 233, 255, 0.08);
}

.support-tab[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(135deg, rgba(53, 233, 255, 0.2), rgba(176, 96, 255, 0.22));
  border-color: rgba(53, 233, 255, 0.38);
  box-shadow: var(--shadow-cyan);
}

.support-tab-panel {
  min-height: 640px;
  padding: clamp(24px, 5vw, 52px);
  background:
    linear-gradient(180deg, rgba(38, 28, 105, 0.72), rgba(9, 9, 35, 0.78)),
    radial-gradient(circle at top left, rgba(53, 233, 255, 0.14), transparent 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-cyan);
}

.support-tab-panel[hidden] {
  display: none;
}

.support-tab-panel > .section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.support-accordion {
  max-width: 980px;
}

.support-accordion button {
  min-height: 58px;
  font-size: 1rem;
}

.support-feedback-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 980px;
}

.support-feedback-copy {
  padding-top: 8px;
}

.support-feedback-copy h3 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
}

.support-feedback-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.support-grid article {
  padding: 24px;
  border-radius: var(--radius);
}

.support-grid h2 {
  color: var(--gold);
  font-size: 1.3rem;
}

.support-grid p {
  margin-bottom: 0;
}

.support-faq {
  width: 100%;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 0;
}

.site-space {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.star,
.meteor {
  position: absolute;
  display: block;
}

.star {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 18px #fff, 0 0 30px var(--cyan);
  animation: twinkle 2.6s ease-in-out infinite;
}

.star-a {
  top: 17%;
  left: 18%;
}

.star-b {
  top: 26%;
  right: 11%;
  background: var(--pink);
  animation-delay: -0.8s;
}

.star-c {
  right: 24%;
  bottom: 18%;
  background: var(--gold);
  animation-delay: -1.4s;
}

.star-d {
  bottom: 32%;
  left: 8%;
  background: var(--cyan);
  animation-delay: -2s;
}

.meteor {
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, var(--cyan));
  border-radius: 999px;
  opacity: 0.64;
  transform: rotate(-28deg);
  animation: meteor 7s linear infinite;
}

.meteor-a {
  top: 24%;
  left: -12%;
}

.meteor-b {
  top: 64%;
  left: -20%;
  animation-delay: -4s;
}

@keyframes starDrift {
  to {
    background-position:
      180px 180px,
      288px 318px,
      440px 354px;
  }
}

@keyframes planetFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(-1deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-16px) rotate(1deg);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.52;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes shipCruise {
  0%,
  100% {
    transform: translate(0, 0) rotate(32deg);
  }
  50% {
    transform: translate(-22px, 28px) rotate(38deg);
  }
}

@keyframes snackBob {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-20px) rotate(9deg);
  }
}

@keyframes cuePulse {
  0%,
  100% {
    transform: translateY(-4px) rotate(45deg);
    opacity: 0.75;
  }
  50% {
    transform: translateY(3px) rotate(45deg);
    opacity: 1;
  }
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes meteor {
  0% {
    transform: translateX(0) translateY(0) rotate(-28deg);
    opacity: 0;
  }
  10%,
  40% {
    opacity: 0.65;
  }
  70%,
  100% {
    transform: translateX(130vw) translateY(-70vw) rotate(-28deg);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header::before {
    border-radius: 22px;
  }

  .header-download {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 40;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    cursor: pointer;
    background: rgba(53, 233, 255, 0.1);
    border: 1px solid rgba(53, 233, 255, 0.24);
    border-radius: 15px;
  }

  .nav-toggle > span:not(.sr-only) {
    width: 22px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    justify-content: stretch;
    padding: 14px;
    background: rgba(6, 5, 28, 0.94);
    border: 1px solid rgba(53, 233, 255, 0.22);
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 46px;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(53, 233, 255, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .showcase-section,
  .route-crew-layout,
  .join-crew-section,
  .support-hero,
  .support-feedback-layout {
    grid-template-columns: 1fr;
  }

  .join-crew-section {
    text-align: center;
  }

  .join-crew-copy,
  .join-crew-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-art {
    order: -1;
    min-height: 430px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-logo {
    margin-right: auto;
    margin-left: auto;
  }

  .hero p,
  .showcase-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .mini-list,
  .support-hero-actions {
    justify-content: center;
  }

  .support-cta-section {
    width: min(100% - 32px, var(--max));
  }

  .feature-grid,
  .play-steps,
  .roadmap-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-steps::before,
  .roadmap-line::before {
    display: none;
  }

  .faq-feedback-section,
  .support-faq,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .snack-bus img {
    min-height: 300px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-items: center;
    justify-self: center;
  }

  .footer-links nav {
    justify-content: center;
  }

  .footer-links small {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header,
  main > section,
  .site-footer,
  .policy-shell,
  .support-shell {
    width: min(100% - 22px, var(--max));
  }

  .brand-logo {
    width: min(260px, 68vw);
    max-height: 52px;
  }

  .hero {
    padding-bottom: 48px;
  }

  .hero-art {
    min-height: 250px;
  }

  .hero-logo {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }

  .hero p {
    margin-top: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    margin-top: 18px;
  }

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

  .join-crew-section {
    padding: 26px 18px;
  }

  .join-crew-art {
    min-height: 220px;
  }

  .crew-signup-row {
    flex-direction: column;
  }

  .crew-signup-row .pink-button {
    width: 100%;
  }

  .hero-facts,
  .feature-grid,
  .play-steps,
  .roadmap-line,
  .crew-cards {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: none;
  }

  .snack-planet {
    width: min(390px, 112%);
  }

  .planet-ring {
    width: min(360px, 94%);
    height: 92px;
    border-width: 5px;
  }

  .ring-two {
    width: min(330px, 86%);
    height: 72px;
    border-width: 3px;
  }

  .hero-ship {
    width: 82px;
  }

  .route-map article {
    grid-template-columns: 76px 1fr;
  }

  .route-map img {
    width: 76px;
    height: 76px;
  }

  .faq-panel,
  .feedback-panel,
  .policy-card,
  .support-grid article {
    padding: 18px;
  }

  .policy-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .policy-hero img {
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Support hub cards should wrap their content instead of inheriting the FAQ panel height. */
.support-hub-grid {
  align-items: start;
}

.support-hub-grid > article.support-tab-panel {
  min-height: 0 !important;
  align-self: start;
}

.support-hub-grid > article.support-tab-panel .pink-button,
.support-hub-grid > article.support-tab-panel .ghost-button {
  margin-top: 0;
}
