/* ============================================================
   BLUE PROSPERITY FUND — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --navy:        #07111f;
  --navy-mid:    #0b1a2d;
  --navy-light:  #122035;
  --navy-card:   #0f1e33;
  --teal:        #00b4d8;
  --teal-light:  #90e0ef;
  --teal-dark:   #0077b6;
  --teal-glow:   rgba(0, 180, 216, 0.15);
  --white:       #ffffff;
  --text-muted:  #7da8c8;
  --text-dim:    #4a7a9b;
  --gold:        #c9a84c;
  --green-impact:#00c896;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--teal-light); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal); color: var(--navy);
  padding: 0.875rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: 0.01em; white-space: nowrap;
}
.btn-primary:hover {
  background: var(--teal-light); color: var(--navy);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,216,0.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  padding: 0.875rem 2rem; border-radius: 4px;
  font-weight: 500; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--teal); color: var(--teal); transform: translateY(-2px);
}
.btn-outline-teal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--teal);
  padding: 0.875rem 2rem; border-radius: 4px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--teal); cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline-teal:hover {
  background: var(--teal); color: var(--navy); transform: translateY(-2px);
}

/* === COOKIE BANNER === */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(7,17,31,0.97); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,180,216,0.25);
  padding: 1.25rem 2rem; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
#cookie-banner.visible { transform: translateY(0); }

#cookie-banner p { font-size: 0.82rem; color: var(--text-muted); flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--teal); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }

.btn-cookie-accept, .btn-cookie-decline {
  padding: 0.45rem 1.1rem; border-radius: 4px; font-size: 0.82rem;
  font-weight: 600; cursor: pointer; border: none; transition: 0.2s;
}
.btn-cookie-accept { background: var(--teal); color: var(--navy); }
.btn-cookie-accept:hover { background: var(--teal-light); }
.btn-cookie-decline {
  background: transparent; border: 1px solid var(--text-dim); color: var(--text-muted);
}
.btn-cookie-decline:hover { border-color: var(--text-muted); color: var(--white); }

/* === NAVIGATION === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.3s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(7,17,31,0.96); backdrop-filter: blur(20px);
  padding: 1rem 3rem; border-bottom-color: rgba(0,180,216,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--navy); flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  color: var(--white); letter-spacing: 0.01em;
}
.nav-logo-text em { color: var(--teal); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta-link { padding: 0.5rem 1.25rem; background: var(--teal); border-radius: 4px; }
.nav-cta-link a { color: var(--navy) !important; font-weight: 700 !important; text-transform: none !important; letter-spacing: 0 !important; }
.nav-cta-link:hover { background: var(--teal-light); }
.nav-cta-link:hover a { color: var(--navy) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* === HERO === */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #0d2a45 0%, #0a1628 40%, var(--navy) 100%);
  padding: 7rem 2rem 5rem;
}

/* Animated particles */
.hero-particle {
  position: absolute; border-radius: 50%;
  background: rgba(0,180,216,0.12); pointer-events: none;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0.3); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}

/* Hero globe visual */
.hero-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(0,180,216,0.06) 0%, rgba(0,119,182,0.04) 50%, transparent 70%);
  pointer-events: none;
}
.hero-orb::before {
  content: ''; position: absolute; inset: 60px;
  border-radius: 50%; border: 1px solid rgba(0,180,216,0.12);
  animation: pulse 6s ease-in-out infinite;
}
.hero-orb::after {
  content: ''; position: absolute; inset: 30px;
  border-radius: 50%; border: 1px solid rgba(0,180,216,0.07);
  animation: pulse 6s ease-in-out infinite 1.5s;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.04); opacity: 1; }
}

