.section-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
}
.hero-copy {
  max-width: 680px;
}
.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero-text {
  margin: 24px 0 0;
  max-width: 640px;
  font-size: 1.05rem;
}
.hero-actions {
  margin-top: 36px;
}
.section-features {
  padding: 56px 0 0;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}
.section-heading p {
  margin-top: 18px;
  font-size: 1rem;
  color: #b8c8ff;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .section {
    min-height: auto;
  }
  .hero-copy h1 {
    font-size: 2.8rem;
  }
}
