:root {
  --navy: #082452;
  --navy-deep: #051936;
  --green: #098448;
  --green-soft: #eaf6ef;
  --orange: #ef6b16;
  --gold: #f0bf52;
  --ink: #183049;
  --muted: #66778a;
  --line: #e2e9ef;
  --paper: #ffffff;
  --bg: #f5f8fb;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(9, 132, 72, 0.08), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(8, 36, 82, 0.08), transparent 28%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.maintenance-page {
  display: grid;
  min-height: calc(100vh - 108px);
  place-items: center;
  padding: 48px 24px 38px;
}

.maintenance-card {
  width: min(1180px, 100%);
  overflow: hidden;
  border: 1px solid rgba(8, 36, 82, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(8, 36, 82, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-short {
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-name {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.92fr);
  min-height: 560px;
}

.visual-panel {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 54px;
  background:
    linear-gradient(145deg, rgba(234, 246, 239, 0.96), rgba(255, 255, 255, 0.98));
}

.visual-panel::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 80px solid rgba(9, 132, 72, 0.035);
  border-radius: 50%;
  content: "";
  right: -150px;
  bottom: -160px;
}

.visual-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 191, 82, 0.18), transparent 68%);
}

.maintenance-image {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(8, 36, 82, 0.12));
}

.message-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 54px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.accent-line {
  display: flex;
  width: 230px;
  height: 5px;
  margin: 26px 0 30px;
  overflow: hidden;
  border-radius: 999px;
}

.accent-line span:nth-child(1) {
  width: 38%;
  background: var(--green);
}

.accent-line span:nth-child(2) {
  width: 26%;
  background: var(--gold);
}

.accent-line span:nth-child(3) {
  width: 36%;
  background: var(--navy);
}

.message-panel p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.message-panel .lead {
  font-weight: 800;
}

.message-panel .thanks {
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 900;
}

.status-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 34px;
  padding: 17px 18px;
  border: 1px solid #dce9e2;
  border-radius: 14px;
  background: var(--green-soft);
}

.status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  margin-top: 5px;
  border: 3px solid #c9ead8;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(9, 132, 72, 0.1);
}

.status-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-card strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.status-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.site-footer::before {
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0 36%, var(--gold) 36% 64%, var(--orange) 64% 100%);
  content: "";
}

.footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  min-height: 102px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-inner > div:last-child {
  align-items: flex-end;
}

.footer-inner strong,
.footer-inner a {
  color: #fff;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.motto {
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-align: center;
}

@media (max-width: 920px) {
  .maintenance-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 330px;
    padding: 34px;
  }

  .maintenance-image {
    width: min(100%, 460px);
  }

  .message-panel {
    padding: 44px 34px 50px;
    text-align: center;
  }

  .accent-line {
    margin-right: auto;
    margin-left: auto;
  }

  .status-card {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 0;
    text-align: center;
  }

  .footer-inner > div:last-child {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .maintenance-page {
    padding: 18px 12px 24px;
  }

  .maintenance-card {
    border-radius: 20px;
  }

  .brand {
    padding: 18px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  .visual-panel {
    min-height: 260px;
    padding: 22px;
  }

  .message-panel {
    padding: 36px 22px 40px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .footer-inner {
    width: calc(100% - 28px);
  }
}
