:root{
  --text:#111;
  --muted:#6e6e73;
  --line:#e5e5ea;
  --bg:#fff;
  --bg2:#f5f5f7;
  --accent:#ff3b30;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display",system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:40px 24px;
}

.hero{padding:60px 0 30px}

.hero-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hero-text h1{
  font-size:52px;
  line-height:1.05;
  letter-spacing:-0.02em;
  margin-bottom:14px;
}

.hero-text p{
  font-size:18px;
  color:var(--muted);
  margin-bottom:20px;
}

.btn{
  padding:10px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  font-size:14px;
}

.btn.primary{
  background:#111;
  color:#fff;
  border-color:#111;
}

.hero-image{
  width:260px;
  border-radius:36px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.section{padding:60px 0}

.section.light{background:var(--bg2)}

h2{
  font-size:28px;
  margin-bottom:30px;
}

.screens{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

.screens img{
  width:240px;
  border-radius:32px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.pricing{
  display:flex;
  gap:30px;
  justify-content:center;
  text-align:center;
}

.price-card{
  padding:30px;
  border-radius:24px;
  border:1px solid var(--line);
  width:260px;
}

.price-card.featured{
  border:2px solid rgba(255,59,48,.4);
}

.btn.full{display:block;margin-top:16px}

footer{
  text-align:center;
  padding:30px;
  font-size:13px;
  color:var(--muted);
  border-top:1px solid var(--line);
}

.legal{max-width:800px}
.legal h1{font-size:32px;margin-bottom:20px}
.legal h2{margin-top:30px;font-size:18px}
.legal p,.legal li{font-size:14px;color:var(--muted);line-height:1.6}
.legal-note{margin-top:40px;font-size:12px;color:#888}

@media(max-width:900px){
  .hero-content{flex-direction:column}
  .screens{flex-direction:column;align-items:center}
  .pricing{flex-direction:column;align-items:center}
}
