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

:root {
  --navy: #0a1628;
  --deep-blue: #0d2244;
  --mid-blue: #1a3a6e;
  --sky: #2563eb;
  --gold: #d4a017;
  --gold-light: #f5c842;
  --cream: #faf7f2;
  --warm-white: #fff9f0;
  --text: #1c2b40;
  --text-light: #5a6a7e;
  --heart-red: #c0392b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --transition: 0.35s 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(--warm-white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition: var(--transition);
}
.navbar.scrolled { height: 60px; box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: -0.02em;
}
.nav-logo span { color: white; }
.nav-logo .heart { color: #e74c3c; font-size: 0.9rem; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75); padding: 6px 12px; border-radius: var(--radius);
  transition: var(--transition); text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); background: rgba(212,160,23,0.1); }
.nav-apply {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700 !important; padding: 8px 18px !important; border-radius: 30px !important;
}
.nav-apply:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: 0.15;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.97) 0%, rgba(13,34,68,0.92) 50%, rgba(10,22,40,0.97) 100%);
}
/* Animated particles */
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particles::before, .hero-particles::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-particles::before { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles::after { bottom: 20%; right: 10%; animation-delay: 3s; }

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

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px; padding: 0 24px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-block; padding: 8px 20px; margin-bottom: 28px;
  background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.4);
  border-radius: 30px; font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--gold-light); text-transform: uppercase; font-weight: 600;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; color: white; line-height: 1.15; margin-bottom: 24px;
}
.hero-title .highlight { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.8);
  max-width: 680px; margin: 0 auto 40px; font-weight: 300;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 16px 40px; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em;
  transition: var(--transition); box-shadow: 0 8px 30px rgba(212,160,23,0.4);
}
.hero-cta:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(212,160,23,0.5); }
.hero-cta .arrow { font-size: 1.2rem; transition: transform 0.3s; }
.hero-cta:hover .arrow { transform: translateX(4px); }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; justify-content: center; gap: 60px;
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--gold-light); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--deep-blue); color: white; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block; padding: 6px 16px; margin-bottom: 16px;
  background: rgba(37,99,235,0.1); border-left: 3px solid var(--sky);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sky);
}
.section-dark .section-label { background: rgba(212,160,23,0.15); border-color: var(--gold); color: var(--gold); }

.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.2; margin-bottom: 20px;
}
.section-dark .section-title { color: white; }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 600px; }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.alt-bg::after { background: var(--cream); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900; color: white; margin-bottom: 16px;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 60px; }

.card {
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition); border: 1px solid rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sky), var(--mid-blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.card-body { padding: 32px; }
.card-body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ── PROGRAM STEPS ── */
.steps { margin-top: 60px; }
.step {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 900;
  flex-shrink: 0;
}
.step-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-light); }

/* ── PULL QUOTE ── */
.pull-quote {
  background: var(--navy); color: white;
  padding: 80px 40px; text-align: center; position: relative;
}
.pull-quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic; font-weight: 400; line-height: 1.4; max-width: 800px; margin: 0 auto 24px;
}
.pull-quote blockquote strong { color: var(--gold-light); font-style: normal; font-weight: 900; }
.pull-quote cite { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── BLOCKCHAIN TRACKER CARD ── */
.tracker-card {
  background: var(--deep-blue); color: white; border-radius: 16px;
  padding: 40px; border: 1px solid rgba(212,160,23,0.2);
  box-shadow: 0 0 60px rgba(37,99,235,0.15);
}
.tracker-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold-light); margin-bottom: 28px; }
.tracker-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.tracker-items li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: rgba(255,255,255,0.05); border-radius: 8px;
  font-size: 0.92rem;
}
.tracker-items li strong { color: var(--gold-light); }

/* ── ADVISORS ── */
.advisors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 60px; }
.advisor-card {
  background: white; border-radius: 12px; padding: 32px 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.advisor-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.advisor-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--mid-blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; font-family: var(--font-display);
  color: white; border: 3px solid var(--gold);
}
.advisor-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.advisor-card p { font-size: 0.8rem; color: var(--text-light); }

/* ── CONTACT FORM ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-detail .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(37,99,235,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); display: block; margin-bottom: 2px; }
.contact-detail span { font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 12px 16px; border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  background: white; color: var(--text);
  transition: var(--transition); outline: none;
}
input:focus, textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sky); color: white;
  padding: 14px 36px; border-radius: 50px; border: none;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition);
}
.btn-submit:hover { background: var(--mid-blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.3); }

.success-msg {
  display: none; padding: 16px 20px; background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3); border-radius: var(--radius);
  color: #15803d; font-weight: 500; margin-bottom: 20px; font-size: 0.95rem;
}

/* ── CRISIS BANNER ── */
.crisis-banner {
  background: linear-gradient(135deg, #c0392b, #96281b);
  color: white; padding: 20px 40px; text-align: center;
  font-size: 0.9rem; font-weight: 500;
}
.crisis-banner strong { font-size: 1rem; }
.crisis-banner a { color: var(--gold-light); font-weight: 700; text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 60px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 12px; }
footer h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-light); margin-bottom: 16px; font-weight: 700; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
footer ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease both; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy); flex-direction: column;
  justify-content: center; align-items: center; gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.3rem; color: white; font-family: var(--font-display); font-weight: 700; }
.mobile-nav .close-btn { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: white; cursor: pointer; background: none; border: none; }

/* ── STAT HIGHLIGHT ── */
.stat-highlight {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; border: 1px solid rgba(0,0,0,0.07); border-radius: 12px; overflow: hidden;
  margin-top: 60px;
}
.stat-block {
  padding: 40px 32px; text-align: center; border-right: 1px solid rgba(0,0,0,0.07);
  background: white;
}
.stat-block:last-child { border-right: none; }
.stat-block .num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--navy); line-height: 1;
}
.stat-block .num span { color: var(--sky); }
.stat-block .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-top: 8px; }

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse .col-img { order: -1; }

.col-img img { border-radius: 12px; width: 100%; object-fit: cover; height: 380px; }

/* ── RIBBON ── */
.ribbon {
  background: var(--sky); color: white; padding: 20px 40px; text-align: center;
  font-size: 1rem; font-weight: 600;
}
.ribbon a { color: var(--gold-light); font-weight: 700; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-img { order: 0; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 30px; padding: 30px 24px 50px; }
  .section { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
