/* eDocs Maintenance Page */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0b2145;
  --subtitle: #5b6b84;
  --blue: #1469d8;
  --card-bg: #eaf3ff;
  --card-text: #526d96;
  --divider: #b9d4f5;
}

html, body { height: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  padding: 36px 64px 0;
  z-index: 2;
}

.logo img {
  width: 190px;
  height: auto;
  display: block;
}

/* Main */
.maintenance {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px 60px;
  position: relative;
  z-index: 1;
}

.maintenance h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0a1a38;
}

.subtitle {
  margin-top: 14px;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--subtitle);
  max-width: 720px;
}

/* Illustration */
.illustration {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 10px;
}

.illustration .laptop {
  width: min(520px, 78vw);
  height: auto;
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.deco {
  position: absolute;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.deco-left {
  left: 2%;
  top: 8%;
  width: 170px;
}

.deco-right {
  right: 2%;
  top: 2%;
  width: 150px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Waves backdrop */
.waves-background {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 100vw;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}

.waves-background img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Notice card */
.notice-card {
  position: relative;
  z-index: 3;
  margin-top: 26px;
  width: min(860px, 92vw);
  background: var(--card-bg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 44px;
  text-align: left;
  box-shadow: 0 10px 40px rgba(20, 105, 216, 0.08);
}

.notice-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

.notice-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.notice-divider {
  width: 1px;
  align-self: stretch;
  background: var(--divider);
  flex-shrink: 0;
}

.notice-text strong {
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.notice-text p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: var(--card-text);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header { padding: 24px 24px 0; }
  .logo img { width: 150px; }
  .maintenance { padding-top: 32px; }
  .deco-left { width: 110px; left: -10px; }
  .deco-right { width: 100px; right: -8px; }
  .waves-background img { height: 260px; }
  .notice-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 26px 24px;
  }
  .notice-divider {
    width: 60px;
    height: 1px;
    align-self: center;
  }
  .notice-icon { width: 60px; height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .illustration .laptop { animation: none; }
}
