/*
 * Recall Parade landing — static, minimal, no JS.
 * Tokens mirrored from design-system/tokens/tokens.css (rp- prefix).
 */

:root {
  --rp-surface-card: #F2E8D5;
  --rp-surface-app: #1E2A44;
  /* sky color baked into assets/hero-night-fair.png — dark sections use it to blend seamlessly */
  --rp-hero-navy: #062E55;
  --rp-surface-elevated: #FFFBF0;
  --rp-brand-red: #E23B47;
  --rp-brand-gold: #F2B53C;
  --rp-brand-teal: #2BB5A0;
  --rp-brand-plum: #5B3A8C;
  --rp-accent-coral: #FF7A59;
  --rp-text-ink: #22201C;
  --rp-text-on-dark: #FBF4E4;
  --rp-text-muted: #7A7263;
  --rp-font-display: "Fredoka", system-ui, sans-serif;
  --rp-font-ui: "Nunito", system-ui, sans-serif;
  --rp-radius-md: 12px;
  --rp-radius-lg: 20px;
  --rp-radius-tile: 16px;
  --rp-radius-pill: 999px;
  --rp-elevation-1: 0 2px 8px rgba(34, 32, 28, 0.12);
  --rp-elevation-2: 0 4px 16px rgba(34, 32, 28, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--rp-font-ui);
  font-size: 17px;
  line-height: 1.6;
  color: var(--rp-text-ink);
  background: var(--rp-surface-card);
}

img { max-width: 100%; display: block; }

a { color: var(--rp-brand-plum); }

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 720px; }

h1, h2, h3 {
  font-family: var(--rp-font-display);
  line-height: 1.15;
  margin: 0 0 16px;
}

/* ---- nav ---- */
.nav {
  background: var(--rp-surface-card);
  border-bottom: 1px solid rgba(34, 32, 28, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--rp-text-ink);
}

.brand__icon { width: 36px; height: 36px; }

.brand__word {
  font-family: var(--rp-font-display);
  font-weight: 600;
  font-size: 20px;
}

/* ---- buttons ---- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--rp-radius-pill);
  font-family: var(--rp-font-display);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.btn--primary {
  background: var(--rp-accent-coral);
  color: var(--rp-text-ink);
  box-shadow: var(--rp-elevation-1);
}

.btn--ghost {
  border: 2px solid var(--rp-text-ink);
  color: var(--rp-text-ink);
}

.nav .btn--ghost { padding: 8px 18px; font-size: 14px; }

/* ---- hero ---- */
.hero {
  background: var(--rp-hero-navy);
  color: var(--rp-text-on-dark);
  text-align: center;
  overflow: hidden;
}

.hero__inner { padding: 72px 24px 0; }

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--rp-text-on-dark);
}

.hero h1 .accent { color: var(--rp-brand-gold); }

.hero__sub {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 19px;
  color: rgba(251, 244, 228, 0.85);
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.hero__note {
  font-size: 14px;
  color: rgba(251, 244, 228, 0.6);
  margin: 0 0 40px;
}

.hero__art { width: 100%; }

.hero__art img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- sections ---- */
.section { padding: 72px 0; }

.section--elevated { background: var(--rp-surface-elevated); }

.section__title {
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
}

.section__lede {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--rp-text-muted);
}

/* ---- how it works ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--rp-surface-elevated);
  border-radius: var(--rp-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--rp-elevation-1);
  text-align: center;
}

.section--elevated .step { background: var(--rp-surface-card); }

.step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--rp-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--rp-text-on-dark);
  margin-bottom: 14px;
}

.step__badge--teal { background: var(--rp-brand-teal); }
.step__badge--gold { background: var(--rp-brand-gold); color: var(--rp-text-ink); }
.step__badge--plum { background: var(--rp-brand-plum); }

.step h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }

.step p { margin: 0; color: var(--rp-text-muted); font-size: 15.5px; }

/* ---- roster strip ---- */
.roster {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.roster img {
  width: 120px;
  height: 120px;
  border-radius: var(--rp-radius-tile);
  box-shadow: var(--rp-elevation-1);
  border: 2px solid rgba(34, 32, 28, 0.9);
}

/* ---- features ---- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.feature {
  background: var(--rp-surface-elevated);
  border-radius: var(--rp-radius-md);
  padding: 20px 22px;
  box-shadow: var(--rp-elevation-1);
}

.feature h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }

.feature p { margin: 0; color: var(--rp-text-muted); font-size: 15px; }

/* ---- get the app ---- */
.get {
  background: var(--rp-hero-navy);
  color: var(--rp-text-on-dark);
  text-align: center;
}

.get .section__title { color: var(--rp-text-on-dark); }

.get p { color: rgba(251, 244, 228, 0.8); max-width: 520px; margin: 0 auto 28px; }

.badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-soon {
  display: inline-block;
  padding: 14px 26px;
  border: 2px dashed rgba(251, 244, 228, 0.4);
  border-radius: var(--rp-radius-md);
  color: rgba(251, 244, 228, 0.7);
  font-family: var(--rp-font-display);
  font-size: 15px;
}

/* ---- footer ---- */
.footer {
  background: var(--rp-surface-card);
  border-top: 1px solid rgba(34, 32, 28, 0.08);
  padding: 32px 0;
  font-size: 14px;
  color: var(--rp-text-muted);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a { color: var(--rp-text-muted); }

.footer nav { display: flex; gap: 18px; }

/* ---- legal pages ---- */
.legal { padding: 56px 0 72px; }

.legal h1 { font-size: 36px; }

.legal h2 { font-size: 24px; margin-top: 40px; }

.legal h3 { font-size: 18px; margin-top: 24px; }

.legal__meta { color: var(--rp-text-muted); margin-bottom: 32px; }

.legal__back {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--rp-font-display);
  text-decoration: none;
}

/* ---- responsive ---- */
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero__inner { padding-top: 56px; }
  .roster img { width: 88px; height: 88px; }
}
