:root {
  --blue: #22538a;
  --blue-900: #17395f;
  --teal: #28bdcc;
  --teal-100: #e7f9fb;
  --charcoal: #2b2b2b;
  --grey: #6b6b6b;
  --line: #d9e2ec;
  --soft: #f5fafc;
  --white: #ffffff;
  --gold: #f3c727;
  --shadow: 0 22px 60px rgba(23, 57, 95, 0.14);
  --radius: 8px;
  --shell: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 12px;
  background: var(--blue);
  color: var(--white);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(23, 57, 95, 0.08);
}

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

.brand img {
  width: 174px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--teal-100);
  outline: none;
}

.nav-menu .nav-cta {
  color: var(--white);
  background: var(--blue);
  padding-inline: 16px;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--blue-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--blue);
}

.section-pad {
  padding: 76px 0;
}

.hero {
  padding-top: 50px;
  padding-bottom: 58px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  gap: 44px;
  align-items: center;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0;
  color: var(--blue-900);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.1rem, 3.55vw, 3.65rem);
  max-width: 790px;
}

h2 {
  font-size: clamp(1.65rem, 2.65vw, 2.55rem);
}

h3 {
  font-size: 1rem;
}

p {
  margin: 0;
}

.hero-lead {
  margin-top: 18px;
  max-width: 720px;
  color: #405568;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
}

.button.is-loading {
  gap: 10px;
}

.loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-900);
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--blue);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--teal);
  background: var(--teal-100);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-row div {
  background: var(--white);
  padding: 14px 16px;
}

.trust-row span,
.surface-card span,
.surface-top p,
.metric-grid p {
  color: var(--grey);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-row strong {
  display: block;
  margin-top: 4px;
  color: var(--blue-900);
  line-height: 1.25;
}

.ops-surface {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.surface-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.surface-top h2 {
  margin-top: 4px;
  font-size: 1.15rem;
}

.surface-top > span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--teal-100);
  font-size: 0.78rem;
  font-weight: 800;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.surface-card {
  min-height: 136px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.surface-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.surface-card.featured span,
.surface-card.featured p,
.surface-card.featured strong {
  color: var(--white);
}

.surface-card strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-900);
  line-height: 1.22;
}

.surface-card p {
  margin-top: 8px;
  color: #5f7181;
  font-size: 0.86rem;
}

.surface-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.surface-flow span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px;
  color: var(--blue-900);
  background: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}

.surface-footer {
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
  text-align: center;
}

.metrics {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfdfe;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.metric-grid article {
  padding: 28px 26px;
  border-left: 1px solid var(--line);
}

.metric-grid article:last-child {
  border-right: 1px solid var(--line);
}

.metric-grid strong {
  display: block;
  color: var(--blue-900);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.15;
}

.metric-grid p {
  margin-top: 9px;
  line-height: 1.45;
}

.soft {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 58px;
  align-items: start;
}

.section-intro p:not(.eyebrow) {
  margin-top: 20px;
  color: #526576;
  font-size: 1rem;
}

.sticky-intro {
  position: sticky;
  top: 104px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tile,
.feature,
.vision-tiles article,
.dark-grid article,
.contact-form,
blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.tile {
  min-height: 174px;
  padding: 22px;
}

.tile span,
.feature-num,
.ledger-row span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal-100);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.tile h3 {
  margin-top: 16px;
}

.tile p,
.feature p,
.vision-tiles p,
.ledger-panel p,
.dark-grid p {
  margin-top: 10px;
  color: #5f7181;
}

.note {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  color: var(--blue-900);
  background: var(--white);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.outcomes strong {
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  font-family: "Poppins", Arial, sans-serif;
  text-align: center;
}

.closing-line {
  color: var(--blue);
  font-weight: 800;
}

.ledger-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ledger-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: center;
}

.ledger-grid > div:first-child p:not(.eyebrow) {
  margin-top: 20px;
  color: #526576;
  font-size: 1.05rem;
}

.ledger-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 57, 95, 0.08);
}

.ledger-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.ledger-row:last-child {
  border-bottom: 0;
}

.ledger-row p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 700;
}

.dark {
  background: var(--blue-900);
  color: var(--white);
}

.dark h2,
.dark h3 {
  color: var(--white);
}

.dark .section-intro p:not(.eyebrow) {
  color: #d7e5ee;
}

.dark-eyebrow {
  color: var(--teal);
}

.dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dark-grid article {
  min-height: 184px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.dark-grid p {
  color: #d7e5ee;
}

.dark-callout {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(40, 189, 204, 0.45);
  border-radius: var(--radius);
  background: rgba(40, 189, 204, 0.12);
  color: var(--white);
  font-weight: 800;
}

.knowledge {
  background: #fbfdfe;
}

.large-copy {
  color: #526576;
  font-size: 1.13rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.check-grid span {
  display: block;
  min-height: 84px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-900);
  font-weight: 800;
}

.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.vision-grid > div > p:not(.eyebrow) {
  margin-top: 20px;
  color: #526576;
}

.vision-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.vision-tiles article {
  padding: 20px;
}

blockquote {
  margin: 0;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 57, 95, 0.08);
}

blockquote p {
  color: var(--blue-900);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.18rem, 1.75vw, 1.55rem);
  font-weight: 700;
  line-height: 1.18;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--teal);
  font-style: normal;
  font-weight: 800;
}

.early {
  background: var(--white);
}

.mini-line {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--teal-100);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd8e3;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--charcoal);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(40, 189, 204, 0.22);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-footer p,
.form-status {
  color: var(--grey);
  font-size: 0.88rem;
}

.form-status {
  display: none;
  min-height: 1.4em;
  margin-top: 2px;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.is-loading,
.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-loading {
  border-color: #b8d3ea;
  color: var(--blue-900);
  background: #eef7ff;
}

.form-status.is-success {
  border-color: #a7d7b6;
  color: #14532d;
  background: #eaf8ef;
}

.form-status.is-error {
  border-color: #efb4b4;
  color: #7f1d1d;
  background: #fff0f0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: #fbfdfe;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 28px;
  align-items: center;
}

.footer img {
  width: 138px;
}

.footer p,
.footer small {
  margin-top: 10px;
  color: var(--grey);
}

.footer nav {
  display: flex;
  gap: 14px;
}

.footer a {
  color: var(--blue-900);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100vw - 28px, 720px);
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .hero-grid,
  .split,
  .ledger-grid,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-pad {
    padding: 56px 0;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .sticky-intro {
    position: static;
  }

  .metric-grid,
  .dark-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .metric-grid article,
  .metric-grid article:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 148px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .trust-row,
  .surface-grid,
  .tile-grid,
  .outcomes,
  .check-grid,
  .vision-tiles,
  .form-row {
    grid-template-columns: 1fr;
  }

  .surface-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}
