:root {
  color-scheme: dark;
  --bg-0: #0a0f1f;
  --bg-1: #0f1528;
  --bg-2: #141b33;
  --ink-0: #f2f4ff;
  --ink-1: #c8d0f5;
  --ink-2: #8ea0d6;
  --accent-0: #5ab0ff;
  --accent-1: #2e6bff;
  --accent-2: #79d6c3;
  --glow: rgba(90, 176, 255, 0.25);
}

body {
  font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(46, 107, 255, 0.25), transparent),
    radial-gradient(900px 500px at 90% 0%, rgba(121, 214, 195, 0.18), transparent),
    linear-gradient(160deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
  color: var(--ink-0);
  text-align: justify;
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(90, 176, 255, 0.18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 320px at 20% 30%, rgba(90, 176, 255, 0.15), transparent),
    radial-gradient(420px 280px at 80% 40%, rgba(121, 214, 195, 0.12), transparent);
  pointer-events: none;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0;
}

.brand-logo {
  height: clamp(72px, 12vw, 120px);
  width: min(100%, 360px);
  display: block;
  filter: drop-shadow(0 8px 18px rgba(46, 107, 255, 0.28));
}

@media (min-width: 992px) {
  .brand-logo {
    height: clamp(96px, 10vw, 160px);
    width: min(100%, 520px);
  }
}

.monogram {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "League Spartan", "Montserrat", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink-0);
  background: linear-gradient(150deg, #1f3a7d, #0f1f48);
  border: 1px solid rgba(90, 176, 255, 0.45);
  box-shadow: 0 12px 35px rgba(46, 107, 255, 0.25);
}

.hero-title {
  font-family: "League Spartan", "Montserrat", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-1);
}

.promo-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(90, 176, 255, 0.2);
  box-shadow: 0 20px 50px rgba(5, 10, 20, 0.45);
  background: rgba(10, 15, 31, 0.75);
}

.promo-image {
  width: 100%;
  height: auto;
  display: block;
}

.info-card {
  background: rgba(10, 15, 31, 0.75);
  border: 1px solid rgba(90, 176, 255, 0.2);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(5, 10, 20, 0.45);
  backdrop-filter: blur(12px);
}

.info-card h3 {
  font-family: "League Spartan", "Montserrat", "Segoe UI", system-ui, sans-serif;
  font-size: 1.25rem;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-check li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  color: var(--ink-1);
}

.list-check span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(90, 176, 255, 0.2);
  color: var(--accent-0);
  font-weight: 600;
  flex-shrink: 0;
}

.accent-rule {
  height: 3px;
  width: 72px;
  background: linear-gradient(90deg, var(--accent-0), var(--accent-2));
  border-radius: 99px;
}

.section-title {
  font-family: "League Spartan", "Montserrat", "Segoe UI", system-ui, sans-serif;
}

.info-card h4,
.timeline h4 {
  font-family: "League Spartan", "Montserrat", "Segoe UI", system-ui, sans-serif;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #ffcf09;
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-0), transparent);
  opacity: 0.6;
}

.timeline-item {
  position: relative;
  padding: 0 0 1.75rem 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.2rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-0);
  box-shadow: 0 0 12px var(--accent-0);
}

.footer-note {
  color: var(--ink-2);
  font-size: 0.9rem;
}

.fade-up {
  animation: fadeUp 0.8s ease-out both;
}

.fade-up.delay-1 {
  animation-delay: 0.15s;
}

.fade-up.delay-2 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .info-card {
    padding: 1.4rem;
  }
  .info-card .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-card .pill {
    order: -1;
  }
}

@media (max-width: 575px) {
  .brand-logo {
    height: clamp(88px, 18vw, 128px);
    width: min(100%, 420px);
  }
}

footer .link-light:hover {
  color: #ffcf09 !important;
}
