/* ===== Amber Roach Games — Support & Contact page ===== */

.support-hero {
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.support-hero .back-link {
  display: block;
}
.support-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.support-lede {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 60ch;
}
.support-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.4rem;
}
.support-note {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 60ch;
}
.support-note a {
  color: var(--orange);
}

/* ===== Info cards ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.support-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}
.support-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.support-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.support-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.support-code {
  display: block;
  margin: 0.9rem 0;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.85rem;
  color: var(--orange);
  overflow-x: auto;
  white-space: nowrap;
}
.support-warning {
  margin-top: 1.1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 138, 30, 0.45);
  border-radius: 12px;
  background: rgba(255, 138, 30, 0.07);
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-soft);
}
.faq-list {
  margin-top: 2.4rem;
  display: grid;
  gap: 0.9rem;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 1.4rem;
  transition: border-color 0.25s ease;
}
.faq-item[open],
.faq-item:hover {
  border-color: var(--orange);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 1.3rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 72ch;
}
.faq-answer a {
  color: var(--orange);
}

/* ===== Other channels ===== */
.reach-section {
  text-align: center;
}
.reach-section .section-lede {
  margin: 0 auto;
}

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