:root {
  color: #18202a;
  background: #eef3f8;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 28px;
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #2563eb;
  font-size: 18px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0;
}

.summary {
  max-width: 620px;
  margin: 24px 0 0;
  color: #5d6673;
  font-size: 22px;
  line-height: 1.65;
}

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

a {
  text-decoration: none;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
}

.primary {
  background: #2563eb;
  color: #fff;
}

.secondary {
  color: #18202a;
  background: #fff;
  border: 1px solid #cbd6e2;
}

.panel {
  background: #fff;
  border: 1px solid #cfdae7;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(30, 45, 68, 0.08);
}

.panel-row {
  min-height: 82px;
  border-bottom: 1px solid #e5ebf2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: #7a8492;
  font-size: 15px;
}

.panel-row strong {
  font-size: 22px;
}

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

article {
  background: #fff;
  border: 1px solid #d5dfeb;
  border-radius: 8px;
  padding: 24px;
}

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

article p {
  margin: 0;
  color: #5d6673;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .page {
    padding: 40px 18px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h1 {
    font-size: 42px;
  }

  .summary {
    font-size: 18px;
  }

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