:root{
  --brand:#7c3aed;        /* violet */
  --brand2:#06b6d4;       /* cyan */
  --dark:#0b1220;
}

body{ background:#0b1220; }
.bg-dark-ssd{ background: var(--dark) !important; }

.navbar{
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.75) !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar .nav-link{ color: rgba(255,255,255,.80) !important; }
.navbar .nav-link:hover{ color:#fff !important; }

.btn-gradient{
  border:0;
  color:#fff;
  background: linear-gradient(90deg, var(--brand2), var(--brand));
}
.btn-gradient:hover{ filter: brightness(1.05); }

.hero{
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(11,18,32,.92), rgba(11,18,32,.65)),
    url("https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero .container{ position:relative; z-index:2; }
.hero-badge{
  display:inline-flex; gap:.5rem; align-items:center;
  padding:.45rem .75rem;
  border:1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}

.glass{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.icon-badge{
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.section-title{ letter-spacing:-.4px; }
.text-muted-ssd{ color: rgba(255,255,255,.70) !important; }

.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
}

.page-hero{
  position: relative;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(11,18,32,.92), rgba(11,18,32,.70)),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=2000&q=80");
  background-size:cover;
  background-position:center;
}
.page-hero .container{ position:relative; z-index:2; }

.card-hover{ transition:.18s ease; }
.card-hover:hover{ transform: translateY(-3px); border-color: rgba(255,255,255,.18) !important; }

.small-legal{ font-size:.92rem; }
