:root {
  --bg: #ffffff;
  --surface: #f1f1f2;
  --border: #e3e4e6;
  --text: #2e3033;
  --text-strong: #000000;
  --text-muted: #909299;
  --accent: #c4ff6b;
  --accent-tint: #e7ffc4;
  --accent-ink: #476815;
  --glow-a: #c4ff6b;
  --glow-b: #6bd7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow.center {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.phone {
  margin: 0;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(12, 12, 13, 0.14);
  overflow: hidden;
  line-height: 0;
  background: var(--bg);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--accent-ink);
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.5px;
  text-decoration: none;
}

nav.site {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav.site a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-download {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: default;
  user-select: none;
}

.hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--glow-a), transparent 65%),
    radial-gradient(circle at 70% 70%, var(--glow-b), transparent 60%);
  opacity: 0.35;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 360px;
}

.hero-copy h1 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 20px;
  color: var(--text-strong);
}

.hero-copy p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 0 32px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.pill.primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.pill.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.hero-shots {
  flex: 1 1 420px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-shots .phone {
  width: 100%;
  max-width: 200px;
}

.hero-shots .phone.mid {
  transform: translateY(-24px);
  max-width: 210px;
}

.spotlight {
  padding: 24px 0 88px;
  text-align: center;
}

.spotlight h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--text-strong);
  margin: 0 0 14px;
}

.spotlight-lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 48px;
}

.spotlight-shots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.spotlight-shot {
  width: 100%;
  max-width: 260px;
  text-align: center;
  overflow: visible;
}

.spotlight-shot img {
  border-radius: 21px;
}

.spotlight-shot figcaption {
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-strong);
}

.promise {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--accent-tint), var(--surface));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promise-inner {
  max-width: 640px;
  text-align: center;
}

.promise h2 {
  font-size: 28px;
  letter-spacing: -0.4px;
  color: var(--text-strong);
  margin: 0 0 16px;
}

.promise p {
  color: var(--text);
  font-size: 16.5px;
  margin: 0;
}

.how {
  padding: 88px 0;
}

.how h2 {
  text-align: center;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--text-strong);
  margin: 0 0 64px;
}

.how-row {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.how-row:last-child {
  margin-bottom: 0;
}

.how-row.reverse {
  flex-direction: row-reverse;
}

.how-shot {
  flex: 1 1 240px;
  display: flex;
  justify-content: center;
}

.phone.small {
  max-width: 240px;
  width: 100%;
}

.how-copy {
  flex: 1 1 320px;
}

.step {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-ink);
  margin-bottom: 10px;
}

.how-copy h3 {
  font-size: 24px;
  letter-spacing: -0.3px;
  color: var(--text-strong);
  margin: 0 0 12px;
}

.how-copy p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 400px;
  margin: 0;
}

section.features {
  padding: 64px 0;
  background: var(--surface);
}

.features h2 {
  text-align: center;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--text-strong);
  margin: 0 0 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.feature-card .glyph {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--text-strong);
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

section.status {
  padding: 56px 0;
  text-align: center;
}

section.status .badge {
  display: inline-block;
  background: var(--accent-tint);
  color: var(--accent-ink);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

section.status h2 {
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--text-strong);
}

section.status p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site nav a {
  margin-left: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
}

footer.site .copyright {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Legal pages */
main.legal {
  padding: 56px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

main.legal h1 {
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--text-strong);
}

main.legal .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}

main.legal h2 {
  font-size: 19px;
  color: var(--text-strong);
  margin-top: 36px;
}

main.legal p, main.legal li {
  color: var(--text);
  font-size: 15.5px;
}

main.legal ul {
  padding-left: 20px;
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 34px;
  }
  .hero-shots .phone.mid {
    transform: none;
  }
  .hero-shots {
    gap: 10px;
  }
  .hero-shots .phone {
    max-width: 120px;
  }
  .hero-shots .phone.mid {
    max-width: 128px;
  }
  .how-row,
  .how-row.reverse {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
  }
  .how-copy {
    text-align: center;
  }
  .how-copy p {
    margin: 0 auto;
  }
  header.site .wrap {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  nav.site {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .nav-download {
    padding: 7px 14px;
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
