:root{
  --bg:#f5f7ff;
  --card:#ffffff;
  --text:#1b1f2a;
  --muted:#5b6273;
  --brand1:#4f6cff;
  --brand2:#6ed0ff;
  --brand3:#6b5bff;
  --shadow: 0 10px 30px rgba(16, 24, 40, .12);
  --radius: 18px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(245,247,255,.75);
  border-bottom: 1px solid rgba(27,31,42,.06);
}

.nav{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}

.brand img{
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.brand .name{
  font-weight: 800;
  letter-spacing: .2px;
}

.navlinks{
  display:flex;
  gap: 14px;
  align-items:center;
}

.navlinks a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.navlinks a:hover{ background: rgba(79,108,255,.10); color: var(--text); }

.hero{
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 18px 28px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
}

.heroCard{
  background: linear-gradient(135deg, rgba(79,108,255,.95), rgba(110,208,255,.92));
  color: white;
  border-radius: 26px;
  padding: 34px 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.heroCard:after{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.30), rgba(255,255,255,0));
  transform: rotate(20deg);
}

.heroTitle{
  font-size: 44px;
  margin: 0 0 10px;
  line-height: 1.08;
  letter-spacing: -0.6px;
  font-weight: 900;
}
.heroSub{
  margin: 0 0 18px;
  opacity: .95;
  font-size: 16px;
  max-width: 56ch;
}

.badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.heroSide{
  background: var(--card);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.appRow{
  display:flex;
  gap: 14px;
  align-items:center;
}
.appRow img{
  width: 92px;
  height: 92px;
  border-radius: 22px;
  box-shadow: 0 10px 20px rgba(0,0,0,.14);
}
.appRow h2{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}
.appRow p{
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.cta{
  display:flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 800;
  font-size: 14px;
}
.btnPrimary{
  background: linear-gradient(135deg, var(--brand3), var(--brand1));
  color: white;
}
.btnGhost{
  background: rgba(79,108,255,.10);
  color: var(--text);
}

section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 18px;
}

.sectionTitle{
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 10px;
}
.sectionDesc{
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
}
.card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.shots{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px){
  .shots{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .shots{ grid-template-columns: 1fr; }
}
.shots img{
  width:100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.footer{
  margin-top: 10px;
  padding: 24px 18px;
  text-align:center;
  color: rgba(255,255,255,.9);
  background: #0f1220;
}
.footer a{
  color: rgba(110,208,255,1);
  text-decoration: none;
  font-weight: 800;
}

.policyWrap{
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 18px 10px;
}
.policy{
  background: var(--card);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.policy h1{ margin: 0 0 8px; font-size: 28px; font-weight: 900; }
.policy .meta{ color: var(--muted); font-weight: 700; margin-bottom: 18px; }
.policy h2{ margin-top: 18px; font-size: 18px; }
.policy p, .policy li{ color: var(--muted); font-weight: 600; }
.policy ul{ padding-left: 18px; }
