:root {
  --navy: #001c3a;
  --navy-2: #06264b;
  --navy-3: #03172d;
  --teal: #008997;
  --teal-2: #00d5dd;
  --cyan: #11c8d1;
  --text: #082141;
  --muted: #516274;
  --line: #dfe8f2;
  --soft: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 32, 70, .11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  letter-spacing: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 25% 35%, rgba(0, 126, 158, .2), transparent 28%),
    linear-gradient(115deg, var(--navy-3), var(--navy) 48%, #00152d);
}

.site-header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  padding: 18px 0;
  color: #fff;
}

.header-grid {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: .88;
  letter-spacing: 0;
  font-weight: 800;
}

.brand span {
  font-size: 24px;
}

.brand small {
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: 7px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  opacity: .92;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--teal-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(90deg, #007586, #0098a2);
  box-shadow: 0 8px 20px rgba(0, 130, 148, .2);
  font-size: 11px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-small {
  min-height: 34px;
  padding: 0 18px;
  font-size: 10px;
}

.btn-outline,
.btn-outline-light {
  background: transparent;
  box-shadow: none;
  border-color: rgba(255, 255, 255, .35);
}

.btn-outline {
  color: #fff;
}

.btn-outline-light {
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 104px 0 38px;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 250px;
  height: 250px;
  right: 50px;
  top: 110px;
  opacity: .22;
  background:
    linear-gradient(60deg, transparent 48%, #1ad6df 49%, transparent 50%) 0 0 / 68px 68px,
    radial-gradient(circle, #12d2de 1px, transparent 2px) 0 0 / 48px 48px;
}

.hero::after {
  width: 210px;
  height: 180px;
  left: 52%;
  top: 132px;
  border: 1px dashed rgba(0, 213, 221, .42);
  opacity: .58;
}

.hero-graph {
  position: absolute;
  left: 50%;
  top: 162px;
  z-index: 0;
  width: 190px;
  height: 116px;
  border-left: 1px dashed rgba(0, 213, 221, .45);
  border-bottom: 1px dashed rgba(0, 213, 221, .45);
  opacity: .7;
}

.hero-graph::before {
  position: absolute;
  content: "";
  inset: auto 14px 0 18px;
  height: 96px;
  background:
    linear-gradient(to top, rgba(0, 99, 189, .65) 26px, transparent 26px) 0 100% / 24px 100% no-repeat,
    linear-gradient(to top, rgba(0, 99, 189, .65) 66px, transparent 66px) 34px 100% / 24px 100% no-repeat,
    linear-gradient(to top, rgba(0, 99, 189, .65) 42px, transparent 42px) 68px 100% / 24px 100% no-repeat,
    linear-gradient(to top, rgba(0, 99, 189, .65) 54px, transparent 54px) 102px 100% / 24px 100% no-repeat,
    linear-gradient(to top, rgba(0, 99, 189, .65) 76px, transparent 76px) 136px 100% / 24px 100% no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: center;
  gap: 130px;
}

.hero-copy {
  max-width: 520px;
}

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

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--teal-2);
}

.hero-copy > p {
  max-width: 470px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .9);
  font-size: 19px;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.3;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  content: "✓";
  color: var(--teal-2);
  font-weight: 900;
}

.check-list.teal li::before {
  color: var(--teal);
}

.check-list.compact {
  gap: 6px;
  margin-bottom: 0;
}

.check-list.compact li {
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.lead-card {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 24px 80px rgba(0, 10, 25, .35);
}

.lead-card h2 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 18px;
}

.lead-card label,
.newsletter-form label {
  display: block;
  position: relative;
}

.lead-card label span,
.newsletter-form label span {
  position: absolute;
  left: 13px;
  top: 11px;
  z-index: 1;
  color: #8695a6;
  font-size: 12px;
}

.lead-card input,
.lead-card select,
.newsletter-form input {
  width: 100%;
  height: 39px;
  margin-bottom: 9px;
  padding: 10px 12px;
  border: 1px solid #d8e1eb;
  border-radius: 3px;
  color: var(--text);
  background: #fff;
  outline: 0;
}

.lead-card select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #7e8ca0 50%), linear-gradient(135deg, #7e8ca0 50%, transparent 50%);
  background-position: calc(100% - 16px) 16px, calc(100% - 11px) 16px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.btn-submit {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  gap: 10px;
}

.form-note {
  margin: 16px 0 0;
  color: #46627d;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.form-note::before {
  content: "▣";
  margin-right: 8px;
  color: var(--teal);
  font-size: 11px;
}

.metrics {
  padding: 28px 0;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 32, 70, .06);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.metrics article {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 62px;
}

.metrics strong {
  color: #007f8e;
  font-size: 24px;
  line-height: 1;
}

.metrics p {
  grid-column: 2;
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.line-icon,
.standards article::before,
.segments article::before,
.resources article::before {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #007f8e;
  border: 2px solid currentColor;
  border-radius: 10px;
  font-weight: 900;
}

.line-icon::before {
  font-size: 13px;
}

.shield::before {
  content: "✓";
}

.route::before {
  content: "↕";
}

.chart::before {
  content: "↗";
}

.seal::before {
  content: "✦";
}

.headset::before {
  content: "☎";
}

.services {
  padding: 52px 0 38px;
  background:
    radial-gradient(circle at 18% 48%, rgba(0, 137, 151, .07), transparent 24%),
    linear-gradient(180deg, #fbfdff, #f5f9fc);
}

.services-grid {
  display: grid;
  grid-template-columns: 295px 1fr;
  gap: 44px;
}

.services-intro {
  position: relative;
  min-height: auto;
}

.services-intro h2,
.method-copy h2,
.platform-copy h2,
.newsletter h2 {
  margin-bottom: 16px;
  color: inherit;
  font-size: 30px;
  line-height: 1.04;
}

.services-intro p,
.method-copy p,
.platform-copy p,
.newsletter p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.services-intro .btn {
  margin: 4px 0 10px;
}

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

.service-cards article {
  min-height: 214px;
  padding: 28px;
  border: 1px solid #e9eff5;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid #6db7c0;
  border-radius: 50%;
  color: #fff;
  background: #006d7d;
  font-size: 9px;
  font-weight: 900;
}

.service-cards h3 {
  margin-bottom: 12px;
  color: #061c3d;
  font-size: 20px;
  line-height: 1.08;
}

.service-cards p {
  margin-bottom: 20px;
  color: #455c73;
  font-size: 14px;
  line-height: 1.45;
}

.service-cards a {
  color: #007884;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.standards,
.segments {
  background: #fff;
}

.standards {
  padding: 30px 0 18px;
}

.standards h2,
.segments h2,
.resources h2 {
  margin-bottom: 28px;
  color: #061c3d;
  text-align: center;
  font-size: 17px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px 28px;
}

.standards article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 11px;
  min-height: 122px;
  text-align: center;
}

.standards article::before {
  content: "ISO";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #0f4196;
  border-width: 4px;
  font-size: 11px;
}

.standards strong {
  display: block;
  font-size: 15px;
  line-height: 1.15;
}

.standards span {
  display: block;
  max-width: 128px;
  color: #41546b;
  font-size: 12px;
  line-height: 1.2;
}

.segments {
  padding: 20px 0 44px;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  text-align: center;
}

.segments article,
.resources article {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #29415d;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 700;
}

.segments article::before,
.resources article::before {
  content: "✓";
  width: 38px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--teal);
  font-size: 20px;
}

.platform {
  padding: 48px 0 0;
  overflow: hidden;
}

.platform-grid {
  display: grid;
  grid-template-columns: 310px 260px 1fr;
  align-items: end;
  gap: 28px;
}

.platform-copy {
  align-self: center;
  padding-bottom: 48px;
}

.platform-copy p,
.newsletter p {
  color: rgba(255, 255, 255, .82);
}

.platform-person {
  align-self: end;
  width: 260px;
  height: 332px;
  object-fit: cover;
  object-position: center top;
}

.dashboard-shot {
  align-self: center;
  width: 100%;
  max-width: 515px;
  height: 330px;
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .3);
}

.method {
  padding: 56px 0 44px;
  background: #f8fbfd;
}

.method-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}

