:root {
  --navy: #0B2545;
  --navy-light: #13315C;
  --cream: #F8F5EE;
  --cream-dark: #F0EBDF;
  --coral: #E8634A;
  --coral-light: #F0846F;
  --gold: #D4A843;
  --gold-light: #E8C97A;
  --teal: #2A8F8F;
  --teal-light: #3DB5B5;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A5E;
  --text-light: #8A8A9E;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(11, 37, 69, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 3rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 38px;
  width: auto;
  transition: height 0.3s;
}
nav.scrolled .nav-logo img { height: 32px; }
.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  opacity: 0.7;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--coral);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--coral) !important; color: var(--white) !important;
  padding: 0.6rem 1.5rem !important; border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--coral-light) !important; transform: translateY(-1px); }
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-photo {
  position: absolute; inset: 0;
  background-image: url('images/hero-ocean.jpg');
  background-size: cover;
  background-position: center 40%;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,37,69,0.88) 0%, rgba(19,49,92,0.82) 35%, rgba(11,37,69,0.75) 100%);
}

.hero-wave-bottom {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 120px; overflow: hidden; z-index: 2;
}
.hero-wave-bottom svg {
  position: absolute; bottom: 0; width: 100%; height: 120px;
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto;
  padding: 8rem 3rem 6rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--gold);
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white); line-height: 1.1;
  max-width: 700px; margin-bottom: 1.75rem;
  opacity: 0; animation: fadeInUp 0.8s 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-description {
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,0.75); max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeInUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 0.8s 0.8s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: var(--coral); color: var(--white);
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border-radius: 8px; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--coral-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,99,74,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: transparent; color: var(--white);
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.3); transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0; animation: fadeInUp 0.8s 1s forwards;
}
.hero-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; color: var(--white);
}
.hero-stat-number sup {
  font-size: 0.4em; color: var(--gold-light); font-family: 'DM Sans', sans-serif;
  font-weight: 500; position: relative; top: -0.8em;
}
.hero-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em; margin-top: 0.25rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTIONS ============ */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--coral);
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--text-mid); max-width: 640px;
}

/* Detail link buttons */
.detail-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--coral);
  text-decoration: none; cursor: pointer;
  transition: gap 0.3s;
  background: none; border: none; padding: 0;
}
.detail-link:hover { gap: 0.7rem; }
.detail-link-light { color: var(--gold-light); }
.detail-link-light:hover { color: var(--white); }

/* ============ FOR FOUNDERS ============ */
.founders { background: var(--cream); padding-top: 7rem; }
.founders-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 3rem;
}
.founders-narrative { font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); }
.founders-narrative strong { color: var(--navy); font-weight: 600; }
.founder-features { display: flex; flex-direction: column; gap: 1.5rem; }
.founder-feature {
  padding: 1.5rem; border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(11,37,69,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.founder-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11,37,69,0.08);
}
.founder-feature h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--navy);
  margin-bottom: 0.5rem;
}
.founder-feature p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* Criteria table */
.founders-card {
  background: var(--white); border-radius: 1rem; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid rgba(42,143,143,0.1);
}
.founders-card h3 {
  font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.criteria-list { display: flex; flex-direction: column; gap: 1rem; }
.criteria-item {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.criteria-item:last-child { border-bottom: none; padding-bottom: 0; }
.criteria-label {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid);
}
.criteria-value {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy);
}

/* Promise items */
.founders-promise { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.promise-item { display: flex; gap: 1rem; align-items: flex-start; }
.promise-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.6rem; display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.promise-icon.coral { background: rgba(232,99,74,0.12); }
.promise-icon.teal { background: rgba(42,143,143,0.12); }
.promise-icon.gold { background: rgba(212,168,67,0.12); }
.promise-icon.navy { background: rgba(26,54,93,0.12); }
.promise-text h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.25rem;
}
.promise-text p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ============ SECTORS ============ */
.sectors {
  background: var(--navy);
  position: relative;
}
.sectors .section-label { color: var(--gold-light); }
.sectors .section-label::before { background: var(--gold); }
.sectors .section-title { color: var(--white); }
.sectors .section-subtitle { color: rgba(255,255,255,0.6); }
.sectors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.sector-card {
  padding: 2.5rem 2rem; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.sector-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.sector-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
}
.sector-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 0.75rem;
}
.sector-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.sector-card .sector-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: 50px;
  letter-spacing: 0.05em;
}

