:root {
  --navy: #071521;
  --navy-2: #0d1d2a;
  --ink: #0b1723;
  --muted: #5a6672;
  --paper: #f6f8f7;
  --surface: #ffffff;
  --line: #dce3e1;
  --green: #3b8a5a;
  --green-bright: #54a871;
  --mint: #dcece4;
  --steel: #87949d;
  --radius: 6px;
  --shadow: 0 24px 70px rgba(7, 21, 33, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 42px;
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(7, 21, 33, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  height: 58px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 56px;
  height: auto;
  object-fit: contain;
}

.logo-light {
  display: none;
}

.site-header.scrolled .logo-dark,
.site-header.open .logo-dark {
  display: none;
}

.site-header.scrolled .logo-light,
.site-header.open .logo-light {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--green-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px 42px 38px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 21, 33, 0.94), rgba(7, 21, 33, 0.7) 45%, rgba(7, 21, 33, 0.24)),
    linear-gradient(0deg, rgba(7, 21, 33, 0.9), rgba(7, 21, 33, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin-bottom: 94px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(54px, 8vw, 110px);
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  background: #2f734c;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1040px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-panel div {
  padding: 24px 28px 18px 0;
}

.metric,
.metric-label {
  display: block;
}

.metric {
  font-size: 28px;
  font-weight: 800;
}

.metric-label {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 92px 42px;
}

.section-heading,
.intro-grid,
.strategy-layout,
.dashboard,
.governance-grid,
.contact {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(36px, 5vw, 66px);
}

.intro-band,
.governance {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 52px;
  align-items: start;
}

.intro-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principles article,
.strategy-detail,
.allocation,
.pipeline-summary,
.contact-form,
.governance-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.principles article,
.governance-grid article {
  padding: 26px;
}

.principles span,
.governance-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.principles h3,
.governance-grid h3,
.strategy-detail h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.principles p,
.governance-grid p,
.strategy-detail p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.strategies {
  background: #edf4f0;
}

.strategy-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
}

.tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tab {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.strategy-detail {
  min-height: 360px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.strategy-kicker {
  margin-top: 0;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

.strategy-detail h3 {
  max-width: 850px;
  font-size: clamp(30px, 4vw, 50px);
}

.strategy-detail > p:not(.strategy-kicker) {
  max-width: 760px;
  font-size: 18px;
}

.strategy-detail dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 0;
}

.strategy-detail dl div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.strategy-detail dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.strategy-detail dd {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 800;
}

.indicators {
  background: var(--navy);
  color: #fff;
}

.indicators .section-heading h2 {
  color: #fff;
}

.dashboard {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
}

.pipeline-summary,
.allocation {
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, 0.11);
}

.pipeline-summary {
  display: grid;
  align-content: center;
  min-height: 300px;
  padding: 34px;
}

.pipeline-number {
  display: block;
  color: #fff;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
}

.pipeline-summary p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.allocation {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.allocation-row {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  background: #fbfcfb;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(59, 138, 90, 0.13);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 34px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
  font-size: 13px;
}

.site-footer p {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 980px) {
  .principles,
  .governance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 0 20px;
  }

  .brand {
    width: 154px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: 0 22px 30px rgba(7, 21, 33, 0.12);
  }

  .site-nav.open {
    display: grid;
    gap: 16px;
  }

  .hero {
    min-height: 94vh;
    padding: 112px 20px 28px;
  }

  .hero-content {
    margin-bottom: 50px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-panel,
  .section-heading,
  .intro-grid,
  .principles,
  .strategy-layout,
  .dashboard,
  .governance-grid,
  .contact,
  .strategy-detail dl {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 16px 0;
  }

  .section {
    padding: 70px 20px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 30px;
  }

  .strategy-detail {
    padding: 28px;
  }

  .allocation-row {
    grid-template-columns: 92px 1fr 48px;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 52px;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 36px;
  }
}