.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.75rem;
  padding: 0.4rem 1.1rem; border-radius: 100px;
  border: 1px solid rgba(0,180,216,0.35);
  background: rgba(0,180,216,0.05);
}
.hero-eyebrow::before { content: '◈'; font-size: 0.6rem; }

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700; color: var(--white); margin-bottom: 0.5rem;
  line-height: 1.05;
}
.hero-title .accent { color: var(--teal); }
.hero-title-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 400; font-style: italic;
  color: rgba(144,224,239,0.75); margin-bottom: 2rem;
}
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-muted);
  max-width: 580px; margin: 0 auto 3rem; font-weight: 300; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-dim); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; z-index: 2; animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-hint::after {
  content: ''; width: 1px; height: 45px;
  background: linear-gradient(to bottom, var(--teal-dark), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* Wave at hero bottom */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 120px; overflow: hidden; pointer-events: none;
}
.hero-wave svg { width: 100%; height: 100%; }

/* === STATS BAR === */
#stats {
  background: var(--navy-mid);
  border-top: 1px solid rgba(0,180,216,0.12);
  border-bottom: 1px solid rgba(0,180,216,0.12);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.stat-block { padding: 0.5rem; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 700; color: var(--teal); line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-desc {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4;
}
.stat-sep { border: none; border-left: 1px solid rgba(0,180,216,0.15); margin: 0.5rem 0; }

/* === SECTION COMMONS === */
.section { padding: 7rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.narrow { max-width: 820px; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
}
.section-label::before { content: '—'; color: var(--teal-dark); }
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem; line-height: 1.15;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 600px;
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* === CRISIS SECTION === */
#crisis { background: var(--navy); }

.crisis-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-bottom: 5rem;
}
.crisis-text .section-sub { margin-bottom: 2.5rem; }

.crisis-facts { display: flex; flex-direction: column; gap: 0.75rem; }
.crisis-fact {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--navy-card); border-radius: 6px;
  border-left: 3px solid var(--teal-dark);
  transition: border-color 0.25s;
}
.crisis-fact:hover { border-color: var(--teal); }
.crisis-fact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.crisis-fact-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }
.crisis-fact-text strong { color: var(--white); font-weight: 600; }

/* Crisis visual */
.crisis-visual {
  position: relative; height: 420px;
  background: radial-gradient(ellipse at center, #0d2640 0%, #07111f 70%);
  border-radius: 12px; border: 1px solid rgba(0,180,216,0.12);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.globe-wrap { position: relative; width: 220px; height: 220px; }
.globe-core {
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #90e0ef 0%, #0077b6 35%, #023e8a 65%, #011a3c 100%);
  box-shadow: 0 0 80px rgba(0,119,182,0.5), inset 0 -10px 30px rgba(0,0,0,0.4);
  position: relative; z-index: 2;
}
.globe-shine {
  position: absolute; top: 28px; left: 45px;
  width: 70px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12); z-index: 3;
  transform: rotate(-20deg);
}
.globe-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(0,180,216,0.25);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: expandRing linear infinite;
}
.ring-1 { width: 260px; height: 260px; animation-duration: 4s; }
.ring-2 { width: 310px; height: 310px; animation-duration: 4s; animation-delay: 1.3s; }
.ring-3 { width: 380px; height: 380px; animation-duration: 4s; animation-delay: 2.6s; }
@keyframes expandRing {
  0%   { transform: translate(-50%,-50%) scale(0.85); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.3); opacity: 0; }
}

.crisis-stat-tag {
  position: absolute;
  background: rgba(7,17,31,0.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(0,180,216,0.3); border-radius: 8px;
  padding: 0.6rem 1rem; font-size: 0.78rem; color: var(--teal-light);
  white-space: nowrap;
}
.crisis-stat-tag strong { display: block; font-size: 1.1rem; color: var(--teal); font-family: 'Playfair Display', serif; }
.tag-tl { top: 1.5rem; left: 1.5rem; }
.tag-tr { top: 1.5rem; right: 1.5rem; }
.tag-bl { bottom: 1.5rem; left: 1.5rem; }
.tag-br { bottom: 1.5rem; right: 1.5rem; }

/* Threat cards */
.threat-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.threat-card {
  background: var(--navy-card); border: 1px solid rgba(0,180,216,0.1);
  border-radius: 8px; padding: 1.75rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.threat-card:hover {
  border-color: rgba(0,180,216,0.35); transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.threat-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.threat-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.75rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.threat-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* === SOLUTION SECTION === */
#solution {
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
#solution::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.solution-intro { text-align: center; margin-bottom: 4rem; }
.solution-intro .section-sub { max-width: 640px; margin: 0 auto; text-align: center; }

.solution-tagline {
  display: flex; justify-content: center; gap: 0; margin-bottom: 4rem;
  background: rgba(0,180,216,0.04);
  border: 1px solid rgba(0,180,216,0.15); border-radius: 8px;
  overflow: hidden;
}
.tagline-piece {
  flex: 1; padding: 1.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(0,180,216,0.12);
}
.tagline-piece:last-child { border-right: none; }
.tagline-piece .tp-prefix {
  display: block; font-size: 0.65rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.35rem;
}
.tagline-piece .tp-word {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--teal); font-weight: 700;
}

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  background: rgba(0,180,216,0.03); border: 1px solid rgba(0,180,216,0.12);
  border-radius: 10px; padding: 2.5rem 2rem; position: relative;
  overflow: hidden; transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.pillar:hover {
  background: rgba(0,180,216,0.07); border-color: rgba(0,180,216,0.35);
  transform: translateY(-5px);
}
.pillar::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.pillar:hover::after { opacity: 1; }

.pillar-num {
  font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 700;
  color: rgba(0,180,216,0.08); position: absolute; top: 0.5rem; right: 1.25rem;
  line-height: 1; pointer-events: none;
}
.pillar-alloc {
  display: inline-block; padding: 0.25rem 0.75rem; margin-bottom: 1.25rem;
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2);
  border-radius: 100px; font-size: 0.72rem; color: var(--teal); font-weight: 600;
  letter-spacing: 0.08em;
}
.pillar-icon { font-size: 2.2rem; display: block; margin-bottom: 1rem; }
.pillar h3 {
  font-size: 1.2rem; color: var(--white); margin-bottom: 1rem;
  font-family: 'Inter', sans-serif; font-weight: 700;
}
.pillar p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.pillar-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem;
}
.pillar-tag {
  font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 3px;
  background: rgba(0,180,216,0.06); color: var(--text-muted);
  border: 1px solid rgba(0,180,216,0.1);
}

