/* Landing Page */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.landing-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
}

/* Fan project badge */
.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 0.3rem 1rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Title */
.title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.4rem;
  white-space: nowrap;
  background: linear-gradient(135deg, #ffd040 0%, #60e090 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.the-fuel {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-style: italic;
  opacity: 0.85;
}

/* Quote section */
.quote-container {
  position: relative;
  padding: 1.5rem 1.5rem;
  margin: 0 auto 1.5rem;
  max-width: 550px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.quote.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.quote-attr {
  position: absolute;
  bottom: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Status indicator */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(64, 208, 128, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(64, 208, 128, 0); }
}

/* Footer */
.landing-footer {
  position: absolute;
  bottom: 1.5rem;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

.landing-footer p {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.landing-footer .footer-note {
  margin-top: 0.3rem;
  font-style: italic;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .landing-content {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .title {
    font-size: clamp(2rem, 8vw, 4rem);
    white-space: normal;
  }

  .the-fuel {
    font-size: 0.8rem;
    max-width: 90%;
  }

  .quote-container {
    padding: 1.5rem 1rem;
    height: auto;
    min-height: 100px;
  }

  .quote {
    font-size: 1rem;
  }

  .landing-footer {
    position: relative;
    bottom: auto;
    padding: 2rem 1rem 1.5rem;
  }
}
