:root {
  --uc-navy: #0a3652;
  --uc-navy-deep: #07283d;
  --uc-sky: #d9f1f8;
  --uc-white: #ffffff;
  --uc-text: #e9f4f8;
  --uc-shadow: 0 28px 60px rgba(7, 40, 61, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f4f8fb;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.construction-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(102, 214, 231, 0.24), transparent 26%),
    radial-gradient(circle at bottom right, rgba(10, 54, 82, 0.18), transparent 30%),
    linear-gradient(180deg, #edf5f9 0%, #f8fbfd 100%);
}

.construction-page__hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
  overflow: hidden;
}

.construction-page__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 54, 82, 0.94), rgba(7, 40, 61, 0.82)),
    url('../img/og.webp') center/cover no-repeat;
  filter: saturate(0.92);
}

.construction-page__container {
  position: relative;
  z-index: 1;
}

.construction-page__card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: rgba(10, 54, 82, 0.78);
  box-shadow: var(--uc-shadow);
  text-align: center;
  color: var(--uc-text);
  backdrop-filter: blur(10px);
}

.construction-page__logo {
  width: clamp(96px, 12vw, 132px);
  height: auto;
  margin: 0 auto 1.5rem;
}

.construction-page__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--uc-sky);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.construction-page h1 {
  margin: 0;
  color: var(--uc-white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.construction-page__lead {
  margin: 1.15rem auto 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

.construction-page__secondary {
  margin: 0.85rem 0 0;
  color: rgba(233, 244, 248, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .construction-page__hero {
    padding: 1.5rem 0;
  }

  .construction-page__card {
    border-radius: 24px;
    padding: 1.5rem;
  }
}
