:root {
  color-scheme: dark;
  --bg: #0b0c10;
  --bg-deep: #05060b;
  --ink: #f8fbff;
  --soft: #c7d2e4;
  --muted: #7b879c;
  --line: rgba(255, 255, 255, .12);
  --glass: rgba(8, 12, 23, .52);
  --cyan: #00f2fe;
  --blue: #4facfe;
  --magenta: #d400d4;
  --violet: #7c4dff;
  --green: #38f8a9;
  --shadow: 0 28px 90px rgba(0, 0, 0, .52);
  --blur: saturate(135%) blur(22px);
  font-family: Inter, Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 6% 16%, rgba(0, 242, 254, .13), transparent 25rem),
    radial-gradient(circle at 96% 16%, rgba(212, 0, 212, .18), transparent 33rem),
    radial-gradient(circle at 48% 112%, rgba(79, 172, 254, .13), transparent 40rem),
    linear-gradient(145deg, #050713 0%, #0b0c10 45%, #10071e 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 2% 72%, rgba(0, 242, 254, .11), transparent 25rem),
    radial-gradient(circle at 106% 72%, rgba(212, 0, 212, .13), transparent 29rem),
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 42%);
  animation: auroraPulse 9s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .18;
  background: linear-gradient(118deg, transparent 0 42%, rgba(0, 242, 254, .055) 48%, transparent 56%);
  mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 62%, transparent 100%);
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { letter-spacing: 0; }

.aurora {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(92px);
  pointer-events: none;
  opacity: .22;
  animation: glowDrift 12s ease-in-out infinite alternate;
}

.aurora-cyan {
  top: 4rem;
  left: -11rem;
  width: 34rem;
  height: 34rem;
  background: var(--cyan);
}

.aurora-magenta {
  top: 13rem;
  right: -13rem;
  width: 38rem;
  height: 38rem;
  background: var(--magenta);
  animation-delay: -3s;
}

.aurora-blue {
  bottom: -10rem;
  left: 34%;
  width: 30rem;
  height: 30rem;
  background: var(--blue);
  opacity: .14;
  animation-delay: -7s;
}

@keyframes auroraPulse {
  from { opacity: .62; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}

@keyframes glowDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

@keyframes phoneFloat {
  from { translate: 0 0; }
  to { translate: 0 -12px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px max(18px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(5, 7, 12, .68);
  backdrop-filter: var(--blur);
}

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

.brand img {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 242, 254, .38);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 32px rgba(0, 242, 254, .17);
}

.brand strong,
.brand small { display: block; }
.brand strong {
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}
.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.desktop-nav > a,
.nav-more summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 13px;
  color: #cbd6e7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.desktop-nav > a:hover,
.nav-more summary:hover,
.nav-more[open] summary {
  border-color: rgba(0, 242, 254, .24);
  background: rgba(0, 242, 254, .035);
  color: white;
  text-shadow: 0 0 16px rgba(0, 242, 254, .46);
  box-shadow: 0 0 22px rgba(0, 242, 254, .08);
}

.nav-more {
  position: relative;
}

.nav-more summary {
  list-style: none;
  cursor: pointer;
}

.nav-more summary::-webkit-details-marker { display: none; }

.nav-more summary::after {
  content: "⌄";
  margin-left: 7px;
  font-size: 14px;
  line-height: 1;
}

.nav-more[open] summary::after { content: "⌃"; }

.nav-more-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  display: grid;
  width: 194px;
  padding: 8px;
  border: 1px solid rgba(0, 242, 254, .24);
  border-radius: 16px;
  background: rgba(7, 10, 19, .96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34), 0 0 28px rgba(0, 242, 254, .08);
}

.nav-more-panel a {
  min-height: 39px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  color: #dce7f6;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-more-panel a:hover {
  background: rgba(0, 242, 254, .09);
  color: #fff;
}

.header-cta,
.header-donate,
.neon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(0, 242, 254, .52);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(5, 8, 15, .5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .025) inset, 0 0 24px rgba(0, 242, 254, .08);
  color: white;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.header-donate {
  min-height: 42px;
  border-color: rgba(212, 0, 212, .52);
  background: linear-gradient(135deg, rgba(212, 0, 212, .18), rgba(0, 242, 254, .08)), rgba(7, 10, 19, .78);
  white-space: nowrap;
}

.header-cta:hover,
.header-donate:hover,
.neon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 0, 212, .72);
  background:
    linear-gradient(180deg, rgba(0, 242, 254, .08), rgba(212, 0, 212, .08)),
    rgba(8, 12, 22, .8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset, 0 0 34px rgba(0, 242, 254, .18), 0 0 42px rgba(212, 0, 212, .12);
}