.method-copy p {
  max-width: 330px;
}

.method-map {
  position: relative;
  min-height: 360px;
}

.method-map::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 310px;
  height: 310px;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(0, 137, 151, .16) 49.7% 50.3%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(0, 137, 151, .16) 49.7% 50.3%, transparent 50.3%);
  pointer-events: none;
}

.method-center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 42% 38%, #092f62, #001a34 70%);
  box-shadow: 0 0 0 58px rgba(255, 255, 255, .92), 0 0 0 60px rgba(0, 111, 126, .22);
  font-weight: 800;
}

.method-center span {
  font-size: 22px;
}

.method-center small {
  position: absolute;
  margin-top: 40px;
  letter-spacing: 6px;
  font-size: 8px;
}

.method-map article {
  position: absolute;
  display: grid;
  width: 160px;
  gap: 8px;
  align-items: center;
  color: #264561;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.method-map article::before {
  content: "◇";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--teal);
  font-size: 28px;
  vertical-align: middle;
}

.method-map article::after {
  position: absolute;
  top: 18px;
  width: 72px;
  height: 1px;
  content: "";
  background: rgba(0, 137, 151, .24);
}

.m1 {
  left: 42px;
  top: 18px;
  justify-items: end;
  text-align: right;
}

.m1::after {
  right: -78px;
  transform: rotate(22deg);
}

