/* ==========================================================================
   SendorX — status.css  (body class: .page-status)
   ========================================================================== */

/* ===== HERO ===== */
.page-status .hero {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 90px 0 40px;
    position: relative;
    overflow: visible;
}
.page-status .hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,.18), transparent 70%);
    pointer-events: none;
}
.page-status .hero h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.08; font-weight: 800; letter-spacing: -1.5px; margin: 0 0 14px; max-width: 620px; }
.page-status .hero h1 .accent { color: var(--orange); }
.page-status .hero p.lead { font-size: 18px; color: rgba(255,255,255,.78); margin: 0; max-width: 540px; line-height: 1.6; }

/* ===== SECTIONS ===== */
.page-status .section { padding: 90px 0; }
.page-status .section--bg { background: var(--bg); }

/* ===== STATUS LIST ===== */
.page-status .status-list { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.page-status .status-list .row { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.page-status .status-list .row:last-child { border-bottom: 0; }
.page-status .status-list .name { font-weight: 500; }

/* ===== PILLS ===== */
.page-status .pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.page-status .pill .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.page-status .pill--ok { background: var(--green-soft); color: var(--green); }
.page-status .pill--ok .dot { background: var(--green); }
.page-status .pill--warn { background: #fef3c7; color: #92400e; }
.page-status .pill--warn .dot { background: #d97706; }
.page-status .pill--down { background: #fee2e2; color: #991b1b; }
.page-status .pill--down .dot { background: #dc2626; }

/* ===== PROSE ===== */
.page-status .prose { max-width: 760px; margin: 0 auto; }
.page-status .prose h2 { font-size: 24px; font-weight: 700; margin: 36px 0 12px; }
.page-status .prose p, .page-status .prose li { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .page-status .hero { padding: 40px 0px 10px 0px; }
}
@media (max-width: 720px) {
    .page-status .section { padding: 60px 0; }
}