.donate-button {
  border-color: rgba(212, 0, 212, .58);
  background: linear-gradient(135deg, rgba(212, 0, 212, .18), rgba(0, 242, 254, .07)), rgba(7, 10, 19, .76);
}

.mobile-menu { display: none; }

.neon-button.primary {
  border-color: rgba(0, 242, 254, .72);
  background:
    linear-gradient(135deg, rgba(0, 242, 254, .14), rgba(212, 0, 212, .08)),
    rgba(7, 10, 19, .76);
}

.neon-button.muted {
  border-color: rgba(255, 255, 255, .18);
  color: #d6dfed;
}

main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 38px;
}

.launch-hero {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(22px, 3.6vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 28%, rgba(0, 242, 254, .13), transparent 28rem),
    radial-gradient(circle at 100% 78%, rgba(212, 0, 212, .18), transparent 27rem),
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    rgba(6, 10, 18, .72);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .025);
  backdrop-filter: var(--blur);
  padding: clamp(44px, 6vw, 78px);
}

.launch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 242, 254, .08), transparent 24%, transparent 72%, rgba(212, 0, 212, .08)),
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, .06), transparent 20rem);
  opacity: .9;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 0;
  background: linear-gradient(92deg, #efffff 0%, #00f2fe 34%, #7c4dff 72%, #d400d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 1000;
  line-height: .92;
  text-transform: uppercase;
  overflow-wrap: normal;
}

h1 span { display: block; }

.hero-subline {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d8e2f1;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.legal-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.legal-quicklinks a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 242, 254, .42);
  border-radius: 10px;
  background: rgba(6, 10, 20, .56);
  box-shadow: 0 0 24px rgba(0, 242, 254, .08);
  color: #f7fbff;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.legal-quicklinks a:last-child {
  border-color: rgba(212, 0, 212, .42);
  box-shadow: 0 0 24px rgba(212, 0, 212, .08);
}

.legal-quicklinks a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 0 30px rgba(0, 242, 254, .14), 0 0 34px rgba(212, 0, 212, .1);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, 100%);
  margin-top: 34px;
}