.m2 {
  right: 34px;
  top: 28px;
  justify-items: start;
  text-align: left;
}

.m2::after {
  left: -78px;
  transform: rotate(-22deg);
}

.m3 {
  right: 10px;
  top: 44%;
  justify-items: start;
  text-align: left;
}

.m3::after {
  left: -84px;
  width: 78px;
}

.m4 {
  right: 120px;
  bottom: 18px;
  justify-items: center;
  text-align: center;
}

.m4::after {
  left: -34px;
  top: -22px;
  transform: rotate(-35deg);
}

.m5 {
  left: 8px;
  top: 44%;
  justify-items: end;
  text-align: right;
}

.m5::after {
  right: -84px;
  width: 78px;
}

.founder {
  padding: 0;
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 52px;
  min-height: 245px;
}

.founder img {
  align-self: end;
  width: 295px;
  height: 238px;
  object-fit: contain;
  object-position: bottom center;
}

.founder h2 {
  margin-bottom: 10px;
  font-size: 29px;
  line-height: 1.05;
}

.founder .role {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

.founder p {
  max-width: 650px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.45;
}

.founder-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 3px;
  font-weight: 900;
  font-size: 20px;
}

.resources {
  padding: 34px 0 32px;
  background: #fff;
}

.resources h2 {
  margin-bottom: 26px;
}

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

.resources article {
  min-height: 128px;
  padding: 22px 18px 20px;
  border: 1px solid #e2e9f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 32, 70, .05);
  text-align: center;
  align-content: center;
  justify-items: center;
  font-size: 14px;
}

.resources article::before {
  content: "▤";
  width: 46px;
  height: 46px;
  margin-bottom: 4px;
  border: 3px solid currentColor;
  border-radius: 50%;
  color: var(--teal);
  font-size: 24px;
}

