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

:root {
  --navy: #172937;
  --navy-light: #1e3545;
  --navy-mid: #0f1e28;
  --blue: #86C3F3;
  --blue-dark: #5ba8e0;
  --white: #FFFFFF;
  --cloud: #EDEFF7;
  --smoke: #D3D6E0;
  --steel: #BCBFCC;
  --space: #9DA2B3;
  --graphite: #6E7180;
  --arsenic: #40424D;
  --phantom: #1E1E24;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: rgba(23,41,55,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(134,195,243,0.1);
  transition: padding 0.3s;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 36px; height: 36px; }
.logo-text { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.5px; color: var(--white); text-decoration: none; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--steel); font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--blue) !important; color: var(--navy) !important; padding: 10px 22px; border-radius: 6px; font-weight: 700 !important; transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: var(--white) !important; transform: translateY(-1px); }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 60px 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(134,195,243,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(134,195,243,0.05) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 50%, #0d2030 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image: linear-gradient(var(--blue) 1px, transparent 1px), linear-gradient(90deg, var(--blue) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--blue); }
h1.site-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05; letter-spacing: -1.5px; color: var(--white); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.35s ease forwards;
}
h1.site-title em { font-style: italic; color: var(--blue); }
.hero-sub {
  font-size: 18px; line-height: 1.7; color: var(--steel);
  max-width: 560px; margin-bottom: 48px; font-weight: 400;
  opacity: 0; animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.65s ease forwards;
}
.btn-primary {
  background: var(--blue); color: var(--navy);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.3px;
  text-decoration: none; display: inline-block;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(134,195,243,0.25);
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(134,195,243,0.35); }
.btn-ghost {
  color: var(--steel); font-size: 15px; font-weight: 500;
  text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 0; margin-top: 80px;
  border-top: 1px solid rgba(134,195,243,0.12); padding-top: 40px;
  opacity: 0; animation: fadeUp 0.9s 0.8s ease forwards;
}
.stat { flex: 1; padding-right: 40px; border-right: 1px solid rgba(134,195,243,0.1); margin-right: 40px; }
.stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 44px; line-height: 1; color: var(--white); margin-bottom: 6px; }
.stat-num span { color: var(--blue); }
.stat-label { font-size: 13px; color: var(--graphite); font-weight: 500; letter-spacing: 0.3px; }

/* SHARED SECTION */
section { padding: 120px 60px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 4vw, 56px); line-height: 1.1; letter-spacing: -0.5px; color: var(--white); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--blue); }
.section-body { font-size: 17px; line-height: 1.75; color: var(--steel); max-width: 580px; }

/* WHY */
#why { background: var(--navy-mid); position: relative; overflow: hidden; }
#why::before { content: ''; position: absolute; right: -200px; top: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(134,195,243,0.06) 0%, transparent 70%); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
.pillar { padding: 32px; border-radius: 12px; border: 1px solid rgba(134,195,243,0.1); background: rgba(134,195,243,0.03); margin-bottom: 20px; transition: border-color 0.3s, background 0.3s, transform 0.3s; }
.pillar:hover { border-color: rgba(134,195,243,0.3); background: rgba(134,195,243,0.06); transform: translateX(6px); }
.pillar-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(134,195,243,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pillar-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.pillar h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.pillar p { font-size: 14px; line-height: 1.65; color: var(--graphite); }

/* HOW IT WORKS */
#how { background: var(--navy); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 70px; }
.how-header .section-body { margin: 0 auto; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg,transparent,var(--blue),var(--blue),transparent); opacity: 0.25; }
.step { padding: 0 24px; text-align: center; }
.step-num { width: 72px; height: 72px; border-radius: 50%; border: 1px solid rgba(134,195,243,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; background: rgba(134,195,243,0.05); font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--blue); position: relative; z-index: 1; transition: background 0.3s,border-color 0.3s; }
.step:hover .step-num { background: rgba(134,195,243,0.12); border-color: rgba(134,195,243,0.5); }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.step p { font-size: 14px; color: var(--graphite); line-height: 1.6; }

