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

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2E45;
  --navy-light: #253D5B;
  --accent: #C9F563;
  --accent-dim: #b8e34e;
  --cream: #F5F2EC;
  --cream-dark: #EAE6DD;
  --mist: #E8EDF3;
  --text-primary: #0D1B2A;
  --text-secondary: #4A5A6B;
  --text-muted: #7A8A9A;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-card: 0 8px 32px rgba(13,27,42,0.08);
  --shadow-hover: 0 24px 60px rgba(13,27,42,0.14);
  --shadow-cta: 0 12px 32px rgba(13,27,42,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Push footer to bottom on short pages */
nav ~ * { flex-shrink: 0; }
footer { margin-top: auto; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,27,42,0.07);
  transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(13,27,42,0.08); }
.nav-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  letter-spacing: -0.5px; color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.nav-dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.75); }
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta {
  background: var(--navy); color: var(--white); padding: 10px 22px;
  border-radius: 100px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 16px 32px; border-radius: 100px; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.25s ease;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-cta); }
.btn-primary .arrow {
  width: 20px; height: 20px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--navy); font-weight: 700;
  transition: transform 0.25s;
}
.btn-primary:hover .arrow { transform: rotate(45deg); }
.btn-accent {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--navy);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 100px; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.25s ease;
}
.btn-accent:hover { background: var(--accent-dim); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,245,99,0.25); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  text-decoration: none; transition: color 0.2s; background: none; border: none; cursor: pointer;
}
.btn-ghost:hover { color: var(--navy); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.18);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 16px 32px; border-radius: 100px; text-decoration: none; transition: all 0.25s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── SECTION LABELS ── */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px;
  display: block;
}
.section-h2 {
  font-family: var(--font-display); font-size: clamp(36px,4vw,52px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.05; color: var(--navy);
}
.section-h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--navy); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: auto;
}
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--white); letter-spacing: -0.5px; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 140px 60px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,245,99,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(40px,5vw,64px);
  font-weight: 800; letter-spacing: -2px; color: var(--white); line-height: 1.05;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.55);
  max-width: 540px; margin: 0 auto; line-height: 1.7; position: relative; z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, footer { padding-left: 40px; padding-right: 40px; }
  .page-hero { padding: 120px 40px 60px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  footer { flex-direction: column; align-items: flex-start; padding: 40px 24px; }
  .page-hero { padding: 100px 24px 48px; }
}
