.plans-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.plans-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 18px;
  padding: 20px 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.plans-hero h1 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}

.plans-hero .lede {
  max-width: 58ch;
  margin: 10px 0 0;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--muted);
}

.plans-status {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .plans-shell {
    width: min(calc(100% - 20px), 1200px);
    padding-top: 12px;
    overflow-x: hidden;
  }

  .plans-hero {
    padding: 16px;
    border-radius: 24px;
  }

  .plans-hero h1 {
    max-width: 100%;
    font-size: 1.75rem;
  }

  .plans-hero .lede {
    font-size: 0.94rem;
  }

}
