*{box-sizing:border-box}
:root{
  --bg:#f6f8fc;
  --ink:#162033;
  --muted:#66748a;
  --blue:#0b6cf2;
  --line:#d8e1ec;
  --soft:#eaf2ff;
  --dark:#172136;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
.shell{max-width:1180px;margin:0 auto;padding-left:40px;padding-right:40px}
.hero{
  min-height:760px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:center;
  gap:72px;
  padding-top:72px;
  padding-bottom:72px;
}
.eyebrow{
  color:var(--blue);
  font-size:13px;
  line-height:1.2;
  letter-spacing:.045em;
  font-weight:800;
  text-transform:uppercase;
}
h1{
  font-size:60px;
  line-height:.98;
  letter-spacing:-.045em;
  margin:24px 0 24px;
}
h2{
  font-size:46px;
  line-height:1.04;
  letter-spacing:-.035em;
  margin:18px 0 24px;
}
.lead,.pricing p,.audience p,.cta p{
  font-size:18px;
  line-height:1.55;
  color:var(--muted);
}
.lead{font-weight:600;max-width:680px}
.pills{display:flex;gap:12px;flex-wrap:wrap;margin:24px 0}
.pill{
  border:1px solid var(--line);
  background:white;
  border-radius:999px;
  padding:8px 14px;
  font-size:13px;
  font-weight:800;
}
.pill.blue{background:#e9f2ff;color:var(--blue);border-color:#e9f2ff}
.store-buttons{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px}
.store{
  height:52px;
  min-width:205px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 18px;
  border-radius:9px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:transform .15s ease,opacity .15s ease;
}
.store:hover{transform:translateY(-1px);opacity:.94}
.store strong{font-size:16px}
.appstore{background:#121b2d;color:white}
.play{background:#176eea;color:#76b6ff}
.light{background:white;color:#0875f8}
.store-icon{font-size:20px}
.gmark{font-size:20px;font-weight:900}
.hero-phone{display:flex;justify-content:center}
.phone-frame{
  width:330px;
  height:520px;
  border:1px solid #d6e2f1;
  border-radius:28px;
  background:#eef4fd;
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.phone-frame img{
  width:100%;
  height:100%;
  object-fit:contain;
  border:1px dashed #9dbceb;
  border-radius:20px;
  background:white;
}
.features{padding-top:72px;padding-bottom:92px}
.section-head{text-align:center;margin-bottom:52px}
.grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.card{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px 20px 22px;
}
.imagebox{
  height:340px;
  border:1px dashed #91b5ec;
  border-radius:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  background:#fff;
}
.imagebox img{height:100%;width:100%;object-fit:contain}
.card h3{font-size:22px;margin:20px 0 10px}
.card p{margin:0;color:var(--muted);font-size:16px;line-height:1.5}
.audience{
  background:#eaf2ff;
  text-align:center;
  padding-top:88px;
  padding-bottom:88px;
  max-width:1180px;
}
.audience p{max-width:820px;margin:0 auto}
.pricing{text-align:center;padding-top:96px;padding-bottom:96px}
.pricing p{max-width:760px;margin:0 auto}
.cta{
  background:var(--dark);
  border-radius:28px 28px 0 0;
  color:white;
  text-align:center;
  padding-top:86px;
  padding-bottom:62px;
  margin-bottom:0;
}
.cta h2{font-size:44px}
.cta p{color:#c2ccdc}
.center{justify-content:center}
.brand{margin-top:28px;color:#9caac0;font-size:12px;font-weight:800;letter-spacing:.04em}
@media(max-width:800px){
  .shell{padding-left:20px;padding-right:20px}
  .hero{
    grid-template-columns:1fr;
    gap:38px;
    min-height:auto;
    padding-top:54px;
    padding-bottom:64px;
  }
  h1{font-size:46px}
  h2{font-size:36px}
  .lead{font-size:17px}
  .hero-phone{order:2}
  .phone-frame{width:min(100%,340px);height:500px}
  .grid{grid-template-columns:1fr}
  .imagebox{height:340px}
  .audience{margin-left:0;margin-right:0}
  .cta{border-radius:24px 24px 0 0}
  .cta h2{font-size:34px}
  .desktop-only{display:none}
}
@media(max-width:480px){
  h1{font-size:40px}
  h2{font-size:32px}
  .store-buttons{flex-direction:column}
  .store{width:100%}
  .imagebox{height:300px}
}
