:root {
  color-scheme: dark;
  --background: #050914;
  --panel: rgba(17, 23, 39, 0.88);
  --panel-strong: rgba(24, 31, 51, 0.96);
  --text: #f8fbff;
  --muted: rgba(235, 241, 255, 0.7);
  --mint: #38e1bd;
  --cyan: #42d9f5;
  --purple: #a969ff;
  --gold: #f4c150;
  --border: rgba(90, 224, 204, 0.24);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% -8%, rgba(70, 218, 190, 0.22), transparent 31rem),
    radial-gradient(circle at -8% 36%, rgba(137, 77, 246, 0.18), transparent 28rem),
    linear-gradient(180deg, #07101d 0%, #040711 100%);
  line-height: 1.65;
}

a {
  color: var(--cyan);
}

a:hover,
a:focus-visible {
  color: #8cecff;
}

.page-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) 0 56px;
}

.site-header,
.legal-panel,
.support-card,
.contact-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.site-header {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 30px;
}

.site-header::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -95px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 225, 189, 0.28), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.brand-accent {
  color: var(--mint);
}

.lede {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.5vw, 1.24rem);
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-nav a,
.button-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(66, 217, 245, 0.26);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  text-decoration: none;
}

.page-nav a[aria-current="page"] {
  color: #03120e;
  border-color: var(--mint);
  background: var(--mint);
}

.legal-panel,
.contact-card {
  border-radius: 26px;
  padding: clamp(24px, 5vw, 44px);
}

.legal-panel h2,
.support-card h2,
.contact-card h2 {
  margin: 1.9em 0 0.35em;
  color: var(--text);
  font-size: clamp(1.22rem, 3.4vw, 1.58rem);
  line-height: 1.2;
}

.legal-panel h2:first-of-type,
.contact-card h2:first-of-type {
  margin-top: 0;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

ul {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.45rem;
}

.policy-meta {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

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

.support-card {
  border-radius: 22px;
  padding: 22px;
}

.support-card h2 {
  margin-top: 0;
}

.support-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card {
  margin-top: 14px;
  border-color: rgba(244, 193, 80, 0.3);
}

.contact-card strong {
  color: var(--gold);
}

.footer-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.88rem;
  text-align: center;
}

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

  .site-header,
  .legal-panel,
  .contact-card {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