/* === STRATEGY SECTION === */
#strategy { background: var(--navy); }

.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.strategy-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.strategy-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.si-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 0.7rem; flex-shrink: 0; margin-top: 3px;
}
.si-text h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.si-text p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* Fund specs card */
.fund-card {
  background: var(--navy-light); border: 1px solid rgba(0,180,216,0.15);
  border-radius: 12px; overflow: hidden;
}
.fund-card-header {
  padding: 1.5rem 2rem; background: rgba(0,180,216,0.06);
  border-bottom: 1px solid rgba(0,180,216,0.15);
}
.fund-card-header h3 {
  font-size: 1rem; font-family: 'Inter', sans-serif;
  font-weight: 600; color: var(--teal); letter-spacing: 0.05em; text-transform: uppercase;
}
.fund-specs { padding: 1.25rem 0; }
.fund-spec {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 2rem; border-bottom: 1px solid rgba(0,180,216,0.07);
  transition: background 0.2s;
}
.fund-spec:hover { background: rgba(0,180,216,0.04); }
.fund-spec:last-child { border-bottom: none; }
.spec-label { font-size: 0.82rem; color: var(--text-muted); }
.spec-value { font-size: 0.9rem; color: var(--white); font-weight: 600; text-align: right; }
.spec-value.accent { color: var(--teal); }
.fund-card-footer {
  padding: 1.25rem 2rem; background: rgba(0,180,216,0.03);
  border-top: 1px solid rgba(0,180,216,0.12);
}
.sfdr-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.sfdr-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem; border-radius: 4px;
}
.sfdr-8 { background: rgba(0,180,216,0.15); color: var(--teal); }
.sfdr-9 { background: rgba(0,200,150,0.15); color: var(--green-impact); }

/* === IMPACT SECTION === */
#impact {
  background: linear-gradient(180deg, var(--navy-mid) 0%, #081729 100%);
  position: relative;
}
#impact::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(7,17,31,0.6));
  pointer-events: none;
}

.impact-header { text-align: center; margin-bottom: 4rem; }
.impact-header .section-sub { max-width: 580px; margin: 1rem auto 0; text-align: center; }