/* ============ APPROACH ============ */
.approach { background: var(--cream-dark); }
.approach-columns {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.approach-card {
  padding: 2rem; border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(11,37,69,0.06);
  transition: all 0.3s;
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(11,37,69,0.08);
}
.approach-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: rgba(11,37,69,0.08);
  margin-bottom: 0.5rem;
}
.approach-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--navy);
  margin-bottom: 0.75rem;
}
.approach-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ============ TEAM ============ */
.team { background: var(--white); }
.team-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-bottom: 3rem;
}
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.team-card {
  text-align: center; padding: 2rem 1.25rem;
  border-radius: 14px; background: var(--cream);
  border: 1px solid rgba(11,37,69,0.04);
  transition: all 0.3s;
  cursor: pointer;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(11,37,69,0.1);
  border-color: var(--coral);
}
.team-card-photo {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--white);
  overflow: hidden;
}
.team-card-photo.bg-coral { background: linear-gradient(135deg, var(--coral), var(--coral-light)); }
.team-card-photo.bg-teal { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.team-card-photo.bg-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.team-card-photo.bg-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.team-card-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.team-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem; color: var(--navy); margin-bottom: 0.25rem;
}
.team-card-role {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem; border-radius: 50px; margin-bottom: 0.75rem;
}
.role-mgmt { background: rgba(232,99,74,0.1); color: var(--coral); }
.role-ic { background: rgba(42,143,143,0.1); color: var(--teal); }
.role-op { background: rgba(212,168,67,0.12); color: #B8922F; }

/* Team Filter Buttons */
.team-filters {
  display: flex; gap: 0.6rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.team-filter-btn {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(11,37,69,0.2);
  border-radius: 50px;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.team-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(11,37,69,0.04);
}
.team-filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Card filter animation */
.team-card {
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: transform, opacity;
}
.team-card.filter-hidden {
  display: none;
}
.team-card.filter-entering {
  opacity: 0;
  transform: translateY(24px) scale(0.95);
}
.team-card.filter-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.team-card p {
  font-size: 0.82rem; color: var(--text-mid); line-height: 1.55;
}
.team-card .click-hint {
  display: block; margin-top: 0.75rem;
  font-size: 0.72rem; color: var(--coral); font-weight: 600;
  opacity: 0; transition: opacity 0.3s;
}
.team-card:hover .click-hint { opacity: 1; }

/* ============ ABOUT ============ */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 3rem;
}
.value-item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
}
.value-marker {
  width: 4px; border-radius: 4px; flex-shrink: 0;
}
.v1 { background: var(--coral); }
.v2 { background: var(--teal); }
.v3 { background: var(--gold); }
.v4 { background: var(--navy); }
.value-item h4 {
  font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem;
}
.value-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ============ INVESTORS ============ */
.investors {
  background: var(--navy-light);
  position: relative;
}
.investors .section-label { color: var(--gold-light); }
.investors .section-label::before { background: var(--gold); }
.investors .section-title { color: var(--white); }
.investors .section-subtitle { color: rgba(255,255,255,0.6); }
.investor-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
.investor-text { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; }
.investor-text p { margin-bottom: 1rem; }
.investor-cta {
  padding: 2.5rem; border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.investor-cta h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: var(--white); margin-bottom: 0.75rem;
}
.investor-cta p {
  font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; line-height: 1.6;
}
.investor-email {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: var(--gold); color: var(--navy);
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  border-radius: 8px; transition: all 0.3s; letter-spacing: 0.02em;
}
.investor-email:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,168,67,0.3); }
.investor-disclaimer {
  margin-top: 1.5rem; font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.5; font-style: italic;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--navy);
  text-align: center;
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(42,143,143,0.08), transparent 70%);
}
.contact .section-inner { position: relative; z-index: 1; }
.contact .section-label { color: var(--gold-light); }
.contact .section-label::before { background: var(--gold); }
.contact .section-title { color: var(--white); }
.contact .section-subtitle {
  color: rgba(255,255,255,0.6); margin: 0 auto 2.5rem;
}
.contact-info {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.25rem; margin-bottom: 1.5rem;
}
.contact-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: var(--white);
}
.contact-role {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.contact-details {
  display: flex; gap: 2rem;
}
.contact-details a {
  color: var(--gold-light); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.3s;
}
.contact-details a:hover { color: var(--white); }
.contact-note {
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  font-style: italic; max-width: 500px; margin: 0 auto;
}

/* ============ FOOTER ============ */
.footer-main {
  background: var(--navy); padding: 3rem 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
  align-items: start;
}
.footer-brand img { height: 36px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; }
.footer-links h5 {
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 0.75rem;
}
.footer-links a {
  display: block; color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.85rem; margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--coral-light); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-contact a { color: var(--coral-light); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  background: var(--navy); padding: 1.25rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footnotes-section {
  background: rgba(8, 28, 52, 0.98); padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footnotes {
  max-width: 900px; margin: 0 auto;
  text-align: left;
}
.footnotes p {
  font-size: 0.6rem; color: rgba(255,255,255,0.18);
  line-height: 1.5; margin-bottom: 0.3rem;
}
.footnotes sup { font-size: 0.5rem; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .footer-brand p { max-width: 100%; margin: 0 auto; }
  .footer-links a { display: inline; margin: 0 0.5rem; }
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding: 7rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}
.legal-inner h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.legal-effective {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-inner h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-inner p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}
.legal-inner a {
  color: var(--teal);
  text-decoration: underline;
}
.legal-inner a:hover {
  color: var(--coral);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  max-width: 650px;
  margin: 0;
}
.cookie-banner a {
  color: var(--coral-light);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover {
  opacity: 0.85;
}
.cookie-btn-accept {
  background: var(--coral);
  color: white;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .cookie-banner p { font-size: 0.8rem; }
}

/* ============ DETAIL PANELS ============ */
.detail-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.detail-overlay.active { opacity: 1; pointer-events: auto; }
.detail-panel {
  position: fixed; top: 0; right: -560px; bottom: 0;
  width: 540px; max-width: 90vw; z-index: 9999;
  background: var(--cream);
  overflow-y: auto;
  transition: right 0.35s ease;
  box-shadow: -5px 0 40px rgba(0,0,0,0.2);
}
.detail-panel.active { right: 0; }
.detail-panel-header {
  position: sticky; top: 0; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem;
  background: var(--navy); color: var(--white);
}
.detail-panel-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
}
.detail-close {
  background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 1.8rem;
  cursor: pointer; transition: color 0.3s; line-height: 1;
}
.detail-close:hover { color: var(--white); }
.detail-body {
  padding: 2rem;
}
.detail-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--navy);
  margin: 1.75rem 0 0.75rem;
}
.detail-body h3:first-child { margin-top: 0; }
.detail-body p {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 0.75rem;
}
.detail-body em { color: var(--text-light); font-style: italic; }
.detail-card {
  padding: 1.25rem; border-radius: 10px;
  background: var(--white); margin-bottom: 0.75rem;
  border: 1px solid rgba(11,37,69,0.06);
}
.detail-card h4 {
  font-size: 0.95rem; color: var(--navy); margin-bottom: 0.35rem;
}
.detail-card p { font-size: 0.85rem; margin-bottom: 0; }
.detail-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0;
}
.detail-stat {
  padding: 1.25rem; border-radius: 10px; background: var(--white);
  border: 1px solid rgba(11,37,69,0.06);
}
.detail-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--coral); margin-bottom: 0.25rem;
}
.detail-stat-label { font-size: 0.8rem; color: var(--text-mid); }

/* Bio panel specific */
.bio-panel-photo {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 1rem; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--white);
}
.bio-panel-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.bio-panel-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--navy); text-align: center;
  margin-bottom: 0.25rem;
}
.bio-panel-role {
  text-align: center; font-size: 0.8rem; font-weight: 600;
  color: var(--coral); margin-bottom: 0.5rem;
}
.bio-panel-edu {
  text-align: center; font-size: 0.8rem; color: var(--text-light);
  font-style: italic; margin-bottom: 1.5rem;
}
.bio-linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem; background: #0A66C2; color: white;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  border-radius: 6px; transition: all 0.3s; margin: 1rem auto 0; 
}
.bio-linkedin:hover { background: #004182; transform: translateY(-1px); }
.bio-links { text-align: center; }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0; transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  section { padding: 4rem 1.5rem; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .founders-grid, .team-intro, .about-grid, .investor-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .sectors-grid, .approach-columns { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .sectors-grid, .approach-columns, .team-grid { grid-template-columns: 1fr; }
  .contact-details { flex-direction: column; align-items: center; gap: 0.5rem; }
  .detail-stat-grid { grid-template-columns: 1fr; }
}