:root {
  --bg: #03060d;
  --card: rgba(7, 13, 24, 0.92);
  --line: rgba(78, 133, 255, 0.16);
  --text: #f3f7ff;
  --muted: rgba(214, 225, 255, 0.72);
  --shadow-red: rgba(255, 32, 71, 0.35);
  --shadow-blue: rgba(22, 138, 255, 0.3);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 60, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 140, 255, 0.12), transparent 25%),
    linear-gradient(180deg, #02040a 0%, #040912 100%);
  color: var(--text);
}

a { color: inherit; }

.page-shell {
  width: min(100%, 1660px);
  margin: 0 auto;
  padding: 14px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 2px 16px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2648, #1486ff);
  box-shadow: 0 0 20px var(--shadow-red), 0 0 18px var(--shadow-blue);
}

.brand-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.landing-stage {
  display: grid;
  gap: 16px;
}

.hero-card {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.hero-card::before {
  left: -40px;
  bottom: -40px;
  background: rgba(255, 31, 78, 0.18);
}
.hero-card::after {
  right: -40px;
  left: auto;
  bottom: -55px;
  background: rgba(28, 126, 255, 0.18);
}

.artboard {
  position: relative;
  width: 100%;
}

.artboard img {
  display: block;
  width: 100%;
  height: auto;
}

.artboard-mobile { display: none; }

.hotspot {
  position: absolute;
  display: block;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hotspot:focus-visible,
.hotspot:hover {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Fixed click zones matched to the actual button positions on the artwork */
.desktop-download { left: 8.59%; top: 36.23%; width: 21.22%; height: 5.86%; }
.desktop-support  { left: 73.83%; top: 87.40%; width: 17.71%; height: 4.10%; }
.mobile-download  { left: 8.32%; top: 27.36%; width: 36.32%; height: 3.62%; }
.mobile-support   { left: 22.53%; top: 93.54%; width: 29.37%; height: 2.42%; border-radius: 14px; }

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.info-strip p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.info-strip strong {
  color: var(--text);
}

@media (max-width: 980px) {
  .page-shell { padding: 10px; }
  .topbar {
    padding-bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .artboard-desktop { display: none; }
  .artboard-mobile { display: block; }
  .hero-card { border-radius: 22px; }
  .info-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .info-strip p {
    font-size: 13px;
    padding: 13px 14px;
  }
}

@media (max-width: 640px) {
  .page-shell { padding: 8px; }
  .brand-pill {
    padding: 9px 12px;
    gap: 8px;
  }
  .brand-text { font-size: 14px; }
  .topbar-note { font-size: 12px; }
  .hero-card { border-radius: 18px; }
  .hotspot {
  position: absolute;
  display: block;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
}


.hotspot:active {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
