:root {
  --green: #8CC63F;      /* brand green (matches app icon background) */
  --green-dark: #6FA52E;
  --blue: #35AEE2;
  --ink: #17222B;
  --grey: #5C6B76;
  --bg: #FFFFFF;
  --bg-soft: #F5F8F2;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.6;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
header { padding: 20px 0; }
header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; color: var(--green-dark); text-decoration: none; display: inline-flex; align-items: center; }
.logo img { height: 34px; width: auto; display: block; }
.nav a { color: var(--grey); text-decoration: none; margin-left: 24px; font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--ink); }

.hero { background: var(--bg-soft); padding: 72px 0 84px; text-align: center; }
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; max-width: 820px; margin: 0 auto 18px; }
.hero h1 em { color: var(--green-dark); font-style: normal; }
.hero p.sub { font-size: 1.15rem; color: var(--grey); max-width: 620px; margin: 0 auto 34px; }
.badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.badge {
  display: inline-block; padding: 14px 28px; border-radius: 12px; font-weight: 700;
  text-decoration: none; font-size: 1rem;
}
.badge.ios { background: var(--ink); color: #fff; }
.badge.android { background: var(--green); color: #fff; }
.zip-note { margin-top: 18px; font-size: .9rem; color: var(--grey); }

section { padding: 64px 0; }
section h2 { font-size: 1.7rem; font-weight: 800; text-align: center; margin-bottom: 40px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.step { background: var(--bg-soft); border-radius: 16px; padding: 28px 24px; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--grey); font-size: .95rem; }

.compare { background: var(--bg-soft); }
.compare table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #E7EDE2; font-size: .95rem; }
.compare th { background: var(--green); color: #fff; font-weight: 700; }
.compare td:first-child { font-weight: 600; }
.compare .check { color: var(--green-dark); font-weight: 800; }

.areas p { text-align: center; color: var(--grey); max-width: 720px; margin: 0 auto 24px; }
.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.market-card { background: var(--bg-soft); border-radius: 16px; padding: 26px 24px; }
.market-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.market-card h3 a { color: var(--ink); text-decoration: none; }
.market-card h3 a:hover { color: var(--green-dark); }
.market-card .price { color: var(--green-dark); font-weight: 700; font-size: .95rem; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: #fff; border-radius: 100px; padding: 6px 14px; font-size: .82rem; font-weight: 600; color: var(--ink); }

.pricing-table { max-width: 560px; margin: 0 auto; width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.pricing-table th, .pricing-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #E7EDE2; }
.pricing-table th { background: var(--green); color: #fff; }

.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #E7EDE2; padding: 18px 4px; }
.faq summary { font-weight: 700; cursor: pointer; font-size: 1.05rem; }
.faq details p { color: var(--grey); margin-top: 10px; }

.cta { background: var(--green); text-align: center; color: #fff; }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { margin-bottom: 28px; opacity: .95; }
.cta .badge.ios { background: var(--ink); }
.cta .badge.android { background: #fff; color: var(--green-dark); }

.breadcrumb { padding: 12px 0 0; font-size: .85rem; }
.breadcrumb a { color: var(--grey); }

footer { padding: 36px 0; text-align: center; color: var(--grey); font-size: .85rem; }
footer a { color: var(--grey); }

/* Play badge until the Android listing is live — visible but not clickable. */
.badge.soon { opacity: 0.55; cursor: default; pointer-events: none; }
