:root {
  --ink: #17212b;
  --muted: #53616e;
  --line: #d8e0e7;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --navy: #102b3f;
  --teal: #176b70;
  --steel: #627789;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
}

a {
  color: inherit;
}

.site-header {
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: #d9e6ed;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(16, 43, 63, 0.98), rgba(23, 107, 112, 0.84)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 150px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 120px);
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 84px 24px 90px;
}

.hero-copy {
  min-width: 0;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #b9d5db;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.04;
}

h2 {
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.subtitle {
  max-width: 760px;
  color: #e1ecf1;
  font-size: 21px;
  line-height: 1.55;
}

.hero-note {
  max-width: 720px;
  color: #c8dce4;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.hero .button {
  margin-top: 14px;
  background: #fff;
  color: var(--navy);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-muted {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-muted > .section-heading,
.section-muted > .card-grid,
.section-muted > .trust-list,
.section-muted > .after-note {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading p,
.card p,
.contact-copy p,
.contact-panel p,
.footer p,
.after-note,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

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

.list-item,
.card,
.contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.list-item {
  padding: 18px;
  border-left: 4px solid var(--teal);
  font-weight: 700;
}

.card {
  min-height: 160px;
  padding: 22px;
}

.after-note {
  margin-top: 22px;
  padding: 16px 18px;
  background: #e8f1f2;
  border: 1px solid #c8dcdf;
  border-radius: 8px;
}

.deliverable-list,
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pathway-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pathway;
}

.pathway-row li {
  position: relative;
  min-height: 92px;
  padding: 18px 14px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.pathway-row li::before {
  counter-increment: pathway;
  content: counter(pathway);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 13px;
}

.pathway-row li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -10px;
  width: 10px;
  height: 1px;
  background: var(--steel);
}

.deliverable-list li,
.trust-list li {
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--steel);
  border-radius: 8px;
  line-height: 1.45;
}

.buyer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buyer-row span {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 32px;
}

.contact-copy {
  padding: 28px;
  background: #e8f1f2;
  border: 1px solid #c8dcdf;
  border-radius: 8px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel .button {
  margin: 8px 0 18px;
}

.form-note {
  margin-bottom: 0;
  font-size: 13px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer p {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

@media (max-width: 820px) {
  .nav,
  .nav-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .list-grid,
  .card-grid,
  .deliverable-list,
  .trust-list,
  .pathway-row {
    grid-template-columns: 1fr;
  }

  .pathway-row li:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 26px;
    bottom: -10px;
    width: 1px;
    height: 10px;
  }
}
