:root {
  --clr-bg:         #080E1C;
  --clr-surface:    #0D1628;
  --clr-border:     rgba(255,255,255,0.07);
  --clr-accent:     #CC1B1B;
  --clr-accent-dim: rgba(204,27,27,0.14);
  --clr-navy:       #1A3A6B;
  --clr-text:       #E8EBF2;
  --clr-muted:      #FFFFFF;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition: 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
body::after {
  content: '';
  position: fixed;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 420px;
  background: radial-gradient(ellipse at 40% 0%, rgba(204,27,27,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 60% 100%, rgba(26,58,107,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.container { width: 100%; max-width: 540px; }
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(-16px);
  animation: fadeUp 0.7s ease 0.1s forwards;
}
.logo-wrap img { height: 72px; width: auto; max-width: 280px; object-fit: contain; }
.logo-text { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.12em; color: var(--clr-text); }
.logo-text span { color: var(--clr-accent); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,27,27,0.12);
  border: 1px solid rgba(204,27,27,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E85555;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--clr-text);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}
.headline em { font-style: normal; color: var(--clr-accent); }
.subheadline {
  font-size: 1rem;
  font-weight: 300;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.45s forwards;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,58,107,0.5) 30%, rgba(204,27,27,0.3) 70%, transparent);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeIn 0.7s ease 0.5s forwards;
}
.form-section { opacity: 0; animation: fadeUp 0.7s ease 0.55s forwards; width: 100%; }
.form-label-group {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 20px;
}
.page-footer {
  margin-top: 48px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(107,122,153,0.5);
  opacity: 0;
  animation: fadeIn 0.7s ease 0.8s forwards;
}
.page-footer a { color: var(--clr-muted); text-decoration: none; transition: color var(--transition); }
.page-footer a:hover { color: var(--clr-accent); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.85)} }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
