/* ========== Status Page ========== */
.status-hero {
  padding: 100px 0 40px;
}

.status-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 8px;
}

.status-hero .status-summary {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(16, 185, 129, .1);
  color: #10b981;
  margin-bottom: 12px;
}

.status-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Uptime grid */
.uptime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.uptime-card {
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  text-align: center;
}

.uptime-card .uc-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.uptime-card .uc-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Incident log */
.incident-log {
  margin-top: 64px;
}

.incident-log h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.incident-item {
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  margin-bottom: 12px;
}

.incident-item .inc-date {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.incident-item .inc-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.incident-item .inc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== Changelog ========== */
.changelog-hero {
  padding: 100px 0 40px;
}

.changelog-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 8px;
}

.changelog-hero p {
  font-size: 14px;
  color: var(--text-secondary);
}

.changelog-list {
  padding: 40px 0 80px;
}

.changelog-item {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.changelog-item:first-child {
  border-top: none;
}

.changelog-item .cl-date {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  font-weight: 500;
}

.changelog-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.changelog-item ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.changelog-item li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}

.changelog-item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

@media (max-width: 768px) {
  .uptime-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .uptime-grid {
    grid-template-columns: 1fr;
  }
}
