main {
  max-width: 900px;
  margin: 0 auto;
}

h1 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.plan {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.plan.featured {
  border-color: #111;
}

.plan h3 {
  margin: 0 0 8px;
  font-weight: 500;
}

.price {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.price span {
  font-size: 14px;
  color: var(--muted);
}

.plan ul {
  padding-left: 18px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.plan li {
  margin-bottom: 8px;
}

.plan button {
  margin-top: auto;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.plan.featured button {
  background: #000;
}

.beta-note--red {
  margin-top: 40px;
  padding: 12px 14px;
  border: 1px solid #f3c6c6;
  border-radius: 8px;
  background: #fff5f5;
  color: #7a2e2e;
  font-size: 14px;
  max-width: 600px;
}

.beta-note--red strong {
  display: block;
  color: #5c1f1f;
  margin-bottom: 4px;
}

.beta-note--red {
  margin-bottom: 32px;
}