:root{
  --brand:#10b981;
  --brand2:#0ea5e9;
  --ink:#0f172a;
  --muted:#64748b;
  --bg1:#f6f8ff;
  --bg2:#ecfeff;
  --shadow: 0 18px 60px rgba(15,23,42,.12);
  --shadow2: 0 10px 30px rgba(15,23,42,.10);
  --radius: 22px;
}
html,body{height:100%}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 20% 18%, rgba(16,185,129,.14), transparent 60%),
    radial-gradient(900px 500px at 85% 35%, rgba(14,165,233,.14), transparent 65%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
}
a{color:inherit}
.navbar{
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.72)!important;
  border-bottom: 1px solid rgba(148,163,184,.35);
}
.brand-pill{
  width:42px;height:42px;border-radius:14px;
  background: linear-gradient(135deg, rgba(16,185,129,1), rgba(14,165,233,1));
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:900;
  box-shadow: var(--shadow2);
}
.btn-brand{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border:none;color:#fff;
  box-shadow: 0 12px 26px rgba(16,185,129,.20);
}
.btn-brand:hover{filter:brightness(0.98)}
.btn-soft{
  background: rgba(16,185,129,.10);
  border:1px solid rgba(16,185,129,.25);
  color: var(--ink);
}
.hero-wrap{
  margin-top:18px;
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(148,163,184,.25);
}
.hero-card{
  border-radius: 28px;
  overflow:hidden;
  background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(14,165,233,.12));
  border: 1px solid rgba(148,163,184,.22);
}
.hero-copy{ padding: 34px 32px; }
.badge-pill{
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(148,163,184,.35);
  padding: 10px 14px;
  display:inline-flex;
  gap:10px;align-items:center;
  color: var(--muted);
  box-shadow: 0 6px 22px rgba(15,23,42,.06);
  margin-right:10px;margin-bottom:10px;
}
h1.display{
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.hero-sub{
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
}
.quick-card{
  background: rgba(255,255,255,.82);
  border:1px solid rgba(148,163,184,.28);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(15,23,42,.10);
}
.section-title{ font-weight: 900; letter-spacing: -.01em; }
.card-soft{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(148,163,184,.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}
.listing-card img{
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}
.muted{color:var(--muted)}
.footer{
  margin-top: 60px;
  background: rgba(255,255,255,.70);
  border-top: 1px solid rgba(148,163,184,.30);
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--ink)}
.wa-float{
  position: fixed; left: 18px; bottom: 18px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 999px;
  display:flex;align-items:center;justify-content:center;
  background: #25D366; color:#fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.scroll-top{
  position: fixed; right: 18px; bottom: 18px; z-index: 9999;
  width: 52px; height: 52px; border-radius: 999px; border:none;
  background: rgba(255,255,255,.85);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  display:none;
}
.scroll-top.show{display:block}
.toast-host{position:fixed;top:84px;right:18px;z-index:9999}
