:root { color-scheme: light; --bg: #f4f7fb; --panel: #fff; --text: #13201f; --muted: #5e6e6b; --line: #d8e2e0; --blue: #155eef; --teal: #0f766e; --green: #15803d; --red: #b42318; --yellow: #a16207; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.top { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .96); }
.bar { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border: 0; border-radius: 8px; background: transparent; object-fit: contain; }
.brand b { font-size: 18px; }
.brand small { display: block; color: var(--muted); font-size: 13px; }
.site-nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.site-nav a { padding: 9px 11px; border-radius: 6px; color: #273936; font-size: 14px; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: #eef4f6; }
.hero { padding: 44px 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: stretch; gap: 22px; }
.panel { padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); box-shadow: 0 10px 28px rgba(25, 45, 55, .06); }
.hero-grid > .panel:first-child { position: relative; display: flex; min-height: 400px; flex-direction: column; justify-content: center; overflow: hidden; border: 0; background: linear-gradient(135deg, #10231f 0%, #123b40 46%, #1d4ed8 100%); color: #fff; }
.hero-grid > .panel:first-child::after { content: ""; position: absolute; right: 28px; bottom: 26px; width: 168px; height: 168px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; box-shadow: inset 0 0 0 24px rgba(255, 255, 255, .05), inset 0 0 0 54px rgba(255, 255, 255, .045); pointer-events: none; }
.hero-grid > .panel:first-child > * { position: relative; z-index: 1; }
.hero-grid > .panel:first-child .lead { color: rgba(255, 255, 255, .8); }
.hero-grid > .panel:first-child .btn.secondary, .hero-grid > .panel:first-child .btn.ghost { border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .12); color: #fff; }
.hero-grid > .panel:first-child .status-pending { background: rgba(191, 219, 254, .16); color: #dbeafe; }
.hero-grid > .panel:first-child .status-ok { background: rgba(209, 250, 223, .15); color: #d1fadf; }
.hero-grid > .panel:first-child .status-warn { background: rgba(254, 240, 199, .15); color: #fef0c7; }
.hero-grid > .panel:first-child .status-error { background: rgba(254, 205, 211, .15); color: #fecdd3; }
h1, h2, h3, p { margin: 0; }
h1 { margin-top: 18px; font-size: clamp(30px, 5vw, 52px); line-height: 1.08; }
h2 { font-size: 22px; }
h3 { margin-bottom: 6px; font-size: 16px; }
.lead { max-width: 780px; margin-top: 18px; color: var(--muted); font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 16px; border: 0; border-radius: 8px; background: var(--blue); color: #fff; font: inherit; font-weight: 800; text-decoration: none; cursor: pointer; }
.btn.secondary { border: 1px solid #c9dcda; background: #eef6f5; color: #0b5f59; }
.btn.ghost { border: 1px solid var(--line); background: #fff; color: #1c3431; }
.btn:disabled { cursor: wait; opacity: .65; }
.pill { display: inline-flex; min-height: 30px; align-items: center; gap: 8px; padding: 0 11px; border-radius: 999px; font-size: 13px; font-weight: 800; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.status-pending { background: #eef4ff; color: #175cd3; }
.status-ok { background: #eaf7ef; color: #0f6b35; }
.status-warn { background: #fff4e5; color: #9a3412; }
.status-error { background: #fef0f0; color: var(--red); }
.status-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.status-heading a { color: var(--blue); font-size: 14px; font-weight: 800; text-decoration: none; }
.eyebrow { margin-bottom: 5px; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.status-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.metric { min-width: 0; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #fbfdfd; }
.metric span { display: block; color: var(--muted); font-size: 13px; }
.metric strong { display: block; margin-top: 4px; font-size: 19px; overflow-wrap: anywhere; }
.status-actions { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.status-actions span { color: var(--muted); font-size: 12px; }
.status-note { margin-top: 12px; color: var(--muted); font-size: 13px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.card { min-height: 130px; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.card p { margin-top: 8px; color: var(--muted); }
.start-section { margin-top: 26px; }
.section-heading { margin-bottom: 14px; }
.start-grid, .support-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.start-grid .card { position: relative; min-height: 220px; padding-top: 58px; }
.step-number { position: absolute; top: 18px; left: 20px; display: inline-grid; width: 30px; height: 30px; place-items: center; border-radius: 999px; background: #eaf1ff; color: var(--blue); font-size: 14px; font-weight: 900; }
.start-grid a, .support-grid a { display: inline-flex; margin-top: 14px; color: var(--blue); font-weight: 800; text-decoration: none; }
.support-grid { margin-top: 16px; }
.support-grid .card { min-height: 160px; }
.faq-band { padding: 22px 0 54px; }
.faq-band > h2 { margin-bottom: 14px; }
.faq { display: grid; gap: 10px; }
.faq details { padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin-top: 8px; color: var(--muted); }
footer { padding: 24px 0 40px; border-top: 1px solid var(--line); color: var(--muted); }

@media (max-width: 860px) {
  .hero-grid, .grid, .start-grid, .support-grid { grid-template-columns: 1fr; }
  .hero-grid > .panel:first-child { min-height: auto; }
  .hero-grid > .panel:first-child::after { width: 118px; height: 118px; opacity: .55; }
}

@media (max-width: 560px) {
  .hero { padding-top: 26px; }
  .panel, .card { padding: 20px; }
  .status-actions { align-items: stretch; flex-direction: column; }
  .status-actions .btn { width: 100%; }
}

@media (max-width: 390px) {
  .status-metrics { grid-template-columns: 1fr; }
}
