:root {
  color-scheme: dark;
  --night: #040819;
  --night-2: #07122c;
  --panel: rgba(11, 25, 56, 0.78);
  --panel-solid: #0b1735;
  --text: #f2f7ff;
  --muted: #a8b9d5;
  --faint: #7083a4;
  --cyan: #71e4ff;
  --cyan-bright: #a9f2ff;
  --gold: #ffc861;
  --violet: #ad8cff;
  --rose: #ff789b;
  --mint: #8ef2b0;
  --line: rgba(148, 205, 255, 0.17);
  --line-bright: rgba(131, 226, 255, 0.4);
  --shadow: 0 30px 90px rgba(0, 4, 22, 0.48);
  --container: 1180px;
  --rounded: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, system-ui, sans-serif;
  --body: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 11% 22%, rgba(38, 149, 255, 0.1), transparent 32rem),
    radial-gradient(circle at 88% 46%, rgba(137, 93, 255, 0.1), transparent 34rem),
    var(--night);
  font-family: var(--body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(113, 228, 255, 0.18) 0 1px, transparent 1.5px);
  background-position: 0 0, 42px 67px;
  background-size: 112px 112px, 173px 173px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--rounded);
  line-height: 1.05;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.6vw, 4.45rem);
  letter-spacing: -0.055em;
}

h3 {
  letter-spacing: -0.025em;
}

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

.container,
.section {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 17px;
  border-radius: 12px;
  color: #071126;
  background: var(--gold);
  font-weight: 900;
  transform: translateY(-170%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(164, 218, 255, 0.13);
  background: linear-gradient(to bottom, rgba(3, 7, 22, 0.82), rgba(3, 7, 22, 0.15));
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  min-height: 88px;
  margin-inline: auto;
}

.brand {
  display: block;
  width: 174px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(27, 165, 255, 0.25));
}

.site-header nav {
  display: flex;
  gap: clamp(17px, 2.2vw, 35px);
  justify-content: flex-end;
}

.site-header nav a,
footer nav a {
  color: #c9d6e9;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: color 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
footer nav a:hover,
footer nav a:focus-visible {
  color: var(--cyan);
}

.header-play,
.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--rounded);
  font-size: 0.89rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-play {
  min-height: 44px;
  padding: 0 19px;
  color: #061427;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  box-shadow: 0 12px 34px rgba(38, 190, 233, 0.18);
}

.button {
  padding: 0 24px;
}

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

.header-play span,
.button span,
.text-link span {
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.header-play:hover span,
.button:hover span,
.text-link:hover span {
  transform: translateX(3px);
}

.button-primary {
  color: #071426;
  border-color: transparent;
  background: linear-gradient(135deg, #ffe09a, var(--gold) 48%, #ffad52);
  box-shadow: 0 16px 42px rgba(255, 184, 73, 0.25), inset 0 1px rgba(255, 255, 255, 0.72);
}

.button-primary:hover {
  box-shadow: 0 20px 52px rgba(255, 184, 73, 0.35), inset 0 1px rgba(255, 255, 255, 0.72);
}

.button-secondary {
  border-color: rgba(181, 221, 255, 0.24);
  background: rgba(7, 18, 44, 0.62);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(181, 221, 255, 0.48);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(930px, 100svh);
  align-items: center;
  overflow: hidden;
  background: #04091d;
}

.hero-art,
.hero-art img,
.hero-shade {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 8, 26, 0.99) 0%, rgba(3, 8, 26, 0.91) 31%, rgba(3, 8, 26, 0.42) 57%, rgba(3, 8, 26, 0.07) 100%),
    linear-gradient(180deg, rgba(3, 8, 26, 0.1) 48%, var(--night) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  background: linear-gradient(transparent, var(--night));
  content: "";
  pointer-events: none;
}

.orbit-line {
  position: absolute;
  z-index: -2;
  width: 750px;
  height: 310px;
  border: 1px solid rgba(117, 225, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-12deg);
}

.orbit-line-one {
  top: 26%;
  right: -120px;
}

.orbit-line-two {
  top: 29%;
  right: -170px;
  width: 870px;
  height: 390px;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: 760px;
  padding-top: 138px;
  padding-bottom: 154px;
}

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

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 17px;
  color: var(--cyan-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.65rem, 6.25vw, 5.75rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(95deg, #a6f2ff 0%, #7edfff 30%, #c9a3ff 70%, #ffbcdf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 31px;
  color: #c6d4e8;
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 23px;
  margin: 27px 0 0;
  padding: 0;
  color: #b8c7dd;
  font-size: 0.8rem;
  font-weight: 800;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.trust-list li::before {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #071426;
  background: var(--mint);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.mission-rail {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 32px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 33, 72, 0.93), rgba(6, 17, 42, 0.95));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mission-rail > div {
  display: grid;
  gap: 1px;
  padding: 21px 29px;
  border-right: 1px solid var(--line);
}

.mission-rail > div:last-child {
  border-right: 0;
}

.mission-rail strong {
  color: var(--gold);
  font-family: var(--rounded);
  font-size: 1.65rem;
  line-height: 1;
}

.mission-rail span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered > p:last-child {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 86px;
  align-items: start;
  padding-bottom: 65px;
}

.intro-copy {
  color: #bfccdf;
  font-size: 1.08rem;
}

.intro-copy p + p {
  margin-top: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 0;
}

.feature-grid article {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(17, 37, 79, 0.82), rgba(7, 18, 43, 0.86));
  box-shadow: 0 22px 58px rgba(0, 4, 22, 0.2);
}

.feature-grid article::after {
  position: absolute;
  right: -75px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 228, 255, 0.16), transparent 68%);
  content: "";
}

