:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #0d0d0d;
  color: #f8f1df;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgb(181 44 36 / 28%), transparent 42%),
    #0d0d0d;
}

.training-launch {
  width: min(34rem, calc(100% - 2rem));
  box-sizing: border-box;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 1.25rem;
  background: rgb(20 20 20 / 92%);
  box-shadow: 0 1.5rem 5rem rgb(0 0 0 / 45%);
}

.eyebrow {
  margin: 1rem 0 .4rem;
  color: #e9b85d;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}

h1 { margin: 0; font-size: clamp(1.55rem, 5vw, 2.35rem); }

.training-loader {
  width: 2.5rem;
  aspect-ratio: 1;
  margin: 1.5rem auto;
  border: .24rem solid rgb(255 255 255 / 15%);
  border-top-color: #e9b85d;
  border-radius: 50%;
  animation: training-spin .8s linear infinite;
}

button {
  margin: 1.25rem 0;
  padding: .8rem 1.4rem;
  color: #111;
  font: inherit;
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  background: #e9b85d;
  cursor: pointer;
}

.legal-note { margin: 1.2rem 0 0; color: #aaa; font-size: .78rem; line-height: 1.55; }
.legal-note a { color: #ddd; }

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

@media (prefers-reduced-motion: reduce) {
  .training-loader { animation-duration: 2.4s; }
}
