:root {
  --ink: #0b1f3a;
  --hero: #071526;
  --muted: #5b6b7c;
  --paper: #f6f3ee;
  --card: #ffffff;
  --line: #e6e1d8;
  --play: #22c55e;
  --play-ink: #052e16;
  --accent: #1a73e8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
a { color: inherit; }
.top {
  max-width: 1040px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 -10px 0 8px #fff;
}
.nav { display: flex; flex-wrap: wrap; gap: 22px; }
.nav a { text-decoration: none; color: #334155; font-size: 15px; }
.hero {
  background: var(--hero);
  color: #fff;
  text-align: center;
  padding: 72px 24px 0;
}
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: #93c5fd;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 auto 18px;
  max-width: 16ch;
}
.lead {
  max-width: 42em;
  margin: 0 auto 28px;
  color: #cbd5e1;
  font-size: 18px;
}
.cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
}
.btn.play { background: var(--play); color: var(--play-ink); }
.btn.ghost { background: transparent; color: #fff; border: 1px solid #fff; }
.hero-art {
  margin: 48px auto 0;
  max-width: 920px;
}
.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px 28px 0 0;
}
.lifestyle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 24px 8px;
}
.lifestyle figure { margin: 0; }
.lifestyle img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
}
.lifestyle figcaption { margin-top: 8px; font-weight: 600; font-size: 14px; }
.credit { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }
.panel { max-width: 1040px; margin: 0 auto; padding: 64px 24px; }
.panel h2 { font-size: 36px; letter-spacing: -0.03em; margin: 0 0 8px; }
.sub { color: var(--muted); margin: 0 0 28px; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid article, .how li {
  background: var(--paper);
  border-radius: 20px;
  padding: 22px;
}
.how ol {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how h3, .grid h3 { margin: 0 0 8px; }
.how p, .grid p { margin: 0; color: #334155; }
.download {
  text-align: center;
  padding: 72px 24px;
  background: #f8fafc;
}
.download h2 { font-size: 36px; margin: 0 0 8px; }
.store img { height: 72px; width: auto; }
.fine { color: var(--muted); }
footer {
  padding: 28px 24px 40px;
  color: var(--muted);
  font-size: 14px;
}
footer nav { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; color: var(--ink); }
footer a { text-decoration: none; }
.legal { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }
.legal h1 { font-size: 40px; letter-spacing: -0.03em; }
@media (max-width: 800px) {
  .grid, .how ol, .lifestyle { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
}
