:root {
  --purple: #853C8D;
  --red: #F7251F;
  --pink: #D11B66;
  --blue: #1771CB;
  --black: #000000;
  --ink: #111318;
  --muted: #606775;
  --line: rgba(17, 19, 24, 0.1);
  --soft: #f7f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.12);
}
:root{
  --gradient: linear-gradient(
    120deg,
    #8b3f90 0%,
    #d81b68 32%,
    /* #f52a1d 65%, */
    #1772cb 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(133, 60, 141, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 3%, rgba(23, 113, 203, 0.09), transparent 28rem),
    #fff;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.font-display,
h1,
h2,
h3,
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0;
}

.site-nav {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
}

.navbar-brand {
  font-weight: 700;
  color: var(--black);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--gradient);
  box-shadow: 0 12px 30px rgba(133, 60, 141, 0.25);
}

.nav-link {
  color: rgba(17, 19, 24, 0.72);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
}

.btn-gradient {
  border: 0;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(209, 27, 102, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(209, 27, 102, 0.3);
}

.btn-soft {
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  background: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 56px 0;
}

.section-sm {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 128px 0 60px;
  overflow: hidden;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  font-weight: 800;
}

.page-hero {
  padding: 150px 0 32px;
}

.lead-xl {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--muted);
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 24px;
}

.dashboard-shell {
  min-height: 520px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.92), rgba(28, 17, 35, 0.9)),
    var(--black);
  color: #fff;
  overflow: hidden;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 8px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--pink);
  margin-right: 6px;
}

.metric-card,
.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  padding: 18px;
}

.metric-card strong {
  font-size: 2rem;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  align-items: end;
  height: 160px;
}

.chart-bars span {
  border-radius: 999px 999px 4px 4px;
  background: var(--gradient);
  min-height: 26px;
}

.card-lift {
  border: 2px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 44px rgba(17, 19, 24, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-color: rgba(133, 60, 141, 0.26);
}

.card-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(133, 60, 141, 0.26);
  box-shadow: var(--shadow);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento-card {
  grid-column: span 4;
  min-height: 260px;
  padding: 28px;
}

.bento-card.wide {
  grid-column: span 8;
}

.bento-card.tall {
  min-height: 360px;
}

.icon-pill {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 26px rgba(133, 60, 141, 0.22);
}

.muted {
  color: var(--muted);
}

.logo-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.logo-word {
  color: rgba(17, 19, 24, 0.42);
  font-weight: 800;
  font-size: 1rem;
}

.cta-band {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18)),
    var(--gradient);
  border-radius: 28px;
  padding: clamp(32px, 6vw, 72px);
  box-shadow: 0 26px 80px rgba(133, 60, 141, 0.25);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-left: 58px;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
}

.form-control,
.form-select {
  border-radius: 16px;
  border-color: var(--line);
  padding: 0.9rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 0.22rem rgba(133, 60, 141, 0.12);
}

.footer {
  padding: 58px 0 34px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 27, 102, 0.15), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

main,
nav,
footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .bento-card,
  .bento-card.wide {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding-top: 118px;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card.wide {
    grid-column: 1;
  }

  .dashboard-shell {
    min-height: auto;
  }
}
