.page {
  background: #f8fafc;
  color: #17202a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

.shell {
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 20px 72px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 56px;
}

.brand {
  color: #17202a;
  font-weight: 750;
  text-decoration: none;
}

.navLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.navLinks a {
  color: #526170;
  font-size: 14px;
  text-decoration: none;
}

.hero {
  display: grid;
  gap: 20px;
  margin-bottom: 44px;
  max-width: 880px;
}

.eyebrow {
  color: #315ac4;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.heading {
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0;
}

.lede {
  color: #526170;
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
  max-width: 780px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button,
.secondaryButton {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  text-decoration: none;
}

.button {
  background: #315ac4;
  color: #fff;
}

.secondaryButton {
  background: #fff;
  border: 1px solid #d5dde6;
  color: #17202a;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 44px;
}

.twoColumn {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  margin: 44px 0;
}

.card,
.panel {
  background: #fff;
  border: 1px solid #d5dde6;
  border-radius: 8px;
  padding: 22px;
}

.card h2,
.card h3,
.panel h2,
.panel h3 {
  margin: 0 0 10px;
}

.card p,
.panel p,
.panel li {
  color: #526170;
}

.band {
  background: #eef3fb;
  border-block: 1px solid #d5dde6;
  margin: 48px calc(50% - 50vw);
  padding: 44px calc(50vw - 50% + 20px);
}

.bandInner {
  margin: 0 auto;
  max-width: 1120px;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}

.toolForm {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 700;
}

.field input,
.field select {
  border: 1px solid #d5dde6;
  border-radius: 8px;
  font: inherit;
  min-height: 42px;
  padding: 8px 10px;
}

.result {
  background: #17202a;
  border-radius: 8px;
  color: #fff;
  padding: 22px;
}

.result p {
  color: #dce5f0;
}

.score {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 8px;
}

.faq {
  display: grid;
  gap: 14px;
}

.footer {
  border-top: 1px solid #d5dde6;
  color: #526170;
  font-size: 14px;
  margin-top: 56px;
  padding-top: 24px;
}

@media (max-width: 800px) {
  .nav,
  .twoColumn {
    display: grid;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
