:root {
  color-scheme: dark;
  --color-navy-950: #001235;
  --color-navy-900: #00247d;
  --brand-accent: #0ea5e9;
  --brand-ink: #0369a1;
  --brand-soft: #e0f2fe;
  --surface-glass: rgba(255, 255, 255, 0.88);
  --surface-scrim: rgba(0, 18, 53, 0.78);
  --text-primary: #132033;
  --text-secondary: #4f6178;
  --text-on-strong: #ffffff;
  --border-light: rgba(255, 255, 255, 0.34);
  --radius-panel: 2rem;
  --radius-pill: 999px;
  --display-font: "Bahnschrift", "Franklin Gothic Medium", sans-serif;
  --body-font: "Aptos", "Trebuchet MS", sans-serif;
  --shadow-panel: 0 30px 80px rgba(3, 12, 27, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--body-font);
  color: var(--text-on-strong);
  background: var(--color-navy-950);
}

.construction-page {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1.25rem, 5vw, 4rem);
  background:
    linear-gradient(90deg, var(--surface-scrim) 0%, rgba(0, 36, 125, 0.68) 48%, rgba(0, 18, 53, 0.58) 100%),
    url("/assets/radal-workshop.webp") center / cover;
}

.construction-page::before,
.construction-page::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.construction-page::before {
  top: -12rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  background: var(--brand-accent);
  opacity: 0.16;
  filter: blur(1px);
}

.construction-page::after {
  right: 12%;
  bottom: -18rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.7;
}

.construction-page__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 760px);
}

.construction-panel {
  position: relative;
  width: min(100%, 680px);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 7vw, 4.5rem) clamp(2.25rem, 5vw, 3.5rem);
  border-radius: var(--radius-panel);
  border: 1px solid var(--border-light);
  background: var(--surface-glass);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-panel);
  text-align: center;
}

.construction-panel__rule {
  position: absolute;
  top: 22px;
  right: clamp(2rem, 6vw, 4rem);
  left: clamp(2rem, 6vw, 4rem);
  height: 5px;
  border-radius: var(--radius-pill);
  background: var(--brand-accent);
}

.construction-eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--display-font);
  font-size: clamp(0.72rem, 1.7vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.construction-logo {
  display: block;
  width: min(100%, 250px);
  height: auto;
  margin: 0 auto 2.5rem;
}

h1 {
  max-width: 13ch;
  margin: 0 auto;
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 8vw, 5.15rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--color-navy-900);
}

.construction-description {
  max-width: 38ch;
  margin: 1.5rem auto 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

.construction-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: max-content;
  margin: 2rem auto 0;
  padding: 0.72rem 1.15rem 0.72rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--brand-ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.construction-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--brand-accent);
  color: var(--text-on-strong);
  flex: none;
}

.construction-footer {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

@media (max-width: 520px) {
  .construction-page {
    padding: 1rem;
  }

  .construction-panel {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    border-radius: 1.5rem;
  }

  .construction-logo {
    width: min(100%, 205px);
    margin-bottom: 2rem;
  }

  .construction-status {
    width: 100%;
    max-width: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
