:root {
  --bg-dark: #0f0f14;
  --bg-panel: #1a1a24;
  --text-main: #e2e2ea;
  --text-muted: #9494a8;
  --accent-purple: #9b5de5;
  --accent-purple-hover: #b886f8;
  --radius-pill: 9999px;
  --font-system: system-ui, -apple-system, sans-serif;
  --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}
body {
  margin: 0;
  font-family: var(--font-system);
  color: var(--text-main);
  background-color: var(--bg-dark);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header.scrolled {
  background: rgba(26, 26, 36, 0.95);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  transition: padding 0.3s ease;
}
.site-header.scrolled .header-container {
  padding: 0.75rem 2rem;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}
.brand-logo svg {
  width: 32px;
  height: 32px;
  color: var(--accent-purple);
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}
.desktop-nav {
  display: flex;
  gap: 2rem;
}
.desktop-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.desktop-nav a:hover {
  color: var(--accent-purple);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cta-button {
  background: var(--accent-purple);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(155, 93, 229, 0.2);
}
.cta-button:hover {
  background: var(--accent-purple-hover);
  box-shadow: 0 0 25px rgba(155, 93, 229, 0.4);
}
.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}
.burger-menu svg {
  width: 28px;
  height: 28px;
}
.mobile-menu-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 20, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu-modal.active {
  opacity: 1;
  visibility: visible;
}
.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}
.close-menu svg {
  width: 32px;
  height: 32px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.mobile-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: var(--font-serif);
}
.mobile-nav a:hover {
  color: var(--accent-purple);
}
.mobile-cta {
  margin-top: 1rem;
  font-family: var(--font-system);
  font-size: 1.1rem;
}
.site-footer {
  background: var(--bg-panel);
  color: var(--text-muted);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.stars-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(
      2px 2px at 160px 120px,
      var(--accent-purple),
      rgba(0, 0, 0, 0)
    );
  background-repeat: repeat;
  background-size: 200px 200px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-brand {
  flex: 1 1 300px;
}
.brand-name-footer {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  margin-bottom: 0.5rem;
}
.tagline {
  color: var(--accent-purple);
  font-size: 1.1rem;
  margin: 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  flex: 2 1 500px;
  justify-content: flex-end;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 150px;
}
.footer-col-title {
  font-family: var(--font-serif);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col a:hover {
  color: var(--accent-purple);
}
.footer-icon {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .desktop-nav,
  .cta-button {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .footer-links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-container {
    flex-direction: column;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
