:root {
  --purple: #4B00FF;
  --purple-soft: #6B3CFF;
  --ink: #1E1B2E;
  --muted: #6B6B85;
  --bg-top: #F3EEFF;
  --bg-bottom: #FBF7FF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 60%, #fff 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.nav {
  padding: 22px 28px;
  display: flex;
  align-items: center;
}
.wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--purple);
  text-decoration: none;
}

/* Hero logo */
.hero-logo {
  width: 132px;
  height: 132px;
  display: block;
  margin: 0 auto 18px;
}

/* Hero */
main { flex: 1; }
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(75, 0, 255, 0.08);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero .sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
}

/* App store badges */
.badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 12px;
  min-width: 168px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.badge:hover { transform: translateY(-2px); opacity: 0.92; }
.badge svg { flex-shrink: 0; }
.badge-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.badge-text small { font-size: 10px; opacity: 0.85; }
.badge-text strong { font-size: 18px; font-weight: 600; letter-spacing: -0.2px; }

/* Steps */
.steps {
  max-width: 920px;
  margin: 56px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid #ECE6FA;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(75, 0, 255, 0.05);
}
.step .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); }

/* Footer */
footer {
  margin-top: 72px;
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid #ECE6FA;
}
.foot-brand { font-weight: 800; color: var(--purple); margin-bottom: 10px; }
.foot-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.foot-links a:hover { color: var(--purple); }
.copyright { font-size: 12px; color: #A6A2BC; }

/* Responsive */
@media (max-width: 680px) {
  .steps { grid-template-columns: 1fr; }
}
