:root {
  --navy-1: #06133a;
  --navy-2: #0b1f5c;
  --navy-3: #112d7a;
  --teal: #19d3d3;
  --gold: #d8b15a;
  --white: #ffffff;
  --soft: #f5f8fc;
  --soft-blue: #edf5ff;
  --text: #24324a;
  --muted: #6d7a90;
  --line: #e6edf7;
  --shadow: 0 14px 38px rgba(16, 34, 77, 0.1);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --radius-lg: 24px;
  --max-width: 1180px;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Shared header / nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 19, 58, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(25, 211, 211, 0.12), transparent 30%),
    linear-gradient(135deg, var(--navy-1), var(--navy-2) 50%, var(--navy-3));
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 90px;
}

.hero-subpage .hero-inner {
  min-height: auto;
  justify-content: flex-start;
  text-align: left;
  padding: 88px 0 84px;
}

.hero-content {
  max-width: 920px;
}

.hero-content-left {
  max-width: 880px;
}

.logo-wrap {
  width: min(360px, 72vw);
  margin: 0 auto 34px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.hero-kicker {
  display: inline-block;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.12rem;
  max-width: 820px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-content-left p {
  margin-left: 0;
  margin-right: 0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-content-left .hero-buttons {
  justify-content: flex-start;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #14213e;
}

.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 46px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #10224d;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.overview {
  background: linear-gradient(to bottom, #ffffff, var(--soft));
}

.band {
  background: linear-gradient(135deg, #0a1f57, #14357f);
  color: var(--white);
}

.band .section-heading h2,
.band .section-heading p {
  color: var(--white);
}

.band .section-heading p {
  opacity: 0.88;
}

.contact {
  background: var(--soft);
}

.board-composition {
  background: var(--soft);
}

.board-section {
  background: #ffffff;
}

.leadership-highlights {
  background: var(--soft-blue);
}

.cta {
  background: #ffffff;
  text-align: center;
}

/* Layout utilities */
.grid,
.stats-grid,
.members-grid,
.highlights-grid,
.capabilities-grid {
  display: grid;
  gap: 24px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.capabilities-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.members-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 28px;
}

.highlights-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Cards */
.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 12px 34px rgba(16, 34, 77, 0.08);
  border: 1px solid #e8eef6;
}

.card h3 {
  color: #0f2b67;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.card p {
  color: #5f6f86;
  font-size: 0.98rem;
}

.band-card,
.band .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.band-card h3,
.band-card p,
.band .card h3,
.band .card p {
  color: var(--white);
}

.capability-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.capability-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.capability-card p {
  color: rgba(255, 255, 255, 0.88);
}

/* Contact box */
.contact-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 22px;
  padding: 42px 28px;
  box-shadow: 0 16px 42px rgba(16, 34, 77, 0.08);
  border: 1px solid #e8eef6;
}

.contact-box h2 {
  color: #10224d;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-box p {
  color: #607089;
  margin-bottom: 18px;
}

.email {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f2b67;
  word-break: break-word;
}

/* Stats */
.stat-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 28px 20px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f2b67;
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

/* Board member cards */
.group-heading {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f2b67;
  margin: 10px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e7eef9;
}

.member-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.member-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dfeaff, #edf5ff);
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.member-info {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.member-name {
  font-size: 1.32rem;
  font-weight: 800;
  color: #10224d;
  margin-bottom: 4px;
}

.member-title {
  color: #0f2b67;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.member-bio {
  color: #5f6f86;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.member-highlights {
  background: var(--soft);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.member-highlights ul {
  padding-left: 18px;
}

.member-highlights li {
  margin-bottom: 6px;
  color: #30435f;
  font-size: 0.92rem;
}

.expertise-badges {
  margin-top: auto;
  padding-top: 6px;
}

.expertise-badge {
  display: inline-block;
  background: var(--soft-blue);
  color: #0f2b67;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 6px;
  margin-bottom: 8px;
}

/* Highlights */
.highlight-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  text-align: center;
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.highlight-item h3 {
  color: #10224d;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.highlight-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-box {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0a1f57, #14357f);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 42px 28px;
  box-shadow: 0 18px 48px rgba(16, 34, 77, 0.16);
}

.cta-box h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 18px;
}

.cta-box a {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  background: #07142f;
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-left {
  max-width: 520px;
  line-height: 1.7;
}

.footer-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-right a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: var(--teal);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
}

/* Responsive */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner {
    min-height: auto;
    padding: 70px 0 80px;
  }

  .hero-subpage .hero-inner {
    padding: 72px 0 70px;
  }

  .logo-wrap {
    width: min(290px, 76vw);
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .member-image-wrapper {
    aspect-ratio: 3 / 2;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-right {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .member-image-wrapper {
    aspect-ratio: 1 / 1;
  }

  .hero h1 {
    letter-spacing: -0.5px;
  }
}
.logo-wrap-left {
  margin: 0 0 28px 0;
  width: min(280px, 60vw);
}