/* Construction home — simple landing while real site is in dev */

.construction {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.construction-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 48px;
}
.construction-logo .dot {
  width: 12px; height: 12px; border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.construction-illu {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  margin: 40px auto 40px;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.construction-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: cpulse 2s infinite;
}
@keyframes cpulse {
  0%   { box-shadow: 0 0 0 0 rgba(197,246,74,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(197,246,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(197,246,74,0); }
}

.construction h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 18ch;
}
.construction h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

.construction p.lede {
  color: var(--text-2);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 36px;
}

.construction-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.construction-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}
.construction-meta a {
  color: var(--text-2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.construction-meta a:hover { color: var(--accent); }

.construction-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.construction-progress .bar {
  width: 120px; height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}
.construction-progress .fill {
  height: 100%;
  background: var(--accent);
  width: 65%;
  box-shadow: 0 0 12px var(--accent-glow);
  animation: progress-shimmer 2.4s ease-in-out infinite;
}
@keyframes progress-shimmer {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
