:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #53635f;
  --line: #d8e0dc;
  --green: #245b46;
  --green-soft: #e7f2ec;
  --gold: #d5a02a;
  --sky: #dcebf5;
  --paper: #fbfbf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.hero {
  min-height: 68vh;
  padding: 88px 0 56px;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 22%, rgba(213, 160, 42, .22), transparent 26%),
    linear-gradient(135deg, rgba(36, 91, 70, .12), rgba(220, 235, 245, .85));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 86px);
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

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

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.actions .secondary {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}

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

article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

article span {
  color: var(--gold);
  font-weight: 800;
}

article h2 {
  margin-top: 22px;
  font-size: 24px;
}

article p,
.panel li {
  color: var(--muted);
  line-height: 1.75;
}

.panel {
  margin-bottom: 56px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-soft);
}

.panel h2 {
  font-size: 32px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 62px 0 42px;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 17px;
  }

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

  .panel {
    padding: 26px;
  }
}
