:root {
  --primary-color: #3164c9;
  --blue-color: #287ddf;
  --black: #000000;
  --white: #ffffff;
  --text-grey: #787878;
  --grey: #83989d;
  --grey-border-color: #d6d6d6;
  --light-card-background: #f3f6f9;
  --dark-card-background: #2e3338;
  --light-border-color: #dbe1e6;
  --dark-border-color: #6e7a87;
  --dark-green-color: #008000;
  --red-color: #ff0000;
  --yellow: #ffcd5c;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-grey);
  background:
    radial-gradient(circle at top left, rgba(40, 125, 223, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(49, 100, 201, 0.08), transparent 24%),
    linear-gradient(180deg, #eef3fb 0%, #e4ecf7 100%);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4 {
  font-family: "Fraunces", serif;
  color: var(--black);
  letter-spacing: -0.02em;
}

a {
  color: var(--primary-color);
}

a:hover {
  color: var(--blue-color);
}

.navbar {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  background: rgba(232, 239, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(110, 122, 135, 0.25);
}

.navbar .navbar-nav .nav-link {
  color: #13284b;
  font-weight: 700;
  font-size: 0.96rem !important;
  letter-spacing: 0.01em;
  padding: 0.8rem 1rem !important;
}

.navbar .navbar-nav .nav-link:hover {
  color: #3164c9 !important;
}

.navbar .navbar-nav .nav-link.active {
  color: #3164c9 !important;
}

.navbar .navbar-nav .nav-item {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

.navbar .navbar-collapse {
  align-items: center;
}

.navbar-toggler {
  border-color: rgba(49, 100, 201, 0.25);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  color: var(--black);
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.site-brand img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(19, 46, 95, 0.22), rgba(40, 125, 223, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(30, 52, 91, 0.1));
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(23, 44, 85, 0.9);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

.hero-copy {
  font-size: 1.08rem;
  color: #5d6d7d;
  max-width: 36rem;
}

.btn-primary-soft,
.btn.btn-grad {
  background: linear-gradient(135deg, var(--primary-color), var(--blue-color));
  border: 0;
  color: var(--white);
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  box-shadow: 0 16px 40px rgba(49, 100, 201, 0.18);
}

.btn-primary-soft:hover,
.btn.btn-grad:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-brand {
  border: 1px solid rgba(49, 100, 201, 0.22);
  color: var(--primary-color);
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  background: var(--white);
}

.btn-outline-brand:hover {
  background: rgba(49, 100, 201, 0.06);
  color: var(--primary-color);
}

.hero-card,
.info-card,
.legal-card,
.faq-card,
.metric-card,
.timeline-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(110, 122, 135, 0.22);
  box-shadow: 0 24px 60px rgba(18, 31, 52, 0.14);
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-media img,
.image-card img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  background: rgba(15, 28, 48, 0.92);
  border: 1px solid rgba(110, 122, 135, 0.35);
  border-radius: 22px;
  padding: 1rem 1.1rem;
  box-shadow: 0 18px 45px rgba(10, 18, 30, 0.35);
  color: rgba(255, 255, 255, 0.82);
}

.hero-badge-top {
  top: 1.25rem;
  right: 1.25rem;
}

.hero-badge-bottom {
  left: 1.25rem;
  bottom: 1.25rem;
}

.section-space {
  padding: 5.5rem 0;
}

.section-light {
  background: linear-gradient(180deg, #dce6f3 0%, #edf3fa 100%);
}

.section-dark {
  background: linear-gradient(135deg, #101d33, #1b3f79 58%, #245cac 100%);
  color: rgba(255, 255, 255, 0.84);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p,
.section-dark li,
.section-dark .stat-value,
.section-dark .stat-label {
  color: var(--white);
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.metric-card,
.info-card,
.timeline-card,
.faq-card,
.legal-card {
  padding: 2rem;
  height: 100%;
}

.metric-value,
.stat-value {
  color: var(--black);
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  line-height: 1.08;
  white-space: nowrap;
}

.hero-badge strong,
.section-dark .metric-card .stat-value {
  color: var(--white) !important;
}

.feature-icon,
.pill-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 29, 51, 0.12), rgba(49, 100, 201, 0.28));
  color: #1f4ea8;
  font-size: 1.1rem;
}

.image-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(110, 122, 135, 0.2);
  background: #e7eef7;
}

.image-note {
  color: var(--grey);
  font-size: 0.9rem;
}

.analytics-caption {
  background: rgba(255, 255, 255, 0.98);
}

.step-number {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--blue-color));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero {
  padding: 6rem 0 3rem;
}

.page-hero p {
  max-width: 42rem;
}

.legal-card h2,
.legal-card h3 {
  margin-top: 2rem;
}

.legal-card h2:first-child,
.legal-card h3:first-child {
  margin-top: 0;
}

.faq-accordion .card {
  border: 1px solid var(--light-border-color);
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 1rem;
}

.faq-accordion .card-header {
  background: #f5f8fc;
  border-bottom: 0;
  padding: 0;
}

.faq-accordion .btn-link {
  width: 100%;
  text-align: left;
  color: var(--black);
  padding: 1.35rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.faq-accordion .btn-link:hover,
.faq-accordion .btn-link:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.faq-accordion .card-body {
  padding: 0 1.5rem 1.35rem;
  color: var(--text-grey);
}

.cta-band {
  border-radius: 34px;
  padding: 3rem;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 92, 0.16), transparent 24%),
    linear-gradient(135deg, #0f1b2f, #1c3d75 55%, #2b64be 100%);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(15, 27, 47, 0.32);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.footer {
  background: var(--dark-card-background);
}

.footer,
.footer a,
.footer p,
.footer li,
.footer h5,
.footer h6 {
  color: rgba(255, 255, 255, 0.82);
}

.footer a:hover {
  color: var(--white);
}

.footer .divider {
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.footer-brand img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 220px;
}

.footer-mini {
  font-size: 0.92rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-green-color);
}

.status-pill .dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--dark-green-color);
}

.highlight-list li {
  padding-left: 0;
  margin-bottom: 0.9rem;
}

.highlight-list i {
  color: var(--primary-color);
  margin-right: 0.75rem;
}

.subtle-kicker {
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

.top-strip {
  background: #0d1626;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.top-strip a {
  color: var(--white);
}

@media (max-width: 991.98px) {
  .hero-shell,
  .page-hero {
    padding-top: 5rem;
  }

  .navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(110, 122, 135, 0.18);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(18, 31, 52, 0.12);
  }

  .navbar .nav-link {
    display: block;
  }

  .hero-media {
    min-height: 420px;
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .site-brand img {
    height: 44px;
  }

  .footer-brand img {
    height: 48px;
  }

  .site-brand {
    font-size: 1.5rem;
  }

  .footer-brand {
    font-size: 1.45rem;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .cta-band,
  .metric-card,
  .info-card,
  .timeline-card,
  .faq-card,
  .legal-card {
    padding: 1.5rem;
  }

  .hero-badge {
    position: static;
    margin: 1rem 0 0;
  }
}
