:root {
  --ink: #102033;
  --navy: #143f67;
  --blue: #1b5b89;
  --teal: #2f8178;
  --copper: #bd6b3a;
  --paper: #f6f3ed;
  --paper-2: #ebe7de;
  --white: #ffffff;
  --muted: #5f6f7d;
  --line: #d8d3c8;
  --shadow: 0 24px 54px rgba(16, 32, 51, 0.16);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

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

.site-shell {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 34rem),
    linear-gradient(180deg, #f8f6f1 0%, #efeae0 100%);
  min-height: 100vh;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 20px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header::before {
  background: rgba(246, 243, 237, 0.84);
  border-bottom: 1px solid rgba(20, 63, 103, 0.14);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
  backdrop-filter: blur(18px);
}

.brand-link {
  align-items: center;
  display: inline-flex;
  min-width: max-content;
}

.brand-logo {
  height: 46px;
  width: 276px;
}

.top-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.top-nav a {
  border-radius: 8px;
  color: #26394d;
  font-size: 14px;
  font-weight: 720;
  padding: 10px 12px;
}

.top-nav a:hover,
.top-nav a.active {
  background: rgba(20, 63, 103, 0.08);
  color: var(--navy);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
}

.hero {
  align-items: stretch;
  background-image:
    linear-gradient(90deg, rgba(16, 32, 51, 0.86) 0%, rgba(16, 32, 51, 0.66) 31%, rgba(16, 32, 51, 0.2) 61%, rgba(16, 32, 51, 0.08) 100%),
    url("/assets/metricmind-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: min(820px, 92vh);
  padding: 128px clamp(18px, 4vw, 56px) 62px;
}

.hero.short {
  min-height: 640px;
}

.hero-content {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  color: #b8d5d2;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1,
.page-band h1 {
  font-size: clamp(42px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  max-width: 820px;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
  margin: 24px 0 0;
  max-width: 680px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

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

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button.light {
  background: #f9f7f2;
  border-color: var(--line);
  color: var(--navy);
}

.trust-strip {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px clamp(18px, 4vw, 56px);
}

.trust-item {
  display: grid;
  gap: 4px;
}

.trust-item strong {
  color: var(--navy);
  font-size: 19px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section.alt {
  background: var(--white);
}

.section.tight {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(38px, 6vw, 74px);
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 920px;
}

.section-header h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.section-header p,
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 820px;
}

.path-grid,
.service-grid,
.feature-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.proof-grid {
  grid-template-columns: 1fr 1.15fr;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.07);
  min-width: 0;
  padding: 24px;
}

.card.dark-card {
  background: #132a42;
  border-color: #244964;
  color: #ffffff;
}

.card.tint {
  background: #f4f1ea;
}

.card h3 {
  color: inherit;
  font-size: 23px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.78);
}

.card ul,
.check-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.45;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.card li,
.check-list li {
  padding-left: 22px;
  position: relative;
}

.card li::before,
.check-list li::before {
  background: var(--teal);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 8px;
}

.dark-card li {
  color: rgba(255, 255, 255, 0.8);
}

.callout-band {
  background: #132a42;
  color: var(--white);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.callout-band h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  margin: 0;
}

.callout-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.metric-stack {
  display: grid;
  gap: 12px;
}

.metric-line {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 12px 0;
}

.metric-line strong {
  color: #b8d5d2;
  font-size: 22px;
}

.workflow {
  display: grid;
  gap: 12px;
}

.workflow-step {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 46px minmax(0, 1fr);
}

.workflow-step span {
  align-items: center;
  background: var(--navy);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.workflow-step h3 {
  margin: 0 0 6px;
}

.workflow-step p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.page-band {
  background-image:
    linear-gradient(90deg, rgba(14, 32, 50, 0.9) 0%, rgba(14, 32, 50, 0.78) 36%, rgba(14, 32, 50, 0.36) 66%, rgba(14, 32, 50, 0.12) 100%),
    url("/assets/expedite-hero.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 128px clamp(18px, 4vw, 56px) 48px;
}

.page-band h1 {
  font-size: clamp(40px, 6vw, 76px);
}

.page-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 760px;
}

.split {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.mini-dashboard {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 18px;
}

.dashboard-bar {
  background: #eef3f4;
  border-radius: 8px;
  height: 14px;
  overflow: hidden;
}

.dashboard-bar span {
  background: var(--teal);
  display: block;
  height: 100%;
}

.site-footer {
  background: #0e2032;
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 38px clamp(18px, 4vw, 56px);
}

.site-footer strong {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .hero,
  .hero.short {
    min-height: 760px;
    padding-top: 166px;
  }

  .trust-strip,
  .path-grid,
  .service-grid,
  .feature-grid,
  .proof-grid,
  .callout-band,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .top-nav {
    overflow-x: auto;
    padding-bottom: 4px;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    height: 38px;
    width: 228px;
  }

  .top-nav a {
    font-size: 13px;
    padding: 9px 10px;
  }

  .hero,
  .hero.short {
    background-position: 62% center;
    min-height: 720px;
  }

  .hero h1,
  .page-band h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .page-band {
    padding-bottom: 30px;
    padding-top: 116px;
  }

  .page-band h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .page-band p {
    font-size: 18px;
    margin-top: 16px;
  }

  .page-band .hero-actions {
    margin-top: 22px;
  }

  .card {
    padding: 20px;
  }
}
