:root {
  --navy: #062f4f;
  --navy-deep: #021a2f;
  --orange: #ef3d22;
  --orange-soft: #ff714f;
  --ice: #f5fbff;
  --line: rgba(6, 47, 79, 0.16);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 61, 34, 0.16), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(6, 47, 79, 0.15), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef8ff 48%, #fff7f4 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  content: "";
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 680px;
  height: 680px;
  right: -340px;
  bottom: -360px;
  border: 44px solid rgba(239, 61, 34, 0.12);
  border-radius: 50%;
}

body::after {
  width: 100%;
  height: 100%;
  inset: 0;
  background-image:
    linear-gradient(120deg, transparent 0 44%, rgba(6, 47, 79, 0.06) 44% 45%, transparent 45% 100%),
    repeating-linear-gradient(90deg, rgba(6, 47, 79, 0.035) 0 1px, transparent 1px 92px);
}

.maintenance-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(1120px, 100%);
  min-height: min(720px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 80px rgba(2, 26, 47, 0.16);
  backdrop-filter: blur(18px);
}

.brand-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.82)),
    linear-gradient(135deg, rgba(239, 61, 34, 0.08), rgba(6, 47, 79, 0.08));
  box-shadow: inset 0 0 0 1px rgba(6, 47, 79, 0.08), 0 22px 54px rgba(6, 47, 79, 0.12);
  overflow: hidden;
}

.brand-panel::before {
  position: absolute;
  content: "";
  width: 86%;
  height: 86%;
  border: 2px dashed rgba(6, 47, 79, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.brand-panel::after {
  position: absolute;
  content: "";
  width: 72%;
  height: 72%;
  border: 18px solid rgba(239, 61, 34, 0.1);
  border-radius: 50%;
  transform: translateY(20px);
}

.logo {
  position: relative;
  z-index: 1;
  width: min(84%, 430px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(6, 47, 79, 0.16));
}

.content {
  display: grid;
  gap: 24px;
}

.status {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(239, 61, 34, 0.28);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(239, 61, 34, 0.13);
  animation: pulse 1.6s ease-in-out infinite;
}

h1 {
  max-width: 670px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 5.8vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 0;
  color: rgba(2, 26, 47, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(96px, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.time-card {
  min-height: 122px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 255, 0.82));
  box-shadow: 0 18px 36px rgba(6, 47, 79, 0.09);
}

.time-card strong {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.time-card span {
  color: rgba(2, 26, 47, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.launch-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding-top: 8px;
  color: rgba(2, 26, 47, 0.66);
  font-size: 0.95rem;
}

.launch-note strong {
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  box-shadow: 0 14px 28px rgba(239, 61, 34, 0.18);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.78);
    opacity: 0.7;
  }
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .brand-panel {
    min-height: 260px;
  }

  .logo {
    width: min(88%, 360px);
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 4.2rem);
  }
}

@media (max-width: 560px) {
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .time-card {
    min-height: 104px;
    border-radius: 16px;
  }

  .status {
    width: 100%;
    justify-content: center;
  }

  .launch-note strong {
    width: 100%;
    text-align: center;
  }
}

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

  .hero {
    padding: 18px;
  }

  .time-card strong {
    font-size: 1.85rem;
  }
}
