:root {
  --bg: #0b0710;
  --bg-2: #120a1e;
  --purple: #7c3aed;
  --purple-bright: #a78bfa;
  --text: #ede9f7;
  --text-dim: #9c92b8;
  --border: rgba(167, 139, 250, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 900px;
  height: 90vw;
  max-height: 900px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, rgba(124, 58, 237, 0) 65%);
  pointer-events: none;
  z-index: 0;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--purple-bright);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 20ch;
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-bright) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 1.5rem;
  max-width: 40ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.contact-link {
  margin-top: 2rem;
  color: var(--purple-bright);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-link:hover {
  border-color: var(--purple-bright);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-nav {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.footer-nav a {
  color: var(--text-dim);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--purple-bright);
}

/* Legal pages (privacy / terms) */
.legal {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.legal .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--purple-bright);
  text-decoration: none;
  font-size: 0.85rem;
}

.legal .back-link:hover {
  text-decoration: underline;
}

.legal h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  -webkit-text-fill-color: initial;
  background: none;
  -webkit-background-clip: initial;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.legal .updated {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1.15rem;
  color: var(--purple-bright);
  margin: 2rem 0 0.75rem;
}

.legal p, .legal li {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal ul {
  margin-left: 1.25rem;
  margin-top: 0.5rem;
}

.legal a {
  color: var(--purple-bright);
}
