:root {
  --bg: #071014;
  --panel: #122128;
  --panel-border: #294b58;
  --text: #e7f6fa;
  --muted: #98beca;
  --accent: #4dd2ff;
  --accent-2: #6df7bc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 0%, #153342 0%, var(--bg) 45%),
    radial-gradient(circle at 90% 90%, #19372c 0%, var(--bg) 50%);
  position: relative;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.glow-a {
  top: 8%;
  left: -40px;
  background: var(--accent);
}

.glow-b {
  right: -40px;
  bottom: 8%;
  background: var(--accent-2);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 64px 0 48px;
}

.hero {
  text-align: center;
  animation: rise 0.55s ease;
}

.app-icon {
  width: 112px;
  height: 112px;
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 16px 0 4px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.1;
}

.lead {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.store-cta-wrap {
  margin-top: 20px;
}

.store-cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: rgba(77, 210, 255, 0.12);
}

.store-cta:hover {
  text-decoration: none;
  background: rgba(77, 210, 255, 0.2);
}

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

.card,
.legal-card {
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(18, 33, 40, 0.92), rgba(11, 22, 28, 0.95));
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(4px);
}

h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

p {
  line-height: 1.7;
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
}

.legal-shell {
  width: min(820px, 92vw);
}

.back-link {
  display: inline-block;
  margin-bottom: 14px;
}

.legal-date {
  margin-top: 10px;
}

@media (max-width: 760px) {
  .shell {
    padding-top: 44px;
  }

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

  .app-icon {
    width: 96px;
    height: 96px;
    border-radius: 20px;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
