:root {
  --white: #ffffff;
  --soft-white: #f7f9fc;
  --light: #eef3f8;
  --blue: #0b6fdc;
  --dark-blue: #083b7a;
  --text: #1f2a37;
  --muted: #667085;
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, #ffffff 0%, #eef6ff 35%, #ffffff 70%),
    linear-gradient(135deg, var(--white), var(--soft-white));
  color: var(--text);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.card {
  width: 100%;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 56px 40px;
  text-align: center;
  animation: fadeIn 0.9s ease forwards;
}

.logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 16px 24px rgba(11, 111, 220, 0.2));
}

.tag {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1;
  color: var(--dark-blue);
  margin-bottom: 22px;
}

.text {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.loader {
  width: 100%;
  max-width: 360px;
  height: 8px;
  background: var(--light);
  border-radius: 999px;
  margin: 36px auto 18px;
  overflow: hidden;
}

.loader span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, #6ed7ff, var(--blue), #1029a3);
  border-radius: inherit;
  animation: loading 2.4s ease-in-out infinite;
}

.status {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.contacts a {
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 600;
}

.contacts a:hover {
  color: var(--blue);
}

.contacts span {
  color: #c4cbd5;
}

@keyframes loading {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(70%);
  }
  100% {
    transform: translateX(260%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .card {
    padding: 42px 24px;
    border-radius: 24px;
  }

  .logo {
    width: 105px;
    height: 105px;
  }
}
