:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #182022;
  background: #f6f4ef;
}

body {
  margin: 0;
}

main {
  min-height: 100vh;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: 48px clamp(20px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(10, 20, 24, 0.82), rgba(10, 20, 24, 0.2)),
    url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
}

.hero > div {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #9ee6c2;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #ecf3f0;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 88px) 56px;
}

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

h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

article p {
  min-height: 48px;
  color: #536160;
}

a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  background: #136b51;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero {
    min-height: 64vh;
  }

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