:root {
  color-scheme: dark;
  --bg: #2b2536;
  --bg-deep: #211c2a;
  --bg-glow: rgba(255, 107, 107, 0.1);
  --surface: #302b3c;
  --border: rgba(185, 179, 199, 0.12);
  --text: #ffffff;
  --muted: #b9b3c7;
  --accent: #ff6b6b;
  font-family: "Outfit", "Avenir Next", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(70, 61, 86, 0.72) 0%, rgba(70, 61, 86, 0.18) 28%, transparent 54%),
    radial-gradient(circle at 12% 18%, var(--bg-glow) 0%, transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(185, 179, 199, 0.08) 0%, transparent 22%),
    linear-gradient(180deg, #342d41 0%, var(--bg) 42%, var(--bg-deep) 100%);
  padding: 2rem 2.5rem 3rem;
}

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

a:hover {
  text-decoration: underline;
}

p {
  line-height: 1.6;
}

.page-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  position: relative;
}

.site-header {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wordmark-stacked {
  height: 140px;
  width: auto;
}

.content {
  display: grid;
  gap: 2rem;
  position: relative;
}

.section-kicker {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 0.6rem;
  text-align: center;
}

.intro-block {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.5rem 0 0.75rem;
  max-width: 44rem;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--text);
  text-shadow: 0 0 24px rgba(255, 107, 107, 0.08);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 16px 0 48px;
}

.text-panel {
  min-height: 0;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.text-panel p {
  font-size: 1rem;
  color: rgba(246, 242, 255, 0.96);
  line-height: 1.7;
}

.download-section {
  padding: 3rem 0 1.25rem;
  text-align: center;
}

.download-heading {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-badge {
  display: block;
  transition: transform 0.15s ease;
}

.store-badge:hover {
  text-decoration: none;
  transform: scale(1.04);
}

.store-badge svg {
  display: block;
  height: 48px;
  width: auto;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 760px) {
  body {
    padding: 1.5rem 1.25rem 2.5rem;
  }

  .wordmark {
    height: 36px;
  }

  .intro-text {
    font-size: 1.2rem;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer {
    margin-top: 1rem;
  }
}
