:root {
  --ink: #10202d;
  --muted: #5b6974;
  --paper: #f5f7f8;
  --panel: #ffffff;
  --line: #d9e3e8;
  --navy: #102a3d;
  --teal: #0e7c86;
  --green: #1f8a61;
  --gold: #b98524;
  --shadow: 0 18px 60px rgba(16, 32, 45, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand span { color: var(--teal); }

.links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 650;
}

.links a:hover,
.links a.active {
  color: var(--ink);
  background: #edf3f5;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 16, 25, .84), rgba(5, 16, 25, .42) 52%, rgba(5, 16, 25, .12));
  z-index: -1;
}

.hero-inner {
  padding: 110px 0 72px;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #9be4e4;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
}

h1,
.page-title {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy,
.lead {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 720px;
}

.lead { color: var(--muted); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid #9be4e4;
  background: #9be4e4;
  color: #071722;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: transparent;
  color: #fff;
}

main.sectioned { padding: 52px 0 70px; }

.page-head {
  padding: 66px 0 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-title {
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.caption {
  margin: 0;
  padding: 13px 15px;
  color: var(--muted);
  font-size: .94rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.panel h2,
.card h2,
.card h3 {
  margin: 0 0 10px;
  letter-spacing: 0;
}

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 168px;
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
}

.mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  margin-top: 7px;
}

.band {
  margin-top: 46px;
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.band p { margin: 0; color: rgba(255,255,255,.76); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--teal);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 28px 0;
  color: var(--muted);
}

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

@media (max-width: 880px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .links { width: 100%; }
  .links a { padding-left: 0; padding-right: 10px; }
  .split,
  .grid,
  .stat-row,
  .band {
    grid-template-columns: 1fr;
  }
  .hero-inner { padding-top: 84px; }
}