.signal-row article {
  min-height: 92px;
  border: 1px solid rgba(0, 242, 254, .18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    rgba(7, 10, 18, .42);
  padding: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.signal-row strong,
.signal-row span { display: block; }
.signal-row strong {
  background: linear-gradient(90deg, var(--cyan), #b07cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 25px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}
.signal-row span {
  margin-top: 10px;
  color: #a9b6c9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 610px;
  perspective: 1200px;
}

.energy-ring {
  position: absolute;
  top: 44%;
  left: 52%;
  width: min(43vw, 520px);
  height: min(43vw, 520px);
  border: 1px solid rgba(212, 0, 212, .22);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-18deg);
  box-shadow: 0 0 80px rgba(0, 242, 254, .13), inset 0 0 90px rgba(212, 0, 212, .12);
}

.phone {
  position: absolute;
  width: 286px;
  border: 1px solid rgba(212, 0, 212, .48);
  border-radius: 46px;
  background: linear-gradient(145deg, rgba(35, 40, 55, .94), #05070c 64%);
  padding: 8px;
  box-shadow: 0 42px 94px rgba(0, 0, 0, .68), 0 0 34px rgba(212, 0, 212, .18), 0 0 70px rgba(0, 242, 254, .08);
  animation: phoneFloat 5.8s ease-in-out infinite alternate;
}

.phone-main {
  top: 36px;
  left: 4%;
  transform: rotate(-8deg) rotateY(17deg) rotateX(2deg);
}

.phone-secondary {
  right: 0;
  top: 126px;
  width: 258px;
  transform: rotate(10deg) rotateY(-19deg) rotateX(2deg) translateZ(-20px);
  box-shadow: 0 34px 84px rgba(0, 0, 0, .64), 0 0 62px rgba(212, 0, 212, .2);
  animation-delay: -1.8s;
}

.dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: 78px;
  height: 20px;
  border-radius: 999px;
  background: rgba(2, 4, 9, .78);
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.phone-screen {
  min-height: 500px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 28% 8%, rgba(0, 242, 254, .25), transparent 9rem),
    radial-gradient(circle at 90% 26%, rgba(212, 0, 212, .22), transparent 10rem),
    linear-gradient(180deg, #101629, #070a12 68%);
  padding: 46px 18px 18px;
}

.phone-secondary .phone-screen { min-height: 460px; }

.screen-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 20px;
}

.screen-top img {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  object-fit: cover;
}

.screen-top span {
  color: white;
  font-size: 14px;
  font-weight: 950;
}

.mini-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.phone-screen h2 {
  margin: 0;
  color: white;
  font-size: 30px;
  line-height: 1;
}

.phone-screen p {
  margin: 12px 0 0;
  color: #aebbd1;
  font-size: 12px;
  line-height: 1.55;
}

.app-pill-row {
  display: flex;
  gap: 7px;
  margin: 18px 0;
}

.app-pill-row span {
  border: 1px solid rgba(0, 242, 254, .24);
  border-radius: 999px;
  background: rgba(0, 242, 254, .07);
  padding: 7px 9px;
  color: #dffcff;
  font-size: 10px;
  font-weight: 900;
}

.phone-card,
.game-card {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.phone-card.active {
  border-color: rgba(0, 242, 254, .34);
  background: linear-gradient(135deg, rgba(0, 242, 254, .15), rgba(124, 77, 255, .12));
}

.phone-card small,
.game-card small {
  display: block;
  color: #9ca9be;
  font-size: 10px;
  font-weight: 850;
}

.phone-card strong,
.game-card strong {
  display: block;
  margin-top: 7px;
  color: white;
  font-size: 15px;
}

.game-card {
  min-height: 96px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .15), transparent 5rem),
    linear-gradient(135deg, rgba(0, 242, 254, .16), rgba(19, 24, 42, .76));
}

.game-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.game-card.pass {
  background:
    radial-gradient(circle at 94% 0%, rgba(212, 0, 212, .24), transparent 5rem),
    linear-gradient(135deg, rgba(124, 77, 255, .18), rgba(19, 24, 42, .78));
}

.game-card.boost {
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 209, 102, .24), transparent 5rem),
    linear-gradient(135deg, rgba(212, 0, 212, .16), rgba(19, 24, 42, .78));
}

.hero-footer-cards {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 4px;
}

.developer-note {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(100, 221, 255, .2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 242, 254, .16), transparent 11rem),
    radial-gradient(circle at 100% 100%, rgba(212, 0, 212, .13), transparent 13rem),
    rgba(7, 10, 18, .88);
  padding: 17px;
  backdrop-filter: var(--blur);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .04);
  pointer-events: auto;
}

