:root{
  --bg1:#f5f3ff;
  --bg2:#fce7f3;
  --bg3:#e0f2fe;
  --text:#0f172a;
  --muted:#475569;
  --card:rgba(255,255,255,.52);
  --card2:rgba(255,255,255,.34);
  --border:rgba(15,23,42,.10);
  --shadow: 0 18px 48px rgba(2,6,23,.12);
  --shadow2: 0 10px 28px rgba(2,6,23,.10);
  --blue:#2563eb;
  --blue2:#60a5fa;
  --radius:22px;
  --radius2:18px;
  --max:1080px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: linear-gradient(135deg, var(--bg1), var(--bg2) 45%, var(--bg3));
  overflow-x:hidden;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.bg{position:fixed; inset:0; pointer-events:none; z-index:-1}
.bg__glow{
  position:absolute;
  width:520px; height:520px;
  filter: blur(70px);
  opacity:.55;
  border-radius:999px;
}
.bg__glow--a{left:-120px; top:-120px; background: radial-gradient(circle at 30% 30%, #7dd3fc, transparent 65%)}
.bg__glow--b{right:-160px; top:90px; background: radial-gradient(circle at 30% 30%, #a5b4fc, transparent 65%)}
.bg__glow--c{left:25%; bottom:-180px; background: radial-gradient(circle at 30% 30%, #fda4af, transparent 65%)}

.topbar{
  position:sticky;
  top:0;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.35);
  border-bottom:1px solid var(--border);
  z-index:50;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
}
.brand__mark{
  width:36px; height:36px;
  display:grid; place-items:center;
  border-radius:12px;
  background: rgba(37,99,235,.12);
  border:1px solid rgba(37,99,235,.22);
  font-weight:900;
  letter-spacing:.5px;
}
.brand__name{font-size:16px}
.brand--small .brand__mark{width:32px;height:32px;border-radius:11px}

.nav{display:none; gap:14px}
.nav a{
  text-decoration:none;
  font-weight:600;
  color:rgba(15,23,42,.78);
}
.nav a:hover{color:rgba(15,23,42,1)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  border:1px solid var(--border);
  background: rgba(255,255,255,.40);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  border-color: rgba(37,99,235,.35);
  background: linear-gradient(180deg, rgba(37,99,235,.95), rgba(37,99,235,.82));
  color:white;
  box-shadow: 0 14px 32px rgba(37,99,235,.22);
}
.btn--ghost{
  background: rgba(255,255,255,.38);
}
.btn--lg{padding:12px 18px; font-size:16px}

.hero{padding:44px 0 28px}
.hero__grid{
  display:grid;
  gap:18px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.40);
  font-weight:700;
  color:rgba(15,23,42,.74);
}
h1{
  font-size:40px;
  line-height:1.05;
  margin:14px 0 10px;
  letter-spacing:-.02em;
}
.lead{
  font-size:18px;
  line-height:1.5;
  color: rgba(15,23,42,.80);
  margin:0 0 18px;
}
.subtle{
  margin:10px 0 0;
  color:rgba(71,85,105,.95);
  font-size:14px;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0}

.stats{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:18px;
}
.stat{
  padding:14px 16px;
  border-radius:var(--radius2);
  background: var(--card2);
  border:1px solid var(--border);
}
.stat__k{font-weight:800}
.stat__v{color:rgba(71,85,105,.95); font-weight:600}

.hero__card{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding:14px;
}
.device{
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.30);
}
.device__bar{
  height:18px;
  background: rgba(15,23,42,.06);
}
.device__img{
  width:100%;
  height:auto;
  display:block;
}
.hero__note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.38);
  color: rgba(15,23,42,.78);
}

.section{padding:34px 0}
.section--tight{padding:22px 0}
.section__head{margin-bottom:16px}
h2{
  font-size:28px;
  letter-spacing:-.02em;
  margin:0 0 8px;
}
.muted{color:rgba(71,85,105,.95); line-height:1.55; margin:0}

.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.card{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.44);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  padding:16px;
}
.card__icon{font-size:22px; margin-bottom:10px}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0; color:rgba(71,85,105,.95); line-height:1.5; font-weight:500}

.shots{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.shot{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.30);
  box-shadow: var(--shadow2);
}
.shot img{display:block; width:100%; height:auto}
.shot figcaption{
  padding:12px 14px;
  font-weight:700;
  color:rgba(15,23,42,.75);
  border-top:1px solid var(--border);
  background: rgba(255,255,255,.38);
}

.faq{
  display:grid;
  gap:10px;
}
.faq__item{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.44);
  backdrop-filter: blur(14px);
  padding:12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:800;
}
.faq__body{
  margin-top:10px;
  color:rgba(71,85,105,.95);
  line-height:1.55;
  font-weight:500;
}

.section--cta{
  padding:28px 0 46px;
}
.cta{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  border-radius:var(--radius);
  border:1px solid rgba(37,99,235,.20);
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.38));
  box-shadow: var(--shadow);
  padding:18px;
}
.cta__actions{display:flex; gap:12px; flex-wrap:wrap}

.footer{
  padding:22px 0 30px;
  border-top:1px solid var(--border);
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(12px);
}
.footer__inner{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer__right{display:flex; gap:10px; align-items:center}
.dot{opacity:.6}

@media (min-width: 860px){
  .nav{display:flex}
  .hero{padding:64px 0 36px}
  .hero__grid{grid-template-columns: 1.08fr .92fr; align-items:start}
  h1{font-size:52px}
  .stats{grid-template-columns:1fr 1fr 1fr}
  .grid{grid-template-columns:1fr 1fr 1fr}
  .shots{grid-template-columns:1fr 1fr}
  .cta{flex-direction:row; align-items:center}
  .footer__inner{flex-direction:row; align-items:center; justify-content:space-between}
}

@media (prefers-reduced-motion: reduce){
  .btn:hover{transform:none}
}
