/* -----------------------------------------------------------------------*/
/* CSS stying for production  (navigation.css)                            */
/* -----------------------------------------------------------------------*/
.card-hover:hover { transform: translateY(-5px); transition: all 0.3s ease; }

:root {
  --apollo-dark: #0f172a;
  --apollo-teal: #0d9488;
  --apollo-gold: #f5c542;
  --apollo-copy: #475569;
  --apollo-border: #e2e8f0;
  --apollo-bg: #f8fafc;
}

body {
  background: #fff;
  color: var(--apollo-dark);
}

#apolloPrimaryNav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(10px);
  width: 100%;
}

#apolloPrimaryNav .apollo-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

#apolloPrimaryNav .apollo-nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  max-width: 180px;
}

#apolloPrimaryNav .apollo-logo-img {
  display: block;
  width: auto;
  height: 54px;
  max-height: 54px;
  max-width: 160px;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

#apolloPrimaryNav .apollo-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

#apolloPrimaryNav .apollo-nav-item {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

#apolloPrimaryNav .apollo-nav-link,
#apolloPrimaryNav .apollo-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #475569;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 0;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
}

#apolloPrimaryNav .apollo-nav-link:hover,
#apolloPrimaryNav .apollo-nav-button:hover {
  color: var(--apollo-teal);
  text-decoration: none;
}

#apolloPrimaryNav .apollo-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  padding: 12px 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  z-index: 10000;
  text-align: left;
}

#apolloPrimaryNav .apollo-nav-item:hover > .apollo-dropdown,
#apolloPrimaryNav .apollo-nav-item:focus-within > .apollo-dropdown,
#apolloPrimaryNav .apollo-dropdown.is-open {
  display: block;
}

#apolloPrimaryNav .apollo-dropdown a {
  display: block;
  color: #334155;
  text-decoration: none;
  line-height: 1.25;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 18px;
  border: 0;
  background: transparent;
  white-space: normal;
}

#apolloPrimaryNav .apollo-dropdown a:hover {
  background: #f8fafc;
  color: var(--apollo-teal);
  text-decoration: none;
}

#apolloPrimaryNav .apollo-menu-parent {
  padding-left: 20px;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#apolloPrimaryNav .apollo-menu-child {
  padding-left: 42px;
  font-size: 13px;
  font-weight: 800;
}

#apolloPrimaryNav .apollo-menu-grandchild {
  padding-left: 68px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b !important;
}

#apolloPrimaryNav .apollo-menu-child::before,
#apolloPrimaryNav .apollo-menu-grandchild::before {
  content: "+ ";
  color: var(--apollo-teal);
  font-weight: 900;
}

#apolloPrimaryNav .apollo-menu-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 10px 0;
}

#apolloPrimaryNav .apollo-nav-cta {
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  background: var(--apollo-teal);
  color: #fff;
  padding: 12px 18px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.22);
}

#apolloPrimaryNav .apollo-nav-cta:hover {
  background: var(--apollo-dark);
}

#apolloPrimaryNav .apollo-mobile-toggle {
  display: none;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}

.eco-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--apollo-dark);
  color: #fff;
  text-align: center;
}

.eco-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}

.eco-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.62)),
    radial-gradient(circle at center, rgba(13, 148, 136, 0.22), transparent 55%);
}

.eco-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  padding: 80px 20px;
  margin: 0 auto;
}

.eco-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #d9f99d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eco-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.eco-tagline {
  margin: 0 auto 24px;
  max-width: 920px;
  color: #f8fafc;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
}

.eco-subhead {
  margin: 0 auto 34px;
  max-width: 900px;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.eco-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}

.eco-btn-primary,
.eco-btn-secondary {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  cursor: pointer;
  border: 0;
  transition: transform 0.2s ease;
}

.eco-btn-primary {
  background: var(--apollo-gold);
  color: #111827;
}

.eco-btn-secondary {
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.eco-btn-primary:hover,
.eco-btn-secondary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.eco-pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.eco-pill {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  text-align: left;
}

.eco-pill strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}

.eco-pill span {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.45;
}

.eco-platform-section {
  padding: 70px 20px;
  background: var(--apollo-bg);
}

.eco-platform-section.white {
  background: #fff;
}

.eco-platform-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.eco-platform-eyebrow {
  color: var(--apollo-teal);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}

.eco-platform-heading {
  margin: 10px 0 12px;
  color: var(--apollo-dark);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.eco-platform-copy {
  max-width: 900px;
  color: var(--apollo-copy);
  font-size: 19px;
  line-height: 1.62;
}

.incentive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.incentive-card {
  background: #fff;
  border: 1px solid var(--apollo-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.incentive-card-media {
  position: relative;
  min-height: 230px;
  background: var(--apollo-dark);
  overflow: hidden;
}

.incentive-card-media img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  opacity: 0.68;
}

.incentive-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.15)),
    radial-gradient(circle at right, rgba(13, 148, 136, 0.28), transparent 56%);
}

.incentive-badge {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.95);
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.incentive-card-body {
  padding: 30px;
}

.incentive-card h3 {
  margin: 0 0 14px;
  color: var(--apollo-dark);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.incentive-card p {
  color: var(--apollo-copy);
  line-height: 1.65;
  font-size: 16px;
}

.stat-strip,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stat-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--apollo-dark);
  color: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.stat-card strong {
  display: block;
  color: var(--apollo-gold);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card span {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.45;
}

.workflow-band {
  padding: 72px 20px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92)),
    radial-gradient(circle at right, rgba(13, 148, 136, 0.26), transparent 48%);
  color: #fff;
}

.workflow-band .eco-platform-heading {
  color: #fff;
}

.workflow-band .eco-platform-copy {
  color: #cbd5e1;
}

.workflow-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.workflow-card h3 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}

.workflow-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.cta-band {
  margin-top: 34px;
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.86)),
    radial-gradient(circle at right, rgba(13, 148, 136, 0.25), transparent 50%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 8px;
}

.cta-band p {
  color: #cbd5e1;
  margin: 0;
}

@media (max-width: 980px) {
  #apolloPrimaryNav .apollo-nav-inner {
    flex-wrap: wrap;
  }

  #apolloPrimaryNav .apollo-mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  #apolloPrimaryNav .apollo-nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
  }

  #apolloPrimaryNav .apollo-nav-links.is-open {
    display: flex;
  }

  #apolloPrimaryNav .apollo-nav-link,
  #apolloPrimaryNav .apollo-nav-button {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
  }

  #apolloPrimaryNav .apollo-dropdown {
    position: static;
    width: 100%;
    max-width: none;
    box-shadow: none;
    border-radius: 14px;
    margin-bottom: 10px;
  }

  #apolloPrimaryNav .apollo-nav-item:hover > .apollo-dropdown {
    display: none;
  }

  #apolloPrimaryNav .apollo-dropdown.is-open {
    display: block;
  }

  #apolloPrimaryNav .apollo-nav-cta {
    order: 2;
    margin-left: auto;
  }

  .eco-pill-row,
  .incentive-grid,
  .stat-strip,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .eco-pill {
    text-align: center;
  }

  .cta-band {
    display: block;
    text-align: center;
  }

  .cta-band .eco-btn-primary {
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  #apolloPrimaryNav .apollo-nav-cta {
    width: 100%;
    order: 4;
  }
}
/* Apollo RetroCore Video Callout */
.retrocore-video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--apollo-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.retrocore-video-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6; /* Dims the video so the text is readable */
}

.retrocore-video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.3));
}

.retrocore-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.retrocore-content h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.retrocore-content p {
  color: #e2e8f0;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  margin: 0;
}

