:root {
  --purple: #857bfa;
  --purple-deep: #6e64e8;
  --purple-soft: rgba(133, 123, 250, 0.16);
  --gold: #fcf513;
  --bg: #857bfa;
  --bg-light: #f4f5f9;
  --card: #ffffff;
  --text: #0e0e0e;
  --text-on-purple: #ffffff;
  --muted: #727274;
  --soft: #727274;
  --line: rgba(14, 14, 14, 0.08);
  --font: "Outfit", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg-light);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; border: 0; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-deep); }
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 40;
  padding: 8px 12px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
}
.skip:focus { top: 12px; color: #fff; }

.wrap {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--purple);
  backdrop-filter: blur(12px);
  border-bottom: none;
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand { display: inline-flex; }
.logo { height: 28px; width: auto; }
.logo-sm { height: 24px; }
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}
.nav a { color: var(--text-on-purple); }
.nav a:hover { color: var(--gold); }
.nav-login {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--text-on-purple) !important;
}
.nav-login:hover { border-color: var(--gold); color: var(--gold) !important; }

.hero {
  padding: 36px 0 20px;
  background: var(--purple);
  color: var(--text-on-purple);
}
.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-on-purple);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.gold { color: var(--gold); font-weight: 800; }
.highlight {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.14em;
}
h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 8vw, 60px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--text-on-purple);
}
.lede {
  margin: 16px 0 0;
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-on-purple);
}
.body, .section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 42em;
  text-wrap: pretty;
}
.hero .body {
  color: rgba(255, 255, 255, 0.92);
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.badge-link img {
  height: 44px;
  width: auto;
}
.badge-link:hover { opacity: 0.88; }
.login-line {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.hero .login-line {
  color: rgba(255, 255, 255, 0.85);
}
.hero .login-line a {
  color: var(--gold);
  font-weight: 600;
}
.hero .login-line a:hover {
  color: #fff;
}
.hero-art img {
  margin: 0 auto;
  width: min(460px, 100%);
}

.section { padding: 64px 0; }
.kicker {
  margin: 0;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4.4vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

#how {
  background: var(--purple);
  color: var(--text-on-purple);
}
#how .kicker {
  color: var(--gold);
}
#how h2 {
  color: var(--text-on-purple);
}
#how .section-lead {
  color: rgba(255, 255, 255, 0.92);
}

.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.card {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px 24px;
}
.step-icon {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}
.step-num {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.step-sub {
  margin: 4px 0 10px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 600;
}
.card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-benefits {
  background: var(--bg-light);
  color: var(--text);
}
.benefits-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.benefits {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.benefits li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.benefit-n {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  font-weight: 800;
}
.benefits h3 { margin-top: 4px; color: var(--text); }
.benefits p {
  margin: 6px 0 0;
  color: var(--muted);
}
.benefits-art img {
  margin: 0 auto;
  width: min(360px, 100%);
}

.section-download {
  padding-bottom: 80px;
  background: var(--bg-light);
  color: var(--text);
}
.download-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.qr-card {
  margin: 0;
  justify-self: start;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 16px 16px 12px;
  width: min(220px, 100%);
  box-shadow: 0 12px 40px rgba(14, 14, 14, 0.08);
}
.qr-card img { width: 100%; height: auto; }
.qr-card figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}
.footer-inner {
  display: grid;
  gap: 16px;
  justify-items: start;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}
.site-footer a { color: var(--soft); }
.site-footer a:hover { color: var(--purple); }
.legal {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

@media (min-width: 800px) {
  .wrap { width: min(1100px, calc(100% - 64px)); }
  .logo { height: 32px; }
  .hero { padding: 56px 0 28px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
  .download-grid {
    grid-template-columns: 1fr auto;
    gap: 48px;
  }
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .site-footer nav { justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 639px) {
  .nav a:not(.nav-login):not(.nav-cta) { display: none; }
}