.impact-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem;
}
.impact-metric {
  background: rgba(0,180,216,0.03); border: 1px solid rgba(0,180,216,0.12);
  border-radius: 10px; padding: 2rem 1.5rem; text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.impact-metric:hover { background: rgba(0,180,216,0.07); border-color: rgba(0,180,216,0.3); }
.im-value {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
  color: var(--teal); line-height: 1; margin-bottom: 0.5rem;
}
.im-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.impact-commitments { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.commitment-item {
  background: var(--navy-card); border: 1px solid rgba(0,180,216,0.1);
  border-radius: 8px; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.ci-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--teal);
  flex-shrink: 0; margin-top: 6px;
}
.ci-text h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 0.4rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.ci-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* === WAITLIST SECTION === */
#waitlist { background: var(--navy); text-align: center; }
.waitlist-inner { max-width: 820px; margin: 0 auto; }
.waitlist-header { margin-bottom: 3rem; }
.waitlist-header .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
.waitlist-header .section-sub { margin: 1rem auto 0; text-align: center; max-width: 540px; }

.form-frame-wrap {
  background: var(--navy-light); border: 1px solid rgba(0,180,216,0.2);
  border-radius: 12px; overflow: hidden; position: relative;
}
.form-frame-wrap iframe {
  width: 100%; min-height: 700px; border: none; display: block;
  background: var(--navy);
}
.form-loading {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 1rem;
  background: var(--navy-light); font-size: 0.9rem; color: var(--text-muted);
  pointer-events: none; transition: opacity 0.3s;
}
.form-loading.hidden { opacity: 0; }

.open-form-fallback {
  padding: 3rem 2rem; display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
}
.open-form-fallback p { color: var(--text-muted); font-size: 0.9rem; }

/* === FOOTER === */
footer {
  background: #040c17; padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(0,180,216,0.1);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0,180,216,0.08);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); margin-bottom: 0.75rem;
}
.footer-brand-name em { color: var(--teal); font-style: normal; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; max-width: 300px; }
.footer-domains { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-domains a { font-size: 0.8rem; color: var(--teal); opacity: 0.8; transition: opacity 0.2s; }
.footer-domains a:hover { opacity: 1; }

.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1.5rem; padding-top: 2rem;
}
.footer-legal { font-size: 0.72rem; color: rgba(125,168,200,0.45); line-height: 1.7; max-width: 620px; }
.footer-copy { font-size: 0.72rem; color: rgba(125,168,200,0.35); white-space: nowrap; }

/* === MODAL === */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(4,12,23,0.93); backdrop-filter: blur(12px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--navy-light); border: 1px solid rgba(0,180,216,0.25);
  border-radius: 14px; width: 100%; max-width: 720px; max-height: 92vh;
  overflow: hidden; display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.98); transition: transform 0.35s var(--ease);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.75rem; border-bottom: 1px solid rgba(0,180,216,0.15);
  flex-shrink: 0;
}
.modal-top-title {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white);
}
.modal-close-btn {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: 1.6rem; line-height: 1; padding: 2px; transition: color 0.2s;
}
.modal-close-btn:hover { color: var(--white); }

.modal-body { flex: 1; overflow-y: auto; }
.modal-body iframe { width: 100%; height: 640px; border: none; display: block; background: var(--navy); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-sep { display: none; }
  .crisis-grid { grid-template-columns: 1fr; }
  .crisis-visual { height: 300px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .strategy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .impact-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .threat-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.85rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 1.25rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,17,31,0.98); padding: 1.5rem;
    border-bottom: 1px solid rgba(0,180,216,0.2);
  }
  .hamburger { display: flex; }

  .pillars { grid-template-columns: 1fr; }
  .impact-metrics { grid-template-columns: 1fr; }
  .impact-commitments { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; }
  .solution-tagline { flex-direction: column; }
  .tagline-piece { border-right: none; border-bottom: 1px solid rgba(0,180,216,0.12); }
  .tagline-piece:last-child { border-bottom: none; }
  .threat-cards { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 5rem 1.5rem; }

  /* Crisis visual: switch from absolute-positioned tags to grid layout */
  .crisis-visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1.25rem 1rem 1.25rem;
    align-items: start;
    overflow: visible;
  }
  .globe-wrap {
    grid-column: 1 / -1;
    width: 110px; height: 110px;
    margin: 0.25rem auto 0.75rem;
  }
  .globe-core { width: 110px; height: 110px; }
  .globe-shine { top: 14px; left: 22px; width: 34px; height: 20px; }
  .ring-1 { width: 130px; height: 130px; }
  .ring-2 { width: 155px; height: 155px; }
  .ring-3 { width: 190px; height: 190px; }
  .crisis-stat-tag {
    position: static;
    white-space: normal;
    font-size: 0.74rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2.4rem; }
  .stats-inner { grid-template-columns: 1fr; }
  nav { padding: 1rem; }
  nav.scrolled { padding: 0.75rem 1rem; }
  .modal-body iframe { height: 520px; }
  .cookie-btns { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

/* === UTILITY === */
.text-teal { color: var(--teal); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0; }

/* === STRATEGY SOLO (no right card) === */
.strategy-solo { max-width: 780px; }
.strategy-solo .section-sub { margin-bottom: 0; }
.strategy-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .strategy-list-2col { grid-template-columns: 1fr; }
}

