:root {
  --bg: #f5f7f9;
  --ink: #16222b;
  --muted: #60707c;
  --line: #d8e1e7;
  --surface: #ffffff;
  --brand: #007f73;
  --brand-dark: #005f56;
  --accent: #f2b84b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px clamp(16px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  text-decoration: none;
  font-size: 20px;
}

.brand img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

nav a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  background: var(--brand);
  color: #fff;
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

main {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: end;
  padding: clamp(42px, 8vw, 96px) 0 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: .94;
  max-width: 860px;
}

h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

h3 {
  margin: 0 0 8px;
}

p {
  color: #43515b;
  line-height: 1.62;
}

.lead {
  max-width: 760px;
  font-size: 19px;
}

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

.hero-panel,
.content-grid article,
.feature-band,
.link-list,
.article-layout article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.hero-panel {
  padding: 18px;
}

.hero-panel ul {
  margin: 12px 0 0;
  padding-left: 19px;
  color: #43515b;
  line-height: 1.55;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}

.content-grid article,
.feature-band,
.link-list,
.article-layout article {
  padding: clamp(18px, 4vw, 30px);
}

.feature-band {
  margin: 22px 0;
}

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

.steps article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 900;
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 56px;
}

.link-list a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.article-layout {
  max-width: 880px;
  padding: 42px 0 56px;
}

.article-layout article {
  display: grid;
  gap: 10px;
}

.article-layout h1 {
  font-size: clamp(34px, 6vw, 58px);
}

footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px clamp(16px, 5vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .content-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  nav {
    align-items: stretch;
  }

  nav a {
    width: 100%;
  }
}
