:root {
  --nd-ink: #111920;
  --nd-muted: #60717e;
  --nd-line: #d9e2e8;
  --nd-bg: #f5f8fa;
  --nd-panel: #ffffff;
  --nd-accent: #0f6f8f;
  --nd-accent-dark: #084a60;
  --nd-green: #2e6d4d;
}

.nd-hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 28px 70px;
}

.nd-hero__inner,
.nd-section,
.nd-band,
.nd-final {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.nd-hero__inner {
  max-width: 840px;
  margin-left: max(20px, calc((100vw - 1120px) / 2));
}

.nd-kicker {
  margin: 0 0 10px;
  color: #47b2d0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.nd-hero h1,
.nd-section h2,
.nd-band h2,
.nd-final h2 {
  margin: 0 0 14px;
  line-height: 1.08;
  letter-spacing: 0;
}

.nd-hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 6vw, 72px);
}

.nd-lede {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

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

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

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

.nd-button--secondary {
  color: #fff;
  border-color: rgba(255,255,255,.58);
}

.nd-final .nd-button--secondary {
  color: var(--nd-accent-dark);
  border-color: var(--nd-line);
}

.nd-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.nd-proof li {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}

.nd-section {
  padding: 70px 0;
  color: var(--nd-ink);
}

.nd-section__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.nd-section__head p,
.nd-split p,
.nd-final p {
  color: var(--nd-muted);
  font-size: 17px;
  line-height: 1.62;
}

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

.nd-card,
.nd-panel {
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  padding: 22px;
  background: var(--nd-panel);
  box-shadow: 0 1px 2px rgba(17, 25, 32, .04);
}

.nd-card h3,
.nd-panel h3 {
  margin-top: 0;
}

.nd-card p,
.nd-panel li {
  color: var(--nd-muted);
  line-height: 1.55;
}

.nd-card a {
  color: var(--nd-accent-dark);
  font-weight: 800;
}

.nd-card--accent {
  background: #eaf5f8;
  border-color: #bee0ea;
}

.nd-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: start;
  padding: 36px;
  border-radius: 8px;
  background: var(--nd-ink);
  color: #fff;
}

.nd-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nd-checklist span {
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.09);
}

.nd-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
}

.nd-panel ul {
  margin-bottom: 0;
}

.nd-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0 80px;
  border-top: 1px solid var(--nd-line);
  color: var(--nd-ink);
}

@media (max-width: 860px) {
  .nd-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .nd-hero h1 {
    font-size: 40px;
  }

  .nd-grid--cards,
  .nd-band,
  .nd-split {
    grid-template-columns: 1fr;
  }

  .nd-checklist {
    grid-template-columns: 1fr;
  }

  .nd-final {
    display: block;
  }
}
