/* Project pages — Coming Soon (black theme, matches site vibe) */

body {
  background-color: #000000;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Glitch styles for "From Future" brand — so it works on project pages too */
.glitch-text {
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.glitch-text::before,
.glitch-text::after {
  content: 'From Future';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  color: #fff;
  pointer-events: none;
}
.glitch-text::before {
  left: 1.5px;
  text-shadow: -1px 0 #ff00aa;
  animation: glitch1 1.2s infinite linear alternate-reverse;
}
.glitch-text::after {
  left: -1.5px;
  text-shadow: 1px 0 #00ffff;
  animation: glitch2 1.5s infinite linear alternate-reverse;
}
@keyframes glitch1 {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(5px, 9999px, 15px, 0); }
  20% { clip: rect(25px, 9999px, 30px, 0); }
  30% { clip: rect(10px, 9999px, 20px, 0); }
  40% { clip: rect(0, 9999px, 0, 0); }
  100% { clip: rect(0, 9999px, 0, 0); }
}
@keyframes glitch2 {
  0% { clip: rect(0, 9999px, 0, 0); }
  15% { clip: rect(20px, 9999px, 35px, 0); }
  25% { clip: rect(5px, 9999px, 10px, 0); }
  35% { clip: rect(30px, 9999px, 40px, 0); }
  45% { clip: rect(0, 9999px, 0, 0); }
  100% { clip: rect(0, 9999px, 0, 0); }
}

.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 80px 24px 60px;
  box-sizing: border-box;
}

.coming-soon-page .inner {
  max-width: 640px;
  width: 100%;
}

.project-title {
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0 0 2.4rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  opacity: 0.92;
}

.coming-soon {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 2.8rem;
  line-height: 1;
  animation: coming-soon-breath 5.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes coming-soon-breath {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.01);
  }
}

.back-to-home {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: #555;
  padding-bottom: 3px;
  border-bottom: 1px solid #222;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.back-to-home:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Responsive */
@media (max-width: 620px) {
  .coming-soon {
    font-size: 2.65rem;
    letter-spacing: 0.1em;
  }
  .project-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
