:root {
  --lv-navy-black: #02060f;
  --lv-navy-deep: #111d58;
  --lv-blue-deep: #1c2f8e;
  --lv-blue: #2d4eff;
  --lv-blue-mid: #3754e4;
  --lv-blue-bright: #4b7ce5;
  --lv-blue-light: #98bff9;
  --lv-blue-pale: #aab9e2;
  --lv-white: #ffffff;
  --lv-bg-soft: #f7f8fc;
  --lv-text: #0b1330;
  --lv-text-secondary: #5b6478;
  --lv-border: rgba(11, 19, 48, 0.09);
}

html, body {
  height: 100%;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

/* Full-page background: fixed behind everything so the corner glow spans the
   entire page at any scroll position, instead of being confined to the hero. */
.lv-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #000000;
  background-image:
    radial-gradient(circle at 4% 4%, var(--lv-blue-light) 0%, var(--lv-blue-bright) 9%, var(--lv-blue) 18%, var(--lv-blue-deep) 30%, var(--lv-navy-deep) 42%, #000000 60%);
}

.lv-page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 4% 4%, rgba(255, 255, 255, 0.5), transparent 12%);
  opacity: 0.6;
  animation: lv-glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes lv-glow-pulse {
  from { opacity: 0.45; }
  to   { opacity: 0.75; }
}

@media (prefers-reduced-motion: reduce) {
  .lv-page-bg::before {
    animation: none;
  }
}

.lv-page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 85%, rgba(28, 47, 142, 0.25), transparent 45%);
}

/* Keep real content above the fixed background layer */
.lv-navbar,
.lv-hero,
main,
.lv-footer {
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lv-accent {
  color: var(--lv-blue-bright) !important;
}

/* Navbar */
.lv-navbar {
  background-color: rgba(2, 6, 15, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lv-navbar .navbar-brand {
  color: #ffffff;
  font-weight: 700;
}

.lv-navbar .navbar-brand i {
  color: var(--lv-blue-bright);
}

.lv-navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.lv-navbar .nav-link:hover {
  color: var(--lv-blue-light);
}

/* Buttons */
.lv-btn-primary {
  background: linear-gradient(135deg, var(--lv-blue-bright), var(--lv-blue));
  border: none;
  color: #ffffff;
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.55rem 1.4rem;
  box-shadow: 0 8px 20px rgba(45, 78, 255, 0.28);
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.lv-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 78, 255, 0.36);
}

.lv-btn-outline {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.55rem 1.4rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.lv-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero: background now comes from the fixed .lv-page-bg layer behind it */
.lv-hero {
  position: relative;
  color: #ffffff;
  padding-top: 6.5rem;
  padding-bottom: 6rem;
}

.lv-hero-content {
  position: relative;
  z-index: 1;
}

.lv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lv-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
}

.lv-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 45px rgba(2, 6, 15, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: #ffffff;
}

.lv-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 50rem;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Body sections: glass panels over the fixed gradient background */
.lv-panel,
.lv-card {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.lv-card {
  padding: 1.5rem;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.lv-card:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  border-color: rgba(75, 124, 229, 0.4);
}

.lv-section-title {
  color: #ffffff;
}

.lv-text-secondary {
  color: rgba(255, 255, 255, 0.65);
}

.lv-date-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50rem;
  background: linear-gradient(135deg, var(--lv-blue-bright), var(--lv-blue));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}

.lv-topic {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50rem;
  background-color: rgba(75, 124, 229, 0.16);
  color: var(--lv-blue-light);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(75, 124, 229, 0.35);
}

.lv-list {
  margin-bottom: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.65);
}

.lv-list li {
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.lv-list li:last-child {
  margin-bottom: 0;
}

.lv-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lv-blue-bright), var(--lv-blue));
  color: #ffffff;
  flex-shrink: 0;
}

/* Footer */
.lv-footer {
  background-color: rgba(2, 6, 15, 0.5);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.lv-footer a {
  color: var(--lv-blue-light);
  font-weight: 600;
  text-decoration: none;
}

.lv-footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .lv-hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 575.98px) {
  .lv-avatar {
    width: 120px;
    height: 120px;
    font-size: 3.5rem;
  }

  .lv-hero {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }
}
