/* ============================================================
   09 - SUPPORT  ·  #support

   One centred panel, one route. It was a two-card grid for about
   an hour; the second card said "Open a ticket", and there is no
   ticket form on this site, so it was a button promising a thing
   that does not exist. Tickets are opened inside the Discord, and
   the copy says so instead.

   Same panel recipe as the creator cards directly above (accent
   wash over a near-solid base), so the two sections read as one
   family rather than as two different pages, and neither reads as
   a hole in the background the way a 3% white surface did.

   The control was Discord blurple for one deploy and is now the
   site accent, on the owner's call: #5865F2 is a violet, and it
   was the only violet on a page built entirely from one baby blue,
   so it read as a widget borrowed from somewhere else. Theme
   consistency won over the argument that a blurple button would
   not compete with the closing CTA below.

   Prefix: .support-
   ============================================================ */

/* Narrower than the shared reading column: one panel holding three
   short lines should not stretch to 900px, or the button ends up a
   long way from the sentence that explains it. */
.support-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  padding: 28px 26px 26px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(122,197,240,.055) 0%, rgba(122,197,240,0) 45%),
    rgba(13, 18, 28, .92);
  transition: border-color var(--t) var(--e-out), background var(--t) var(--e-out);
}
.support-panel:hover {
  border-color: rgba(122,197,240,.34);
  background:
    linear-gradient(180deg, rgba(122,197,240,.085) 0%, rgba(122,197,240,0) 45%),
    rgba(16, 22, 34, .95);
}

/* Same tile geometry as the trust strip's icon tiles. */
.support-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  margin-bottom: 15px;
  color: var(--accent);
  background: var(--accent-grad-soft);
  border: 1px solid rgba(122, 197, 240, .20);
  border-radius: 11px;
}
.support-tile svg { width: 20px; height: 20px; }

.support-h {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.25;
  color: var(--text);
}
.support-p {
  margin-top: 9px;
  margin-bottom: 22px;
  max-width: 40ch;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* Same fill as the shared .btn-primary, so the one control in this section is
   the same object the rest of the page uses. */
.support-btn {
  min-width: 210px;
  padding: 12px 22px;
  font-size: 14.5px;
  color: var(--on-accent);
  background: var(--accent-strong);
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
  transition: background var(--t) var(--e-out), box-shadow var(--t) var(--e-out);
}
.support-btn:hover { background: var(--blue-400); box-shadow: inset 0 1px 0 rgba(255,255,255,.28); }
.support-btn:active { background: var(--blue-600); }

@media (max-width: 620px) {
  .support-panel { padding: 24px 18px 22px; }
  .support-btn { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .support-panel, .support-btn { transition: none; }
}
