/* l8ly.io — brand tokens mirror the app (src/theme/tokens.ts). */
:root {
  --ink: #1a1624;
  --ink-raised: #251e33;
  --purple: #8b7cf6;
  --lavender: #cdbcfd;
  --off-white: #f7f6f3;
  --sage: #b7c9a6;
  --text-soft: #b4acc9;
}

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

body {
  background: var(--ink);
  color: var(--off-white);
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}

.wordmark { width: min(280px, 60vw); height: auto; margin-bottom: 8px; }

.tagline {
  color: var(--lavender);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 500;
  margin: 12px 0 28px;
}

.pitch {
  color: var(--text-soft);
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.6;
  max-width: 26em;
  margin-bottom: 32px;
}

.chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.chip {
  border: 1px solid rgba(247, 246, 243, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.cta {
  display: inline-block;
  background: var(--purple);
  color: var(--off-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 36px;
  border-radius: 999px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.cta:hover { opacity: 0.9; transform: translateY(-1px); }
.cta.secondary { background: transparent; border: 1px solid rgba(247, 246, 243, 0.3); font-weight: 500; }

.code-card {
  background: var(--ink-raised);
  border: 1px solid rgba(139, 124, 246, 0.35);
  border-radius: 22px;
  padding: 28px 36px;
  margin: 8px 0 28px;
}
.code-label { color: var(--text-soft); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.code {
  font-size: clamp(34px, 9vw, 48px);
  font-weight: 700;
  letter-spacing: 0.35em;
  margin-top: 10px;
  color: var(--off-white);
  padding-left: 0.35em; /* balance the trailing letter-spacing */
}

.steps { color: var(--text-soft); font-size: 15px; line-height: 2; margin-bottom: 32px; }
.steps b { color: var(--off-white); font-weight: 600; }

.stack { display: flex; flex-direction: column; gap: 14px; align-items: center; }

.footer { margin-top: 48px; color: rgba(180, 172, 201, 0.5); font-size: 13px; }
.footer a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}