.feature-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid rgba(113, 228, 255, 0.28);
  border-radius: 17px;
  color: var(--cyan-bright);
  background: rgba(113, 228, 255, 0.08);
  font-family: var(--rounded);
  font-size: 1.45rem;
}

.feature-symbol-gold {
  color: var(--gold);
  border-color: rgba(255, 200, 97, 0.3);
  background: rgba(255, 200, 97, 0.08);
}

.feature-symbol-violet {
  color: #d0bdff;
  border-color: rgba(173, 140, 255, 0.3);
  background: rgba(173, 140, 255, 0.08);
}

.feature-symbol-mint {
  color: var(--mint);
  border-color: rgba(142, 242, 176, 0.3);
  background: rgba(142, 242, 176, 0.08);
}

.feature-grid article > p {
  margin-bottom: 9px;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-grid h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.feature-grid article > span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.showcase {
  padding: 112px 0 122px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(54, 176, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(8, 18, 43, 0.18), rgba(8, 18, 43, 0.65), rgba(8, 18, 43, 0.08));
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

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

.showcase-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.02rem;
}

.game-frame {
  position: relative;
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 12px 12px;
  border: 1px solid rgba(131, 226, 255, 0.22);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(18, 39, 79, 0.96), rgba(5, 13, 34, 0.98));
  box-shadow: 0 45px 120px rgba(0, 3, 20, 0.62), 0 0 80px rgba(65, 174, 255, 0.09);
}

.game-frame > img {
  width: 100%;
  border-radius: 20px;
}

.frame-lights {
  position: absolute;
  top: 14px;
  left: 19px;
  display: flex;
  gap: 7px;
}

.frame-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.frame-lights span:nth-child(2) {
  background: var(--gold);
}

.frame-lights span:nth-child(3) {
  background: var(--mint);
}

.game-frame figcaption,
.reward-screen figcaption,
.log-screen figcaption {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 14px 10px 3px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
}

.game-frame figcaption span {
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lumi-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 75px;
  align-items: center;
}

.lumi-art {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.lumi-art img {
  width: 100%;
}

.lumi-art figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(4, 9, 29, 0.7);
  backdrop-filter: blur(10px);
  font-size: 0.7rem;
  font-weight: 900;
}

.lumi-art figcaption span {
  color: var(--mint);
}

.lumi-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.check-list strong {
  color: var(--cyan-bright);
  font-size: 0.9rem;
}

.check-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--gold);
  font-family: var(--rounded);
  font-weight: 900;
}

.rewards-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 15% 55%, rgba(173, 140, 255, 0.11), transparent 29rem),
    linear-gradient(180deg, transparent, rgba(9, 21, 50, 0.66), transparent);
}

.reward-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: 18px;
  margin-top: 50px;
}

.reward-screen,
.badge-stack article {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17, 37, 79, 0.8), rgba(7, 18, 43, 0.88));
  box-shadow: 0 24px 65px rgba(0, 4, 22, 0.25);
}

