:root {
  --ink: #070a12;
  --panel: #0d1220;
  --teal: #5be3da;
  --violet: #9b7bf0;
  --gold: #f0c85a;
  --coral: #ff6b5b;
  --pink: #ff8fc7;
  --skyblue: #6fb3f2;
  --sprout: #7be08a;
  --mist: rgba(226, 232, 248, 0.74);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: 'Manrope', sans-serif;
  color: var(--mist);
  background: radial-gradient(120% 90% at 50% -12%, #131b2e 0%, #070a12 58%);
}

h1 {
  font-family: 'Fraunces', serif;
  font-weight: 480;
  color: #f5f2ff;
  margin: 0 0 6px;
  font-size: clamp(28px, 6vw, 38px);
}

a { color: inherit; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(226, 232, 248, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-link:hover, .back-link:focus-visible { color: #f5f2ff; }

.page {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 56px) clamp(18px, 5vw, 32px) 72px;
}

.page-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 320px;
  background: radial-gradient(circle, var(--accent, var(--teal)) 0%, transparent 70%);
  opacity: 0.22;
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.page-content { position: relative; z-index: 1; margin-top: 40px; }
.page-content p { line-height: 1.65; font-size: 15.5px; margin: 0 0 16px; }

.rule {
  width: 40px;
  height: 2px;
  background: var(--accent, var(--teal));
  border: none;
  margin: 10px 0 26px;
  border-radius: 2px;
}

.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f5f2ff;
  text-decoration: none;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cta:hover, .cta:focus-visible {
  border-color: var(--accent, var(--teal));
  background: rgba(255, 255, 255, 0.05);
}
