@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  --ink: #262326;
  --muted: #666166;
  --paper: #f5f3ef;
  --card: #ffffff;
  --accent: #e21c16;
  --accent-dark: #a80f0c;
  --yellow: #f3c600;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(242,198,0,.14), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(226,28,22,.10), transparent 30%),
    var(--paper);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 24px;
  position: relative;
  overflow: hidden;
}

.construction-stripe {
  width: 100%;
  height: 18px;
  background: repeating-linear-gradient(
    135deg,
    var(--yellow) 0 26px,
    var(--ink) 26px 52px
  );
  box-shadow: 0 3px 0 rgba(0,0,0,.12);
}

.card {
  width: min(820px, 100%);
  margin: clamp(34px, 7vh, 70px) auto 20px;
  padding: clamp(30px, 6vw, 62px);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(38,35,38,.10);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(38,35,38,.12);
  text-align: center;
  position: relative;
}

.card::before,
.card::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  top: 20px;
}
.card::before { left: 22px; }
.card::after { right: 22px; }

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.logo {
  width: min(475px, 92%);
  height: auto;
  display: block;
}

.badge {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 18px;
}

h1 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
  margin: 0 auto 18px;
  max-width: 720px;
}

.lead {
  max-width: 650px;
  margin: 0 auto;
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.65;
  color: var(--muted);
}

.divider {
  width: 90px;
  height: 6px;
  margin: 30px auto;
  background: var(--accent);
  transform: skewX(-22deg);
}

.message {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
  color: var(--muted);
}

.message strong { color: var(--ink); }

.loader {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 30px 0 16px;
}

.loader span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  animation: bounce 1.15s infinite ease-in-out;
}

.loader span:nth-child(2) { animation-delay: .10s; }
.loader span:nth-child(3) { animation-delay: .20s; }
.loader span:nth-child(4) { animation-delay: .30s; }
.loader span:nth-child(5) { animation-delay: .40s; }

.small {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a858a;
}

footer {
  margin-top: auto;
  padding-top: 14px;
  text-align: center;
  font-size: 12px;
  color: #888388;
}

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .55; }
  30% { transform: translateY(-8px); opacity: 1; }
}

@media (max-width: 520px) {
  .page { padding-left: 12px; padding-right: 12px; }
  .card { border-radius: 18px; }
  .logo { width: 100%; }
  .badge { font-size: 10px; letter-spacing: .12em; }
}
