:root {
  --brand-bg: #f8f9fc;
  --brand-surface: #ffffff;
  --brand-red: #c84f63;
  --text-main: #1f2430;
  --text-soft: #535a6b;
  --line-soft: #e8ebf1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), transparent 58%),
    linear-gradient(170deg, #ffffff 0%, #f7f8fb 52%, var(--brand-bg) 100%);
  display: grid;
  grid-template-rows: 1fr auto;
}

.page {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 1rem;
  display: grid;
  place-items: center;
}

.card {
  width: min(100%, 760px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(20, 24, 34, 0.08);
}

.logo {
  width: clamp(155px, 27vw, 250px);
  height: auto;
  display: block;
  margin: 0 auto 0.45rem;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.badge {
  margin: 0 auto;
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9f3b4d;
  border: 1px solid rgba(200, 79, 99, 0.5);
  background: rgba(200, 79, 99, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: #1e2431;
}

.description {
  margin: 0 auto;
  text-align: center;
  max-width: 60ch;
  text-align: center;
  line-height: 1.65;
  color: var(--text-soft);
}

.status {
  margin: 1.25rem auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  background: #fff8fa;
  border: 1px solid #f0d9df;
}

.status p {
  margin: 0;
  font-size: 0.95rem;
}

.contact {
  margin: 1rem auto 0;
  max-width: 75ch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  text-align: center;
  color: var(--text-soft);
}

.contact p {
  margin: 0.25rem 0;
  line-height: 1.5;
}

.contact p:first-child {
  flex-basis: 100%;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--brand-red);
  box-shadow: 0 0 0 0 rgba(200, 79, 99, 0.8);
  animation: pulse 1.8s infinite;
}

.footer {
  text-align: center;
  padding: 0.9rem 1rem 1.25rem;
  color: #777f92;
  font-size: 0.88rem;
}

.footer p {
  margin: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 79, 99, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(200, 79, 99, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 79, 99, 0);
  }
}

@media (max-width: 620px) {
  .card {
    border-radius: 18px;
    padding: 1.5rem 1rem;
  }

  .status p {
    font-size: 0.9rem;
  }
}
