* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #202633;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #f9fbf7 url("./assets/bg-soft.jpg") center top / cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .56);
  pointer-events: none;
}

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

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

.hero {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  padding: 28px 0;
}

.eyebrow,
.section-title p,
.tag {
  margin: 0 0 16px;
  color: #19a88a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 620px;
  color: #202633;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.02;
}

.lead {
  max-width: 600px;
  margin-top: 24px;
  color: #6b7280;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

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

.actions a {
  min-width: 132px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: #18a889;
  box-shadow: 0 14px 30px rgba(24, 168, 137, .2);
  font-size: 16px;
  font-weight: 800;
  line-height: 48px;
  text-align: center;
}

.actions .secondary {
  color: #15866f;
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px rgba(24, 168, 137, .16);
}

.hero-visual {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 28px;
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 28px 70px rgba(72, 102, 92, .14);
}

.hero-visual img {
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(31, 36, 48, .1);
}

.section {
  margin-top: 44px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 30px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 22px 58px rgba(72, 102, 92, .1);
  backdrop-filter: blur(10px);
}

.section-title {
  max-width: 760px;
}

h2 {
  color: #202633;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.18;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-grid article,
.note-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(248, 245, 239, .82);
}

.feature-grid span {
  color: #ff6b4a;
  font-size: 14px;
  font-weight: 900;
}

h3 {
  margin-top: 12px;
  color: #202633;
  font-size: 22px;
  font-weight: 900;
}

.feature-grid p,
.split p,
.note-card li {
  margin-top: 14px;
  color: #747b86;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 28px;
  align-items: center;
}

.note-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 40px;
  color: #8a928d;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.icp {
  color: #9da49f;
}

@media (max-width: 880px) {
  .page {
    padding-top: 38px;
  }

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

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .page,
  .footer {
    width: min(100% - 28px, 1120px);
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-visual {
    padding: 12px;
    border-radius: 22px;
  }

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

  .footer {
    flex-direction: column;
  }
}
