:root {
  --bg: #071b1f;
  --panel: #0d2a30;
  --panel-2: #12363d;
  --text: #e8f4f2;
  --muted: #9fb8b5;
  --line: rgba(255,255,255,.13);
  --link: #b7fff5;
  --warn: #f2d08c;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(7, 27, 31, .94); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: grid; gap: 4px; color: var(--text); text-decoration: none; }
.brand-name { font-weight: 700; font-size: 18px; }
.brand-tagline { color: var(--muted); font-size: 12px; letter-spacing: .04em; }
.nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.nav a { color: var(--muted); text-decoration: none; padding: 10px 12px; border-radius: 999px; }
.nav a:hover, .nav a.active { color: var(--text); background: rgba(255,255,255,.08); }
.page { padding: 34px 0 56px; }
.hero { background: linear-gradient(135deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: 18px; padding: 30px; margin-bottom: 22px; }
.hero h1 { margin: 0 0 12px; font-size: clamp(32px, 5vw, 52px); line-height: 1; }
.hero p { color: var(--muted); max-width: 760px; margin: 0; line-height: 1.6; }
.eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; margin-bottom: 12px !important; color: var(--link) !important; }
a { color: var(--link); }
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 0 0 22px; }
.toolbar input, .toolbar select, .toolbar button { border: 1px solid var(--line); background: var(--panel); color: var(--text); border-radius: 10px; padding: 11px 12px; }
.toolbar input { min-width: min(360px, 100%); flex: 1; }
.toolbar button { cursor: pointer; }
.toolbar button:hover { background: var(--panel-2); }
.load-state { color: var(--muted); font-size: 13px; }
.panel { border: 1px solid var(--line); border-radius: 16px; background: rgba(13, 42, 48, .82); padding: 20px; margin: 18px 0; }
.muted-panel p { color: var(--muted); }
.warning-panel { border-color: rgba(242, 208, 140, .4); }
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.section-head h2 { margin: 0; }
.count { display: inline-grid; min-width: 28px; height: 28px; place-items: center; border-radius: 999px; background: rgba(255,255,255,.08); color: var(--muted); font-size: 13px; }
.table-wrap { overflow-x: auto; }
.product-table { width: 100%; border-collapse: collapse; min-width: 1120px; table-layout: fixed; }
.product-table th, .product-table td { text-align: left; vertical-align: top; padding: 13px 10px; border-bottom: 1px solid var(--line); }
.product-table th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.product-table tr:last-child td { border-bottom: 0; }

.product-table th:nth-child(1), .product-table td:nth-child(1) { width: 250px; }
.product-table th:nth-child(2), .product-table td:nth-child(2) { width: 150px; }
.product-table th:nth-child(3), .product-table td:nth-child(3) { width: 150px; }
.product-table th:nth-child(5), .product-table td:nth-child(5), .updated-cell { width: 112px; min-width: 112px; max-width: 112px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.product-table th:nth-child(6), .product-table td:nth-child(6) { width: 220px; }
.product-table td:nth-child(1), .product-table td:nth-child(2), .product-table td:nth-child(3), .product-table td:nth-child(5), .product-table td:nth-child(6) { overflow: hidden; text-overflow: ellipsis; }
.product-table th:nth-child(2), .product-table td:nth-child(2), .product-table th:nth-child(3), .product-table td:nth-child(3), .stage-cell { white-space: nowrap; }
.product-title { font-weight: 700; display: block; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; }
.product-category { color: var(--muted); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 4px 8px; font-size: 12px; color: var(--text); white-space: nowrap; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .8; }
.status-store-live, .status-available, .status-support-live { color: #a8f5dc; }
.status-store-ready, .status-store-submitted, .status-ready-for-review { color: #f2d08c; }
.status-in-development { color: #f2d08c; }
.status-draft { color: #b8c2ff; }
.status-paused { color: #d2d6d8; }
.status-archived { color: #8c9da1; }
.summary-cell { color: var(--muted); line-height: 1.45; overflow-wrap: anywhere; }
.link-list { display: flex; flex-wrap: nowrap; gap: 8px; }
.link-list a { border: 1px solid var(--line); border-radius: 999px; padding: 5px 9px; text-decoration: none; white-space: nowrap; flex: 0 0 auto; }
.link-list a:hover { background: rgba(255,255,255,.08); }
.empty-row { color: var(--muted); font-style: italic; }
.product-page .meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin: 18px 0; }
.meta-card { border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: rgba(255,255,255,.035); }
.meta-card strong { display: block; margin-bottom: 5px; }
.meta-card span { color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.content-section { line-height: 1.65; color: var(--muted); }
.content-section h2 { color: var(--text); }
ul.clean { padding-left: 20px; }
.site-footer { color: var(--muted); border-top: 1px solid var(--line); padding: 22px 0; font-size: 13px; }
@media (max-width: 760px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav { justify-content: flex-start; }
  .wrap { width: min(100% - 28px, 1120px); }
  .hero { padding: 22px; }
}