.newsletter {
  padding: 34px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.newsletter h2 {
  margin-bottom: 12px;
}

.newsletter p {
  margin-bottom: 12px;
  font-size: 14px;
}

.newsletter-form {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
}

.newsletter-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.newsletter-form input {
  height: 34px;
  margin-bottom: 10px;
}

.newsletter-form .form-note {
  color: #46627d;
}

.site-footer {
  padding: 20px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 12px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  line-height: 1.25;
}

.certs {
  color: var(--teal-2) !important;
  font-weight: 800;
}

@media (min-width: 761px) {
  .container {
    width: min(1024px, calc(100% - 48px));
  }

  .site-header {
    padding: 14px 0;
  }

  .header-grid {
    grid-template-columns: 98px 1fr auto;
    gap: 18px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand small {
    margin-top: 5px;
    font-size: 6px;
    letter-spacing: 5px;
  }

  .main-nav {
    gap: 20px;
    font-size: 8px;
  }

  .btn {
    min-height: 30px;
    padding: 0 15px;
    font-size: 8px;
  }

  .btn-small {
    min-height: 28px;
    padding: 0 14px;
    font-size: 8px;
  }

  .hero {
    min-height: 318px;
    padding: 54px 0 25px;
  }

  .hero::before {
    width: 160px;
    height: 160px;
    right: 8px;
    top: 86px;
  }

  .hero::after {
    width: 130px;
    height: 115px;
    top: 102px;
  }

  .hero-graph {
    top: 104px;
    width: 140px;
    height: 86px;
  }

  .hero-grid {
    grid-template-columns: 1fr 240px;
    gap: 76px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .hero-copy > p {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .check-list {
    gap: 8px;
    margin-bottom: 16px;
  }

  .check-list li {
    padding-left: 22px;
    font-size: 10px;
  }

  .hero-actions {
    gap: 14px;
  }

  .lead-card {
    padding: 14px;
    border-radius: 6px;
  }

  .lead-card h2 {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .lead-card label span,
  .newsletter-form label span {
    left: 10px;
    top: 8px;
    font-size: 8px;
  }

  .lead-card input,
  .lead-card select,
  .newsletter-form input {
    height: 24px;
    margin-bottom: 5px;
    padding: 6px 10px;
  }

  .lead-card select {
    background-position: calc(100% - 14px) 10px, calc(100% - 9px) 10px;
  }

  .btn-submit {
    min-height: 29px;
    margin-top: 5px;
  }

  .form-note {
    margin-top: 9px;
    font-size: 8px;
  }

  .metrics {
    padding: 20px 0;
  }

  .metrics-grid {
    gap: 22px;
  }

  .metrics article {
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    min-height: 44px;
  }

  .metrics strong {
    font-size: 16px;
  }

  .metrics p {
    font-size: 8px;
  }

  .line-icon,
  .resources article::before {
    width: 24px;
    height: 24px;
  }

  .services {
    padding: 34px 0 26px;
  }

  .services-grid {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }

  .services-intro {
    min-height: auto;
  }

  .services-intro h2,
  .method-copy h2,
  .platform-copy h2,
  .newsletter h2 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .services-intro p,
  .method-copy p,
  .platform-copy p,
  .newsletter p {
    font-size: 11px;
  }

  .service-cards {
    gap: 9px;
  }

  .service-cards article {
    min-height: 160px;
    padding: 18px;
  }

  .card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    font-size: 7px;
  }

  .service-cards h3 {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .service-cards p {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .service-cards a {
    font-size: 8px;
  }

  .standards {
    padding: 30px 0 18px;
  }

  .standards h2,
  .segments h2,
  .resources h2 {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .standards-grid {
    gap: 34px 26px;
  }

  .standards article {
    gap: 12px;
    min-height: 118px;
  }

  .standards article::before {
    width: 54px;
    height: 54px;
    font-size: 11px;
  }

  .standards strong {
    font-size: 15px;
  }

  .standards span {
    font-size: 12px;
  }

  .segments {
    padding: 18px 0 38px;
  }

  .segments-grid {
    gap: 16px;
  }

  .segments article {
    gap: 13px;
    font-size: 13px;
  }

  .segments article::before {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .resources article {
    font-size: 8px;
  }

  .platform {
    padding: 32px 0 0;
  }

  .platform-grid {
    grid-template-columns: 275px 205px 1fr;
    gap: 0;
  }

  .platform-copy {
    padding-bottom: 32px;
  }

  .platform-person {
    justify-self: end;
    width: 220px;
    height: 308px;
    object-fit: contain;
    object-position: bottom right;
  }

  .dashboard-shot {
    justify-self: end;
    max-width: 544px;
    height: 290px;
    object-fit: contain;
    object-position: top right;
  }

  .method {
    padding: 36px 0 30px;
  }

  .method-grid {
    grid-template-columns: 310px 1fr;
    gap: 48px;
  }

  .method-map {
    min-height: 360px;
  }

  .method-center {
    width: 136px;
    height: 136px;
    box-shadow: 0 0 0 50px rgba(255, 255, 255, .92), 0 0 0 52px rgba(0, 111, 126, .22);
  }

  .method-center span {
    font-size: 18px;
  }

  .method-center small {
    margin-top: 34px;
    letter-spacing: 5px;
    font-size: 6px;
  }

  .method-map article {
    font-size: 13px;
  }

  .founder-grid {
    grid-template-columns: 260px 1fr;
    gap: 42px;
    min-height: 230px;
  }

  .founder img {
    width: 255px;
    height: 224px;
  }

  .founder h2 {
    font-size: 26px;
  }

  .founder .role {
    font-size: 16px;
  }

  .founder p {
    max-width: 620px;
    font-size: 17px;
  }

  .founder-actions .btn {
    min-height: 42px;
    padding: 0 26px;
    font-size: 10px;
  }

  .founder .social {
    width: 42px;
    height: 42px;
  }

  .resources {
    padding: 28px 0 30px;
  }

  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .resources article {
    min-height: 126px;
    padding: 22px 18px 20px;
    font-size: 13px;
  }

  .newsletter {
    padding: 34px 0;
  }

  .newsletter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .newsletter-form {
    padding: 22px;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-form input {
    height: 34px;
  }

  .site-footer {
    padding: 14px 0 12px;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .site-header {
    position: static;
    background: var(--navy-3);
  }

  .header-grid,
  .hero-grid,
  .services-grid,
  .platform-grid,
  .method-grid,
  .founder-grid,
  .newsletter-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .header-grid .btn {
    justify-self: start;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    gap: 36px;
  }

  .metrics-grid,
  .standards-grid,
  .segments-grid,
  .resources-grid,
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-intro {
    min-height: auto;
  }

  .platform-grid {
    gap: 18px;
  }

  .platform-copy {
    padding-bottom: 10px;
  }

  .platform-person {
    display: none;
  }

  .dashboard-shot {
    max-width: 100%;
  }

  .method-grid {
    gap: 40px;
  }

  .founder-grid {
    gap: 18px;
    padding-top: 22px;
  }

  .footer-grid {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .lead-card {
    padding: 18px;
  }

  .metrics-grid,
  .standards-grid,
  .segments-grid,
  .resources-grid,
  .service-cards,
  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .metrics article {
    grid-template-columns: 42px 1fr;
  }

  .services-intro h2,
  .method-copy h2,
  .platform-copy h2,
  .newsletter h2 {
    font-size: 26px;
  }

  .service-cards article {
    min-height: auto;
  }

  .method-map {
    min-height: 520px;
  }

  .method-center {
    top: 45%;
    width: 135px;
    height: 135px;
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .92), 0 0 0 36px rgba(0, 111, 126, .22);
  }

  .method-map article {
    position: static;
    margin: 14px 0;
  }

  .method-map {
    display: grid;
    align-content: end;
    padding-top: 190px;
  }

  .founder img {
    width: 220px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    position: static;
    padding: 18px 0;
  }

  .header-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand {
    align-items: center;
  }

  .main-nav {
    justify-content: center;
    gap: 12px 18px;
    font-size: 12px;
    text-align: center;
  }

  .header-grid .btn {
    width: 100%;
    justify-self: stretch;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 36px;
  }

  .hero::before,
  .hero::after,
  .hero-graph {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lead-card {
    width: 100%;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .metrics article {
    grid-template-columns: 42px 1fr;
  }

  .services-grid,
  .platform-grid,
  .method-grid,
  .founder-grid,
  .newsletter-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .resources-grid {
    grid-template-columns: 1fr;
  }

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

  .services-intro {
    min-height: auto;
  }

  .platform {
    padding: 34px 0;
  }

  .platform-grid {
    gap: 24px;
  }

  .platform-copy {
    padding-bottom: 0;
  }

  .platform-person {
    display: none;
  }

  .dashboard-shot {
    width: 100%;
    max-width: 100%;
    height: auto;
    justify-self: stretch;
  }

  .method-grid {
    gap: 28px;
  }

  .method-map {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0;
    gap: 12px;
  }

  .method-map::before {
    display: none;
  }

  .method-center {
    position: relative;
    left: auto;
    top: auto;
    width: 136px;
    height: 136px;
    margin: 0 auto 12px;
    transform: none;
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .92), 0 0 0 36px rgba(0, 111, 126, .22);
  }

  .method-center span {
    font-size: 18px;
  }

  .method-center small {
    margin-top: 34px;
    letter-spacing: 5px;
    font-size: 6px;
  }

  .method-map article,
  .m1,
  .m2,
  .m3,
  .m4,
  .m5 {
    position: static;
    width: 100%;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid #dbe9ee;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    justify-items: center;
    font-size: 13px;
  }

  .method-map article::after {
    display: none;
  }

  .method-map article::before {
    margin: 0;
  }

  .founder {
    padding-top: 24px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    text-align: center;
  }

  .founder img {
    width: min(260px, 78vw);
    height: auto;
    margin: 0 auto;
  }

  .founder h2 {
    font-size: 28px;
  }

  .founder p {
    max-width: none;
    font-size: 16px;
  }

  .founder-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .resources-grid {
    gap: 14px;
  }

  .newsletter {
    padding: 30px 0;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .newsletter-form {
    padding: 18px;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-form input {
    height: 38px;
  }

  .footer-grid {
    gap: 22px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 406px);
  }

  .main-nav {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .services-intro h2,
  .method-copy h2,
  .platform-copy h2,
  .newsletter h2 {
    font-size: 24px;
  }

  .standards article,
  .segments article,
  .resources article {
    min-height: auto;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .container {
    width: min(100% - 40px, 760px);
  }

  .header-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy {
    max-width: none;
  }

  .lead-card {
    width: min(100%, 520px);
    justify-self: center;
  }

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

  .services-grid,
  .platform-grid,
  .method-grid,
  .founder-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .platform-person {
    display: none;
  }

  .dashboard-shot {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .method-map {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .founder-grid {
    text-align: center;
  }

  .founder img {
    margin: 0 auto;
  }

  .founder-actions {
    justify-content: center;
  }

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