:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #111316;
  color: #f7f2e8;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(231, 191, 92, 0.12), transparent 32rem),
    linear-gradient(145deg, #15181d 0%, #0e1114 100%);
}

.construction {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1.5rem;
}

.construction-panel {
  display: grid;
  width: min(30rem, calc(100vw - 2rem));
  gap: 0.75rem;
  padding: 1.1rem;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
  background: rgba(17, 19, 22, 0.84);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0;
  color: #e7bf5c;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #f7f2e8;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
}

.status {
  max-width: 28rem;
  margin: 0;
  color: rgba(247, 242, 232, 0.68);
  font-size: 1rem;
  line-height: 1.45;
}

@media (max-width: 520px) {
  .construction {
    align-items: end;
    padding-bottom: 3rem;
  }
}
