:root{
  --ac-blue:#0B5ED7;     /* primary */
  --ac-orange:#FF7A00;   /* accent */
  --ac-dark:#0B1220;
  --ac-muted:#6B7280;
  --ac-bg:#0A0F1E;
  --ac-card:#0F172A;
  --ac-border: rgba(255,255,255,.10);
  --radius: 18px;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#E5E7EB;
  background: radial-gradient(1200px 700px at 10% 10%, rgba(11,94,215,.35), transparent 55%),
              radial-gradient(1000px 600px at 90% 15%, rgba(255,122,0,.22), transparent 55%),
              linear-gradient(180deg, #060A14, #070B16 50%, #060A14);
}

a{ color: inherit; text-decoration: none; }
a:hover{ color: #fff; }

.navbar-blur{
  background: rgba(10,15,30,.55) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ac-border);
}

.btn-accent{
  background: var(--ac-orange);
  border: none;
  color:#111827;
  font-weight: 700;
}
.btn-accent:hover{ filter: brightness(.95); }

.btn-outline-soft{
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
}
.btn-outline-soft:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.28);
}

.section{
  padding: 84px 0;
}

.glass{
  background: rgba(15,23,42,.62);
  border: 1px solid var(--ac-border);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.kicker{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color:#fff;
  font-weight: 600;
  font-size: .9rem;
}

.h1-hero{
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.muted{
  color: rgba(229,231,235,.78);
}

.icon-pill{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(11,94,215,.18);
  border: 1px solid rgba(11,94,215,.35);
}

.card-hover{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-hover:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 22px 55px rgba(0,0,0,.45);
}

.badge-soft{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
}

.hr-soft{
  border-color: rgba(255,255,255,.10);
}

.price{
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.table-darkish{
  --bs-table-bg: rgba(15,23,42,.55);
  --bs-table-striped-bg: rgba(255,255,255,.04);
  --bs-table-border-color: rgba(255,255,255,.10);
  color:#E5E7EB;
  border-radius: var(--radius);
  overflow:hidden;
}
