:root {
  --color-bg: #0a0f1a;
  --color-text: #f4f6fb;
  --color-muted: #9aa8c2;
  --color-accent: #e8b84a;
  --color-accent-soft: rgba(232, 184, 74, 0.14);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  overflow: hidden;
}

.construction {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 2rem 1.5rem 5rem;
}

.construction__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(94, 184, 232, 0.09), transparent 42%),
    radial-gradient(circle at 82% 18%, var(--color-accent-soft), transparent 38%),
    linear-gradient(180deg, #0d1528 0%, var(--color-bg) 100%);
}

.construction__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.construction__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 28rem;
  text-align: center;
}

.construction__logo {
  width: min(140px, 34vw);
  height: auto;
  margin-bottom: 1.5rem;
  user-select: none;
  -webkit-user-drag: none;
}

.construction__brand {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.construction__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.construction__lead {
  margin: 0 0 1.75rem;
  max-width: 26ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.construction__status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.construction__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(232, 184, 74, 0.55);
}

.construction__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  text-align: center;
}

.construction__footer p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(154, 168, 194, 0.75);
  letter-spacing: 0.02em;
}

.construction__footer a {
  color: rgba(244, 246, 251, 0.85);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.construction__footer a:hover {
  color: var(--color-accent);
}

@media (max-width: 480px) {
  .construction {
    padding-bottom: 4.5rem;
  }

  .construction__lead {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .construction__footer a {
    transition: none;
  }
}