.contact-note-head span {
  display: block;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.contact-note-head strong {
  display: block;
  margin-top: 4px;
  color: #f4fbff;
  font-size: 17px;
  line-height: 1.2;
}
.contact-note-grid {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}
.contact-route {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
  padding: 8px 10px;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.contact-route:hover,
.contact-route:focus-visible {
  transform: translateX(3px);
  border-color: rgba(0, 242, 254, .32);
  background: rgba(255, 255, 255, .065);
}
.contact-route-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 242, 254, .3);
  border-radius: 11px;
  background: rgba(0, 242, 254, .11);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}
.contact-route.support .contact-route-mark {
  border-color: rgba(212, 0, 212, .32);
  background: rgba(212, 0, 212, .12);
  color: #f28cff;
}
.contact-route.cooperation .contact-route-mark {
  border-color: rgba(255, 209, 102, .34);
  background: rgba(255, 209, 102, .11);
  color: #ffd166;
}
.contact-route-copy,
.contact-route-copy small,
.contact-route-copy strong { display: block; min-width: 0; }
.contact-route-copy small {
  color: #98a6bb;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-route-copy strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
  color: #edf9ff;
  font-size: 12px;
  line-height: 1.2;
}
.contact-discord {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  color: #9eabc0;
  font-size: 11px;
}
.contact-discord > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65f3b3;
  box-shadow: 0 0 12px rgba(101, 243, 179, .65);
}
.contact-discord small { color: #7f8ba0; }
.contact-discord strong { color: #dce8f7; }

.app-availability {
  width: 100%;
  border: 1px solid rgba(0, 242, 254, .28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 0, 212, .22), transparent 12rem),
    linear-gradient(135deg, rgba(0, 242, 254, .12), rgba(10, 13, 24, .88));
  padding: 16px 18px;
  backdrop-filter: var(--blur);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .035);
  pointer-events: auto;
}

.app-availability span,
.app-availability strong,
.app-availability small { display: block; }

.app-availability span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.app-availability strong {
  margin-top: 5px;
  color: #f4fbff;
  font-size: 19px;
  font-weight: 950;
}

.app-availability small {
  margin-top: 5px;
  color: #aebbd0;
  font-size: 12px;
  line-height: 1.45;
}

.app-store-button {
  width: 100%;
  padding: 11px 16px;
  text-align: center;
}

.app-store-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.apple-store-button {
  border-color: rgba(244, 251, 255, .32);
  background: linear-gradient(135deg, rgba(244, 251, 255, .10), rgba(124, 77, 255, .16));
}

.apple-store-button:hover,
.apple-store-button:focus-visible {
  border-color: rgba(244, 251, 255, .64);
  box-shadow: 0 0 0 3px rgba(244, 251, 255, .08), 0 14px 28px rgba(124, 77, 255, .18);
}

.app-availability-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.app-availability-features > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  column-gap: 9px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 13px;
  background: rgba(255, 255, 255, .04);
  padding: 10px;
}

.app-availability-features b {
  grid-row: 1 / 3;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 242, 254, .1);
  font-size: 14px;
}

.app-availability-features em {
  overflow-wrap: anywhere;
  color: #eefaff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.app-availability-features small {
  margin-top: 2px;
  color: #8f9db2;
  font-size: 9px;
  line-height: 1.25;
}

.app-availability-status {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 12px;
}

.app-availability-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #65f3b3;
  box-shadow: 0 0 12px rgba(101, 243, 179, .65);
}

.app-availability-status span {
  color: #dce8f7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.app-availability-status small {
  margin: 0;
  color: #7f8ba0;
  font-size: 9px;
}

.section-copy { max-width: 620px; }
.section-copy.compact { max-width: 520px; }
.section-copy h2,
.live-showcase h2,
.status-cta h2 {
  margin: 0;
  color: white;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: .98;
  text-wrap: balance;
}

.section-copy p:not(.eyebrow),
.live-showcase p,
.status-cta p {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.75;
}

.link-strip,
.split-panel,
.economy-showcase,
.live-showcase,
.section-shell,
.clip-lab,
.team-section,
.status-cta {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
}