.reward-screen {
  overflow: hidden;
  padding: 10px;
  border-radius: 28px;
}

.reward-screen img {
  width: 100%;
  border-radius: 20px;
}

.badge-stack {
  display: grid;
  gap: 12px;
}

.badge-stack article {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  align-items: center;
  padding: 17px;
  border-radius: 22px;
}

.badge-stack img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(72, 159, 255, 0.26);
}

.badge-stack span {
  color: var(--cyan);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.badge-stack h3 {
  margin: 3px 0 6px;
  font-size: 1.16rem;
}

.badge-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.log-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: center;
}

.log-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.mini-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 31px 0;
}

.mini-facts div {
  display: grid;
  padding: 17px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(14, 31, 66, 0.62);
}

.mini-facts strong {
  color: var(--gold);
  font-family: var(--rounded);
  font-size: 1.35rem;
}

.mini-facts span {
  color: var(--faint);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.log-screen {
  overflow: hidden;
  padding: 9px;
  border: 1px solid rgba(255, 200, 97, 0.22);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(30, 42, 76, 0.84), rgba(7, 15, 36, 0.93));
  box-shadow: var(--shadow);
}

.log-screen img {
  border-radius: 21px;
}

.family-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.family-heading {
  position: sticky;
  top: 34px;
}

.family-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.family-grid article {
  min-height: 235px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(12, 27, 59, 0.68);
}

.family-grid article > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  color: #071426;
  background: linear-gradient(135deg, var(--cyan-bright), var(--mint));
  font-family: var(--rounded);
  font-weight: 900;
}

.family-grid h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.family-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.steps-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(113, 228, 255, 0.1), transparent 28rem),
    rgba(7, 17, 42, 0.38);
}

.steps-section ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.steps-section li {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(18, 39, 79, 0.78), rgba(7, 17, 41, 0.82));
}

.steps-section li > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 47px;
  place-items: center;
  border-radius: 50%;
  color: #071426;
  background: var(--gold);
  font-family: var(--rounded);
  font-weight: 900;
  box-shadow: 0 0 26px rgba(255, 200, 97, 0.2);
}

.steps-section h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.steps-section p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 78px;
  align-items: start;
}

.faq-heading > p:last-child {
  color: var(--muted);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 25, 56, 0.7);
}

.faq-list details[open] {
  border-color: rgba(113, 228, 255, 0.29);
  background: rgba(15, 33, 72, 0.78);
}

.faq-list summary {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 18px 21px;
  cursor: pointer;
  font-family: var(--rounded);
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -3px 21px 0;
  padding: 0 36px 22px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.launch-band {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 35px;
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  min-height: 265px;
  margin: 30px auto 112px;
  padding: 34px 42px 34px 0;
  overflow: hidden;
  border: 1px solid rgba(113, 228, 255, 0.29);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 10%, rgba(173, 140, 255, 0.25), transparent 31%),
    radial-gradient(circle at 4% 95%, rgba(113, 228, 255, 0.17), transparent 34%),
    linear-gradient(135deg, #132d5e, #0a1735);
  box-shadow: var(--shadow);
}

.launch-band > img {
  align-self: end;
  width: 172px;
  height: 258px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 28px rgba(0, 5, 25, 0.56));
}

.launch-band h2 {
  max-width: 690px;
  margin-bottom: 9px;
  font-size: clamp(2rem, 3.9vw, 3.55rem);
}

.launch-band p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.launch-band .button {
  white-space: nowrap;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  padding: 31px 0 43px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: 142px;
}

.footer-brand img {
  width: 100%;
}

footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

footer nav {
  display: flex;
  gap: 23px;
}

