/* ====== Theme ====== */
:root{
  --bg: #0b1220;
  --bg2:#0f1a2e;
  --card:#0e1930;
  --border: rgba(255,255,255,.08);
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.72);
  --primary: #4f8cff;
  --primary2:#7c5cff;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 16px;
}

.bg-app { background: radial-gradient(1200px 800px at 15% 10%, rgba(79,140,255,.18), transparent 55%),
                     radial-gradient(1200px 800px at 85% 20%, rgba(124,92,255,.14), transparent 55%),
                     var(--bg);
}
.text-app { color: var(--text); }
.text-muted { color: var(--muted) !important; }
.border-app { border-color: var(--border) !important; }

.nav-blur{
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, .75);
}

.hero{
  position: relative;
  overflow: hidden;
}

.hero-glow{
  position:absolute;
  inset: -80px -80px auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(79,140,255,.25), transparent 60%);
  filter: blur(8px);
  pointer-events:none;
}

/* ====== Brand ====== */
.brand-mark{
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 10px 30px rgba(79,140,255,.25);
}

.small-badge{
  font-weight: 600;
  border: 1px solid var(--border);
}

/* ====== Components ====== */
.card-app{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}

.bg-soft{
  background: rgba(255,255,255,.02);
}

.hero-pill{
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(79,140,255,.15);
}

.chip{
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 14px;
  background: rgba(255,255,255,.02);
}

.proof{
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.01);
}

.icon-badge{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(79,140,255,.14);
  border: 1px solid rgba(79,140,255,.22);
  font-size: 18px;
}

.feature:hover{
  transform: translateY(-2px);
  transition: transform .15s ease;
}

/* Dashboard mock */
.dashboard-box{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,.01);
}

.activity-item{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.12);
}

.activity-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  font-weight: 700;
}

.status-pill{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2bd576;
  box-shadow: 0 0 0 6px rgba(43,213,118,.14);
}

.progress{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.progress-bar{
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}

/* Steps */
.steps{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.steps li{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(124,92,255,.16);
  border: 1px solid rgba(124,92,255,.24);
  font-weight: 700;
}

/* Code */
.code-block{
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.18);
  overflow: auto;
  max-height: 340px;
}
.code-block code{
  color: rgba(234,240,255,.88);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
}

/* Integrations */
.integration{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  text-align:center;
  background: rgba(255,255,255,.02);
  color: rgba(234,240,255,.9);
  font-weight: 600;
}

/* Pricing */
.price{
  display:flex;
  align-items: baseline;
  gap: 8px;
}
.price-amt{
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.li-check{
  padding: 6px 0;
  color: rgba(234,240,255,.9);
}
.li-check::before{
  content: "✓";
  margin-right: 10px;
  color: #2bd576;
}
.glow{
  box-shadow: 0 0 0 1px rgba(79,140,255,.22), var(--shadow);
}

/* Inputs & Links */
.input-app{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text);
}
.input-app::placeholder{ color: rgba(234,240,255,.45); }
.input-app:focus{
  border-color: rgba(79,140,255,.55);
  box-shadow: 0 0 0 .25rem rgba(79,140,255,.18);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.link-muted{
  color: rgba(234,240,255,.72);
  text-decoration: none;
}
.link-muted:hover{
  color: rgba(234,240,255,.95);
  text-decoration: underline;
}

/* Buttons */
.btn-primary{
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  border: none;
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-outline-light{
  border-color: rgba(255,255,255,.22);
  color: rgba(234,240,255,.92);
}
.btn-outline-light:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.28);
}

/* Spacing helper */
.py-lg-6{
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
