:root {
  --bg: #f9feff;
  --surface: #ffffff;
  --surface-soft: #f2fbff;
  --surface-tint: #e4f7ff;
  --surface-deep: #006f84;
  --surface-deeper: #004f5f;
  --primary: #0097b2;
  --primary-strong: #007b91;
  --secondary: #a7e6ff;
  --accent: #dff7ff;
  --ink: #153238;
  --muted: #547178;
  --line: rgba(0, 151, 178, 0.18);
  --shadow: 0 18px 46px rgba(0, 103, 122, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Anybody", "Nunito Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(167, 230, 255, 0.58), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(0, 151, 178, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(0, 151, 178, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #ecfaff 36%, #e4f7ff 100%);
  line-height: 1.65;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: var(--primary-strong);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 151, 178, 0.08);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: #ffffff;
}

.nv-brand-logo {
  width: 340px;
  max-width: 58vw;
  height: auto;
  background: #ffffff;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.menu a {
  padding: 10px 14px;
  color: var(--primary-strong);
  font-weight: 700;
  border-radius: 999px;
  transition: 0.25s ease;
  background: rgba(255,255,255,0.58);
}

.menu a:hover {
  background: rgba(167, 230, 255, 0.45);
  color: var(--primary-strong);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(167,230,255,0.08));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -100px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.34) 0%, rgba(0, 151, 178, 0) 72%);
}

.hero::after {
  width: 420px;
  height: 420px;
  left: -90px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(167, 230, 255, 0.5) 0%, rgba(167, 230, 255, 0) 74%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  padding: 10px 0;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  color: var(--primary);
}

.hero h1,
.section h2,
.panel-card h2 {
  font-family: "Anybody", Arial, sans-serif;
}

.hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1;
  max-width: 11.5ch;
  color: var(--surface-deep);
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  max-width: 64ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  box-shadow: 0 14px 30px rgba(0, 151, 178, 0.28);
}

.btn-secondary {
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 151, 178, 0.18);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.hero-highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 700;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 4px rgba(167, 230, 255, 0.34);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card,
.stat-card,
.feature-card,
.team-card,
.contact-card,
.pillars-card,
.impact-card,
.floating-note {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 59, 129, 0.1);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(223,247,255,0.96) 100%);
}

.panel-label {
  color: var(--primary-strong);
}

.panel-card h2 {
  margin: 12px 0 12px;
  font-size: 1.55rem;
  line-height: 1.22;
  color: var(--surface-deep);
}

.panel-card p {
  margin: 0;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  border-radius: 22px;
  padding: 18px;
}

.stat-card strong,
.feature-card h3,
.team-card h3,
.impact-card h3,
.timeline h3,
.pillars-card strong,
.contact-card strong {
  display: block;
  font-family: "Anybody", Arial, sans-serif;
}

.stat-card strong {
  color: var(--primary-strong);
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(167, 230, 255, 0.36), rgba(242, 251, 255, 0.98));
}

.section-dark {
  color: #eefcff;
  background:
    linear-gradient(135deg, rgba(0, 111, 132, 0.98) 0%, rgba(0, 151, 178, 0.96) 52%, rgba(167, 230, 255, 0.9) 140%);
}

.section-dark .section-kicker,
.section-dark h2,
.section-dark p,
.section-dark h3 {
  color: inherit;
}

.section h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.06;
  color: var(--surface-deep);
  max-width: 16ch;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.large {
  font-size: 1.16rem;
}

.intro-band {
  padding-top: 34px;
}

.intro-grid,
.split-band,
.contact-shell,
.two-column-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.story-copy .lead {
  margin-bottom: 22px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.timeline span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,151,178,0.16), rgba(167,230,255,0.5));
  color: var(--primary-strong);
  font-family: "Anybody", Arial, sans-serif;
  font-weight: 800;
}

.timeline h3,
.feature-card h3,
.team-card h3,
.impact-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: var(--surface-deep);
}

.timeline p,
.feature-card p,
.team-card p,
.impact-card p,
.contact-card p,
.pillars-card p,
.floating-note p {
  margin: 0;
  color: var(--muted);
}

.story-panel {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: flex-start;
}

.floating-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -24px;
  padding: 22px;
  border-radius: 22px;
}

.floating-note-static {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
}

.floating-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--surface-deep);
}

.floating-note a,
.contact-card a {
  color: var(--primary);
  font-weight: 800;
}

.cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid-large {
  margin-top: 28px;
}

.feature-card,
.team-card,
.impact-card,
.contact-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
}

.accent-1::before { background: linear-gradient(90deg, #0097b2, #a7e6ff); }
.accent-2::before { background: linear-gradient(90deg, #00a3bf, #7fdaf7); }
.accent-3::before { background: linear-gradient(90deg, #008aa3, #bdeeff); }
.accent-4::before { background: linear-gradient(90deg, #0097b2, #dff7ff); }
.accent-5::before { background: linear-gradient(90deg, #007f96, #a7e6ff); }
.accent-6::before { background: linear-gradient(90deg, #009cb8, #c9f2ff); }

.pillars-card {
  border-radius: var(--radius-xl);
  padding: 12px;
  display: grid;
  gap: 12px;
}

.pillars-card article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.pillars-card strong {
  margin-bottom: 8px;
  color: var(--primary-strong);
}

.impact-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.impact-card h3,
.impact-card p {
  color: #eef4ff;
}

.team-section {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(242,251,255,0.75));
}

.team-section-shell {
  max-width: 1080px;
}

.team-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-section-head h2 {
  max-width: none;
}

.team-charter-figure {
  margin: 24px auto 0;
  max-width: 1040px;
  padding: 10px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 103, 122, 0.1);
}

.team-charter-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.contact-shell {
  align-items: center;
}

.contact-card {
  justify-self: end;
  width: min(100%, 430px);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(223,247,255,0.96));
}

.contact-card p + p {
  margin-top: 18px;
}

.site-footer {
  background:
    radial-gradient(circle at 85% 20%, rgba(167,230,255,0.22), transparent 24%),
    linear-gradient(135deg, #005d70 0%, #0097b2 100%);
  color: rgba(238, 252, 255, 0.94);
  padding: 30px 0 38px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.site-footer strong {
  font-family: "Anybody", Arial, sans-serif;
  display: block;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  color: rgba(238, 244, 255, 0.72);
}

@media (max-width: 1040px) {
  .hero-grid,
  .intro-grid,
  .split-band,
  .contact-shell,
  .two-column-story,
  .cards-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    justify-self: start;
  }

  .feature-image {
    min-height: 380px;
  }

  .floating-note {
    position: static;
    margin-top: 18px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(18, 59, 129, 0.14);
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary-strong);
    font-weight: 800;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 10px 0;
  }

  .menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 59, 129, 0.12);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    border-radius: 14px;
  }

  .nv-brand-logo {
    width: 220px;
    max-width: 58vw;
  }

  .hero {
    padding-top: 64px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100vw - 22px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .panel-card,
  .feature-card,
  .team-card,
  .impact-card,
  .contact-card {
    padding: 20px;
  }

  .hero h1 {
    max-width: none;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline span {
    width: 52px;
    height: 52px;
  }

  .team-charter-figure {
    padding: 6px;
    border-radius: 18px;
  }

  .team-charter-image {
    border-radius: 12px;
  }
}
