:root {
  --bg: #0b1220;
  --panel: #111a2e;
  --panel2: #16223a;
  --text: #eef4ff;
  --muted: #a8b4ca;
  --line: rgba(255,255,255,0.12);
  --green: #28d17c;
  --yellow: #ffd166;
  --red: #ff5c7a;
  --blue: #8ec5ff;
  --shadow: 0 20px 50px rgba(0,0,0,.25);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: radial-gradient(circle at top left, #1b3760 0, #0b1220 42%, #080d18 100%); color: var(--text); }
a { color: #b9dcff; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; padding: 44px clamp(18px, 4vw, 64px); align-items: end; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 8px; color: var(--blue); text-transform: uppercase; font-weight: 800; letter-spacing: .12em; font-size: .78rem; }
h1 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: .98; }
h2 { margin: 0 0 4px; font-size: 1.25rem; }
h3 { margin: 8px 0; }
h4 { margin: 16px 0 6px; }
.subtitle { font-size: 1.35rem; font-weight: 700; margin: 12px 0 0; color: white; }
.hero-detail, .panel p, footer { color: var(--muted); }
.hero-detail { max-width: 920px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.button { border: 0; background: linear-gradient(135deg, #3e7cff, #8b5cf6); color: white; padding: 11px 14px; border-radius: 12px; font-weight: 800; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.button.secondary { background: rgba(255,255,255,.10); border: 1px solid var(--line); }
.button:hover { filter: brightness(1.08); }
.hero-card, .panel, .metric, .readiness-card, .journey-card { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045)); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 22px; }
.hero-card { padding: 20px; }
main { padding: 26px clamp(18px, 4vw, 64px) 50px; }
.summary-grid { display: grid; grid-template-columns: repeat(4, minmax(160px, 1fr)); gap: 14px; margin-bottom: 20px; }
.metric { padding: 18px; }
.metric span { display: block; color: var(--muted); font-size: .86rem; }
.metric strong { display: block; font-size: 2rem; margin: 4px 0; }
.metric small { color: var(--muted); }
.metric.green strong { color: var(--green); } .metric.yellow strong { color: var(--yellow); } .metric.red strong { color: var(--red); }
.panel { padding: 20px; margin-bottom: 20px; }
.section-header { display: flex; justify-content: space-between; gap: 16px; align-items: start; margin-bottom: 16px; }
.filters, .form-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.form-row.right { justify-content: flex-end; }
input, select, textarea { width: 100%; background: #0d1628; color: var(--text); border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px; font: inherit; }
select { width: auto; min-width: 160px; }
textarea { resize: vertical; }
.layout.two-col { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr); gap: 20px; }
.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 900px; }
th, td { padding: 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: rgba(255,255,255,.06); color: #dbeafe; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
tr { cursor: pointer; }
tr:hover, tr.selected { background: rgba(142,197,255,.08); }
.status-pill { display: inline-flex; gap: 7px; align-items: center; padding: 6px 9px; border-radius: 999px; font-weight: 900; font-size: .76rem; border: 1px solid var(--line); }
.status-pill.green { color: var(--green); background: rgba(40,209,124,.1); }
.status-pill.yellow { color: var(--yellow); background: rgba(255,209,102,.1); }
.status-pill.red { color: var(--red); background: rgba(255,92,122,.1); }
.status-pill.unknown { color: var(--muted); background: rgba(255,255,255,.08); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; background: var(--muted); box-shadow: 0 0 14px currentColor; }
.status-dot.green { background: var(--green); color: var(--green); } .status-dot.yellow { background: var(--yellow); color: var(--yellow); } .status-dot.red { background: var(--red); color: var(--red); } .status-dot.unknown { background: var(--muted); color: var(--muted); }
.journey-map { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 14px; }
.journey-card { padding: 16px; }
.journey-card.green { border-color: rgba(40,209,124,.35); } .journey-card.yellow { border-color: rgba(255,209,102,.45); } .journey-card.red { border-color: rgba(255,92,122,.45); }
.journey-nodes { display: flex; gap: 8px; flex-wrap: wrap; }
.node { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.08); padding: 8px 10px; border-radius: 999px; cursor: pointer; }
.node.green { border-color: rgba(40,209,124,.5); } .node.yellow { border-color: rgba(255,209,102,.6); } .node.red { border-color: rgba(255,92,122,.6); }
.detail-view { min-height: 320px; }
.detail-title h3 { margin-top: 10px; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 12px 0; }
.mini-grid div { background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.mini-grid span { display: block; color: var(--muted); font-size: .8rem; }
.mini-grid strong { display: block; margin-top: 3px; }
.result-box { margin-top: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.muted { color: var(--muted); }
.readiness-grid { display: grid; grid-template-columns: repeat(4, minmax(180px, 1fr)); gap: 14px; }
.readiness-card { padding: 16px; }
.readiness-card p { min-height: 54px; }
.readiness-card.green { border-color: rgba(40,209,124,.35); } .readiness-card.yellow { border-color: rgba(255,209,102,.45); } .readiness-card.red { border-color: rgba(255,92,122,.45); }
code { color: #dbeafe; background: rgba(255,255,255,.08); padding: 2px 5px; border-radius: 6px; }
footer { padding: 28px clamp(18px, 4vw, 64px); border-top: 1px solid var(--line); }
.content-page { max-width: 980px; margin: 0 auto; padding: 40px 20px; }
.content-card { background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 22px; padding: 24px; margin: 18px 0; }
@media (max-width: 960px) { .hero, .layout.two-col { grid-template-columns: 1fr; } .summary-grid, .journey-map, .readiness-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .summary-grid, .journey-map, .readiness-grid { grid-template-columns: 1fr; } .hero { padding-top: 28px; } }
