@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  /* Prefer the known-good variable TTF so weight 600 matches the reference */
  src: url("../assets/fonts/Outfit-Variable.ttf") format("truetype");
}

:root {
  --bg: #07080c;
  --text: #f4f6f8;
  --muted: #8b93a7;
  --mint: #3dcea2;
  --rose: #fb7185;
  --hairline: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.landing {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Text wordmark — crisp at any DPR (no scaled PNG) */
.wordmark {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-synthesis: none;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark-swing {
  color: #ffffff;
}

.wordmark-21 {
  color: var(--mint);
}

a.wordmark:hover {
  text-decoration: none;
  opacity: 0.92;
}

.wordmark-hero {
  margin: 28px 0 16px;
  font-size: clamp(2.75rem, 9vw, 3.5rem);
}

.wordmark-nav {
  font-size: 1.35rem;
}

.wordmark-go {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 32px;
}

.icon {
  width: 128px;
  height: 128px;
  border-radius: 28px;
  display: block;
}

.tagline {
  margin: 0 0 36px;
  max-width: 420px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.store-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.store-badges a {
  display: block;
  line-height: 0;
}

.store-badges img {
  height: 52px;
  width: auto;
  max-width: 180px;
  display: block;
}

.landing-footer {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding: 20px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
}

.landing-footer a {
  color: var(--muted);
  text-decoration: none;
}

.landing-footer a:hover {
  color: var(--text);
}

@media (min-width: 480px) {
  .store-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
