*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0B2C5F;
  --gold: #C8A45D;
  --bg: #F8F9FA;
  --footer: #1F212E;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-600: #4B5563;
  --white: #FFFFFF;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Hidden until Motion animates in (see landing-static.mjs) */
html.motion-pending [data-motion],
html.motion-pending [data-stagger-item],
html.motion-pending [data-hero-item],
html.motion-pending [data-glass-item] {
  opacity: 0;
}

[data-draw-line] {
  transform-origin: left center;
  transform: scaleX(0);
}

body {
  font-family: Montserrat, system-ui, sans-serif;
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.logo img { height: 28px; width: auto; }
nav { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
nav a { font-size: 13px; font-weight: 500; color: var(--navy); }
nav a.active { font-weight: 600; color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
@media (max-width: 640px) {
  nav { gap: 10px; }
  nav a { font-size: 12px; }
}

.hero {
  position: relative; min-height: calc(100dvh - 4rem); display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url(./landing-hero.png) center/cover no-repeat;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,44,95,0.88) 0%, rgba(31,33,46,0.78) 42%, rgba(31,33,46,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 80px 0 96px; }
.hero-grid { display: grid; gap: 48px; align-items: end; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.badge {
  display: inline-flex; padding: 8px 16px; border-radius: 999px;
  background: rgba(200,164,93,0.22); color: var(--gold);
  font-size: 14px; font-weight: 500; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.08;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero-lead { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.88); max-width: 36rem; margin-bottom: 32px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-outline { border: 2px solid rgba(255,255,255,0.8); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.hero-accent {
  width: 112px; height: 3px; background: var(--gold); border-radius: 999px; margin: 40px 0 12px;
  transform-origin: left center;
}
.hero-tags { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.glass-card {
  display: none; border-radius: 16px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); padding: 32px;
}
@media (min-width: 1024px) { .glass-card { display: block; } }
.glass-card h3 { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.glass-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: rgba(255,255,255,0.9); font-weight: 500; }
.glass-num {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(200,164,93,0.2); color: var(--gold); font-size: 12px; font-weight: 700;
}

section { padding: 56px 0; }
@media (min-width: 768px) { section { padding: 80px 0; } }
.section-white { background: var(--white); }
.section-center { text-align: center; max-width: 48rem; margin: 0 auto 40px; }
.section-intro { text-align: left; margin-bottom: 40px; }
.advantages-center { max-width: 56rem; margin: 0 auto; }
.kicker { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
h2.title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.desc { color: var(--gray-600); font-size: 15px; }
.gold-line { width: 64px; height: 4px; background: var(--gold); border-radius: 999px; margin: 24px auto 0; }

.grid-4 {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--bg); border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 20px 24px; height: 100%; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}
.card:hover { border-color: rgba(200,164,93,0.4); box-shadow: 0 8px 24px rgba(11,44,95,0.08); transform: translateY(-4px); }
.icon-box {
  width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(200,164,93,0.14); color: var(--gold); margin-bottom: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
}
.adv-icon { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--gray-600); }

.timeline { position: relative; }
.timeline-line {
  display: none; position: absolute; left: 32px; top: 16px; bottom: 16px; width: 1px;
  background: rgba(200,164,93,0.35);
}
@media (min-width: 768px) { .timeline-line { display: block; } }
.timeline-item { position: relative; margin-bottom: 32px; padding-left: 0; }
@media (min-width: 768px) { .timeline-item { padding-left: 64px; } }
.timeline-dot {
  display: none; position: absolute; left: 26px; top: 32px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--bg);
}
@media (min-width: 768px) { .timeline-dot { display: block; } }
.adv-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 28px 32px; box-shadow: 0 2px 8px rgba(11,44,95,0.04);
  display: flex; gap: 20px; align-items: flex-start;
}
.adv-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px;
  background: var(--navy); color: var(--gold); display: grid; place-items: center;
}
.adv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.adv-card p { font-size: 14px; color: var(--gray-600); }

.stats-band { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.stats-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.2; pointer-events: none;
  background: radial-gradient(circle at 20% 50%, rgba(200,164,93,0.4) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.stats-grid { display: grid; gap: 32px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: 1fr 1.2fr; } }
.stats-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .stats-cards { grid-template-columns: repeat(3, 1fr); } }
.stat-card {
  text-align: center; padding: 20px 24px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06);
}
.stat-card strong { display: block; font-size: 1.5rem; color: var(--gold); margin-bottom: 4px; }
.stat-card span { font-size: 13px; color: rgba(255,255,255,0.65); }

.path-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .path-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.path-card {
  border-radius: 24px; padding: 32px 40px; border: 1px solid var(--gray-200);
  background: var(--white); box-shadow: 0 4px 20px rgba(11,44,95,0.08);
}
@media (min-width: 1024px) { .path-card:first-child { margin-right: 0; } }
.path-card.dark {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4d8f 100%);
  border: 2px solid var(--gold); color: var(--white); box-shadow: 0 12px 40px rgba(11,44,95,0.2);
}
@media (min-width: 1024px) { .path-card.dark { margin-top: 0; margin-left: 0; } }
.path-card h3 { font-size: 1.5rem; font-weight: 700; margin: 24px 0 12px; }
.path-card p { font-size: 14px; color: var(--gray-600); margin-bottom: 32px; max-width: 28rem; }
.path-card.dark p { color: rgba(255,255,255,0.85); }

.steps-wrap { position: relative; }
.steps-track {
  display: none; position: absolute; top: 28px; left: 16.666%; right: 16.666%; height: 2px;
  background: var(--gray-200); z-index: 0;
}
@media (min-width: 768px) { .steps-track { display: block; } }
.steps { display: grid; gap: 32px; position: relative; z-index: 1; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; }
.step-head {
  width: 100%; height: 56px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.step-num {
  position: relative; z-index: 1; width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px;
  background: var(--navy); color: var(--gold); display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gray-600); max-width: 18rem; margin: 0 auto; }

.section-quote {
  margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.08);
  text-align: left;
}
.section-quote blockquote { margin: 0; }
.section-quote blockquote p {
  font-size: clamp(1rem, 1.6vw, 1.125rem); font-style: italic; line-height: 1.65;
  color: var(--navy); margin: 0;
}
.quote-open, .quote-close { color: var(--gold); }
.quote-attribution { margin: 16px 0 0; font-size: 14px; color: var(--gray-600); }

.cta-band { background: var(--navy); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-glow {
  position: absolute; left: -80px; bottom: -80px; width: 256px; height: 256px;
  border-radius: 50%; background: rgba(200,164,93,0.25); filter: blur(48px); pointer-events: none;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 36rem; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-band .btn-row { justify-content: center; position: relative; z-index: 1; }

footer {
  background: var(--footer); color: var(--white); padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: auto;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--white); }