/* === WAITLIST FORM CARD === */
#waitlist { background: var(--navy-mid); }

.waitlist-inner { max-width: 680px; margin: 0 auto; }
.waitlist-header { text-align: center; margin-bottom: 2.5rem; }
.waitlist-header .section-title { font-size: clamp(2rem, 4vw, 3rem); }

/* Card */
.wl-card {
  background: var(--navy-card);
  border: 1px solid rgba(0,180,216,0.18);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.wl-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,0.5), transparent);
}

/* Badge */
.wl-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 100px; padding: 5px 14px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--teal); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.wl-dot {
  width: 6px; height: 6px; background: var(--green-impact);
  border-radius: 50%; animation: wlpulse 2s ease-in-out infinite;
}
@keyframes wlpulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Card title */
.wl-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--white);
  line-height: 1.15; margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.wl-title em { color: var(--teal); font-style: italic; }
.wl-sub {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 2rem;
}

/* Fields */
.wl-field { margin-bottom: 1.1rem; }
.wl-field label {
  display: block; font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.55); margin-bottom: 7px; letter-spacing: 0.02em;
}
.wl-req { color: var(--teal); margin-left: 2px; }

.wl-field input,
.wl-field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.93rem; color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
  appearance: none;
}
.wl-field input::placeholder { color: rgba(255,255,255,0.2); }
.wl-field input:focus,
.wl-field select:focus {
  border-color: rgba(0,180,216,0.5);
  background: rgba(255,255,255,0.07);
}
.wl-field input.wl-error { border-color: #f87171; }
.wl-err-msg {
  font-size: 0.74rem; color: #f87171;
  margin-top: 5px; display: none;
}
.wl-field input.wl-error + .wl-err-msg { display: block; }

.wl-select-wrap { position: relative; }
.wl-select-wrap::after {
  content: '▾'; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); color: var(--text-muted);
  pointer-events: none; font-size: 0.78rem;
}
.wl-field select option { background: #1a2a3e; color: var(--white); }

.wl-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0;
}
@media (max-width: 500px) { .wl-row-2 { grid-template-columns: 1fr; } }

/* Divider */
.wl-divider {
  display: flex; align-items: center; gap: 10px; margin: 1.5rem 0;
}
.wl-divider span { height: 1px; flex: 1; background: rgba(255,255,255,0.07); }
.wl-divider p { font-size: 0.72rem; color: rgba(255,255,255,0.2); white-space: nowrap; }

/* Why we ask */
.wl-perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.wl-perks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.81rem; color: var(--text-muted); line-height: 1.5;
}
.wl-perk-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.2);
  color: var(--teal); font-size: 0.62rem; flex-shrink: 0; margin-top: 1px;
}

/* Consent */
.wl-consent-row {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.5rem;
}
.wl-consent-row input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--teal); margin-top: 2px; cursor: pointer;
}
.wl-consent-row label {
  font-size: 0.77rem; color: var(--text-muted); line-height: 1.55; cursor: pointer;
}
.wl-consent-row label a { color: var(--teal); }
.wl-consent-row label a:hover { text-decoration: underline; }

/* Submit button */
.wl-submit-btn {
  width: 100%;
  background: var(--teal); color: var(--navy);
  font-weight: 700; font-size: 0.95rem;
  padding: 15px 24px; border: none; border-radius: 10px;
  cursor: pointer; letter-spacing: 0.01em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity 0.2s, transform 0.1s, box-shadow 0.2s;
}
.wl-submit-btn:hover { opacity: 0.88; box-shadow: 0 8px 24px rgba(0,180,216,0.3); }
.wl-submit-btn:active { transform: scale(0.98); }
.wl-submit-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.wl-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(7,17,31,0.3); border-top-color: var(--navy);
  border-radius: 50%; animation: wlspin 0.7s linear infinite; display: none;
}
@keyframes wlspin { to { transform: rotate(360deg); } }

.wl-privacy-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
  text-align: center; margin-top: 1rem; line-height: 1.5;
}

/* Success state */
.wl-success-icon {
  width: 72px; height: 72px;
  background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--green-impact); margin: 0 auto 1.75rem;
}
.wl-success-title {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white);
  margin-bottom: 0.75rem; letter-spacing: -0.01em;
}
.wl-success-text {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 2rem; max-width: 380px;
}

@media (max-width: 600px) {
  .wl-card { padding: 2.5rem 1.5rem; }
  .wl-title { font-size: 1.6rem; }
}
