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

:root {
  --navy:        #0A2240;
  --navy-deep:   #061629;
  --navy-mid:    #122d52;
  --emerald:     #00C896;
  --emerald-lt:  #33FFAA;
  --emerald-pale:#e0fff0;
  --coral:       #FF9A83;
  --coral-deep:  #e8836a;
  --gold:        #FFDB00;
  --melon:       #FEBAAD;
  --off-white:   #F7F8FB;
  --white:       #FFFFFF;
  --border:      rgba(10,34,64,0.09);
  --border-mid:  rgba(10,34,64,0.16);
  --serif:       'DM Serif Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,22,41,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-wordmark {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.dimple-dot { color: var(--coral); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: rgba(255,255,255,0.9); }
.nav-cta {
  background: var(--emerald) !important;
  color: var(--navy-deep) !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--emerald-lt) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.nav-dropdown-toggle:hover { color: rgba(255,255,255,0.9); }
.nav-dropdown-toggle svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6,22,41,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95) !important;
}

/* ── HAMBURGER ──────────────────────────────────── */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 200;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger span + span { margin-top: 6px; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(6,22,41,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  font-size: 18px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}
.mobile-menu a:active { color: var(--coral); }
.mobile-menu .nav-cta {
  display: inline-block; text-align: center;
  margin-top: 16px; padding: 14px 28px;
  border: none; border-bottom: none;
}
.mobile-dropdown { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none;
  font-size: 18px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 14px 0; cursor: pointer;
  font-family: inherit; transition: color 0.15s;
}
.mobile-dropdown-toggle svg { transition: transform 0.25s; }
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }
.mobile-dropdown-items {
  display: none; flex-direction: column;
  padding-left: 16px; padding-bottom: 8px;
}
.mobile-dropdown-items.open { display: flex; }
.mobile-dropdown-items a {
  font-size: 16px; color: rgba(255,255,255,0.5);
  padding: 10px 0; border-bottom: none;
}

/* ── PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,102,32,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.page-hero-label-dot {
  width: 5px; height: 5px;
  background: var(--emerald-lt);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(51,255,170,0.5);
}
.page-hero-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--coral);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-hero-headline em {
  font-style: italic;
  color: var(--white);
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 640px;
}

/* ── TEAM SECTION ──────────────────────────────── */
.team-section { background: var(--navy-deep); padding: 80px 0 96px; }
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.team-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
}
.team-group-label:not(:first-child) { margin-top: 56px; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.team-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
}
.team-card.featured {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
.team-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px; color: var(--coral);
  margin-bottom: 12px;
}
.team-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.team-role { font-size: 12px; color: var(--emerald-lt); font-weight: 500; margin-bottom: 8px; }
.team-bio { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── CLOSING ───────────────────────────────────── */
.closing-section {
  background: var(--navy);
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,102,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner { max-width: 680px; margin: 0 auto; position: relative; }
.closing-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}
.closing-brand-mark {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--coral);
  display: inline-block;
  transform: rotate(90deg);
  line-height: 1;
}
.closing-brand-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--coral);
  letter-spacing: 0.02em;
}
.closing-tagline {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 100px);
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-cta {
  display: inline-block;
  background: var(--emerald);
  color: var(--navy-deep);
  font-size: 15px; font-weight: 600;
  font-family: var(--sans);
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: 0.02em;
}
.closing-cta:hover { background: var(--emerald-lt); transform: scale(1.02); }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer-wordmark { font-family: var(--serif); font-size: 18px; color: var(--coral); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.45); max-width: 640px; line-height: 1.7; text-align: center; }
.footer-venture { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 6px; font-weight: 500; }
.footer-purpose { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 8px; line-height: 1.6; }
.footer-acnc { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── ANIMATIONS ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; }
  .page-hero { padding: 100px 24px 60px; }
  .team-section { padding: 64px 0 72px; }
  .section-wrap { padding: 0 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
  footer { padding: 28px 24px; }
  .closing-section { padding: 56px 24px; }
}

@media (max-width: 600px) {
  .page-hero { padding: 88px 16px 48px; }
  .team-section { padding: 48px 0 56px; }
  .team-grid { grid-template-columns: 1fr; }
  .section-wrap { padding: 0 16px; }
  nav { padding: 0 16px; }
  footer { padding: 24px 16px; }
  .closing-section { padding: 48px 16px; }
}

/* Accessibility & motion preferences */
.skip-link{position:absolute;left:-9999px;top:0;z-index:2000;background:#0E6620;color:#fff;padding:10px 18px;border-radius:0 0 10px 0;font-size:14px;font-weight:600;text-decoration:none}
.skip-link:focus{left:0}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:2px solid #FF9A83;outline-offset:2px}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
  .fade-up{opacity:1 !important;transform:none !important}
}