@media (max-width: 1080px) {
  .site-header nav {
    display: none;
  }

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

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

  .feature-grid article {
    min-height: 275px;
  }

  .lumi-section,
  .log-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lumi-art {
    max-width: 800px;
  }

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

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

  .badge-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  .badge-stack article {
    grid-template-columns: 76px 1fr;
  }

  .badge-stack img {
    width: 76px;
    height: 76px;
  }

  .launch-band {
    grid-template-columns: 155px 1fr;
    padding-right: 34px;
  }

  .launch-band > img {
    grid-row: span 2;
    width: 150px;
  }

  .launch-band .button {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .showcase-heading,
  .intro,
  .family-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .family-heading {
    position: static;
  }

  .badge-stack {
    grid-template-columns: 1fr;
  }

  .steps-section ol {
    grid-template-columns: 1fr;
  }

  .steps-section li {
    min-height: 185px;
  }

  .steps-section li > span {
    margin-bottom: 28px;
  }
}

@media (max-width: 720px) {
  .container,
  .section {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    width: min(100% - 28px, 1320px);
    min-height: 72px;
  }

  .brand {
    width: 132px;
  }

  .header-play {
    min-height: 42px;
    padding: 0 15px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 930px;
    align-items: end;
  }

  .hero-art img {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 8, 26, 0.12) 0%, rgba(3, 8, 26, 0.15) 23%, rgba(3, 8, 26, 0.78) 47%, rgba(3, 8, 26, 0.99) 78%, var(--night) 100%),
      linear-gradient(90deg, rgba(3, 8, 26, 0.46), rgba(3, 8, 26, 0.08));
  }

  .orbit-line {
    display: none;
  }

  .hero-inner {
    align-items: end;
    min-height: 870px;
    padding-top: 310px;
    padding-bottom: 215px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13.2vw, 4.1rem);
    line-height: 0.96;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
  }

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

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

  .trust-list {
    gap: 8px 15px;
    font-size: 0.72rem;
  }

  .mission-rail {
    bottom: 24px;
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 28px, var(--container));
    border-radius: 19px;
  }

  .mission-rail > div {
    padding: 14px 16px;
  }

  .mission-rail > div:nth-child(2) {
    border-right: 0;
  }

  .mission-rail > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .mission-rail strong {
    font-size: 1.35rem;
  }

  .mission-rail span {
    font-size: 0.6rem;
  }

  .section {
    padding: 84px 0;
  }

  h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.15rem);
  }

  .intro {
    padding-bottom: 48px;
  }

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

  .feature-grid article {
    min-height: auto;
  }

  .feature-symbol {
    margin-bottom: 28px;
  }

  .showcase {
    padding: 80px 0 86px;
  }

  .showcase-heading {
    margin-bottom: 34px;
  }

  .game-frame {
    width: min(100% - 16px, 1360px);
    padding: 27px 7px 7px;
    border-radius: 20px;
  }

  .game-frame > img {
    border-radius: 14px;
  }

  .frame-lights {
    top: 10px;
    left: 13px;
  }

  .game-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .lumi-art {
    border-radius: 24px;
  }

  .lumi-art figcaption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .check-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .rewards-section,
  .steps-section {
    padding: 83px 0;
  }

  .reward-screen {
    padding: 6px;
    border-radius: 20px;
  }

  .reward-screen img {
    border-radius: 15px;
  }

  .badge-stack article {
    grid-template-columns: 74px 1fr;
  }

  .badge-stack img {
    width: 74px;
    height: 74px;
  }

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

  .mini-facts div {
    grid-template-columns: 52px 1fr;
    align-items: center;
  }

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

  .family-grid article {
    min-height: auto;
  }

  .family-grid article > span {
    margin-bottom: 25px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 16px 17px;
    font-size: 0.93rem;
  }

  .faq-list details p {
    margin-right: 17px;
    margin-left: 17px;
    padding-right: 20px;
  }

  .launch-band {
    grid-template-columns: 96px 1fr;
    gap: 18px;
    width: min(100% - 28px, var(--container));
    margin-bottom: 80px;
    padding: 27px 22px 27px 0;
    border-radius: 25px;
  }

  .launch-band > img {
    align-self: center;
    width: 100px;
    height: 190px;
  }

  .launch-band h2 {
    font-size: 2rem;
  }

  .launch-band p:not(.eyebrow) {
    font-size: 0.88rem;
  }

  .launch-band .button {
    grid-column: 1 / -1;
    width: calc(100% - 22px);
    margin-left: 22px;
  }

  footer {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1280px);
  }

  .footer-brand {
    width: 145px;
  }

  footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .header-play span {
    display: none;
  }

  .hero {
    min-height: 960px;
  }

  .hero-inner {
    min-height: 900px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .launch-band {
    grid-template-columns: 78px 1fr;
  }

  .launch-band > img {
    width: 84px;
  }
}

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