* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0d141a;
  background: #f4f7f8;
  line-height: 1.6;
}

a {
  color: #0f9387;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
}

.mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #1ec6b3 0%, #0c7c72 100%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: #14a89a;
  color: #ffffff;
}

.button:hover {
  background: #0f9387;
  text-decoration: none;
}

.hero {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0f9387;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin: 0;
  color: #4a5763;
  font-size: 19px;
}

.card {
  background: #ffffff;
  border: 1px solid #e6ebef;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 24px 60px -32px rgba(13, 20, 26, 0.28);
}

.stack {
  display: grid;
  gap: 18px;
}

h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

p,
li {
  color: #33424c;
}

ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

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

.price {
  margin: 14px 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.muted {
  color: #6b7884;
}

.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #dfe6ea;
  color: #6b7884;
  font-size: 14px;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 920px);
    padding-top: 24px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .card {
    padding: 22px;
  }

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