:root{
  --bg1:#e0f2fe;
  --bg2:#f9fafb;
  --bg3:#eef2ff;
  --card:rgba(255,255,255,.95);
  --text:#0f172a;
  --muted:#6b7280;
  --border:rgba(226,232,240,.9);
  --shadow:0 18px 45px rgba(15,23,42,.12);
  --primary1:#2563eb;
  --primary2:#22c55e;
  --radius:24px;
}

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

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(circle at top left,var(--bg1) 0,var(--bg2) 40%,var(--bg3) 85%);
  color:var(--text);
  line-height:1.6;
}

.page{min-height:100vh}
.container{max-width:1120px;margin:0 auto;padding:24px 16px 56px}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
}

.brand-logo{
  width:44px;
  height:44px;
  border-radius:12px;
  object-fit:cover;
  box-shadow:0 12px 30px rgba(15,23,42,.18);
}

.brand-name{
  font-weight:800;
  letter-spacing:.02em;
  font-size:1.15rem;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:36px;
  align-items:center;
}

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

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(219,234,254,.85);
  border:1px solid rgba(219,234,254,1);
  color:var(--muted);
  font-size:.8rem;
  margin-bottom:14px;
  backdrop-filter:blur(6px);
}

.dot{
  width:8px;height:8px;border-radius:999px;
  background:var(--primary2);
  box-shadow:0 0 0 6px rgba(34,197,94,.22);
}

h1{
  font-size:clamp(2.1rem,3vw,3rem);
  line-height:1.05;
  letter-spacing:-.03em;
  margin-bottom:12px;
}

.lead{
  color:var(--muted);
  max-width:38rem;
  margin-bottom:18px;
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-bottom:14px;
}

.btn{
  border:none;
  cursor:pointer;
  border-radius:999px;
  padding:12px 18px;
  font-weight:650;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.btn.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary1),var(--primary2));
  box-shadow:0 14px 35px rgba(37,99,235,.38);
  transition:transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn.primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
  box-shadow:0 20px 45px rgba(37,99,235,.5);
}

.btn.secondary{
  background:rgba(255,255,255,.85);
  border:1px solid var(--border);
  color:var(--muted);
  padding:10px 16px;
  backdrop-filter:blur(8px);
}

.btn.ghost{
  background:transparent;
  border:1px solid var(--border);
  color:var(--muted);
  padding:10px 16px;
}

.meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  color:var(--muted);
  font-size:.9rem;
}

.meta-item{display:inline-flex;align-items:center;gap:8px}
.meta-dot{width:6px;height:6px;border-radius:999px;background:var(--primary1)}

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

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.pill{
  font-size:.75rem;
  color:#1d4ed8;
  background:rgba(219,234,254,.95);
  padding:6px 10px;
  border-radius:999px;
}

.avatars{display:flex;align-items:center}
.avatar{
  width:32px;height:32px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:700;font-size:.85rem;
  background:linear-gradient(135deg,#f97316,#ec4899);
  border:2px solid #fff;
  box-shadow:0 6px 14px rgba(15,23,42,.22);
}
.avatar.alt{
  background:linear-gradient(135deg,#22c55e,#14b8a6);
  transform:translateX(-6px);
}

.stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:10px;
}

@media (max-width:520px){
  .stats{grid-template-columns:1fr}
}

.stat{
  background:#f9fafb;
  border:1px solid rgba(226,232,240,.9);
  border-radius:16px;
  padding:12px;
}

.stat-label{color:var(--muted);font-size:.85rem;margin-bottom:2px}
.stat-value{font-weight:750;margin-bottom:8px}

.bar{
  height:6px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
}

.fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--primary2),var(--primary1));
}

.card-note{
  color:var(--muted);
  font-size:.9rem;
  margin-top:8px;
}

.features{margin-top:40px}
.section-head{max-width:680px;margin-bottom:18px}
.eyebrow{
  color:var(--primary1);
  font-weight:750;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.8rem;
  margin-bottom:6px;
}

h2{font-size:1.55rem;letter-spacing:-.02em;margin-bottom:6px}
.section-head p{color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

@media (max-width:900px){
  .grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .grid{grid-template-columns:1fr}
}

.feature{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  box-shadow:0 12px 30px rgba(15,23,42,.04);
}

.feature .icon{
  width:36px;height:36px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:#eff6ff;
  margin-bottom:8px;
  font-size:1.1rem;
}

.feature h3{font-size:1rem;margin-bottom:4px}
.feature p{color:var(--muted);font-size:.95rem}

.footer{
  margin-top:34px;
  color:var(--muted);
  font-size:.9rem;
}
.contact{
  max-width:720px;
}

.field{
  display:block;
  margin:14px 0;
}

.field span{
  display:block;
  font-weight:650;
  margin-bottom:6px;
}

.field input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(226,232,240,.9);
  background:rgba(255,255,255,.9);
  font:inherit;
}
