/* extracted from inline <style> block 1 in openclaw-emergency/index.html */
:root {
      --bg: #0f172a;
      --panel: #172033;
      --panel-2: #1e293b;
      --text: #f8fafc;
      --muted: #94a3b8;
      --line: rgba(255,255,255,0.1);
      --accent: #10b981;
      --danger: #ef4444;
      --warn: #f59e0b;
      --code: #0b1120;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      line-height: 1.7;
    }
    nav {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(15,23,42,0.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }
    .wrap, .nav-inner {
      width: min(1040px, calc(100% - 40px));
      margin: 0 auto;
    }
    .nav-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .logo {
      color: var(--accent);
      font-size: 1.35rem;
      font-weight: 800;
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      color: var(--muted);
      font-weight: 700;
      text-decoration: none;
      font-size: 0.94rem;
    }
    .nav-links a:hover { color: var(--text); }
    .hero {
      padding: 78px 0 52px;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(135deg, rgba(239,68,68,0.18), rgba(15,23,42,0));
    }
    .eyebrow {
      color: var(--danger);
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    h1 {
      max-width: 840px;
      font-size: clamp(2.5rem, 6vw, 4.7rem);
      line-height: 1.02;
      letter-spacing: 0;
      margin-bottom: 22px;
    }
    .lead {
      max-width: 780px;
      color: var(--muted);
      font-size: 1.22rem;
      margin-bottom: 28px;
    }
    .actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 22px;
      border-radius: 8px;
      font-weight: 900;
      text-decoration: none;
      border: 1px solid transparent;
    }
    .btn-primary {
      background: var(--danger);
      color: #fff;
    }
    .btn-secondary {
      background: var(--panel-2);
      border-color: var(--line);
      color: var(--text);
    }
    section {
      padding: 62px 0;
      border-bottom: 1px solid var(--line);
    }
    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      line-height: 1.12;
      margin-bottom: 18px;
    }
    .section-lead {
      color: var(--muted);
      max-width: 780px;
      font-size: 1.08rem;
      margin-bottom: 28px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 22px;
    }
    .card h3 {
      font-size: 1.12rem;
      margin-bottom: 10px;
    }
    .card p, .card li {
      color: var(--muted);
      font-size: 0.98rem;
    }
    .card ul {
      padding-left: 20px;
      display: grid;
      gap: 8px;
    }
    .urgent {
      border-left: 4px solid var(--danger);
    }
    .warn {
      border-left: 4px solid var(--warn);
    }
    .safe {
      border-left: 4px solid var(--accent);
    }
    .checklist {
      counter-reset: step;
      display: grid;
      gap: 14px;
    }
    .check {
      counter-increment: step;
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 18px;
    }
    .check:before {
      content: counter(step);
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(239,68,68,0.16);
      color: var(--danger);
      font-weight: 900;
    }
    .check p { color: var(--muted); margin-top: 4px; }
    pre {
      overflow-x: auto;
      background: var(--code);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 20px;
      color: #d1fae5;
      line-height: 1.62;
      font-size: 0.9rem;
    }
    code { font-family: "SF Mono", Consolas, Monaco, monospace; }
    .cta {
      background: rgba(16,185,129,0.09);
    }
    .cta-box {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      align-items: center;
      background: rgba(15,23,42,0.72);
      border: 1px solid rgba(16,185,129,0.3);
      border-radius: 8px;
      padding: 28px;
    }
    .cta-box p {
      color: var(--muted);
      max-width: 680px;
      margin-top: 6px;
    }
    footer {
      padding: 34px 0;
      color: var(--muted);
    }
    footer .wrap {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }
    footer a {
      color: var(--muted);
      margin-left: 16px;
      text-decoration: none;
    }
    @media (max-width: 780px) {
      .grid { grid-template-columns: 1fr; }
      .nav-inner { flex-direction: column; align-items: flex-start; padding: 18px 0; }
      .nav-links { flex-wrap: wrap; gap: 14px; }
      .cta-box { align-items: flex-start; flex-direction: column; }
      .btn { width: 100%; }
    }

