/* ============================================
   ANOMALY MANIFESTO PAGE
   ============================================ */

.manifesto-page {
  min-height: 100vh;
  position: relative;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl);
}

/* Background Effects */
.manifesto-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Main Content */
.manifesto-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   HEADER
   ============================================ */

.manifesto-header {
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--color-yellow);
  text-shadow: 0 0 40px rgba(254, 200, 64, 0.5);
  margin-bottom: var(--spacing-md);
}

/* ============================================
   HERO IMAGE
   ============================================ */

.hero-image-container {
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 60px rgba(135, 8, 192, 0.6),
    0 12px 48px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(135, 8, 192, 0.3);
  transition: all var(--transition-base);
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 80px rgba(135, 8, 192, 0.8),
    0 16px 64px rgba(0, 0, 0, 0.6);
}

/* ============================================
   MANIFESTO TEXT
   ============================================ */

.manifesto-text {
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.manifesto-text p {
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
}

.manifesto-text p:last-child {
  margin-bottom: 0;
}

/* Poetic line breaks */
.manifesto-text br {
  display: block;
  content: "";
  margin-top: 0.3em;
}

/* Special styling for closing line */
.manifesto-closing {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--color-yellow);
  margin-top: var(--spacing-xl);
  text-shadow: 0 0 20px rgba(254, 200, 64, 0.4);
}

/* ============================================
   MISSION STATEMENT CARD
   ============================================ */

.mission-card {
  background: rgba(135, 8, 192, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(135, 8, 192, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl) var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  box-shadow: 0 8px 32px rgba(135, 8, 192, 0.3);
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
  transition: all var(--transition-base);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(135, 8, 192, 0.5);
  border-color: rgba(135, 8, 192, 0.5);
}

.mission-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 0 30px rgba(254, 200, 64, 0.4);
}

.mission-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mission-text p {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.mission-text p:last-child {
  margin-bottom: 0;
}

/* Poetic line breaks in mission */
.mission-text br {
  display: block;
  content: "";
  margin-top: 0.3em;
}

/* Special styling for mission closing */
.mission-closing {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-yellow);
  margin-top: var(--spacing-xl);
  text-shadow: 0 0 20px rgba(254, 200, 64, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE: MOBILE
   ============================================ */

@media (max-width: 640px) {
  .manifesto-page {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .manifesto-title {
    font-size: 36px;
  }

  .hero-image {
    border-radius: var(--radius-lg);
  }

  .manifesto-text p {
    font-size: 18px;
    line-height: 1.7;
    text-align: left;
  }

  .manifesto-closing {
    font-size: 22px;
    text-align: center;
  }

  .mission-card {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .mission-title {
    font-size: 28px;
  }

  .mission-text p {
    font-size: 16px;
    text-align: left;
  }

  .mission-closing {
    font-size: 20px;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */

@media (min-width: 641px) and (max-width: 1024px) {
  .manifesto-text p {
    font-size: 22px;
  }

  .mission-text p {
    font-size: 20px;
  }
}
