@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swapfamily=DM+Sans:ital,wght@0,300;0,400;0,500;1,400https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swapdisplay=swap');

:root {
  --navy: #0D1F3C;
  --blue: #2155A3;
  --sky: #5B8FD4;
  --coral: #E05C30;
  --coral-dark: #B84520;
  --cream: #F5EFE4;
  --cream-dark: #EDE5D6;
  --white: #FFFFFF;
  --text-dark: #0D1F3C;
  --text-mid: #3A5070;
  --text-light: #7A93B0;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(91,143,212,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--coral); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(245,239,228,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 500 !important;
}

.nav-cta:hover { background: var(--coral-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}

.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,239,228,0.4);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245,239,228,0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: #0a1829;
  transform: translateY(-1px);
}

/* SECTION UTILITIES */
section { padding: 80px 5%; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title.light { color: var(--cream); }

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

.section-sub.light { color: rgba(245,239,228,0.7); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* BADGES */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.badge-navy { background: var(--navy); color: var(--sky); }
.badge-blue { background: var(--blue); color: #fff; }
.badge-coral { background: var(--coral); color: #fff; }
.badge-cream { background: var(--cream-dark); color: var(--navy); }

/* CARDS */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(13,31,60,0.07);
}

/* COMING SOON BANNER */
.coming-soon-bar {
  background: var(--blue);
  color: var(--cream);
  text-align: center;
  padding: 10px 5%;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 99;
}

.coming-soon-bar strong { color: var(--cream); }
.coming-soon-bar .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* PAGE OFFSET FOR FIXED NAV + BANNER */
.page-offset { padding-top: 104px; }

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(245,239,228,0.6);
  padding: 48px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-brand-name span { color: var(--coral); }

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(245,239,228,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245,239,228,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 5%;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(91,143,212,0.15);
  }
  section { padding: 60px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
