:root {
  --brand: #dc2925;
  --brand-dark: #b71c1c;
  --ink: #0a0a0a;
  --white: #ffffff;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  overflow: hidden;
  background: linear-gradient(165deg, #0a0a0a 0%, #1f0a0a 35%, #5c1515 70%, #9a1f1f 100%);
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 28px 28px;
  animation: grid-fade 1.2s ease both;
}

.stage-glow {
  position: absolute;
  width: min(70vw, 560px);
  height: min(70vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 41, 37, 0.35) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}

.stage-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: hero-shine 5s ease-in-out infinite;
}

.panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.anim {
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-1 { animation-delay: 0.08s; }
.anim-2 { animation-delay: 0.2s; }
.anim-3 { animation-delay: 0.32s; }
.anim-4 { animation-delay: 0.44s; }
.anim-5 { animation-delay: 0.56s; }
.anim-6 { animation-delay: 0.68s; }

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.logo-chip {
  background: var(--white);
  border-radius: 0.9rem;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  animation: logo-float 4s ease-in-out 0.9s infinite;
}

.logo-chip img {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.brand-org {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fecaca;
  box-shadow: 0 0 0 0 rgba(254, 202, 202, 0.55);
  animation: status-pulse 2s ease-out infinite;
}

.status-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.headline {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
}

.headline-accent {
  display: inline;
  color: transparent;
  background-image: linear-gradient(90deg, #fecaca 0%, #fed7aa 45%, #fecaca 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shiny-sweep 3.5s ease-in-out infinite;
}

.subline {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.schedule {
  margin: 0 auto 1.75rem;
  max-width: 420px;
  padding: 1.1rem 1.15rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.schedule-item {
  text-align: center;
}

.schedule-label {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.schedule-value {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.footnote {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.07;
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes shiny-sweep {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes hero-shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -48%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -48%) scale(1.06);
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 202, 202, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(254, 202, 202, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 202, 202, 0);
  }
}

@media (max-width: 480px) {
  .stage {
    padding: 1.5rem 1rem;
  }

  .schedule-row {
    grid-template-columns: 1fr;
  }

  .headline {
    font-size: 1.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .stage-grid,
  .stage-shine,
  .stage-glow,
  .status-dot,
  .logo-chip,
  .headline-accent {
    animation: none;
  }

  .stage-grid {
    opacity: 0.07;
  }
}
