:root {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #25233a;
  background: #667eea;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.loader-card {
  width: min(100%, 480px);
  padding: 42px 36px;
  text-align: center;
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgb(35 24 75 / 25%);
}

.logo {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
}

.eyebrow {
  margin: 0;
  color: #667eea;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1 {
  margin: 10px 0 26px;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.15;
}

.spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  border: 4px solid #e8e9ff;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.status {
  min-height: 48px;
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.note,
noscript {
  display: block;
  margin: 18px 0 0;
  color: #6b6880;
  font-size: 14px;
  line-height: 1.5;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation: none;
  }
}
