.status-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero */
.status-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.status-hero h1 {
  font-size: 2.25rem;
  margin-top: 1.25rem;
  letter-spacing: -0.02em;
}

.status-hero p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 1.0625rem;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.hero-ok {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.hero-warn {
  background: color-mix(in srgb, var(--warn) 12%, transparent);
}

.hero-down {
  background: color-mix(in srgb, var(--error) 12%, transparent);
}

.hero-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  animation: hero-pulse 2s ease-in-out infinite;
}

.hero-ok .hero-dot {
  background: var(--accent);
}

.hero-warn .hero-dot {
  background: var(--warn);
}

.hero-down .hero-dot {
  background: var(--error);
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

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

/* Monitor grid */
.monitor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.monitor-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.monitor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.monitor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}

.monitor-name {
  font-weight: 600;
  font-size: 1rem;
}

.monitor-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.stat-value {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Pills (standalone for public page) */
.pill {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill-up {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
}

.pill-down {
  background: color-mix(in srgb, var(--error) 15%, transparent);
  color: var(--error);
}

.pill-muted {
  background: var(--bg);
  color: var(--text-muted);
}

/* Footer */
.status-footer {
  margin-top: auto;
  padding-top: 3rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.status-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.status-footer a:hover {
  color: var(--text);
}

/* Landing page */
.landing-hero {
  text-align: center;
  padding: 8rem 0 4rem;
}

.landing-icon {
  font-size: 4rem;
  display: block;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.landing-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.landing-tagline {
  color: var(--text-muted);
  font-size: 1.1875rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  white-space: nowrap;
}

.landing-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.landing-cta .btn {
  text-decoration: none;
  min-width: 160px;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--card-bg);
  border-color: var(--text-muted);
}

/* Empty state */
.empty-state {
  color: var(--text-muted);
  text-align: center;
  padding: 4rem 1rem;
  font-size: 1rem;
}
