/* ====== Base ====== */
/* Improve rendering and spacing across the site */
html, body { height: 100%; }
body { background: #0b0f1a; color: #e9eef7; }

/* Links inside dark nav/footer should be readable */
.nav-link { transition: opacity .2s ease; }
.nav-link:hover { opacity: .85; }

/* ====== Hero ====== */
/* Gradient hero with subtle accent shape */
.hero {
  background: linear-gradient(115deg, #0d6efd 0%, #6610f2 55%, #6f42c1 100%);
  color: #fff;
}
.hero .display-5 { letter-spacing: .2px; }

/* Decorative diagonal accent at bottom of hero */
.hero-accent {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 70px;
  background: linear-gradient(to right, rgba(255,255,255,.15), rgba(255,255,255,0));
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Frosted-glass style card used in hero mock */
.glass-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border-radius: 1rem;
}

/* ====== Feature cards ====== */
.feature-card {
  background: #12192a;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* ====== CTA stripe ====== */
.cta-stripe {
  background: linear-gradient(90deg, #101729 0%, #0e1424 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ====== Footer ====== */
.footer .nav-link { color: #e9eef7; }
.footer .nav-link:hover { text-decoration: underline; }

/* ====== Brand/logo tweaks ====== */
.navbar-brand img { filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
/* Ensures brand text remains crisp on dark bg */
.navbar-brand span { color: #fff; }

/* Optional: buttons contrast on gradient hero */
.btn-outline-light.btn-sm { border-width: 1.5px; }
