:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #647184;
  --paper: #f5f8f6;
  --panel: #ffffff;
  --line: #dbe6e1;
  --green: #10876a;
  --blue: #2f64d6;
  --amber: #bd710f;
  --red: #b64242;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 32, 51, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcfa 0%, var(--paper) 58%, #eaf2ee 100%);
  background-size: 72px 72px, auto;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 30px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.scorecard,
.pipeline article,
.panel,
.proof article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(28, 48, 69, 0.08);
}

.hero-copy {
  padding: 38px;
  border-radius: 24px;
}

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p,
span,
b {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.scorecard {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
}

.scorecard div {
  min-height: 90px;
  padding: 18px;
  border: 1px solid #d7e5de;
  border-radius: 18px;
  background: #fbfffd;
}

.scorecard b {
  display: block;
  font-size: 29px;
  line-height: 1;
}

.scorecard span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.pipeline article {
  min-height: 218px;
  padding: 23px;
  border-radius: 18px;
}

.pipeline span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.pipeline article:nth-child(2) span {
  background: var(--blue);
}

.pipeline article:nth-child(3) span {
  background: var(--amber);
}

.pipeline article:nth-child(4) span {
  background: var(--red);
}

h2 {
  margin: 18px 0 10px;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0;
}

.pipeline p,
.panel p,
.proof p,
footer {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  margin-top: 22px;
}

.panel,
.proof article {
  padding: 28px;
  border-radius: 20px;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.checks div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdfc;
}

.checks b,
.checks span {
  display: block;
}

.checks b {
  margin-bottom: 8px;
  font-size: 17px;
}

.checks span {
  color: var(--muted);
  line-height: 1.44;
}

.table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f6f8f8;
  color: #2c3547;
  font-size: 14px;
}

.row.head {
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}

.ok,
.warn,
.stop {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 999px;
  text-align: center;
  font-weight: 850;
}

.ok {
  color: #076b4d;
  background: #dff5ea;
}

.warn {
  color: #8a4c00;
  background: #fff2cc;
}

.stop {
  color: #a52222;
  background: #ffe4e4;
}

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

footer {
  max-width: 900px;
  margin: 22px auto 0;
  text-align: center;
  font-weight: 650;
}

@media (max-width: 920px) {
  .hero,
  .grid,
  .proof {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 42px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 22px, 1120px);
    padding-top: 20px;
  }

  .hero-copy,
  .scorecard,
  .panel,
  .proof article {
    padding: 22px;
    border-radius: 18px;
  }

  h1 {
    font-size: 33px;
    line-height: 1.04;
  }

  .lead {
    font-size: 17px;
  }

  .pipeline,
  .checks {
    grid-template-columns: 1fr;
  }

  .pipeline article {
    min-height: auto;
  }

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