:root{
  --bg-start:#0052a3;
  --bg-end:#001841;
  --text:#151515;
  --muted:#5d5d5d;
  --primary:#ff6a3d;
  --surface:#ffffff;
  --radius:20px;
  --shadow:0 12px 30px rgba(0,0,0,.15);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  line-height:1.4;
  background: var(--surface);
}
.container{width:min(1120px, 92vw); margin:0 auto}
.header{
  position:sticky; top:0; z-index:10; backdrop-filter:saturate(180%) blur(6px);
  background:#001841; border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; font-weight:700}
.brand img{height:80px; }
.nav a{margin-left:18px; text-decoration:none; color:#fff; font-weight:600}
.nav a:hover{opacity:.8}
.hero{
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
  color:#fff;
  border-radius:32px;
  padding:48px 28px;
  margin:18px auto 28px;
  box-shadow:var(--shadow);
}
.hero-inner{display:grid; grid-template-columns: 1.1fr .9fr; gap:24px; align-items:center}
.hero h1{font-size:clamp(28px, 5vw, 46px); margin:0 0 10px}
.hero p{font-size:clamp(16px, 2.4vw, 20px); opacity:.95; margin:0 0 18px}
.ctas{display:flex; gap:12px; flex-wrap:wrap}
.ctas a img{height:48px}
.app-icon{justify-self:center; width:min(320px, 72%); height:auto; border-radius:28px; box-shadow:var(--shadow)}

.badge--disabled{filter: grayscale(1) opacity(.8)}

.section{padding:28px 0}
.section h2{font-size:clamp(22px, 3.6vw, 34px); margin:0 0 10px}
.section p.lead{color:var(--muted); margin:0 0 20px}

.features{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
.card{
  background:var(--surface);
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.card h3{margin:6px 0 8px; font-size:18px}
.card p{margin:0; color:#555}
.icon{width:28px; height:28px}

.promoters{
  margin-top:6px;
  background:var(--surface);
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  text-align:center;
}
.promoters img{ width: 70%;height:auto}

.footer{
  color:#444;
  padding:22px 0 38px;
  font-size:14px;
  text-align:center;
}

@media (max-width: 860px){
  .hero-inner{grid-template-columns: 1fr; text-align:center}
  .app-icon{width:160px}
  .features{grid-template-columns: 1fr; }
}
