/* Features catalog — plan chips + roadmap stars on the shared industry-card
   grid. Page-specific rules only. */
.ft-card{ display: flex; flex-direction: column; align-items: flex-start; }
.ft-card__chip{ margin-bottom: var(--space-3); }
.ft-card h3{ line-height: 1.3; }
.ft-star{
  display: inline; margin-left: 2px;
  color: var(--orange-500); font-weight: 800; font-size: 1.1em; line-height: 1;
}
/* A third state the star cannot express: shipped and reachable, but early.
   The star means "not live yet", so wearing one under-claims a feature users
   can actually open today — and dropping it with nothing in its place would
   claim the feature is as settled as the rest of the page. Same badge
   geometry as .app-nav__soon in app.css, in success green rather than blue,
   because blue already reads as "Soon" (i.e. NOT live) across the portal. */
.ft-beta{
  display: inline-block; margin-left: 6px; padding: 1px 6px;
  border-radius: var(--radius-full); background: var(--success-50); color: var(--success-700);
  font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  vertical-align: middle;
}
