/* Pricing cards: the same brushed rim and lift the feature cards already have.
 *
 * The bundle gives these `.glass-plain`, which does carry a shadow but whose
 * border is `1px solid hsl(0 0% 100% / .9)` -- white on a near-white band, so
 * there is effectively no outline. This mirrors the `#features .grid > *` rule
 * from metal-sections.v1.css so the two card sets read as one family, and is
 * scoped under #pricing so nothing else can be caught by it.
 *
 * The fill stays very slightly translucent rather than the features' opaque
 * `--bg`, so the aurora behind the section still tints the cards a little.
 */
#pricing .glass-plain {
  border-color: transparent !important;
  /* A 1px gradient border is not expressible directly, so the card paints the
     gradient and masks it to its own 1px frame; this keeps the 1rem radius
     exactly, which border-image cannot do. */
  background:
    linear-gradient(hsl(0 0% 100% / .93), hsl(0 0% 100% / .93)) padding-box,
    linear-gradient(145deg,
        hsl(0 0% 100% / .95) 0%,
        hsl(var(--line-strong)) 22%,
        hsl(0 0% 100% / .9) 38%,
        hsl(var(--warm)) 58%,
        hsl(0 0% 100% / .85) 74%,
        hsl(var(--line-strong)) 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 1px 1px hsl(var(--deep) / .05),
    0 10px 34px hsl(var(--deep) / .10),
    inset 0 1px hsl(0 0% 100% / .95);
}