/* FUND */
#fund { background: linear-gradient(135deg, var(--navy-mid) 0%, #0a1820 100%); position: relative; overflow: hidden; }
.fund-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.fund-card { background: rgba(134,195,243,0.04); border: 1px solid rgba(134,195,243,0.12); border-radius: 16px; padding: 48px; position: relative; overflow: hidden; }
.fund-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--blue),rgba(134,195,243,0.3)); }
.fund-card h3 { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); margin-bottom: 8px; }
.fund-subtitle { font-size: 13px; color: var(--graphite); margin-bottom: 32px; }
.fund-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.metric { padding: 20px; border-radius: 10px; background: rgba(134,195,243,0.05); border: 1px solid rgba(134,195,243,0.08); }
.metric-val { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--blue); margin-bottom: 4px; }
.metric-key { font-size: 12px; color: var(--graphite); font-weight: 500; letter-spacing: 0.5px; }
.fund-features { list-style: none; }
.fund-features li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(134,195,243,0.08); font-size: 15px; color: var(--steel); line-height: 1.5; }
.fund-features li:last-child { border-bottom: none; }
.check { width: 20px; height: 20px; border-radius: 50%; background: rgba(134,195,243,0.12); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.check svg { width: 11px; height: 11px; stroke: var(--blue); fill: none; stroke-width: 2.5; }
.fund-tags { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(134,195,243,0.1); }
.fund-tags-label { font-size: 12px; color: var(--graphite); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.5px; }
.fund-tags-wrap { display: flex; gap: 10px; flex-wrap: wrap; }
.fund-tag { padding: 8px 16px; border-radius: 20px; background: rgba(134,195,243,0.08); border: 1px solid rgba(134,195,243,0.15); font-size: 13px; color: var(--steel); }

/* TESTIMONIALS */
#testimonials { background: var(--navy); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial { background: rgba(134,195,243,0.03); border: 1px solid rgba(134,195,243,0.1); border-radius: 14px; padding: 36px; transition: border-color 0.3s,transform 0.3s; }
.testimonial:hover { border-color: rgba(134,195,243,0.25); transform: translateY(-4px); }
.quote-mark { font-family: 'DM Serif Display', serif; font-size: 64px; color: var(--blue); opacity: 0.3; line-height: 0.6; margin-bottom: 20px; }
.testimonial p { font-size: 15px; line-height: 1.7; color: var(--steel); margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--navy-light)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--navy); }
.author-name { font-size: 14px; font-weight: 700; color: var(--white); }
.author-title { font-size: 12px; color: var(--graphite); margin-top: 2px; }

/* APPLY */
#apply { background: var(--navy-mid); position: relative; overflow: hidden; }
#apply::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%,rgba(134,195,243,0.07) 0%,transparent 70%); }
.apply-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.apply-inner .section-title { font-size: clamp(40px,5vw,64px); margin-bottom: 20px; }
.apply-inner .section-body { margin: 0 auto 48px; text-align: center; }
.apply-form { background: rgba(134,195,243,0.04); border: 1px solid rgba(134,195,243,0.15); border-radius: 16px; padding: 48px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--steel); }
.form-group input,
.form-group select { background: rgba(255,255,255,0.05); border: 1px solid rgba(134,195,243,0.15); border-radius: 8px; padding: 14px 16px; font-family: 'Manrope',sans-serif; font-size: 15px; color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input::placeholder { color: var(--arsenic); }
.form-group input:focus, .form-group select:focus { border-color: var(--blue); }
.form-group select option { background: var(--navy); }
.form-submit { width: 100%; padding: 18px; border-radius: 8px; background: var(--blue); color: var(--navy); font-family: 'Manrope',sans-serif; font-weight: 700; font-size: 16px; border: none; cursor: pointer; margin-top: 8px; transition: background 0.2s,transform 0.2s; box-shadow: 0 8px 32px rgba(134,195,243,0.25); }
.form-submit:hover { background: var(--white); transform: translateY(-2px); }
.form-disclaimer { font-size: 12px; color: var(--arsenic); text-align: center; margin-top: 16px; line-height: 1.5; }
.form-message { text-align: center; padding: 12px; border-radius: 8px; margin-top: 12px; font-size: 14px; font-weight: 600; display: none; }
.form-message.success { background: rgba(134,195,243,0.1); color: var(--blue); border: 1px solid rgba(134,195,243,0.3); }
.form-message.error { background: rgba(255,80,80,0.1); color: #ff8080; border: 1px solid rgba(255,80,80,0.3); }

/* FOOTER */
footer.site-footer { background: var(--phantom); padding: 60px 60px 40px; border-top: 1px solid rgba(134,195,243,0.08); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-tagline { font-size: 13px; color: var(--graphite); margin-top: 8px; }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--graphite); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(134,195,243,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: flex-start; }
.footer-copy { font-size: 12px; color: var(--arsenic); line-height: 1.6; max-width: 600px; }
.footer-legal { font-size: 12px; color: var(--arsenic); text-align: right; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav.site-nav { padding: 20px 28px; }
  .nav-links { display: none; }
  section { padding: 80px 28px; }
  #hero { padding: 120px 28px 60px; }
  .why-inner, .fund-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { border-right: none; border-bottom: 1px solid rgba(134,195,243,0.1); padding-bottom: 24px; margin-right: 0; }
  .footer-top { flex-direction: column; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}
