:root {
  --navy: #0D1B5E;
  --navy-dark: #091247;
  --navy-mid: #1a2a72;
  --green: #2EE65A;
  --green-dim: rgba(46,230,90,0.12);
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-light: #E8EAF0;
  --gray: #8A91AA;
  --text-body: #3D4466;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
nav.scrolled, nav.light {
  background: rgba(255,255,255,0.97);
  padding: 14px 64px;
  box-shadow: 0 1px 0 var(--gray-light);
}
.nav-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); transition: filter 0.35s; }
nav.scrolled .nav-logo img, nav.light .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s;
}
nav.scrolled .nav-links a, nav.light .nav-links a { color: var(--navy); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
nav.scrolled .nav-links a:hover, nav.light .nav-links a:hover { color: var(--navy-mid); }
nav.scrolled .nav-links a.active, nav.light .nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.55rem; opacity: 0.7; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%); background: var(--white);
  border: 1px solid var(--gray-light); box-shadow: 0 12px 40px rgba(13,27,94,0.1);
  min-width: 210px; border-radius: 4px; overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 12px 20px; font-size: 0.8rem;
  color: var(--navy) !important; border-bottom: 1px solid var(--gray-light);
  font-weight: 400;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--off-white); }
.nav-cta {
  background: var(--green); color: var(--navy) !important;
  padding: 10px 24px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-decoration: none; border-radius: 4px;
  transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: #3fff6a !important; transform: translateY(-1px); }

/* PAGE HERO */
.page-hero {
  min-height: 50vh; background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3080 100%);
  display: flex; align-items: flex-end; padding: 140px 64px 72px;
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-glow {
  position: absolute; top: -20%; right: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,230,90,0.1) 0%, transparent 70%); pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; width: 100%; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }
.page-hero-eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--green); border-radius: 1px; }
.page-hero-title { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 18px; }
.page-hero-title span { color: var(--green); font-weight: 300; }
.page-hero-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 540px; }

/* SECTION UTILS */
.section-wrapper { max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 100px 64px; }
.section-pad-sm { padding: 72px 64px; }
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.section-label { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.section-label::before { content: ''; width: 18px; height: 2px; background: var(--green); border-radius: 1px; flex-shrink: 0; }
.section-label.light { color: var(--green); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 700; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-title em { font-style: normal; color: var(--navy-mid); font-weight: 300; }
.section-body { font-size: 0.93rem; line-height: 1.85; color: var(--text-body); font-weight: 300; }
.section-body.light { color: rgba(255,255,255,0.6); }

/* BUTTONS */
.btn-green { background: var(--green); color: var(--navy); padding: 13px 34px; font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; border-radius: 4px; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-green:hover { background: #3fff6a; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); padding: 13px 34px; font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; border-radius: 4px; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); padding: 12px 33px; font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; border-radius: 4px; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 13px 34px; font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em; text-decoration: none; border-radius: 4px; transition: border-color 0.2s, transform 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--green); transform: translateY(-2px); }

/* TICKER */
.ticker { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; animation: ticker 32s linear infinite; white-space: nowrap; }
.ticker-item { display: inline-flex; align-items: center; gap: 20px; padding: 0 28px; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.38); flex-shrink: 0; }
.ticker-dot { width: 4px; height: 4px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* CTA BAND */
.cta-band { padding: 100px 64px; background: var(--navy-dark); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 120%, rgba(46,230,90,0.1) 0%, transparent 70%); }
.cta-band-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-band-title { font-size: clamp(1.9rem, 3.5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.cta-band-title span { color: var(--green); }
.cta-band-sub { font-size: 0.93rem; font-weight: 300; color: rgba(255,255,255,0.58); line-height: 1.75; margin-bottom: 44px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--navy); padding: 64px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-tagline { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-desc { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.7; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-social a:hover { color: var(--green); }

/* REVEAL */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; } .reveal-d4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav, nav.scrolled, nav.light { padding: 16px 32px; }
  .section-pad { padding: 80px 32px; } .section-pad-sm { padding: 56px 32px; }
  .page-hero { padding: 130px 32px 56px; } footer { padding: 56px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 80px 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav, nav.scrolled, nav.light { padding: 14px 20px; }
  .section-pad { padding: 60px 20px; } .section-pad-sm { padding: 44px 20px; }
  .page-hero { padding: 110px 20px 44px; } footer { padding: 44px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 64px 20px; }
}
