/* Plans page — the comparison table, and the cards that replace it on a phone.
 *
 * **Both were rendering at once.** The design shipped a full comparison table *and* a stacked card
 * version, with `.plans-mobile { display: none }` in an inline `<style>` block swapping them at
 * 720px. That block was extracted along with everything else, so nothing hid either and the page
 * showed the same plans twice.
 *
 * Mobile-first, so the cards are the default and the table is what a wide screen adds. That is the
 * right way round on its own merits: a six-column table has no honest small-screen form, whereas
 * cards read fine at any width.
 */

.plans-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plans-desktop { display: none; }

/* Table cells: label column, value columns, and the monospaced figures inside them. */
.pt-l {
  padding: 12px 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.pt-v {
  padding: 12px 3px;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pt-mono {
  font-family: var(--font-mono);
  font-size: 11.5px;
}

@media (min-width: 721px) {
  .plans-mobile { display: none; }
  .plans-desktop { display: flex; flex-direction: column; }
}

@media (min-width: 981px) {
  .pt-l { padding: 15px 16px; font-size: 13.5px; }
  .pt-v { padding: 15px 6px; font-size: 14px; }
  .pt-mono { font-size: 13.5px; }
}

/* Every "Get the app" button on this page — the table row and the three plan cards. They are
   inline-styled anchors in three different colourways, so the hover uses properties no inline
   style sets: a brightness step works on all three without knowing any of their colours. */
a[href="index.html#download"] {
  transition: filter 0.15s ease, transform 0.15s ease;
}
a[href="index.html#download"]:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
