:root {
  --bg: #120521;
  --text: #f6ecff;
  --muted: #cdb6ee;
  --accent: #cf7cff;
  --line: #4b2c74;
  --ok: #62e7b5;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, #4f1789 0%, transparent 35%),
    radial-gradient(circle at 80% 0%, #6b2fa8 0%, transparent 30%),
    linear-gradient(165deg, #0d0419 0%, #120521 45%, #1e0d3a 100%);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(15, 7, 30, 0.78);
  border-bottom: 1px solid rgba(142, 88, 206, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  text-decoration: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
  color: var(--text);
}

.nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  gap: 1.2rem;
}

.nav-links a,
.nav-links .nav-text {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 1;
}

.hero.simple-hero {
  padding: 5.2rem 0 1.6rem;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: var(--ok);
}

h1,
h2,
h3,
h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--text);
}

h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 0.6rem;
}

.welcome-text {
  color: var(--muted);
  line-height: 1.7;
}

.about-page {
  padding-top: 0;
}

.rich-content {
  background: rgba(31, 13, 54, 0.88);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
  padding: clamp(1rem, 2.4vw, 2rem);
}

.rich-content h2 {
  margin-top: 1.35rem;
  margin-bottom: 0.55rem;
}

.rich-content h3 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

.rich-content p,
.rich-content li {
  color: var(--muted);
  line-height: 1.68;
}

.rich-content ul,
.rich-content ol {
  padding-left: 1.2rem;
}

.rich-content a {
  color: #e7ccff;
}

.site-footer {
  margin-top: 3.2rem;
  border-top: 1px solid rgba(130, 74, 197, 0.4);
  background: rgba(10, 4, 20, 0.85);
  color: var(--muted);
}

.footer-wrap {
  padding: 1.2rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem 1.1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero.simple-hero {
    padding-top: 4.2rem;
  }
}
