:root {
  --bg: hsl(220 20% 97%);
  --fg: hsl(222 47% 11%);
  --muted: hsl(220 9% 46%);
  --primary: hsl(220 26% 14%);
  --primary-fg: #fff;
  --accent: hsl(217 91% 60%);
  --card: #fff;
  --border: hsl(220 13% 91%);
  --radius: 0.75rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(220 26% 14% / 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 15px -3px hsl(220 26% 14% / 0.1);
}
header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
header.site img { height: 2.25rem; width: auto; }
header.site nav { display: flex; gap: 1.5rem; align-items: center; }
header.site nav a { color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 500; }
header.site nav a:hover { color: #fff; text-decoration: none; }
.hero {
  background: var(--primary);
  color: var(--primary-fg);
  text-align: center;
  padding: 4rem 0 5rem;
}
.hero img.icon {
  width: 8rem;
  height: 8rem;
  border-radius: 28px;
  margin-bottom: 1.25rem;
}
.hero .kicker {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  margin: 0 0 .75rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.75rem); margin: 0 0 .5rem; line-height: 1.1; }
.hero .sub { font-size: 1.35rem; color: rgba(255,255,255,.8); margin: 0 0 1rem; }
.hero p.lead { max-width: 42rem; margin: 0 auto 1.5rem; color: rgba(255,255,255,.7); }
.badges { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.badges span {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
}
.store-badge img { height: 3.25rem; width: auto; }
section.block { padding: 4rem 0; }
section.block h2 { font-size: 1.75rem; margin: 0 0 1.5rem; }
.shots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  overflow-x: auto;
}
.shots figure { margin: 0; min-width: 180px; }
.shots img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px hsl(220 26% 14% / 0.1);
}
.shots figcaption { text-align: center; color: var(--muted); font-size: .85rem; margin-top: .75rem; }
.steps, .features { display: grid; gap: 1rem; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.35rem 1.5rem;
}
.step { display: flex; gap: 1rem; align-items: flex-start; }
.num {
  flex: 0 0 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background: hsl(217 91% 60% / .12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.features { grid-template-columns: 1fr 1fr; }
.card h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); }
.faq { max-width: 48rem; }
.faq article { border-bottom: 1px solid var(--border); padding: 0 0 1.25rem; margin: 0 0 1.25rem; }
.faq h3 { margin: 0 0 .4rem; }
.faq p { margin: 0; color: var(--muted); }
.cta {
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.cta h2 { color: #fff; margin-top: 0; }
.cta p { color: rgba(255,255,255,.7); max-width: 36rem; margin: 0 auto 1.5rem; }
.cta-links { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }
.cta-links a { color: rgba(255,255,255,.75); font-size: .9rem; }
.legal { max-width: 46rem; padding: 6rem 0 4rem; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); margin: 0 0 .5rem; }
.meta { color: var(--muted); font-size: .9rem; margin: 0 0 1.25rem; }
.legal h2 { font-size: 1.25rem; margin: 2rem 0 .75rem; }
.legal p { color: var(--muted); }
.legal ul { color: var(--muted); padding-left: 1.2rem; }
.crumbs { color: var(--muted); font-size: .875rem; padding: 1.25rem 0 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
footer.site {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 2.5rem 0;
  margin-top: 2rem;
}
footer.site .bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
footer.site a { color: rgba(255,255,255,.6); }
footer.site a:hover { color: var(--accent); }
@media (max-width: 800px) {
  header.site nav { display: none; }
  .shots { grid-template-columns: repeat(5, 220px); }
  .features { grid-template-columns: 1fr; }
}
