/* Support page scoped styles — extends shared landing.css */
/* Support page — minimal additions on top of the shared design system
     (colors_and_type.css + landing.css). The shared landing.css is left untouched;
     these classes are scoped to this page only. */
  .support-hero { padding: 60px 0 40px; }
  .support-hero .sec-head { margin-bottom: 0; }
  .support-hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 900; letter-spacing: -.6px; margin-top: 14px; }
  .support-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

  .sup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .sup-card { position: relative; display: flex; flex-direction: column; border-radius: var(--r-lg);
    padding: 32px 30px; background: var(--lp-surface);
    box-shadow: var(--shadow-lp), inset 0 0 0 1px var(--lp-border); transition: transform .25s ease; }
  .sup-card:hover { transform: translateY(-4px); }
  .sup-card .ic-tile { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
    color: #fff; margin-bottom: 20px; }
  .sup-card .ic-tile svg { width: 26px; height: 26px; }
  .sup-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
  .sup-card > p { font-size: 15px; color: var(--lp-muted); margin: 0 0 14px; }
  .sup-card .note { font-size: 13.5px; line-height: 1.5; color: var(--lp-ink-2);
    background: color-mix(in srgb, var(--accent) 12%, transparent); border-radius: var(--r-sm);
    padding: 11px 13px; margin: 2px 0 16px; }
  .sup-card .note b { color: var(--lp-ink); }
  .sup-cta { margin-top: auto; }
  .sup-cta .btn { width: 100%; }
  .sup-card .sub { font-size: 12px; color: var(--lp-muted); margin: 10px 0 0; text-align: center; }
  .sup-card .btn[aria-disabled="true"] { opacity: .5; cursor: default; }
  .sup-card .btn[aria-disabled="true"]:hover { transform: none; filter: none; }

  /* Deletion card — gold standout (mirrors the .plan.hot treatment). */
  .sup-card--accent { background: linear-gradient(160deg,
      color-mix(in srgb, var(--primary) 22%, var(--lp-surface)), var(--lp-surface));
    box-shadow: var(--shadow-lp), inset 0 0 0 1.5px var(--accent); }
  .sup-card--accent .badge { position: absolute; top: 20px; right: 22px; background: var(--accent);
    color: var(--accent-ink); font-family: var(--font-bold); font-weight: 700; font-size: 11px;
    letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill); }
  .sup-card--accent .opts { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 11px; }
  .sup-card--accent .opts li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.5;
    align-items: flex-start; color: var(--lp-ink-2); }
  .sup-card--accent .opts .ic { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid;
    place-items: center; background: color-mix(in srgb, var(--accent) 24%, transparent); color: var(--accent);
    margin-top: 1px; }
  .sup-card--accent .opts .ic svg { width: 12px; height: 12px; }
  .sup-card--accent .opts b { color: var(--lp-ink); }

  /* Deletion highlight band actions (inside the reused .final-card). */
  .support-band-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .support-band-actions .linkish { color: #f6e5d3; font-family: var(--font-medium); font-weight: 600;
    text-decoration: underline; text-underline-offset: 3px; opacity: .92; }
  .support-band-actions .linkish:hover { color: var(--accent); }

  .support-contact { max-width: 660px; }
  .faq .ans a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

  @media (max-width: 860px){ .sup-grid { grid-template-columns: 1fr; } }

/* Tinted band for the support FAQ section — these two rules lived in the v1
   landing.css (.showcase); v2 dropped that section, so the support page now
   owns them. Uses the same v2 tokens (--lp-bg-2 / --lp-glow). */
.showcase { background: var(--lp-bg-2); }
.showcase::before { content:""; position:absolute; inset:0; background: var(--lp-glow); opacity:.6; pointer-events:none; }
