.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
}
.hero h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 700; letter-spacing: -.01em; }
.hero h1 em { position: relative; color: var(--action); font-style: normal; white-space: nowrap; }
.hero h1 em svg { position: absolute; bottom: -6px; left: 0; width: 100%; height: 10px; }
.hero .lead { max-width: 44ch; margin: 20px 0 30px; color: var(--ink-muted); font-size: 18px; }
.stores { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.stores img { width: auto; height: 52px; }
.stores .google-play-badge { height: 76px; margin: -12px; }
.store-soon { position: relative; opacity: .5; }
.soon-tag {
  position: absolute;
  top: -9px;
  right: -8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--page);
  padding: 3px 9px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
}
.hero-note { margin-top: 18px; color: var(--ink-muted); font-size: 13.5px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  color: var(--won);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.ring svg { width: 100%; height: 100%; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.phone {
  position: relative;
  width: 288px;
  border-radius: 40px;
  background: #1C1C1E;
  padding: 10px;
  box-shadow: 0 30px 60px var(--shadow-color);
  transform: rotate(2.5deg);
}
.phone::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #1C1C1E;
  transform: translateX(-50%);
}
.phone picture { display: block; }
.phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 17.5;
  border-radius: 31px;
  object-fit: cover;
  object-position: top;
}
.phone-sm { width: 232px; border-radius: 34px; padding: 8px; transform: none; }
.phone-sm img { border-radius: 27px; }
.phone-sm::after { top: 16px; width: 9px; height: 9px; }

section { padding: 84px 0; }
.section-head { max-width: 560px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; }
.section-head p { margin-top: 12px; color: var(--ink-muted); font-size: 16.5px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  border: 1px solid var(--hairline);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  padding: 28px 24px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { box-shadow: 0 16px 36px var(--shadow-color); transform: translateY(-4px); }
.step-label {
  color: var(--action);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.step h3 { margin: 8px 0 6px; font-size: 19px; }
.step p { margin-bottom: 22px; color: var(--ink-muted); font-size: 14.5px; }
.step .phone-sm { margin-inline: auto; }

.features { border-block: 1px solid var(--hairline); background: var(--sunken); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature {
  border: 1px solid var(--hairline);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  padding: 26px;
}
.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
}
.feature-icon--freshness { background: var(--soon-fill); color: var(--soon); }
.feature-icon--success { background: var(--won-fill); color: var(--won); }
.feature-icon--neutral { background: var(--sunken); color: var(--ink-muted); }
.feature h3 { margin-bottom: 6px; font-size: 18px; }
.feature p { color: var(--ink-muted); font-size: 14.5px; }

.cta-band {
  border: 1px solid var(--hairline);
  border-radius: 28px;
  background: var(--card-bg);
  padding: 56px 32px;
  box-shadow: 0 20px 44px var(--shadow-color);
  text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 700; }
.cta-band p { max-width: 42ch; margin: 12px auto 28px; color: var(--ink-muted); }
.cta-band .stores { justify-content: center; }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-ready .reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero .lead, .section-head { margin-inline: auto; }
  .stores { justify-content: center; }
  .section-head { text-align: center; }
  .ring { width: 400px; height: 400px; }
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .feature-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .ring svg { animation: none; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
}
