:root {
  --bg: #ffffff;
  --ink: #17211f;
  --muted: #5f6f6b;
  --line: #dce6e2;
  --panel: #f7fbfa;
  --panel-strong: #eef7f5;
  --teal: #0f766e;
  --teal-dark: #0d5f59;
  --amber: #f2b84b;
  --shadow: 0 24px 60px rgba(15, 64, 58, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
}

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

.site-header,
.hero,
.feature-band,
.workflow,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 750;
}

.brand-mark,
.feature-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  align-items: center;
  gap: 70px;
  min-height: calc(100vh - 84px);
  padding: 54px 0 92px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 750;
}

.button.primary {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.2);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
}

.button.secondary:hover {
  border-color: var(--teal);
}

.scorecard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(15, 118, 110, 0.1), transparent 38%),
    #ffffff;
  box-shadow: var(--shadow);
  padding: 24px;
}

.scorecard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.eyebrow-text,
.scorecard h2,
.comparison p,
.metrics dt,
.metrics dd,
.section-heading h2,
.section-heading p,
.features h3,
.features p,
.steps,
.site-footer p {
  margin: 0;
}

.eyebrow-text {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.scorecard h2 {
  margin-top: 6px;
  font-size: 1.45rem;
}

.score {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--panel-strong);
  font-size: 1.5rem;
  font-weight: 800;
}

.comparison {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.comparison article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 3px 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: 14px;
}

.comparison span {
  grid-row: span 3;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--teal);
  background: var(--panel-strong);
  font-weight: 800;
}

.comparison strong {
  font-size: 0.98rem;
}

.comparison p {
  color: var(--muted);
  font-size: 0.9rem;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8efed;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 0;
}

.metrics div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px;
}

.metrics dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.metrics dd {
  margin-top: 3px;
  font-size: 1.45rem;
  font-weight: 800;
}

.feature-band {
  padding: 80px 0 88px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 680px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.features article,
.steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--panel-strong);
}

.features h3 {
  margin-top: 18px;
  font-size: 1.24rem;
}

.features p {
  margin-top: 10px;
  color: var(--muted);
}

.workflow {
  padding: 82px 0 96px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
}

.steps span {
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 850;
}

.steps strong {
  display: block;
  margin-top: 12px;
  font-size: 1.1rem;
}

.steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 38px;
  }

  .scorecard {
    max-width: 560px;
  }

  .features,
  .steps {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .feature-band,
  .workflow,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 17vw, 4.3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .scorecard {
    padding: 18px;
  }

  .scorecard-header {
    align-items: center;
  }

  .score {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

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