.coldstart-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 20%, var(--brand-50) 0%, #ffffff 60%);
}

.initial-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.initial-loader__logo {
  width: 64px;
  height: 64px;
  animation: pulse 1.8s ease-in-out infinite;
}
.initial-loader__text {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

.wake-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 380px;
  padding: 32px;
  animation: fadeInUp var(--duration-slow) var(--ease-standard);
}

.wake-screen__ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}
.wake-screen__ring {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}
.wake-screen__ring-track {
  fill: none;
  stroke: var(--brand-100);
  stroke-width: 6;
}
.wake-screen__ring-progress {
  fill: none;
  stroke: var(--brand-500);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}
.wake-screen__logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  animation: pulse 2s ease-in-out infinite;
}
.wake-screen__countdown {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-600);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.wake-screen__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 8px;
}
.wake-screen__subtext {
  color: var(--text-secondary);
  font-size: var(--fs-md);
  line-height: 1.6;
}
