/* Página provisória "em breve" — tokens espelhados de src/styles/tokens.css */

:root {
  --blue: #0038e5;
  --blue-accent: #4d74ff;
  --navy: #12295b;
  --bg-soft: #f5f7ff;
  --chip-blue: #e9eeff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background:
    radial-gradient(60% 50% at 50% 0%, var(--chip-blue) 0%, rgba(233, 238, 255, 0) 70%),
    var(--bg-soft);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

.wrap {
  padding: 48px 24px;
  max-width: 640px;
  animation: riseIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.logo {
  display: block;
  width: 176px;
  height: auto;
  margin: 0 auto 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--chip-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 0 22px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulseDotBlue 2s ease-out infinite;
}

h1 {
  font-size: clamp(28px, 5.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 18px;
  text-wrap: balance;
}

.lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(18, 41, 91, 0.72);
  margin: 0;
}

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

@keyframes pulseDotBlue {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 56, 229, 0.4);
  }
  55% {
    box-shadow: 0 0 0 6px rgba(0, 56, 229, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
  }
}
