:root {
  --bg: #07031c;
  --bg-soft: #0d0726;
  --panel: #11092d;
  --panel-2: #190d3b;
  --line: rgba(203, 96, 255, 0.22);
  --text: #f7f8fb;
  --muted: #b5afd0;
  --accent: #ff3bdd;
  --accent-strong: #db16ff;
  --purple: #7b35ff;
  --cyan: #00d9ff;
  --orange: #ffad38;
  --max: 1180px;
  --radius: 24px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 217, 255, 0.14), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 59, 221, 0.16), transparent 30%),
    radial-gradient(circle at 50% 55%, rgba(123, 53, 255, 0.08), transparent 42%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.16;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 59, 221, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #06110c;
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 10, 14, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.brand img {
  border-radius: 9px;
  box-shadow: 0 0 20px rgba(255, 35, 224, 0.3), 0 0 12px rgba(0, 217, 255, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #bec5d0;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a {
  transition: color 150ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: white;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(117, 242, 178, 0.45);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  fill: currentColor;
}

.button-primary {
  background: linear-gradient(105deg, var(--cyan), var(--purple) 48%, var(--accent));
  color: white;
  box-shadow: 0 12px 42px rgba(177, 34, 255, 0.3);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}

.button-primary:hover {
  background: linear-gradient(105deg, #38e4ff, #914fff 48%, #ff65e7);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-text {
  padding-inline: 8px;
  color: #d6dbe3;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 13px;
}

.button-large {
  min-height: 56px;
  padding-inline: 26px;
}

.hero {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  min-height: 780px;
  margin: 0 auto;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  align-items: center;
  gap: 54px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 440px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.hero-glow-one {
  top: 100px;
  left: -40px;
  background: var(--purple);
}

.hero-glow-two {
  right: -40px;
  bottom: 80px;
  background: var(--accent);
}

.eyebrow,
.card-kicker {
  color: #b0b8c5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(117, 242, 178, 0.65);
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(56px, 6.8vw, 92px);
  line-height: 0.91;
  letter-spacing: -0.068em;
  font-weight: 950;
}

h1 em,
h2 em {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #8c43ff 45%, var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.download-note {
  margin: 14px 0 0;
  color: #aeb7c4;
  font-size: 12px;
  font-weight: 700;
}

.download-note span { margin-right: 6px; color: var(--accent); }
.warning-jump {
  display: inline-flex;
  margin-top: 8px;
  color: #ffcf8a;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}
.warning-jump:hover,
.warning-jump:focus-visible { color: white; text-decoration: underline; }

.platform-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #747e8e;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.platform-row i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #49515d;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.game-scene {
  position: absolute;
  inset: 34px 0 28px 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 58, 226, 0.52);
  border-radius: 28px;
  background: #080321;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.56), -8px 0 38px rgba(0, 217, 255, 0.13), 8px 0 38px rgba(255, 59, 221, 0.16);
}

.game-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 3, 28, 0.08), rgba(7, 3, 28, 0.34) 50%, rgba(7, 3, 28, 0.9));
}

.hero-brand-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  filter: saturate(1.12) contrast(1.04);
}

.scene-horizon,
.scene-mountain {
  display: none;
}

