.construction-page {
  min-height:100vh;
  background:var(--canvas);
  padding-top:calc(var(--nav-height) + 48px);
  padding-bottom:var(--section-gap);
}

.construction-content {
  max-width:740px;
  margin:0 auto;
}

.construction-header {
  margin-bottom:48px;
}

.construction-badge {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  color:var(--accent-yellow);
  background:rgba(255,197,51,0.15);
  padding:3px 10px;
  border-radius:var(--radius-full);
  margin-bottom:24px;
  letter-spacing:0.3px;
}

.construction-prompt {
  font-size:13px;
  color:var(--mute);
  margin-bottom:8px;
}

.construction-prompt .prompt {
  color:var(--accent-green);
  font-weight:500;
}

.construction-prompt .cursor {
  display:inline-block;
  width:8px;
  height:16px;
  background:var(--accent-green);
  animation:blink 1s step-end infinite;
  margin-left:4px;
  vertical-align:middle;
}

.construction-title {
  font-size:clamp(2.2rem, 7vw, 4.5rem);
  font-weight:600;
  color:var(--ink);
  line-height:1.05;
  letter-spacing:-1.5px;
  margin-bottom:16px;
}

.construction-message {
  font-size:14px;
  color:var(--body);
  line-height:1.7;
  max-width:560px;
  margin-bottom:36px;
}

.construction-message strong {
  color:var(--ink);
  font-weight:500;
}

.construction-actions {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

@media(max-width:768px) {
  .construction-page {
    padding-top:calc(var(--nav-height) + 32px);
    padding-bottom:64px;
  }

  .construction-header {
    margin-bottom:32px;
  }
}

@media(max-width:480px) {
  .construction-content {
    padding:0 4px;
  }

  .construction-title {
    letter-spacing:-0.5px;
  }
}
