:root {
  color-scheme: light;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: #17233d;
  background: #f7f4ec;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 209, 102, .28), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(91, 192, 190, .2), transparent 26%),
    linear-gradient(135deg, #fffaf0 0%, #f5f8ff 100%);
}

a {
  color: inherit;
}

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

.hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 35, 61, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: #2a7de1;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro {
  max-width: 660px;
  margin: 24px 0 0;
  color: #5c6b82;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.8;
}

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

.actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  background: #17233d;
  color: #fff;
  box-shadow: 0 16px 30px rgba(23, 35, 61, .16);
}

.secondary {
  border: 1px solid rgba(23, 35, 61, .16);
  background: rgba(255, 255, 255, .72);
}

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

article {
  padding: 26px;
  border: 1px solid rgba(23, 35, 61, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 45px rgba(23, 35, 61, .08);
}

article span {
  color: #2a7de1;
  font-weight: 900;
}

article h2 {
  margin: 18px 0 10px;
  font-size: 26px;
}

article p {
  margin: 0 0 18px;
  color: #607089;
  line-height: 1.8;
}

article a {
  color: #16883b;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 720px) {
  .page {
    padding: 36px 0;
  }

  .hero {
    min-height: 56vh;
  }

  .actions a {
    width: 100%;
  }

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