:root {
  color-scheme: dark;
  --bg: #090704;
  --surface: #15100a;
  --surface-2: #22180b;
  --line: rgba(255, 183, 58, 0.22);
  --text: #fff6e7;
  --muted: #d7b784;
  --gold: #ffb22c;
  --gold-2: #ffd15e;
  --green: #29c76f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 178, 44, 0.32), transparent 28rem),
    linear-gradient(180deg, #0e0a05 0%, #050403 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.maintenance-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.maintenance-card {
  width: min(100%, 68rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 178, 44, 0.16), transparent 36%),
    linear-gradient(315deg, rgba(41, 199, 111, 0.1), transparent 34%),
    rgba(21, 16, 10, 0.92);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.48);
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.logo-stage {
  position: relative;
  display: grid;
  width: min(100%, 30rem);
  min-height: clamp(10rem, 25vw, 15rem);
  margin: 0 auto 1.5rem;
  place-items: center;
}

.logo-wrap {
  display: grid;
  width: 100%;
  place-items: center;
  animation: logoCycle 7s ease-in-out infinite;
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-endline {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  min-height: 4.2rem;
  place-items: center;
  opacity: 0;
  background: linear-gradient(180deg, #fff6cf 0%, #ffce51 38%, #d68a10 100%);
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 1rem rgba(255, 178, 44, 0.38));
  font-size: clamp(1.25rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  animation: endlineCycle 7s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.7rem);
  line-height: 0.95;
}

.lead {
  width: min(100%, 45rem);
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.banner-strip {
  width: 100%;
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid rgba(255, 178, 44, 0.32);
  border-radius: 0.7rem;
  background: linear-gradient(90deg, #ff9f1a, #ffd15e, #ff9f1a);
  color: #211303;
  font-weight: 900;
}

.banner-strip div {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: 0.9rem 1rem;
  animation: marquee 22s linear infinite;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.whatsapp,
.status {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  font-weight: 900;
  padding: 0.8rem 1.05rem;
}

.whatsapp {
  background: var(--green);
  color: #031107;
}

.status {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  80%,
  92% {
    opacity: 0.2;
    transform: scale(0.96);
  }
}

@keyframes endlineCycle {
  0%,
  70%,
  100% {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.98);
  }

  80%,
  92% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 620px) {
  .actions,
  .whatsapp,
  .status {
    width: 100%;
  }
}
