:root {
  --navy: #061d49;
  --navy-soft: #0f3270;
  --ink: #11151c;
  --muted: #59616d;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --line: #dce3ed;
  --accent: #b8c4d4;
  --shadow: 0 26px 70px rgba(7, 24, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(6, 29, 73, 0.9), rgba(6, 29, 73, 0.56)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=86")
      center/cover fixed;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  display: grid;
  min-height: calc(100vh - 70px);
  place-items: center;
  padding: clamp(28px, 5vw, 72px);
}

.construction {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(26px, 5vw, 64px);
  width: min(1120px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-panel {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.96)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(6, 29, 73, 0.05) 16px 17px);
  border-right: 1px solid var(--line);
}

.brand-panel img {
  width: min(310px, 72vw);
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 74px) clamp(26px, 5vw, 64px) clamp(28px, 5vw, 58px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #11141a;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.8;
}

.status {
  max-width: 560px;
  margin-top: 36px;
}

.status-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.status-top strong {
  color: var(--muted);
}

.progress {
  height: 12px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--navy-soft), var(--accent));
  transform-origin: left;
  animation: load 1.1s ease-out both;
}

.construction-image {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid var(--line);
  background: var(--navy);
}

.construction-image img {
  width: 100%;
  height: clamp(240px, 30vw, 360px);
  object-fit: cover;
}

.services {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.services span {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  padding: 24px 18px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.services svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.services span:last-child {
  border-right: 0;
}

.footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.footer p {
  margin: 0;
}

@keyframes load {
  from {
    transform: scaleX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 860px) {
  .page-shell {
    min-height: auto;
    padding: 22px;
  }

  .construction {
    grid-template-columns: 1fr;
  }

  .brand-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .content {
    padding: 34px 24px 32px;
  }

  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services span:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  body {
    background-attachment: scroll;
  }

  .page-shell {
    padding: 14px;
  }

  .brand-panel {
    padding: 24px 20px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .services {
    grid-template-columns: 1fr;
  }

  .services span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
    padding: 18px 20px;
  }

  .services span:last-child {
    border-bottom: 0;
  }
}
