.support-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(42px, 7vw, 96px);
  min-width: 0;
  margin-top: 12px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.support-copy {
  min-width: 0;
}

.support-copy .eyebrow {
  margin-bottom: 16px;
}

.support-copy h3 {
  margin: 0;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.support-copy > p:last-child {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.support-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.support-method {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(23, 22, 21, .9), rgba(10, 10, 10, .96));
}

.support-method::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 48px;
  background: rgba(247, 242, 232, .2);
  content: "";
}

.support-method-stripe {
  border-color: rgba(254, 120, 73, .48);
  background:
    radial-gradient(circle at 100% 0, rgba(254, 120, 73, .17), transparent 42%),
    linear-gradient(145deg, rgba(27, 22, 20, .96), rgba(10, 10, 10, .98));
}

.support-method-stripe::before {
  background: var(--coral);
}

.support-status {
  color: var(--coral);
  font-family: var(--font-ibm-plex-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.support-method h4 {
  margin: 13px 0 14px;
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

.support-method p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.support-account,
.support-placeholder {
  display: block;
  max-width: 100%;
  margin-top: auto;
  color: rgba(247, 242, 232, .82);
  font-family: var(--font-ibm-plex-mono), monospace;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .025em;
  overflow-wrap: anywhere;
  white-space: normal;
}

.support-placeholder {
  color: rgba(247, 242, 232, .48);
}

.support-link {
  max-width: 100%;
  margin-top: auto;
  text-align: center;
}

.support-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(247, 242, 232, .52);
  font-size: 11px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .support-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 0;
    padding-top: 46px;
  }

  .support-copy > p:last-child {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .support-methods {
    grid-template-columns: 1fr;
  }

  .support-method {
    min-height: 0;
    padding: 22px;
  }

  .support-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .support-panel {
    gap: 30px;
    padding-top: 40px;
  }

  .support-copy h3 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
  }

  .support-method {
    padding: 20px;
  }
}