.scene-horizon {
  position: absolute;
  right: -10%;
  bottom: 0;
  width: 85%;
  height: 52%;
  background: linear-gradient(145deg, #242a2d, #0b0e11);
  clip-path: polygon(0 47%, 22% 30%, 38% 46%, 56% 18%, 75% 38%, 100% 10%, 100% 100%, 0 100%);
}

.scene-mountain {
  position: absolute;
  bottom: 27%;
  width: 60%;
  height: 48%;
  background: #252d3b;
  clip-path: polygon(0 100%, 42% 10%, 100% 100%);
}

.mountain-one { right: -5%; }
.mountain-two { right: 34%; bottom: 19%; background: #171d28; }

.scene-hud {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hud-top { top: 22px; right: 26px; }
.hud-bottom { right: 26px; bottom: 22px; display: flex; align-items: baseline; gap: 6px; }
.hud-bottom b { color: white; font-size: 22px; }

.crosshair {
  position: absolute;
  z-index: 2;
  top: 48%;
  right: 24%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.crosshair::before,
.crosshair::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.55);
}

.crosshair::before { width: 34px; height: 1px; top: 11px; left: -6px; }
.crosshair::after { width: 1px; height: 34px; top: -6px; left: 11px; }

.app-window {
  position: relative;
  z-index: 3;
  width: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 19px;
  background: white;
  color: #11151b;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.62), 0 0 0 7px rgba(182, 52, 255, 0.09), 0 0 42px rgba(255, 40, 220, 0.2);
  transform: translateX(102px) rotate(-1deg) scale(0.88);
}

.app-topbar {
  height: 43px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #050607;
  color: white;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.app-back { font-size: 20px; font-weight: 300; }
.app-actions { display: flex; gap: 11px; font-size: 15px; }

.feed-canvas {
  min-height: 352px;
  padding: 24px 20px 16px;
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  background: #f7f7f8;
}

.video-card {
  position: relative;
  min-height: 298px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(155deg, #9d55ff, #3a215d 40%, #0a1320 82%);
}

.video-noise {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(12deg, transparent 0 11px, rgba(255, 255, 255, 0.025) 12px 13px);
}

.video-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one { width: 150px; height: 150px; top: 30px; left: -30px; background: rgba(255, 91, 145, 0.72); }
.orb-two { width: 180px; height: 180px; right: -85px; bottom: 28px; background: rgba(69, 238, 207, 0.45); }

.video-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 32px;
  color: white;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.03;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.video-progress {
  position: absolute;
  right: 12px;
  bottom: 14px;
  left: 12px;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.26);
}

.video-progress span { display: block; width: 66%; height: 100%; background: white; }

.social-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding-block: 8px;
}

.social-rail div { text-align: center; }
.social-rail span { display: block; font-size: 28px; line-height: 1; }
.social-rail small { display: block; margin-top: 4px; font-size: 8px; font-weight: 800; }

.app-nav {
  height: 55px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dedfe3;
  background: white;
  font-size: 22px;
}

.app-nav b { padding: 5px 7px; border-radius: 8px; background: #11151b; color: white; font-size: 11px; }

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(16, 20, 27, 0.86);
  color: #d9dee7;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
}

.chip-top { top: 52px; left: 48px; }
.chip-bottom { right: 24px; bottom: 46px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }

.trust-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 25px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.trust-strip div { display: flex; align-items: baseline; justify-content: center; gap: 10px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { color: var(--accent); font-size: 28px; font-weight: 950; }
.trust-strip span { color: var(--muted); font-size: 12px; font-weight: 700; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading { max-width: 700px; margin-bottom: 54px; }
.section-heading h2,
.control-copy h2,
.cta-inner h2 {
  margin-bottom: 20px;
  font-size: clamp(39px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.section-heading > p,
.control-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover { transform: translateY(-4px); border-color: rgba(255, 59, 221, 0.48); box-shadow: 0 18px 55px rgba(102, 28, 196, 0.14); }
.feature-card-wide { grid-column: 1 / -1; min-height: 260px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 26px; }
.feature-card h3 { max-width: 440px; margin: 12px 0 12px; font-size: 25px; line-height: 1.1; letter-spacing: -0.035em; }
.feature-card p { max-width: 520px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 217, 255, 0.34);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(0, 217, 255, 0.1), rgba(255, 59, 221, 0.09));
  color: var(--cyan);
  font-size: 24px;
}

.feature-card-wide .feature-icon { margin: 0; }

.mini-platforms { display: flex; gap: 8px; }
.mini-platforms span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 15px; background: var(--panel-2); font-size: 19px; font-weight: 950; }
.mini-platforms span:nth-child(1) { color: #ff5378; }
.mini-platforms span:nth-child(2) { color: #ffad59; }
.mini-platforms span:nth-child(3) { color: #ff5252; }
.mini-platforms span:nth-child(4) { color: #72a5ff; }

.workflow-panel {
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: radial-gradient(circle at 80% 15%, rgba(255, 59, 221, 0.16), transparent 35%), radial-gradient(circle at 10% 90%, rgba(0, 217, 255, 0.08), transparent 32%), var(--bg-soft);
}

.step-list { margin: 0; padding: 0; list-style: none; }
.step-list li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.step-number { color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; }
.step-list h3 { margin-bottom: 8px; font-size: 22px; }
.step-list p { max-width: 600px; margin-bottom: 0; color: var(--muted); line-height: 1.55; }

.control-showcase { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 80px; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { margin: 13px 0; color: #d4d9e1; font-size: 14px; }
.check-list span { margin-right: 10px; color: var(--accent); font-weight: 900; }

.settings-mockup {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: #090b0f;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.settings-title { height: 56px; padding: 0 18px; display: flex; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); font-size: 11px; letter-spacing: 0.1em; }
.settings-title span { font-size: 20px; }
.settings-card { margin: 20px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.setting-row { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); color: #d5dae2; font-size: 13px; }
.setting-row:last-child { border-bottom: 0; }
kbd { min-width: 44px; padding: 7px 10px; border: 1px solid rgba(255, 255, 255, 0.16); border-bottom-width: 3px; border-radius: 8px; background: #1a2029; color: white; text-align: center; font: 800 11px/1 ui-monospace, monospace; }

.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 16px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent); font-size: 22px; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { max-width: 650px; padding: 0 50px 24px 0; color: var(--muted); line-height: 1.65; }

.install-section { padding-top: 60px; }
.install-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: start; gap: 28px; }
.install-steps { margin: 0; padding: 0; list-style: none; border-block: 1px solid var(--line); }
.install-steps li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.install-steps li:last-child { border-bottom: 0; }
.install-steps > li > span { padding-top: 4px; color: var(--accent); font-size: 12px; font-weight: 950; letter-spacing: 0.14em; }
.install-steps h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.025em; }
.install-steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.install-steps strong { color: #e7ebf1; }

.download-trust-card {
  padding: 30px;
  border: 1px solid rgba(0, 217, 255, 0.26);
  border-radius: 26px;
  background: radial-gradient(circle at 100% 0, rgba(255, 59, 221, 0.14), transparent 34%), var(--bg-soft);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.official-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 10px; font-weight: 950; letter-spacing: 0.12em; }
.official-badge span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(117, 242, 178, 0.12); }
.download-trust-card h3 { margin: 20px 0 10px; font-size: 29px; letter-spacing: -0.04em; }
.download-trust-card > p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.download-trust-card ul { margin: 0 0 20px; padding: 0; list-style: none; border-block: 1px solid var(--line); }
.download-trust-card li { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); font-size: 12px; }
.download-trust-card li:last-child { border-bottom: 0; }
.download-trust-card li span { color: var(--muted); }
.download-trust-card li strong { text-align: right; }
.download-trust-card .button { width: 100%; margin-top: 22px; }
.warning-note {
  margin: 24px 0 0;
  padding: 14px;
  border: 1px solid rgba(255, 173, 89, 0.26);
  border-radius: 14px;
  background: rgba(255, 173, 89, 0.08);
  color: #d7dce5;
  font-size: 12px;
  line-height: 1.55;
}
.warning-note strong { color: #ffcf8a; }
.checksum summary { cursor: pointer; color: #cbd2dc; font-size: 12px; font-weight: 800; }
.checksum code { display: block; margin-top: 10px; padding: 12px; overflow-wrap: anywhere; border-radius: 10px; background: #070910; color: #8fe9ff; font: 10px/1.6 ui-monospace, monospace; text-align: left; }

.cta-section {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  margin: 30px auto 0;
  padding: 100px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 59, 221, 0.36);
  border-radius: 34px;
  background: linear-gradient(145deg, #11072d, #08031e);
  text-align: center;
}

.cta-section::before { position: absolute; inset: 0; content: ""; opacity: 0.7; background: radial-gradient(circle at 20% 0, rgba(0, 217, 255, 0.2), transparent 36%), radial-gradient(circle at 80% 0, rgba(255, 59, 221, 0.22), transparent 38%); }
.cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta-inner img { margin-bottom: 24px; border-radius: 20px; box-shadow: 0 0 45px rgba(255, 59, 221, 0.26), 0 0 28px rgba(0, 217, 255, 0.18); }
.cta-inner p { margin-bottom: 28px; color: var(--muted); font-size: 17px; }
.cta-inner small { display: block; margin-top: 15px; color: #707987; font-size: 10px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  min-height: 130px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: #737d8c;
  font-size: 11px;
}

.site-footer > span { justify-self: end; }
.site-footer p { margin: 0; }
.site-footer .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.site-footer .footer-links a:hover, .site-footer .footer-links a:focus-visible { color: white; }

.download-dialog {
  width: min(430px, calc(100% - 32px));
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #10072a;
  color: white;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.download-dialog::backdrop { background: rgba(2, 3, 5, 0.76); backdrop-filter: blur(8px); }
.download-dialog img { display: block; margin: 0 auto 18px; border-radius: 16px; box-shadow: 0 0 34px rgba(255, 59, 221, 0.25); }
.download-dialog h2 { margin: 10px 0; font-size: 27px; letter-spacing: -0.04em; }
.download-dialog p { color: var(--muted); line-height: 1.55; }
.download-dialog code { color: var(--accent); }
.dialog-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border: 0; border-radius: 10px; background: rgba(255, 255, 255, 0.05); cursor: pointer; font-size: 22px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-delay { transition-delay: 100ms; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { margin-top: 10px; }
  .game-scene { inset-inline: 8%; }
  .feature-card-wide { grid-template-columns: auto 1fr; }
  .mini-platforms { grid-column: 2; }
  .control-showcase, .faq, .install-layout { grid-template-columns: 1fr; gap: 50px; }
  .settings-mockup { max-width: 680px; width: 100%; }
  .faq .section-heading { margin-bottom: 0; }
}

@media (max-width: 720px) {
  .nav-shell { width: min(calc(100% - 28px), var(--max)); height: 66px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 66px; right: 14px; left: 14px; padding: 18px; display: grid; gap: 6px; border: 1px solid var(--line); border-radius: 18px; background: rgba(13, 16, 22, 0.98); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: 160ms ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 11px 8px; }
  .site-nav .button { margin-top: 8px; }
  .hero, .section, .trust-strip, .cta-section, .site-footer { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: auto; padding: 112px 0 65px; }
  .hero-glow { width: 100%; }
  .hero-glow-one { left: 0; }
  .hero-glow-two { right: 0; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-lede { font-size: 16px; }
  .button-primary { width: 100%; }
  .button-text { width: 100%; }
  .hero-visual { min-height: 540px; }
  .game-scene { inset: 38px 0 25px; }
  .app-window { width: min(280px, 78vw); transform: translateX(34px) rotate(-1deg) scale(0.92); }
  .floating-chip { font-size: 9px; }
  .chip-top { top: 50px; left: 12px; }
  .chip-bottom { right: 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { min-height: 64px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .section { padding: 86px 0; }
  .section-heading { margin-bottom: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-wide { grid-column: auto; min-height: auto; padding: 24px; display: block; }
  .feature-card-wide .feature-icon, .feature-icon { margin-bottom: 28px; }
  .mini-platforms { margin-top: 24px; flex-wrap: wrap; }
  .workflow-panel { padding: 26px 22px; }
  .step-list li { grid-template-columns: 44px 1fr; gap: 12px; }
  .settings-card { margin: 12px; padding: 16px; }
  .faq-list summary { font-size: 14px; }
  .cta-section { padding: 75px 22px; }
  .site-footer { padding: 32px 0; grid-template-columns: 1fr auto; }
  .site-footer .footer-links { grid-column: 1 / -1; grid-row: 2; display: flex; }
}

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