.support-page {
  background: radial-gradient(circle at top, #1b342c 0%, #0b1412 45%, #060a09 100%);
  color: var(--sand);
}

.topo {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%23a7b7ad' stroke-width='1' opacity='0.12'%3E%3Cpath d='M14 92c34-14 64-18 96-10 40 10 76 8 112-6 40-16 62-20 84-8'/%3E%3Cpath d='M8 156c44-10 82-8 116 6 38 16 76 18 114 4 30-12 56-12 74-4'/%3E%3Cpath d='M12 220c36-12 68-10 98 4 44 22 80 24 128 6 30-12 50-12 66-6'/%3E%3Cpath d='M32 40c36 18 70 24 108 20 44-6 78-2 120 12'/%3E%3Cpath d='M48 280c40 12 74 14 110 4 38-10 70-8 106 6'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
}

.support-page main {
  position: relative;
  z-index: 1;
}

.support-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 24px 20px;
}

.support-hero h1 {
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 1px;
  margin-bottom: 12px;
  animation: rise 0.8s ease-out;
}

.support-meta {
  color: rgba(242, 239, 231, 0.7);
  font-size: 14px;
}

.support-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 24px;
  line-height: 1.7;
  color: rgba(242, 239, 231, 0.78);
}

.support-body h2 {
  color: var(--sand);
  margin-bottom: 10px;
  font-size: 22px;
}

.support-body p {
  margin-bottom: 14px;
}

.support-body ul {
  padding-left: 22px;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.support-body a {
  color: var(--moss);
}

.support-footer {
  max-width: var(--max-width);
  margin: 20px auto 40px;
  padding: 0 24px;
  color: rgba(242, 239, 231, 0.6);
  font-size: 14px;
}

@media (max-width: 980px) {
  .support-hero {
    padding-top: 70px;
  }
}

@media (prefers-color-scheme: light) {
  .support-page {
    background: radial-gradient(circle at top, #f6f2e8 0%, #fdfcf9 45%, #ffffff 100%);
    color: #1a2220;
  }

  .support-meta,
  .support-body,
  .support-footer {
    color: rgba(26, 34, 32, 0.75);
  }

  .support-body h2 {
    color: #111c19;
  }

  .support-body a {
    color: #2e7a59;
  }

  .topo {
    opacity: 0.15;
    mix-blend-mode: multiply;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-hero h1 {
    animation: none;
  }
}
