/* Silverline additions beyond the design handoff.

   The static site had no founding-member offer, so it had no slot for the
   remaining-spots count. This styles it inside the existing plan card without
   touching the handoff stylesheets. */

.plan-scarcity {
  margin-top: -6px;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peach);
}

/* Inline SVG QR codes. The handoff shipped these as fixed-size PNGs; they are
   generated per destination now, so the slot sizes the SVG instead. */

.qr-grid .qr-code {
  display: block;
  width: 228px;
  max-width: 100%;
  aspect-ratio: 1;
  padding: 10px;
  background: #f3f1f8;
  border-radius: 5px;
}

.qr-grid .qr-code svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Fitting results. radarMarkup emits its own chart, note and legend, all of
   which the handoff already styles — these cover only the suggestion cards
   and the chart's slot. */

.fitting-suggestions {
  margin-bottom: 30px;
}

.fitting-suggestions article {
  padding: 18px 20px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--lavender);
  border-radius: 5px;
  background: var(--surface);
}

.fitting-suggestions h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}

.fitting-suggestions p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.fitting-radar {
  max-width: 380px;
  margin: 0 auto;
}

.fitting-radar svg {
  width: 100%;
  height: auto;
}

/* Cookie consent banner. Ported from the Tailwind layout so the silverline
   pages carry the same notice; it shares the halo_cookie_consent key, so a
   dismissal on either design is honoured by the other. */

.cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  padding: 16px;
}

.cookie-consent-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 720px) {
  .cookie-consent-inner {
    flex-direction: row;
    align-items: center;
    gap: 26px;
  }
}

.cookie-consent p {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.cookie-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent .button {
  flex-shrink: 0;
  min-height: 44px;
  padding: 10px 22px;
}
