@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Burbank Big Condensed';
  src: url('assets/fonts/Burbank%20Big%20Condensed%20Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Burbank Big Condensed';
  src: url('assets/fonts/Burbank%20Big%20Condensed%20Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-0: #130629;
  --purple: #8b5cf6;
  --purple-hi: #c4b5fd;
  --text: #ffffff;
  --muted: #d6c9f0;
  --line: rgba(196, 181, 253, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== Storm background (matches homepage) ===== */
.storm {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(180, 100, 255, 0.55), transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(140, 80, 220, 0.5), transparent 65%),
    radial-gradient(ellipse 65% 50% at 50% 50%, rgba(120, 60, 200, 0.38), transparent 70%),
    radial-gradient(ellipse 60% 45% at 90% 85%, rgba(255, 170, 200, 0.28), transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(90, 40, 160, 0.5), transparent 65%),
    linear-gradient(180deg, #1a0a3e 0%, #130629 50%, #0d041f 100%);
}

.shell { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Nav ===== */
.nav {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(13, 4, 31, 0.7), rgba(13, 4, 31, 0.3));
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
}

.brand-name {
  font-family: 'Burbank Big Condensed', Impact, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0,0,0,0.5), 0 0 20px rgba(196, 181, 253, 0.3);
}

/* ===== Page content ===== */
.page { padding: 64px 0 80px; }
.page-inner { max-width: 720px; margin: 0 auto; }

.page-title {
  font-family: 'Burbank Big Condensed', Impact, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 4px 0 rgba(0,0,0,0.45), 0 0 50px rgba(196, 181, 253, 0.3);
}

.page-meta {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.85;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.section { margin-bottom: 36px; }

.section h2 {
  font-family: 'Burbank Big Condensed', Impact, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-hi);
  margin-bottom: 14px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.4);
}

.section p,
.section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section ul { list-style: none; padding: 0; }

.section li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.section li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

.section a {
  color: var(--purple-hi);
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.4);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
  word-break: break-word;
}

.section a:hover { color: #fff; text-decoration-color: #fff; }

/* ===== Footer (shared with homepage) ===== */
.footer {
  padding: 40px 0 48px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--purple-hi);
  text-decoration: none;
  font-family: 'Burbank Big Condensed', Impact, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-links a:hover { color: #fff; }

.footer-note { line-height: 1.6; max-width: 540px; margin: 0 auto; }

@media (max-width: 640px) {
  .page { padding: 40px 0 56px; }
  .page-title { font-size: 44px; }
  .lead { font-size: 16px; }
  .section h2 { font-size: 22px; }
  .brand-name { font-size: 18px; }
  .brand img { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
