/* ── Boostia V2 Shared Styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #102041;
  --navy-deep:  #0a1628;
  --lime:       #D9F632;
  --blue:       #1C59BB;
  --blue-light: #76B9FF;
  --orange:     #FA982F;
  --white:      #FFFFFF;
  --text-muted: rgba(255,255,255,0.60);
  --divider:    rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; }
ul  { list-style: none; }

/* ── Navigation — Split blue-light / navy, NOT sticky ── */
.site-nav {
  display: flex;
  height: 58px;
}
.nav-left {
  background: var(--blue-light);
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.nav-right {
  background: var(--navy);
  width: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo { height: 20px; width: auto; }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 300;
  flex-direction: column;
  padding: 20px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 52px;
}
.menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}
.menu-links { display: flex; flex-direction: column; gap: 2px; }
.menu-links a {
  font-family: 'Funnel Display', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid var(--divider);
  display: block;
}
.menu-links a:last-child { border-bottom: none; }
.menu-cta { margin-top: auto; }

/* ── Page Header Band ── */
.page-header {
  background: var(--blue);
  padding: 48px 24px 40px;
}
.page-header-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.page-header h1 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(36px, 9vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* ── Section utilities ── */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.section-headline {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.divider { height: 1px; background: var(--divider); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
}
.btn-outline-blue {
  border: 1.5px solid var(--blue-light);
  color: var(--blue-light);
  background: transparent;
}
.btn-outline-blue:hover { background: rgba(118,185,255,0.10); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.70); background: rgba(255,255,255,0.06); }
.btn-lime { background: var(--lime); color: var(--navy); border: none; font-weight: 600; }
.btn-lime:hover { filter: brightness(1.05); }
.btn-navy { background: var(--navy); color: var(--white); border: none; font-weight: 600; }
.btn-block { display: block; width: 100%; }

/* ── Footer — WHITE background ── */
footer {
  background: #FFFFFF;
  padding: 52px 24px 40px;
  color: #102041;
}
.footer-logo { height: 22px; width: auto; margin-bottom: 27px; }
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: #102041;
  margin-bottom: 27px;
}
.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin-bottom: 27px;
}
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  color: #102041;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: #102041;
  text-decoration: none;
  transition: opacity 0.15s;
}
.footer-links a:hover { opacity: 0.65; }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
  color: #102041;
  border-top: 1px solid rgba(16,32,65,0.15);
  padding-top: 0;
}

/* ══════════════════════════════════════
   DESKTOP RESPONSIVE — 1024px+
══════════════════════════════════════ */
@media (min-width: 1024px) {

  /* ── Nav ── */
  .site-nav { height: 72px; position: sticky; top: 0; z-index: 200; }
  .nav-left { padding: 0 48px; flex-shrink: 0; }
  .nav-logo, .nav-logo-dark { height: 26px; }

  .nav-desktop-links {
    display: flex !important;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    padding: 0 32px;
    gap: 0;
    background: var(--navy);
  }
  .nav-desktop-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: color 0.15s;
    white-space: nowrap;
  }
  .nav-desktop-links a:hover { color: var(--white); }
  .nav-desktop-links a.nav-active { color: var(--white); font-weight: 500; border-bottom: 2px solid var(--lime); padding-bottom: 6px; }
  .nav-desktop-links .nav-cta {
    background: var(--lime);
    color: var(--navy);
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
    padding: 8px 16px;
  }
  .nav-desktop-links .nav-cta:hover { filter: brightness(1.05); color: var(--navy); }
  .nav-right { display: none !important; }
  .mobile-menu { display: none !important; }

  /* ── Footer ── */
  footer { padding: 72px 60px 48px; }
  .footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto 32px;
  }
  .footer-brand { flex: 0 0 320px; }
  .footer-brand .footer-logo { margin-bottom: 16px; }
  .footer-brand .footer-tagline { margin-bottom: 0; }
  .footer-cols {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-bottom: 0;
  }
  .footer-copy {
    max-width: 1280px;
    margin: 0 auto;
  }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