.economy-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 66px);
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 84% 18%, rgba(181, 57, 255, .17), transparent 42%),
    radial-gradient(circle at 58% 98%, rgba(0, 242, 254, .12), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    var(--glass);
}

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

.economy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 236px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(18, 28, 48, .94), rgba(9, 10, 18, .84));
  padding: 21px;
}

.economy-card::after {
  position: absolute;
  right: -36px;
  bottom: -52px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(0, 242, 254, .25);
  border-radius: 50%;
  content: "";
}

.economy-card span {
  display: block;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .16em;
}

.economy-card strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.08;
}

.economy-card p {
  margin: 10px 0 0;
  color: #aebbd0;
  font-size: 13px;
  line-height: 1.55;
}

.economy-card small {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: #dce8f7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
}

.economy-card.home-card { border-color: rgba(255, 204, 84, .28); background: linear-gradient(160deg, rgba(60, 45, 17, .66), rgba(12, 12, 18, .92)); }
.economy-card.home-card span { color: #ffd36d; }
.economy-card.rank-card { border-color: rgba(74, 151, 255, .35); background: linear-gradient(160deg, rgba(16, 52, 86, .7), rgba(10, 13, 27, .92)); }
.economy-card.rank-card span { color: #6cb5ff; }
.economy-card.game-card { border-color: rgba(218, 104, 255, .3); background: linear-gradient(160deg, rgba(60, 20, 78, .64), rgba(10, 10, 22, .92)); }
.economy-card.game-card span { color: #ef9eff; }

.economy-guide {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 4vw, 50px);
  align-items: start;
  padding: clamp(28px, 4vw, 50px);
  background:
    radial-gradient(circle at 7% 100%, rgba(0, 242, 254, .13), transparent 37%),
    radial-gradient(circle at 96% 5%, rgba(180, 73, 255, .15), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    var(--glass);
}
.economy-guide .section-copy { margin: 0; }
.economy-step-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.economy-step-grid article { display: grid; align-content: start; gap: 9px; min-width: 0; min-height: 182px; padding: 19px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(7, 12, 25, .58); }
.economy-step-grid article:nth-child(2) { border-color: rgba(0, 242, 254, .29); }
.economy-step-grid article:nth-child(3) { border-color: rgba(93, 157, 255, .3); }
.economy-step-grid article:nth-child(4) { border-color: rgba(255, 207, 94, .3); }
.economy-step-grid span { color: var(--cyan); font-size: .71rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.economy-step-grid strong { color: #fff; font-size: clamp(1.05rem, 2vw, 1.26rem); line-height: 1.15; }
.economy-step-grid p { margin: 0; color: #b4c2d5; font-size: .91rem; line-height: 1.55; }
.economy-sync-note { grid-column: 1 / -1; display: grid; gap: 7px; margin-top: -8px; padding: 17px 19px; border: 1px solid rgba(0,242,254,.2); border-radius: 18px; background: rgba(0, 242, 254, .055); }
.economy-sync-note strong { color: #f6fbff; font-size: 1rem; }
.economy-sync-note p { margin: 0; color: #c0d7e3; line-height: 1.6; }
.economy-sync-note code { padding: 2px 6px; border-radius: 6px; color: #9ff7ff; background: rgba(0,0,0,.24); font-family: inherit; font-weight: 850; }

.crew-world-showcase {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 4vw, 64px);
  align-items: start;
  margin: 0 auto 84px;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(0, 242, 254, .26);
  border-radius: 30px;
  background: radial-gradient(circle at 90% 8%, rgba(163, 83, 255, .17), transparent 35%), linear-gradient(140deg, rgba(6, 32, 41, .86), rgba(15, 10, 31, .9));
}
.crew-world-showcase .section-copy { display: flex; flex-direction: column; gap: 24px; margin: 0; }
.crew-world-showcase .section-copy h2 { max-width: 11ch; font-size: clamp(39px, 3.8vw, 58px); line-height: 1.03; }
.crew-world-showcase .section-copy > p:not(.eyebrow) { margin: 0; }
.crew-world-showcase .inline-actions { gap: 14px; margin-top: 2px; }
.crew-world-note { padding: 17px 19px; border-left: 3px solid #35e8ff; border-radius: 0 16px 16px 0; color: #c6e7ee; line-height: 1.7; background: rgba(0,242,254,.06); }
.crew-world-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.crew-world-meta span { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 5px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: #aebcd0; background: rgba(4, 12, 24, .45); font-size: .78rem; }
.crew-world-meta strong { color: #5ceeff; font-size: 1.15rem; line-height: 1; }
.crew-world-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.crew-world-grid article { min-width: 0; display: grid; align-content: start; gap: 12px; min-height: 204px; padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(7, 12, 25, .6); }
.crew-world-grid article:nth-child(2) { border-color: rgba(180, 96, 255, .32); }
.crew-world-grid article:nth-child(3) { border-color: rgba(255, 211, 103, .28); }
.crew-world-grid article:nth-child(4) { border-color: rgba(91, 245, 178, .27); }
.crew-world-grid span { color: #35e8ff; font-size: .73rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.crew-world-grid strong { color: #fff; font-size: clamp(1.08rem, 2vw, 1.34rem); line-height: 1.2; }
.crew-world-grid p { margin: 0; color: #aebcd0; line-height: 1.62; }

.live-showcase,
.status-cta {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 4vw, 46px);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-cta {
  align-items: stretch;
  flex-direction: column;
}

.legal-cta .section-copy.compact {
  max-width: 720px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.legal-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(0, 242, 254, .2);
  border-radius: 20px;
  background: rgba(5, 8, 14, .58);
  padding: 24px;
}

.legal-card.app-legal-card {
  border-color: rgba(212, 0, 212, .24);
}

.legal-badge {
  width: fit-content;
  border: 1px solid rgba(0, 242, 254, .26);
  border-radius: 999px;
  color: var(--cyan);
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-legal-card .legal-badge {
  border-color: rgba(212, 0, 212, .3);
  color: #ff8eff;
}

.legal-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 23px;
}

.legal-card p {
  flex: 1;
  margin-top: 10px;
}

.legal-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.legal-card-actions .neon-button {
  min-width: 0;
  flex: 1;
}

.live-beam {
  min-width: min(100%, 310px);
  border: 1px solid rgba(0, 242, 254, .22);
  border-radius: 22px;
  background: rgba(5, 8, 14, .52);
  padding: 22px;
}

.pulse-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 28px rgba(56, 248, 169, .72);
}

.live-beam strong,
.live-beam small { display: block; }
.live-beam strong { margin-top: 12px; font-size: 24px; }
.live-beam small { margin-top: 8px; color: var(--soft); font-size: 13px; }

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
}

.reward-stack {
  position: relative;
  display: grid;
  gap: 14px;
}

.reward-stack article {
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(7, 10, 18, .58);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.reward-stack article:nth-child(2) { margin-left: 46px; border-color: rgba(212, 0, 212, .26); }
.reward-stack article:nth-child(3) { margin-left: 92px; border-color: rgba(0, 242, 254, .28); }

.link-strip {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.orbital-links,
.command-flow,
.dynamic-rail,
.team-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.orbital-links { justify-content: flex-end; }
.command-flow,
.dynamic-rail,
.team-ribbon { margin-top: 28px; }

.orbital-links a,
.command-flow article,
.dynamic-rail article,
.team-ribbon article {
  flex: 1 1 250px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 242, 254, .1), transparent 8rem),
    rgba(7, 10, 18, .54);
  padding: 20px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.orbital-links a {
  min-width: 150px;
  max-width: 220px;
  padding: 16px;
}

.orbital-links a:hover,
.command-flow article:hover,
.team-ribbon article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 242, 254, .34);
  box-shadow: 0 0 32px rgba(0, 242, 254, .1);
}

.section-shell,
.clip-lab,
.team-section { padding: clamp(24px, 4vw, 44px); }

.reward-stack span,
.command-flow span,
.dynamic-rail span,
.team-ribbon span,
.orbital-links span {
  display: inline-flex;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.orbital-links span {
  display: block;
  color: white;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.reward-stack strong,
.command-flow strong,
.dynamic-rail strong,
.team-ribbon strong {
  display: block;
  margin-top: 10px;
  color: white;
  font-size: 22px;
}

.orbital-links small,
.team-ribbon small {
  display: block;
  margin-top: 8px;
  color: #9ba8bb;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.reward-stack p,
.command-flow p,
.dynamic-rail p {
  margin: 10px 0 0;
  color: #aeb9ca;
  font-size: 14px;
  line-height: 1.65;
}

.dynamic-rail .clip-day-card {
  flex-basis: 520px;
  min-height: 210px;
  border-color: rgba(0, 242, 254, .32);
}

.dynamic-rail .empty-state,
.dynamic-rail .clip-empty-card {
  flex-basis: 100%;
  min-height: 190px;
  border-style: dashed;
  border-color: rgba(0, 242, 254, .28);
}

.dynamic-rail a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
}

.clip-credit { color: #9aeaff !important; font-weight: 900; }
.team-ribbon article:nth-child(2n) { transform: translateY(18px); }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 2px 0;
  color: #7f8ca0;
  font-size: 12px;
}

footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe7f5;
  font-weight: 950;
}

footer img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; }
  .desktop-nav,
  .header-cta { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary {
    width: 46px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 12px;
    border: 1px solid rgba(0, 242, 254, .42);
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
    background: rgba(5, 8, 15, .52);
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background: #eaf7ff;
    transition: transform .2s ease, opacity .2s ease;
  }
  .mobile-menu[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-menu[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;
    display: grid;
    width: min(320px, calc(100vw - 28px));
    padding: 14px;
    border: 1px solid rgba(0, 242, 254, .28);
    border-radius: 18px;
    background: rgba(7, 10, 19, .98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45), 0 0 32px rgba(0, 242, 254, .1);
  }
  .mobile-menu-panel p {
    margin: 0 0 7px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .mobile-menu-panel a {
    min-height: 43px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 10px;
    color: #e2ecf8;
    font-size: 13px;
    font-weight: 850;
  }
  .mobile-menu-panel a:hover { background: rgba(0, 242, 254, .09); }
  .mobile-menu-panel .mobile-donate {
    margin: 5px 0;
    border: 1px solid rgba(212, 0, 212, .48);
    background: linear-gradient(135deg, rgba(212, 0, 212, .17), rgba(0, 242, 254, .08));
    color: #fff;
  }
  .mobile-menu-panel .mobile-discord {
    margin-top: 6px;
    border: 1px solid rgba(0, 242, 254, .32);
    color: #fff;
  }
  .launch-hero,
  .link-strip,
  .split-panel { grid-template-columns: 1fr; }
  .launch-hero {
    padding: clamp(34px, 6vw, 54px);
  }
  .phone-stage {
    min-height: 580px;
    width: min(100%, 680px);
    justify-self: center;
  }
  .phone-main { left: 10%; }
  .phone-secondary { right: 10%; }
  .hero-footer-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }
  .orbital-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  main {
    width: calc(100vw - 24px);
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
    padding: 18px 0 38px;
  }
  .site-header {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 9px 12px;
  }
  .brand { gap: 9px; }
  .brand img { width: 40px; height: 40px; border-radius: 12px; }
  .brand strong { font-size: 12px; }
  .brand small { display: none; }
  .header-donate {
    min-height: 40px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: .045em;
  }
  .mobile-menu summary {
    width: 42px;
    height: 40px;
    padding: 0 10px;
  }
  .launch-hero {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-inline: auto;
    padding: 26px 16px 28px;
    border-radius: 26px;
    display: block;
  }

  .hero-copy,
  .hero-subline,
  .signal-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: clamp(27px, 8vw, 32px);
    line-height: 1.04;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-subline {
    font-size: 15px;
    line-height: 1.5;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 9px;
    margin-top: 22px;
  }

  .inline-actions {
    flex-direction: column;
    width: 100%;
  }

  .legal-quicklinks {
    flex-direction: column;
    width: 100%;
  }

  .legal-quicklinks a {
    width: 100%;
  }

  .hero-actions .neon-button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding-inline: 7px;
    font-size: 9px;
    letter-spacing: .045em;
  }

  .inline-actions .neon-button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  .signal-row {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 22px;
  }
  .signal-row article {
    min-height: 68px;
    padding: 11px 8px;
    border-radius: 14px;
  }
  .signal-row strong { font-size: 18px; }
  .signal-row span {
    margin-top: 7px;
    font-size: 9px;
    line-height: 1.18;
  }
  .phone-stage {
    display: none;
    min-height: 500px;
    margin-top: 16px;
    width: 100%;
  }
  .phone { width: min(228px, 66vw); border-radius: 38px; }
  .phone-main {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
  }
  .phone-secondary {
    width: min(206px, 58vw);
    top: 96px;
    right: 0;
    transform: rotate(8deg);
  }
  .phone-screen {
    min-height: 420px;
    border-radius: 31px;
    padding: 42px 15px 15px;
  }
  .phone-secondary .phone-screen { min-height: 390px; }
  .phone-screen h2 { font-size: 25px; }
  .hero-footer-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 18px;
  }
  .developer-note,
  .app-availability {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
  }
  .contact-route { padding: 8px; }
  .contact-route-copy strong {
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.15;
  }
  .contact-route-copy small { font-size: 8px; }
  .contact-note-head strong { font-size: 16px; }
  .app-availability-features { grid-template-columns: 1fr; }
  .app-store-buttons { grid-template-columns: 1fr; }
  .app-availability-status { grid-template-columns: 9px minmax(0, 1fr); }
  .app-availability-status small { grid-column: 2; }
  .link-strip,
  .split-panel,
  .economy-showcase,
  .live-showcase,
  .section-shell,
  .clip-lab,
  .team-section,
  .status-cta {
    border-radius: 22px;
    padding: 22px;
  }
  .live-showcase,
  .status-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .economy-showcase { grid-template-columns: 1fr; }
  .economy-grid { grid-template-columns: 1fr; }
  .economy-card { min-height: 180px; }
  .economy-guide { grid-template-columns: 1fr; }
  .economy-step-grid { grid-template-columns: 1fr; }
  .economy-step-grid article { min-height: 0; }
  .economy-sync-note { margin-top: 0; }
  .crew-world-showcase { grid-template-columns: 1fr; gap: 30px; padding: 26px; }
  .crew-world-showcase .section-copy { gap: 20px; }
  .crew-world-showcase .section-copy h2 { max-width: none; }
  .crew-world-meta span { flex: 1 1 84px; }
  .crew-world-grid { grid-template-columns: 1fr; }
  .crew-world-grid article { min-height: 0; padding: 20px; }
  .legal-actions {
    justify-content: flex-start;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-card-actions {
    flex-direction: column;
  }
  .section-copy h2,
  .live-showcase h2,
  .status-cta h2 { font-size: 34px; }
  .orbital-links a { max-width: none; }
  .reward-stack article,
  .reward-stack article:nth-child(2),
  .reward-stack article:nth-child(3) { margin-left: 0; }
  .team-ribbon article:nth-child(2n) { transform: none; }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
