:root {
  color-scheme: dark;
  --background: #07090f;
  --panel: rgba(15, 21, 37, 0.76);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #94a3b8;
  --blue: #0a84ff;
  --cyan: #38bdf8;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 15%, rgba(10, 132, 255, 0.25), transparent 32rem),
    radial-gradient(circle at 85% 85%, rgba(56, 189, 248, 0.1), transparent 28rem),
    var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.status-card {
  width: min(100%, 620px);
  padding: clamp(32px, 7vw, 64px);
  text-align: center;
  background: linear-gradient(145deg, rgba(22, 31, 54, 0.82), var(--panel));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  color: #9bdcff;
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid rgba(10, 132, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: breathe 2s ease-in-out infinite;
}

h1 {
  margin: 22px auto 18px;
  max-width: 520px;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

p {
  max-width: 470px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.timer {
  margin: 38px auto 30px;
  padding: 18px 20px 15px;
  max-width: 330px;
  background: rgba(3, 6, 12, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.timer-label {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timer-value {
  display: block;
  font-family: "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.ruler {
  height: 18px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 11px;
  margin-top: 8px;
}

.ruler span {
  width: 1px;
  height: 7px;
  background: rgba(255, 255, 255, 0.3);
}

.ruler span:nth-child(odd) {
  height: 11px;
}

.ruler i {
  width: 2px;
  height: 18px;
  background: var(--blue);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(10, 132, 255, 0.85);
}

.note {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
}

@keyframes breathe {
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

@media (max-width: 520px) {
  .status-card {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .brand {
    margin-bottom: 32px;
  }

  p {
    font-size: 16px;
  }
}

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