/* NightFall theme */
:root {
  --bg: #080810;
  --text: #e8e0d5;
  --accent: #cc1122;
  --accent-dim: #8a0c17;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  margin: 0;
}

/* Site header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 16, 0.9);
  border-bottom: 1px solid rgba(204, 17, 34, 0.2);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #e8e0d5;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo-glyph { color: #cc1122; }

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a857e;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover { color: #e8e0d5; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 45%, rgba(204, 17, 34, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 25% 75%, rgba(240, 160, 80, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #cc1122;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.95;
  color: #e8e0d5;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: #cc1122;
}

.hero-sub {
  font-size: 19px;
  color: #8a857e;
  max-width: 480px;
  line-height: 1.7;
  font-weight: 400;
}

/* Hero orb visual */
.hero-visual {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}

.hero-orb {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #cc1122 0%, #4a080d 50%, #080810 100%);
  filter: blur(1px);
  animation: orb-pulse 4s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204, 17, 34, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-expand 4s ease-out infinite;
}

.hero-ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.hero-ring-2 { width: 380px; height: 380px; animation-delay: 1.3s; border-color: rgba(204, 17, 34, 0.12); }
.hero-ring-3 { width: 460px; height: 460px; animation-delay: 2.6s; border-color: rgba(204, 17, 34, 0.06); }

@keyframes orb-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes ring-expand {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.88); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.18); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #5a5650;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, #cc1122, transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Features */
.features {
  padding: 100px 40px;
  background: #0f0f1a;
  border-top: 1px solid rgba(204, 17, 34, 0.1);
  border-bottom: 1px solid rgba(204, 17, 34, 0.1);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cc1122;
  margin-bottom: 14px;
}

.section-headline {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  color: #e8e0d5;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(204, 17, 34, 0.07);
}

.feature-card {
  background: #0f0f1a;
  padding: 40px 32px;
  transition: background 0.25s;
}

.feature-card:hover { background: #16162a; }

.feature-icon { color: #cc1122; margin-bottom: 18px; }

.feature-card h3 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #e8e0d5;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #8a857e;
  line-height: 1.65;
}

/* Genres */
.genres {
  padding: 100px 40px;
  background: #080810;
}

.genres-inner { max-width: 1200px; margin: 0 auto; }

.genre-list { display: flex; flex-direction: column; }

.genre-item {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding-left 0.3s, border-color 0.3s;
}

.genre-item:hover {
  padding-left: 14px;
  border-color: rgba(204, 17, 34, 0.25);
}

.genre-name {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #e8e0d5;
  min-width: 280px;
}

.genre-count {
  font-size: 14px;
  color: #5a5650;
  font-style: italic;
}

/* Manifesto */
.manifesto {
  padding: 120px 40px;
  background: #0f0f1a;
  border-top: 1px solid rgba(204, 17, 34, 0.1);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-quote p {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-style: italic;
  color: #5a5650;
  line-height: 1.5;
  position: sticky;
  top: 100px;
}

.manifesto-body h2 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  color: #e8e0d5;
  margin-bottom: 28px;
}

.manifesto-body p {
  font-size: 16px;
  color: #8a857e;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Closing */
.closing {
  padding: 120px 40px;
  background: #080810;
  border-top: 1px solid rgba(204, 17, 34, 0.1);
  text-align: center;
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing-visual {
  margin-bottom: 52px;
  display: flex;
  justify-content: center;
}

.closing-pulse {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 17, 34, 0.5) 0%, transparent 70%);
  animation: closing-throb 3s ease-in-out infinite;
}

@keyframes closing-throb {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

.closing-text h2 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  color: #e8e0d5;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.closing-text p {
  font-size: 18px;
  color: #5a5650;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  padding: 80px 40px 36px;
  background: #0f0f1a;
  border-top: 1px solid rgba(204, 17, 34, 0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #e8e0d5;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  color: #5a5650;
}

.footer-links { display: flex; gap: 60px; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a5650;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: #5a5650;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: #e8e0d5; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  font-size: 12px;
  color: #3a3835;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-quote p { position: static; }
  .genre-item { flex-direction: column; gap: 6px; }
  .genre-name { min-width: auto; }
}

@media (max-width: 600px) {
  .site-header { padding: 0 20px; }
  .site-nav { display: none; }
  .hero { padding: 100px 20px 60px; }
  .features { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .genres { padding: 60px 20px; }
  .manifesto { padding: 80px 20px; }
  .closing { padding: 80px 20px; }
  .site-footer { padding: 60px 20px 30px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 28px; }
}