
  /* === Hero === */
  .status-hero {
    padding: var(--space-16) 0;
    text-align: center;
  }

  .status-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    text-decoration: none;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    background: var(--brand-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: white;
    font-size: var(--text-lg);
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
  }

  .logo-traffic {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .logo-orchestrator {
    font-size: 0.8rem;
    font-weight: 500;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
  }

  .status-badge-large {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
  }

  .status-badge-large.operational {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
  }

  .status-subtitle {
    color: var(--text-tertiary);
    font-size: var(--text-sm);
  }

  /* === Systems === */
  .section-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-6);
    color: var(--text-primary);
  }

  .systems-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .system-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-5);
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
  }

  .system-info {
    display: flex;
    align-items: center;
    gap: var(--space-4);
  }

  .system-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

  .system-status.operational { background: var(--success); }
  .system-status.degraded { background: var(--warning); }
  .system-status.outage { background: var(--error); }

  .system-details h3 {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
  }

  .system-url {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    font-family: var(--font-mono);
  }

  .system-badge {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
  }

  .system-badge.operational {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
  }

  .system-badge.degraded {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
  }

  /* === Uptime === */
  .uptime-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .uptime-percentage {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--success);
  }

  .uptime-chart {
    display: flex;
    gap: 2px;
    height: 40px;
    margin: var(--space-6) 0;
  }

  .uptime-bar {
    flex: 1;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: transform var(--duration-fast);
  }

  .uptime-bar:hover {
    transform: scaleY(1.2);
  }

  .uptime-bar.operational { background: var(--success); }
  .uptime-bar.degraded { background: var(--warning); }
  .uptime-bar.outage { background: var(--error); }

  .uptime-legend {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-tertiary);
  }

  .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  .legend-dot.operational { background: var(--success); }
  .legend-dot.degraded { background: var(--warning); }
  .legend-dot.outage { background: var(--error); }

  /* === Incidents === */
  .incident-date h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
  }

  .incident-card {
    padding: var(--space-6);
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
  }

  .incident-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
  }

  .incident-status {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
  }

  .incident-status.resolved {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
  }

  .incident-time {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
  }

  .incident-card h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
    color: var(--text-primary);
  }

  .incident-card > p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
    line-height: var(--leading-relaxed);
  }

  .incident-timeline {
    border-left: 2px solid var(--border-subtle);
    padding-left: var(--space-5);
  }

  .timeline-item {
    position: relative;
    padding-bottom: var(--space-4);
    font-size: var(--text-sm);
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-5) - 5px);
    top: 4px;
    width: 8px;
    height: 8px;
    background: var(--surface-3);
    border-radius: 50%;
  }

  .timeline-time {
    color: var(--text-tertiary);
    margin-right: var(--space-3);
    font-family: var(--font-mono);
  }

  .timeline-desc {
    color: var(--text-secondary);
  }

  .no-incidents {
    text-align: center;
    padding: var(--space-12);
    color: var(--text-tertiary);
  }

  .no-incidents svg {
    color: var(--success);
    margin-bottom: var(--space-4);
  }

  /* === Subscribe === */
  .subscribe-card {
    text-align: center;
    padding: var(--space-10);
    background: var(--surface-1);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-2xl);
  }

  .subscribe-card h2 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
  }

  .subscribe-card > p {
    color: var(--text-tertiary);
    margin-bottom: var(--space-6);
  }

  .subscribe-form {
    display: flex;
    gap: var(--space-3);
    max-width: 400px;
    margin: 0 auto;
  }

  .subscribe-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: var(--surface-0);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: var(--text-base);
  }

  .subscribe-form input:focus {
    outline: none;
    border-color: var(--brand-primary);
  }

  .subscribe-input-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .subscribe-form .field-error {
    margin-top: var(--space-2);
    font-size: var(--text-xs);
    color: var(--error);
    text-align: left;
  }

  .subscribe-form input.input-error {
    border-color: var(--error);
  }

  .subscribe-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-lg);
    color: var(--success);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
  }

  /* Button spinner */
  .btn .btn-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  @media (max-width: 640px) {
    .subscribe-form {
      flex-direction: column;
    }
  }
