:root {
  --bg: #020617;
  --bg-2: #0b1220;
  --panel: #0f172a;
  --panel-2: #111827;
  --line: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #8b5cf6;
  --accent-2: #38bdf8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 15% 10%, #1f1a45 0%, transparent 38%),
    radial-gradient(circle at 100% 100%, #0d2238 0%, transparent 40%), var(--bg);
  color: var(--text);
  font-family: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: #c4b5fd;
  text-decoration: none;
}

a:hover {
  color: #ddd6fe;
}

.bg-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.34;
  pointer-events: none;
}

.bg-glow-top {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -60px;
  background: #8b5cf6;
}

.bg-glow-bottom {
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: 40px;
  background: #0ea5e9;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, calc(100% - 40px));
  margin: 16px auto;
  padding: 12px 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.header-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.hero {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.88));
}

.eyebrow {
  margin: 0 0 8px;
  color: #a5b4fc;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
}

h2 {
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
}

h3 {
  margin-top: 20px;
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 760px;
  margin: 8px 0 0;
  color: #cbd5e1;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.btn-secondary {
  color: #dbeafe;
  border-color: rgba(147, 197, 253, 0.35);
  background: rgba(15, 23, 42, 0.55);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.panel {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(15, 23, 42, 0.8));
}

.panel ul,
.legal ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #cbd5e1;
}

.support-panel dt {
  margin-top: 10px;
  font-weight: 600;
  color: #e2e8f0;
}

.support-panel dd {
  margin: 3px 0 0;
  color: #cbd5e1;
}

.site-footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto 24px;
  padding: 18px 0 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal {
  max-width: 920px;
}

.legal .muted {
  margin: 0 0 18px;
  color: var(--muted);
}

.legal-section {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

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

  .site-header {
    width: calc(100% - 24px);
    margin: 12px auto;
    padding: 10px 12px;
  }

  .container,
  .site-footer {
    width: calc(100% - 24px);
  }

  .header-nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 22px 18px;
  }
}
