:root{
  --accent:#c00000;
  --bg1:#ffffff;
  --muted:#666;
}
*{box-sizing:border-box}
body,html{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial}
body{background:linear-gradient(180deg,var(--bg1) 58%, #f5f5f5 100%);display:flex;align-items:center;justify-content:center;padding:36px}
.page{width:100%;max-width:980px}
.card{background:rgba(255,255,255,0.95);border-radius:16px;padding:28px;box-shadow:0 8px 30px rgba(0,0,0,0.12);text-align:center}
.hero{padding:36px}
.logo{width:130px;height:auto;margin-bottom:18px}
h1{color:var(--accent);margin:0 0 14px;font-size:1.9rem}
.btn{display:inline-block;padding:12px 20px;background:var(--accent);color:#fff;text-decoration:none;border-radius:12px;font-weight:600;margin-bottom:16px}
.btn:hover{filter:brightness(.92)}
.lead{max-width:720px;margin:12px auto 0;color:var(--muted);line-height:1.5}
.features{margin-top:28px;display:flex;gap:20px;justify-content:center}
.feature{background:transparent;box-shadow:none;padding:18px;border-radius:12px;width:320px;text-align:left;color:#222}
.icon{width:46px;height:46px;margin-bottom:10px}
.feature h2{margin:0 0 8px;font-size:1.1rem;color:#111}
.feature p{margin:0;color:#555}

@media (max-width:760px){
  .features{flex-direction:column;align-items:center}
  .card{padding:22px}
  h1{font-size:1.5rem}
}
