: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;
  align-items: center;
  gap: 26px;
  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;
}

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

nav a {
  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;
}

nav a:hover {
  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);
}

.header-cta,
.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-cta: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);
}

.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: min(760px, calc(100vh - 108px));
  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));
}

.developer-note {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 5;
  min-width: 238px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(7, 10, 18, .5);
  padding: 14px 16px;
  backdrop-filter: var(--blur);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.developer-note span,
.developer-note small,
.developer-note a,
.developer-note .email-address { display: block; }
.developer-note span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.developer-note a {
  margin-top: 6px;
  color: #eaf8ff;
  font-size: 13px;
  font-weight: 900;
}
.developer-note .email-address {
  margin-top: 6px;
  color: #eaf8ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.developer-note .email-address span {
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.developer-note small {
  margin-top: 4px;
  color: #98a6bb;
  font-size: 12px;
}

.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,
.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);
}

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

.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: auto auto; }
  nav { display: none; }
  .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%; }
  .developer-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: fit-content;
    margin-top: -18px;
  }
  .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: 68px;
    grid-template-columns: minmax(0, 1fr);
    padding: 10px 14px;
  }
  .brand img { width: 44px; height: 44px; border-radius: 13px; }
  .brand strong { font-size: 13px; }
  .brand small,
  .header-cta { display: none; }
  .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(29px, 8.25vw, 35px);
    line-height: 1.02;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

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

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

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

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

  .signal-row {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .signal-row article {
    min-height: 76px;
  }
  .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; }
  .developer-note {
    width: 100%;
    min-width: 0;
    margin-top: 18px;
    padding: 13px 14px;
  }
  .developer-note .email-address {
    width: 100%;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.15;
  }
  .developer-note small {
    font-size: 11px;
  }
  .link-strip,
  .split-panel,
  .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;
  }
  .legal-actions {
    justify-content: flex-start;
  }
  .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;
  }
}
