:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #f1f4f8;
  --line: #d9e0ea;
  --text: #131820;
  --muted: #667085;
  --primary: #111827;
  --primary-strong: #020617;
  --accent: #475569;
  --danger: #c2410c;
  --success: #15803d;
  --warning: #b45309;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.07);
  --shadow-lift: 0 18px 42px rgba(15, 23, 42, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }
body { font-size: 14px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-header {
  min-height: 72px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; align-items: center; gap: 28px;
  padding: 0 max(32px, calc((100vw - 1320px) / 2 + 32px)); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px); position: sticky; top: 0; z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 760; letter-spacing: 0; }
.brand-mark {
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; background: #0f172a; color: #fff; font-weight: 800;
}
.site-nav, .topbar-actions { display: flex; align-items: center; gap: 16px; }
.site-nav { min-width: 0; flex-wrap: wrap; }
.site-nav a, .site-header-auth a { color: var(--muted); font-weight: 680; }
.site-nav a:hover, .site-header-auth a:hover { color: var(--text); }
.site-header-auth { display: flex; align-items: center; justify-content: flex-end; gap: 14px; white-space: nowrap; }
.logout-form { margin: 0; display: inline-flex; align-items: center; }
.site-nav .logout-form button,
.site-header-auth .logout-form button {
  border: 0; padding: 0; background: transparent; color: var(--muted); font: inherit; font-weight: 620; cursor: pointer;
}
.site-nav .logout-form button:hover,
.site-header-auth .logout-form button:hover { color: var(--text); }
.site-menu-toggle {
  width: 38px; height: 38px; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
  padding: 0; border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--text); cursor: pointer;
}
.site-menu-toggle span { width: 16px; height: 1.5px; border-radius: 999px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.site-header.is-menu-open .site-menu-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.site-header.is-menu-open .site-menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .site-menu-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.announcement-bar {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px;
  margin: 18px max(18px, calc((100vw - 1320px) / 2 + 32px)) 0;
  padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06); overflow: hidden;
}
.announcement-bar-label {
  display: inline-flex; align-items: center; min-height: 26px; padding: 3px 10px; border-radius: 999px;
  background: #111827; color: #fff; font-size: 12px; font-weight: 800;
}
.announcement-bar-link { color: var(--muted); font-size: 12px; font-weight: 760; white-space: nowrap; }
.announcement-bar-link:hover { color: var(--text); }
.announcement-rotator {
  position: relative;
  min-width: 0;
  height: 26px;
  overflow: hidden;
}
.announcement-rotator-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #334155;
  font-size: 13px;
  font-weight: 720;
  line-height: 26px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .24s ease, opacity .18s ease;
}
.announcement-rotator-item::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: #64748b;
}
.announcement-rotator-item span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.announcement-rotator-item.is-active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.announcement-rotator-item.is-leaving { opacity: 0; transform: translateY(-100%); }
.announcement-rotator-item:hover { color: var(--text); }
@media (prefers-reduced-motion: reduce) {
  .announcement-rotator-item { transition: none; }
}
.language-switch {
  display: inline-flex; align-items: center; position: relative; white-space: nowrap;
}
.language-switch select {
  min-height: 32px; max-width: 132px; padding: 5px 30px 5px 10px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.82);
  color: var(--muted); font-size: 12px; font-weight: 760; cursor: pointer; outline: none;
  appearance: none;
}
.language-switch::after {
  content: ""; position: absolute; right: 11px; top: 50%; width: 6px; height: 6px;
  border-right: 1.7px solid #667085; border-bottom: 1.7px solid #667085;
  transform: translateY(-62%) rotate(45deg); pointer-events: none;
}
.language-switch select:hover { color: var(--text); border-color: #b8c3d4; background: #fff; }
.language-switch select:focus { border-color: #94a3b8; box-shadow: 0 0 0 3px rgba(148, 163, 184, .18); }
.account-menu { position: relative; }
.account-menu summary {
  min-height: 34px; max-width: 180px; display: inline-flex; align-items: center; gap: 7px; padding: 5px 30px 5px 12px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.82); color: var(--text);
  font-size: 13px; font-weight: 760; cursor: pointer; list-style: none;
}
.account-menu summary::-webkit-details-marker { display: none; }
.account-menu summary::after {
  content: ""; position: absolute; right: 12px; top: 14px; width: 6px; height: 6px;
  border-right: 1.7px solid #667085; border-bottom: 1.7px solid #667085; transform: rotate(45deg); pointer-events: none;
}
.account-menu summary span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-menu summary:hover { border-color: #b8c3d4; background: #fff; }
.account-menu[open] summary { border-color: #94a3b8; background: #fff; }
.account-menu-panel {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 35; min-width: 178px; padding: 6px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
}
.account-menu-panel a,
.account-menu-panel .logout-form button {
  width: 100%; min-height: 34px; display: flex; align-items: center; padding: 8px 10px; border: 0; border-radius: 7px;
  background: transparent; color: var(--muted); font: inherit; font-size: 13px; font-weight: 720; text-align: left; cursor: pointer;
}
.account-menu-panel a:hover,
.account-menu-panel .logout-form button:hover { background: #f8fafc; color: var(--text); }
.account-menu-panel .logout-form { display: block; width: 100%; }

.home-hero {
  display: grid; grid-template-columns: minmax(360px, .74fr) minmax(560px, 1.26fr);
  gap: 54px; align-items: center; max-width: 1320px; margin: 0 auto; padding: 66px 32px 40px;
}
.home-hero-copy { min-width: 0; }
.home-hero h1 { margin: 10px 0 10px; font-size: 64px; line-height: .98; letter-spacing: 0; }
.hero-lede { max-width: 520px; color: #344054; font-size: 22px; line-height: 1.45; margin: 0; }
.hero-trust-list {
  display: flex; flex-wrap: wrap; gap: 0; margin: 28px 0 0; padding: 0; max-width: 620px; list-style: none;
}
.hero-trust-list li { display: grid; gap: 2px; min-width: 128px; padding: 0 18px; border-left: 1px solid #d8dee8; }
.hero-trust-list li:first-child { padding-left: 0; border-left: 0; }
.hero-trust-list strong { color: #111827; font-size: 13px; font-weight: 820; }
.hero-trust-list span { color: #667085; font-size: 12px; font-weight: 660; }
.home-hero-media {
  aspect-ratio: 1580 / 995; border: 1px solid #d8dee8; border-radius: 14px; background: #fff;
  box-shadow: 0 26px 68px rgba(15, 23, 42, .1); overflow: hidden; min-width: 0;
}
.home-hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero {
  min-height: 520px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 36px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 44px 28px 30px;
}
.hero h1 { margin: 8px 0 12px; font-size: 64px; line-height: 1; letter-spacing: 0; }
.hero p { max-width: 420px; color: var(--muted); font-size: 18px; margin: 0; }
.hero-actions { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.hero-product { display: grid; gap: 16px; }
.status-card, .card, .panel, .stat-card, .quick-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow);
}
.status-card { padding: 24px; }
.status-card-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.status-card strong { display: block; font-size: 34px; margin: 14px 0 18px; }
.status-list { display: grid; gap: 10px; }
.status-list div {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border-top: 1px solid var(--line); padding-top: 10px;
}
.status-list span { color: var(--muted); font-weight: 700; }
.status-list code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #334155; font-size: 12px; overflow-wrap: anywhere; text-align: right;
}
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-row div { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.metric-row strong, .metric-row span { display: block; }
.metric-row span { color: var(--muted); font-size: 12px; margin-top: 4px; }

.content-band, .page-section { max-width: 1200px; margin: 0 auto; padding: 28px 28px 52px; width: 100%; }
.home-overview { padding-top: 12px; }
.home-section { max-width: 1320px; margin: 0 auto; padding: 34px 32px; width: 100%; }
.home-release-section { padding-top: 18px; }
.page-section.narrow { max-width: 820px; }
.section-head, .panel-head { margin-bottom: 18px; }
.section-head h1, .section-head h2, .panel-head h1, .panel-head h2 { margin: 4px 0 0; line-height: 1.15; letter-spacing: 0; }
.section-head h1 { font-size: 36px; }
.section-head h2 { font-size: 28px; }
.panel-head p { margin: 6px 0 0; color: var(--muted); }
.eyebrow, .card-kicker { color: var(--accent); font-weight: 760; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 36px;
  padding: 8px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  color: var(--text); font-weight: 700; cursor: pointer;
}
.btn:hover { border-color: #b8c3d4; background: #f8fafc; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 8px 18px rgba(15, 23, 42, .12); }
.btn-primary:hover { background: var(--primary-strong); border-color: var(--primary-strong); }
.btn-danger { color: #fff; background: var(--danger); border-color: var(--danger); }
.btn:disabled, .btn[disabled], .copy-button:disabled {
  cursor: not-allowed; opacity: .56; box-shadow: none;
}
.btn-full { width: 100%; min-height: 42px; }

.download-center-card {
  overflow: visible; max-width: 100%; border: 1px solid rgba(148, 163, 184, .36); border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%); box-shadow: 0 20px 52px rgba(15, 23, 42, .055);
}
.download-center-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, 430px); gap: 34px; align-items: end;
  padding: 34px 36px 30px; border-bottom: 1px solid rgba(217, 224, 234, .84);
}
.download-release-copy { min-width: 0; }
.download-release-copy h2 { margin: 10px 0 0; font-size: 46px; line-height: 1.02; letter-spacing: 0; }
.download-release-copy p { max-width: 620px; margin: 12px 0 0; color: #475467; font-size: 17px; line-height: 1.62; }
.version-information {
  display: grid; gap: 14px; min-width: 0; padding: 18px; border: 1px solid rgba(217, 224, 234, .92);
  border-radius: 14px; background: rgba(248, 250, 252, .76);
}
.release-channel-pill {
  justify-self: start; display: inline-flex; align-items: center; gap: 7px; min-height: 28px; padding: 4px 10px;
  border: 1px solid rgba(187, 247, 208, .9); border-radius: 999px; background: #f0fdf4; color: #166534;
  font-size: 12px; font-weight: 800;
}
.release-channel-pill span { width: 7px; height: 7px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, .14); }
.version-information dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; }
.version-information dt {
  color: #667085; font-size: 11px; font-weight: 760; text-transform: uppercase; letter-spacing: .07em;
}
.version-information dd { margin: 4px 0 0; color: #111827; font-size: 14px; font-weight: 820; overflow-wrap: anywhere; }
.version-information p { margin: 0; color: #667085; font-size: 12px; }
.version-information code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.download-center-body { display: grid; gap: 20px; padding: 30px 36px 32px; }
.download-center-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.download-center-heading h3 { margin: 5px 0 0; font-size: 26px; line-height: 1.16; letter-spacing: 0; }
.download-center-all,
.release-notes-strip a {
  color: #111827; font-size: 13px; font-weight: 800; white-space: nowrap; text-decoration: none;
}
.download-center-all:hover,
.release-notes-strip a:hover { color: #020617; text-decoration: underline; text-underline-offset: 4px; }
.download-os-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: start; }
.download-os-card {
  position: relative; min-width: 0; border: 1px solid rgba(203, 213, 225, .92); border-radius: 13px;
  background: #fff; box-shadow: 0 1px 2px rgba(15, 23, 42, .035);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}
.download-os-card:hover,
.download-os-card:focus-within,
.download-os-card.is-hover-open,
.download-os-card.is-open { border-color: #9aa7b8; box-shadow: 0 18px 34px rgba(15, 23, 42, .1); transform: translateY(-1px); z-index: 8; }
.download-os-card.is-detected { border-color: #64748b; background: #fbfcfe; box-shadow: 0 0 0 2px rgba(100, 116, 139, .12); }
.download-os-trigger {
  width: 100%; min-height: 106px; display: grid; grid-template-columns: 46px minmax(0, 1fr) auto auto; gap: 12px; align-items: center;
  padding: 16px; border: 0; border-radius: 13px; background: transparent; color: var(--text); text-align: left; cursor: pointer;
}
.download-os-trigger:focus-visible { outline: 2px solid #64748b; outline-offset: 2px; }
.download-os-copy { min-width: 0; display: grid; gap: 4px; }
.download-os-copy strong { font-size: 18px; line-height: 1.25; }
.download-os-copy small { color: #667085; font-size: 12px; line-height: 1.45; }
.download-os-count { color: #475569; font-size: 11px; font-weight: 780; white-space: nowrap; }
.download-os-chevron { color: #64748b; font-size: 20px; line-height: 1; transition: transform .18s ease; }
.download-os-card:hover .download-os-chevron,
.download-os-card:focus-within .download-os-chevron,
.download-os-card.is-hover-open .download-os-chevron,
.download-os-card.is-open .download-os-chevron { transform: rotate(180deg); }
.download-os-options {
  position: absolute; top: 100%; left: 0; right: 0; padding-top: 8px; visibility: hidden; opacity: 0; pointer-events: none;
  transform: translateY(-5px); transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.download-os-card:hover .download-os-options,
.download-os-card:focus-within .download-os-options,
.download-os-card.is-hover-open .download-os-options,
.download-os-card.is-open .download-os-options { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.download-os-options-inner {
  display: grid; gap: 7px; padding: 9px; border: 1px solid rgba(203, 213, 225, .96); border-radius: 12px;
  background: #fff; box-shadow: 0 24px 54px rgba(15, 23, 42, .16);
}
.download-architecture-option {
  min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: center;
  padding: 10px; border-radius: 8px; background: #f8fafc;
}
.download-architecture-option:hover { background: #f1f5f9; }
.download-architecture-copy { min-width: 0; display: grid; gap: 3px; }
.download-architecture-copy strong { font-size: 13px; line-height: 1.35; }
.download-architecture-copy span { color: #667085; font-size: 11px; line-height: 1.45; overflow-wrap: anywhere; }
.download-architecture-action { color: #111827; font-size: 12px; font-weight: 820; white-space: nowrap; }
.download-architecture-action:hover { text-decoration: underline; text-underline-offset: 3px; }
.home-release-platform-icon {
  width: 46px; height: 46px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(217, 224, 234, .96); border-radius: 13px; background: #f8fafc; color: #111827;
}
.home-release-platform-icon svg { width: 23px; height: 23px; }
.home-release-platform-icon.is-macos { color: #111827; background: linear-gradient(180deg, #fff 0%, #f4f6f8 100%); }
.home-release-platform-icon.is-windows { color: #2563eb; background: #eff6ff; border-color: #dbeafe; }
.home-release-platform-icon.is-linux { color: #334155; background: #f8fafc; }
.download-primary-action {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; max-width: 100%;
  padding: 10px 15px; border-radius: 11px; border: 1px solid #111827; background: #111827; color: #fff;
  font-size: 14px; font-weight: 840; box-shadow: 0 9px 20px rgba(15, 23, 42, .13);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.download-primary-action:hover { background: #020617; border-color: #020617; transform: translateY(-1px); box-shadow: 0 16px 32px rgba(15, 23, 42, .2); }
.download-primary-action span[aria-hidden="true"] { font-size: 16px; line-height: 1; }
.download-source-list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.download-source-list .btn { min-width: 112px; }
.software-external-links { min-width: 0; display: grid; gap: 8px; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe; }
.software-external-links-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.software-external-links-head > div { display: grid; gap: 2px; }
.software-external-links-head strong { font-size: 13px; }
.software-external-links-head span { color: var(--muted); font-size: 11px; line-height: 1.4; }
.software-external-link-list { display: grid; gap: 7px; }
.software-external-link-row { display: grid; grid-template-columns: minmax(140px, .55fr) minmax(260px, 1.45fr) auto; gap: 8px; align-items: end; }
.software-external-link-row label { min-width: 0; }
.software-external-link-row .btn { margin-bottom: 1px; }
.download-empty-state {
  display: grid; gap: 16px; justify-items: start; padding: 24px; border: 1px dashed #cbd5e1; border-radius: 14px; background: #f8fafc;
}
.download-empty-state p { margin: 0; color: #667085; font-weight: 680; }
.release-notes-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 36px 34px; padding: 18px 0 0;
  border-top: 1px solid rgba(217, 224, 234, .78); color: #667085;
}
.release-notes-strip div { display: grid; gap: 2px; min-width: 0; }
.release-notes-strip strong { color: #111827; font-size: 14px; }
.release-notes-strip span { font-size: 13px; }

.home-icon {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px;
  background: #f4f6f8; color: #344054; border: 1px solid #e3e8ef; flex: 0 0 auto;
}
.home-icon svg { width: 18px; height: 18px; }

.home-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 42px; border-bottom: 1px solid var(--line); }
.home-feature {
  min-height: 138px; display: grid; grid-template-columns: 42px minmax(0, 1fr); grid-template-rows: auto 1fr;
  column-gap: 16px; align-content: start; background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0; padding: 22px 2px;
  box-shadow: none; transition: background-color .16s ease;
}
.home-feature:hover { transform: none; border-color: var(--line); box-shadow: none; background: rgba(255,255,255,.42); }
.home-feature .home-icon { grid-row: 1 / span 2; width: 40px; height: 40px; border-radius: 10px; background: #fff; }
.home-feature h3 { margin: 0 0 7px; font-size: 18px; letter-spacing: 0; }
.home-feature p { margin: 0; color: var(--muted); line-height: 1.62; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 18px; }
.card h3 { margin: 0 0 8px; }
.card p { color: var(--muted); margin: 8px 0; }
.home-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-card {
  min-height: 120px; display: grid; align-content: space-between; gap: 18px;
  box-shadow: none; transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
}
.home-card:hover { border-color: #aab6c7; background: #fbfcfe; transform: translateY(-1px); }
.home-card span { color: var(--muted); font-weight: 760; font-size: 12px; }
.home-card h3 { margin: 0; font-size: 20px; }
.card-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.badge {
  display: inline-flex; min-height: 24px; align-items: center; border-radius: 999px; padding: 2px 9px;
  background: #eef2ff; color: #3730a3; border: 1px solid #c7d2fe; font-weight: 720; font-size: 12px;
}
.badge-active, .badge-ok, .badge-success, .badge-published { background: #ecfdf3; color: #166534; border-color: #bbf7d0; }
.badge-disabled, .badge-revoked, .badge-error { background: #fff1f2; color: #be123c; border-color: #fecdd3; }
.badge-pending_review, .badge-draft, .badge-warning { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.badge-released { background: #f8fafc; color: #475569; border-color: #cbd5e1; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.auth-shell, .install-body { min-height: 100vh; display: grid; place-items: center; padding: 28px; }
.auth-panel, .install-shell .panel { width: min(100%, 720px); }
.install-checks {
  display: grid; gap: 8px; margin: 0 0 18px; padding: 12px; border: 1px solid var(--line);
  border-radius: 8px; background: #f8fafc;
}
.install-checks .check-row {
  display: grid; grid-template-columns: minmax(120px, 1fr) auto minmax(180px, 1.3fr);
  gap: 10px; align-items: center; padding: 8px 10px; border-radius: 7px; background: #fff;
}
.install-checks strong { font-size: 12px; }
.install-checks strong.ok { color: var(--success); }
.install-checks strong.error { color: var(--danger); }
.install-checks small { color: var(--muted); overflow-wrap: anywhere; }
.portal-auth-page {
  min-height: calc(100vh - 72px); display: grid; place-items: start center; padding: 46px 18px 64px;
}
.portal-page { max-width: 1180px; margin: 0 auto; padding: 36px 28px 64px; width: 100%; }
.portal-page-compact { padding-top: 0; }
.portal-narrow-page { max-width: 820px; }
.portal-page-head { margin-bottom: 18px; }
.portal-page-head h1 { margin: 4px 0 0; font-size: 34px; line-height: 1.1; letter-spacing: 0; }
.portal-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 24px;
}
.register-card, .auth-card { width: min(100%, 620px); }
.portal-card-head { margin-bottom: 22px; }
.portal-card-head h1, .portal-card-head h2 { margin: 0; line-height: 1.12; letter-spacing: 0; }
.portal-card-head h1 { font-size: 24px; }
.portal-card-head h2 { font-size: 22px; }
.portal-card-head p { margin: 7px 0 0; color: var(--muted); }
.portal-card .notice { max-width: none; margin: 0 0 14px; }
.portal-form { display: grid; gap: 14px; }
.auth-card .form-link { display: inline-flex; margin-top: 14px; justify-content: center; }
.account-tabs {
  display: flex; align-items: center; gap: 4px; margin: -4px 0 18px; padding: 4px;
  border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.78);
  box-shadow: 0 1px 2px rgba(15, 23, 42, .035); overflow-x: auto; scrollbar-width: thin;
}
.account-tab {
  min-height: 34px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  gap: 7px; padding: 7px 13px; border-radius: 7px; color: var(--muted); font-size: 13px; font-weight: 760; white-space: nowrap;
  transition: background-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.account-tab:hover { background: #f8fafc; color: var(--text); }
.account-tab.is-active {
  background: var(--primary); color: #fff; box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}
.account-tab-notification {
  width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #dc2626;
  box-shadow: 0 0 0 2px #fff;
}
.account-tab.is-active .account-tab-notification { box-shadow: 0 0 0 2px var(--primary); }
.account-feedback-page { max-width: 1120px; }
.account-feedback-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.account-feedback-summary {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px;
}
.account-feedback-summary > div {
  min-width: 0; display: grid; gap: 4px; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff;
}
.account-feedback-summary span { color: var(--muted); font-size: 12px; font-weight: 720; }
.account-feedback-summary strong { font-size: 22px; line-height: 1.2; }
.account-feedback-table-wrap { box-shadow: var(--shadow-soft); }
.account-feedback-table { min-width: 980px; table-layout: fixed; }
.account-feedback-table th,
.account-feedback-table td {
  height: 48px; padding: 8px 12px; vertical-align: middle; white-space: nowrap;
}
.account-feedback-table th { letter-spacing: 0; text-transform: none; }
.account-feedback-table tbody tr { transition: background-color .16s ease; }
.account-feedback-table tbody tr:hover { background: #fbfcfe; }
.account-feedback-table tbody tr.is-unread { background: #fffafa; box-shadow: inset 3px 0 0 #dc2626; }
.account-feedback-table td { min-width: 0; overflow: hidden; color: #334155; font-size: 12px; }
.account-feedback-table time { color: #64748b; font-variant-numeric: tabular-nums; }
.account-feedback-col-created { width: 150px; }
.account-feedback-col-category { width: 92px; }
.account-feedback-col-subject { width: auto; }
.account-feedback-col-product { width: 170px; }
.account-feedback-col-status { width: 100px; }
.account-feedback-col-updated { width: 150px; }
.account-feedback-col-action { width: 74px; }
.account-feedback-row-subject { min-width: 0; display: flex; align-items: center; gap: 7px; }
.account-feedback-row-subject strong,
.account-feedback-product {
  min-width: 0; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.account-feedback-row-subject strong { color: var(--text); font-size: 13px; }
.account-feedback-product { color: #526174; }
.account-feedback-new-dot {
  width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #dc2626;
  box-shadow: 0 0 0 2px #fee2e2;
}
.account-feedback-category,
.account-feedback-status {
  display: inline-flex; align-items: center; justify-content: center; min-height: 23px; max-width: 100%;
  padding: 2px 8px; overflow: hidden; border: 1px solid #dbe3ee; border-radius: 999px;
  background: #f8fafc; color: #475569; font-size: 11px; font-weight: 760; text-overflow: ellipsis; white-space: nowrap;
}
.account-feedback-status.feedback-status-new { border-color: #fde68a; background: #fffbeb; color: #92400e; }
.account-feedback-status.feedback-status-processing { border-color: #bfdbfe; background: #eff6ff; color: #1d4ed8; }
.account-feedback-status.feedback-status-resolved { border-color: #bbf7d0; background: #ecfdf3; color: #166534; }
.account-feedback-status.feedback-status-closed { border-color: #cbd5e1; background: #f8fafc; color: #475569; }
.account-feedback-detail-button { min-height: 28px; padding: 4px 9px; border-radius: 7px; font-size: 12px; }
.account-feedback-dialog { width: min(520px, calc(100vw - 32px)); overflow: hidden; }
.account-feedback-dialog .dialog-panel { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; max-height: calc(100vh - 50px); }
.account-feedback-dialog-body { overflow-y: auto; }
.account-feedback-dialog-body p { margin: 0; color: #334155; line-height: 1.7; overflow-wrap: anywhere; }
.account-feedback-empty { text-align: center; }
.account-feedback-empty p { margin: 6px 0 0; color: var(--muted); }
.account-feedback-pagination { margin-top: 14px; }
.btn.is-disabled, .btn[aria-disabled="true"] { pointer-events: none; opacity: .45; }
.account-download-page { max-width: 1220px; }
.account-download-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.account-download-notes {
  display: inline-flex; align-items: center; gap: 7px; min-height: 34px; color: #334155;
  font-size: 13px; font-weight: 780; text-decoration: none; white-space: nowrap;
}
.account-download-notes:hover { color: #111827; text-decoration: underline; text-underline-offset: 4px; }
.account-download-summary {
  display: grid; grid-template-columns: auto auto minmax(0, 1fr); gap: 8px; align-items: baseline;
  margin-bottom: 14px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, .72);
}
.account-download-summary span { color: var(--muted); font-size: 12px; font-weight: 760; }
.account-download-summary strong { color: var(--text); font-size: 16px; }
.account-download-summary small { color: var(--muted); font-size: 12px; text-align: right; }
.account-release-list { display: grid; gap: 16px; }
.account-release-card {
  min-width: 0; overflow: visible; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  box-shadow: var(--shadow-soft);
}
.account-release-header {
  display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 13px; align-items: center;
  padding: 17px 18px; border-bottom: 1px solid var(--line); background: #fbfcfe; border-radius: 10px 10px 0 0;
}
.account-release-mark {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px; background: #111827; color: #fff; font-size: 16px; font-weight: 850;
}
.account-release-copy { min-width: 0; display: grid; gap: 5px; }
.account-release-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; min-width: 0; }
.account-release-title-row h2 { margin: 0; font-size: 18px; line-height: 1.25; letter-spacing: 0; }
.account-release-copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; overflow-wrap: anywhere; }
.account-release-version,
.account-release-channel {
  display: inline-flex; align-items: center; min-height: 24px; padding: 3px 8px; border: 1px solid #dbe3ee;
  border-radius: 999px; background: #fff; color: #334155; font-size: 11px; font-weight: 800; line-height: 1;
}
.account-release-channel.is-beta { border-color: #bbf7d0; background: #f0fdf4; color: #166534; }
.account-release-channel.is-internal { border-color: #fde68a; background: #fffbeb; color: #92400e; }
.account-release-header time { color: var(--muted); font-size: 12px; font-weight: 700; white-space: nowrap; }
.account-package-table { min-width: 0; }
.account-package-table-head,
.account-package-row {
  display: grid; grid-template-columns: minmax(300px, 1fr) 108px 112px 172px; gap: 14px; align-items: center;
}
.account-package-table-head {
  min-height: 38px; padding: 0 18px; border-bottom: 1px solid var(--line); color: var(--muted);
  font-size: 11px; font-weight: 780; text-transform: uppercase; letter-spacing: .05em;
}
.account-package-list { display: grid; }
.account-package-row {
  position: relative; min-width: 0; min-height: 82px; padding: 13px 18px; border-bottom: 1px solid #edf1f6;
  transition: background-color .16s ease, box-shadow .16s ease;
}
.account-package-row:last-child { border-bottom: 0; border-radius: 0 0 10px 10px; }
.account-package-row:hover { background: #fbfcfe; }
.account-package-row.is-current-platform { background: #f8fafc; box-shadow: inset 3px 0 0 #64748b; }
.account-package-identity { min-width: 0; display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 12px; align-items: center; }
.account-package-identity .home-release-platform-icon { width: 42px; height: 42px; border-radius: 10px; }
.account-package-identity .home-release-platform-icon svg { width: 21px; height: 21px; }
.account-package-identity > div { min-width: 0; }
.account-package-name-row { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; min-width: 0; }
.account-package-name-row h3 { margin: 0; font-size: 14px; line-height: 1.3; letter-spacing: 0; }
.account-package-identity p {
  margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.4;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.account-current-platform {
  display: none; min-height: 21px; align-items: center; padding: 2px 7px; border-radius: 999px;
  background: #e9eef5; color: #475569; font-size: 10px; font-weight: 800;
}
.account-package-row.is-current-platform .account-current-platform { display: inline-flex; }
.account-package-meta { min-width: 0; display: grid; gap: 3px; }
.account-package-meta span { display: none; color: var(--muted); font-size: 10px; font-weight: 720; }
.account-package-meta strong { color: #1f2937; font-size: 12px; line-height: 1.35; overflow-wrap: anywhere; }
.account-package-download { position: relative; min-width: 0; display: grid; gap: 4px; justify-items: stretch; }
.account-package-download > small { color: var(--muted); font-size: 10px; text-align: center; overflow-wrap: anywhere; }
.account-package-action,
.account-download-source-menu > summary {
  min-height: 36px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 7px 12px; border: 1px solid #111827; border-radius: 8px; background: #111827; color: #fff;
  font-size: 12px; font-weight: 820; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.account-package-action:hover,
.account-download-source-menu > summary:hover,
.account-download-source-menu[open] > summary {
  border-color: #020617; background: #020617; box-shadow: 0 8px 18px rgba(15, 23, 42, .14); transform: translateY(-1px);
}
.account-download-source-menu { position: relative; width: 100%; }
.account-download-source-menu > summary { list-style: none; }
.account-download-source-menu > summary::-webkit-details-marker { display: none; }
.account-download-source-menu > summary span:last-child { font-size: 15px; transition: transform .16s ease; }
.account-download-source-menu[open] > summary span:last-child { transform: rotate(180deg); }
.account-download-source-popover {
  position: absolute; top: 100%; right: 0; z-index: 20; width: min(260px, calc(100vw - 36px)); display: grid; gap: 5px;
  padding: 7px; padding-top: 12px; border-radius: 10px; background: #fff;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, .16));
}
.account-download-source-popover::before {
  content: ''; position: absolute; inset: 6px 0 0; z-index: -1; border: 1px solid #cbd5e1; border-radius: 10px; background: #fff;
}
.account-download-source-popover a {
  min-width: 0; display: grid; gap: 2px; padding: 9px 10px; border-radius: 7px; color: #1f2937; text-decoration: none;
}
.account-download-source-popover a:hover { background: #f1f5f9; }
.account-download-source-popover span { font-size: 12px; font-weight: 800; }
.account-download-source-popover small { color: var(--muted); font-size: 10px; overflow-wrap: anywhere; }
.account-package-unavailable {
  min-height: 36px; display: inline-flex; align-items: center; justify-content: center; padding: 7px 10px;
  border: 1px solid var(--line); border-radius: 8px; background: #f8fafc; color: var(--muted); font-size: 11px; font-weight: 720;
}
.account-download-empty { border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow-soft); }
.portal-home-page { padding-top: 46px; }
.portal-home-grid, .portal-card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.portal-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.portal-entry-card {
  min-height: 148px; display: grid; align-content: space-between; gap: 18px;
  transition: border-color .16s ease, background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.portal-entry-card:hover, .portal-list-card:hover {
  border-color: #b8c3d4; background: #fbfcfe; transform: translateY(-1px); box-shadow: var(--shadow-lift);
}
.portal-entry-card h2, .portal-list-card h3 { margin: 0; line-height: 1.18; letter-spacing: 0; }
.portal-entry-card h2 { font-size: 22px; }
.portal-entry-card p, .portal-list-card p { margin: 8px 0 0; color: var(--muted); }
.portal-release-card { margin-top: 18px; }
.portal-release-card .form-actions { margin-top: 18px; }
.portal-list-card { min-height: 184px; display: flex; flex-direction: column; gap: 10px; }
.portal-list-card .btn { margin-top: auto; align-self: flex-start; }
.announcements-page { max-width: 1080px; }
.announcement-list { display: grid; gap: 14px; }
.announcement-card { padding: 20px; }
.announcement-card-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line); margin-bottom: 12px;
}
.announcement-card-head h2 { margin: 0; font-size: 20px; line-height: 1.25; letter-spacing: 0; }
.announcement-card-head time { color: var(--muted); font-size: 12px; font-weight: 700; white-space: nowrap; }
.announcement-content { color: #334155; line-height: 1.72; overflow-wrap: anywhere; }
.contact-page { max-width: 1080px; }
.contact-page-lead { max-width: 720px; margin: 8px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: start; }
.contact-card { min-height: 128px; display: grid; gap: 10px; align-content: start; padding: 20px; }
.contact-card-label { color: var(--muted); font-size: 12px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.contact-card a, .contact-card strong { color: var(--text); font-size: 18px; font-weight: 780; line-height: 1.35; overflow-wrap: anywhere; }
.contact-card a:hover { color: #334155; text-decoration: underline; text-underline-offset: 3px; }
.contact-qr-card { min-height: 0; justify-items: start; }
.contact-qr-card img {
  width: min(100%, 220px); aspect-ratio: 1 / 1; object-fit: contain; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; padding: 10px;
}
.contact-extra-card { grid-column: span 2; }
.contact-extra-text { color: #334155; line-height: 1.72; overflow-wrap: anywhere; }
.license-card-grid { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); align-items: start; }
.license-list-card { padding: 0; overflow: hidden; }
.license-list-head,
.license-list-main {
  display: grid; grid-template-columns: minmax(240px, 1.45fr) minmax(220px, 1.25fr) 100px 140px 92px;
  gap: 16px; align-items: center;
}
.license-list-head {
  padding: 12px 18px; border-bottom: 1px solid var(--line); background: #f8fafc; color: var(--muted);
  font-size: 12px; font-weight: 760;
}
.license-list-row { border-bottom: 1px solid var(--line); }
.license-list-row:last-child { border-bottom: 0; }
.license-list-main { padding: 16px 18px; }
.license-list-main > div { min-width: 0; }
.license-list-name span,
.license-list-field span,
.license-list-status span {
  display: none; color: var(--muted); font-size: 12px; font-weight: 720; margin-bottom: 3px;
}
.license-list-name strong,
.license-list-field strong {
  display: block; color: var(--text); font-size: 14px; line-height: 1.35; overflow-wrap: anywhere;
}
.license-list-name code {
  display: block; margin-top: 5px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px; line-height: 1.4; overflow-wrap: anywhere; word-break: break-all;
}
.license-list-field small {
  display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.4; overflow-wrap: anywhere;
}
.license-list-status { display: flex; align-items: center; justify-content: flex-start; }
.license-list-activations {
  margin: 0 18px 16px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe; overflow: hidden;
}
.license-list-activations summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 40px; padding: 10px 12px;
  cursor: pointer; color: var(--text); font-size: 13px; font-weight: 780; list-style: none;
}
.license-list-activations summary::-webkit-details-marker { display: none; }
.license-list-activations summary strong { color: var(--muted); font-size: 12px; }
.license-list-activations[open] summary { border-bottom: 1px solid var(--line); }
.license-list-activation-body { display: grid; gap: 10px; padding: 12px; }
.license-activation-list {
  display: grid; gap: 10px; margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line);
}
.license-activation-list > strong { font-size: 13px; }
.license-activation-item {
  display: grid; gap: 8px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe; padding: 10px;
}
.license-activation-meta {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(96px, .8fr) minmax(96px, .7fr); gap: 10px;
}
.license-activation-meta div { min-width: 0; }
.license-activation-meta span,
.license-activation-code-head span {
  display: block; color: var(--muted); font-size: 12px; font-weight: 720; margin-bottom: 3px;
}
.license-activation-meta code {
  display: block; color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px; line-height: 1.4; overflow-wrap: anywhere; word-break: break-all;
}
.license-activation-meta strong { display: block; font-size: 12px; line-height: 1.4; overflow-wrap: anywhere; }
.license-activation-code-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.license-activation-code-head span { margin-bottom: 0; }
.license-activation-code {
  width: 100%; min-height: 76px; resize: vertical; background: #fff; font-size: 12px;
}
.license-activation-empty { margin: 0; color: var(--muted); font-size: 13px; }
.portal-card-grid > .empty-state {
  grid-column: 1 / -1; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-soft);
}
.portal-stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 16px; }
.stat-card-note { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 680; }
.portal-timeline { display: grid; gap: 16px; }
.release-notes-page-head p { max-width: 680px; margin-top: 8px; color: var(--muted); }
.release-note-header {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 18px;
}
.release-note-heading { min-width: 0; display: grid; gap: 7px; }
.release-note-meta { display: grid; justify-items: end; gap: 8px; }
.release-note-meta time { color: var(--muted); font-size: 12px; font-weight: 680; white-space: nowrap; }
.release-note-title-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.release-note-title-row h2 { margin: 0; font-size: 22px; line-height: 1.2; }
.release-note-title-row > span { color: #334155; font-size: 15px; font-weight: 760; }
.release-note-heading > p { margin: 0; color: #475569; font-size: 14px; line-height: 1.55; }
.release-note-platforms {
  display: grid; gap: 8px; margin-top: 18px;
}
.release-note-section-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: #334155; font-size: 12px; font-weight: 760;
}
.release-note-section-head small { color: var(--muted); font: inherit; font-weight: 650; }
.release-note-platform-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px;
}
.release-note-platform {
  min-width: 0; min-height: 52px; display: grid; align-content: center; gap: 3px; padding: 9px 11px;
  border: 1px solid #dbe3ee; border-radius: 6px; background: #f8fafc; color: #334155; line-height: 1.3;
}
.release-note-platform strong { min-width: 0; color: #1e293b; font-size: 12px; font-weight: 760; overflow-wrap: anywhere; }
.release-note-platform small {
  min-width: 0; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px; font-weight: 650; overflow-wrap: anywhere;
}
.release-note-platform.is-empty { color: var(--muted); font-weight: 640; }
.release-note-content { display: grid; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.release-note-content-label { color: #334155; font-size: 12px; font-weight: 760; }
.release-note-content p { margin: 0; color: #334155; font-size: 14px; line-height: 1.8; }
.release-notes-pagination { margin-top: 18px; }
.documentation-page { max-width: 1240px; }
.documentation-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 340px); gap: 32px; align-items: end;
  padding: 14px 0 26px; border-bottom: 1px solid var(--line);
}
.documentation-hero h1 { max-width: 720px; margin: 6px 0 10px; font-size: 42px; line-height: 1.08; letter-spacing: 0; }
.documentation-hero > div:first-child > p { max-width: 760px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.documentation-hero-note {
  display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; align-items: start;
  padding: 13px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.documentation-hero-note .home-icon { width: 34px; height: 34px; }
.documentation-hero-note p { margin: 0; color: #475569; font-size: 13px; font-weight: 670; line-height: 1.55; }
.documentation-quick-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 22px 0 28px; }
.documentation-quick-action {
  min-width: 0; display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 10px; align-items: start;
  padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow-soft);
  color: var(--text); transition: border-color .16s ease, background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.documentation-quick-action:hover { border-color: #b8c3d4; background: #fbfcfe; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.documentation-quick-action .home-icon { width: 34px; height: 34px; }
.documentation-quick-action div { min-width: 0; display: grid; gap: 3px; }
.documentation-quick-action strong { font-size: 14px; line-height: 1.35; }
.documentation-quick-action span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.documentation-quick-action .documentation-action-arrow { align-self: center; color: #475569; font-size: 16px; font-weight: 760; }
.documentation-search {
  display: grid; grid-template-columns: 28px auto minmax(220px, 1fr) auto; gap: 10px; align-items: center;
  margin: -8px 0 26px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.documentation-search .home-icon { width: 28px; height: 28px; }
.documentation-search label { color: #334155; font-size: 13px; font-weight: 780; white-space: nowrap; }
.documentation-search input { width: 100%; min-height: 38px; padding: 8px 11px; border-radius: 7px; background: #fff; font-size: 13px; }
.documentation-search > span:last-child { min-width: 120px; color: var(--muted); font-size: 12px; text-align: right; }
.documentation-content { min-width: 0; display: grid; gap: 30px; }
.documentation-chapter-header { max-width: 880px; padding: 12px 0 24px; }
.documentation-back-link {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px;
  color: #475569; font-size: 13px; font-weight: 780;
}
.documentation-back-link:hover { color: var(--text); }
.documentation-chapter-header h1 { margin: 6px 0 10px; font-size: 38px; line-height: 1.12; letter-spacing: 0; }
.documentation-chapter-header p { max-width: 760px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.68; }
.documentation-browser { min-width: 0; }
.documentation-section-head { max-width: 760px; margin-bottom: 14px; }
.documentation-section-head h2 { margin: 5px 0 7px; font-size: 25px; line-height: 1.16; letter-spacing: 0; }
.documentation-section-head p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.documentation-browser-head { margin-bottom: 16px; }
.documentation-chapter-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: stretch;
}
.documentation-chapter-card {
  min-width: 0; min-height: 230px; display: flex; flex-direction: column; gap: 16px; padding: 16px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow-soft); color: var(--text);
  transition: border-color .16s ease, background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.documentation-chapter-card:hover { border-color: #b8c3d4; background: #fbfcfe; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.documentation-chapter-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.documentation-chapter-card-head .home-icon { width: 34px; height: 34px; }
.documentation-chapter-card-head > span { color: #64748b; font-size: 11px; font-weight: 820; text-transform: uppercase; }
.documentation-chapter-card-body { display: grid; gap: 8px; }
.documentation-chapter-card-body h3 { margin: 0; font-size: 17px; line-height: 1.35; letter-spacing: 0; }
.documentation-chapter-card-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.documentation-chapter-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px;
  border-top: 1px solid #e8edf3; color: #64748b; font-size: 12px;
}
.documentation-chapter-card-foot strong { color: #334155; font-size: 12px; font-weight: 800; }
.documentation-guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.documentation-guide {
  min-width: 0; display: flex; flex-direction: column; gap: 11px; padding: 16px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow-soft);
}
.documentation-guide.is-planned { background: #fbfcfe; border-style: dashed; }
.documentation-guide-head { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; align-items: start; }
.documentation-guide-head .home-icon { width: 34px; height: 34px; }
.documentation-guide-head div { min-width: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.documentation-guide h3 { margin: 0; color: var(--text); font-size: 16px; line-height: 1.35; letter-spacing: 0; }
.documentation-status {
  flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 22px; padding: 2px 7px;
  border: 1px solid #b7efca; border-radius: 999px; background: #ecfdf3; color: #087443; font-size: 11px; font-weight: 800; line-height: 1.2;
}
.documentation-status.is-planned { border-color: #d7dee8; background: #f1f5f9; color: #526174; }
.documentation-guide > p { margin: 0; color: #526174; font-size: 13px; line-height: 1.62; }
.documentation-guide-block { display: grid; gap: 7px; padding-top: 2px; }
.documentation-guide-block h4 { margin: 0; color: #334155; font-size: 12px; font-weight: 820; line-height: 1.35; }
.documentation-bullets { display: grid; gap: 5px; margin: 0; padding: 0 0 0 19px; color: #526174; font-size: 12px; line-height: 1.55; }
.documentation-bullets li { padding-left: 2px; }
.documentation-bullets li::marker { color: #94a3b8; }
.documentation-steps { display: grid; gap: 6px; margin: 0; padding: 0 0 0 20px; color: #334155; font-size: 13px; line-height: 1.58; }
.documentation-steps li { padding-left: 2px; }
.documentation-steps li::marker { color: #64748b; font-weight: 800; }
.documentation-result { padding: 9px 10px; border: 1px solid #d8e3ee; border-radius: 7px; background: #f8fafc; color: #334155 !important; font-size: 12px !important; }
.documentation-result strong { margin-right: 4px; color: #0f172a; font-weight: 820; }
.documentation-note { padding: 9px 10px; border-left: 2px solid #94a3b8; background: #f8fafc; color: #526174 !important; font-size: 12px !important; line-height: 1.55 !important; }
.documentation-guide-link { margin-top: auto; color: #334155; font-size: 13px; font-weight: 800; }
.documentation-guide-link:hover { color: #0f172a; text-decoration: underline; text-underline-offset: 3px; }
.documentation-chapter-pager {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding-top: 4px;
}
.documentation-chapter-pager a {
  min-width: 0; display: grid; gap: 4px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--text);
}
.documentation-chapter-pager a:hover { border-color: #b8c3d4; background: #fbfcfe; }
.documentation-chapter-pager a > span { color: var(--muted); font-size: 11px; font-weight: 720; }
.documentation-chapter-pager a > strong { overflow-wrap: anywhere; font-size: 13px; line-height: 1.45; }
.documentation-chapter-pager .is-next { text-align: right; }
.documentation-custom-content { padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe; }
.documentation-custom-content .eyebrow { display: block; margin-bottom: 10px; }
.documentation-custom-content .prose { margin: 0; white-space: normal; overflow-wrap: anywhere; }
.documentation-support {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0 0;
  border-top: 1px solid var(--line);
}
.documentation-support h2 { margin: 0 0 5px; font-size: 20px; line-height: 1.25; letter-spacing: 0; }
.documentation-support p { max-width: 650px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.documentation-support > div:last-child { display: flex; flex: 0 0 auto; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.table-card { padding: 0; overflow: hidden; }
.table-card .table-wrap { border: 0; border-radius: 0; }
.table-card table { min-width: 720px; }
.verification-row {
  display: grid; grid-template-columns: minmax(0, 1fr) 128px; gap: 12px; align-items: end;
}
.verification-row .btn { min-height: 40px; }
.field-hint { margin: -6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.register-progress {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin: -8px 0 18px;
}
.register-progress span {
  height: 4px; border-radius: 999px; background: #e5eaf1;
}
.register-progress .is-active { background: #111827; }
.register-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--line);
  border-radius: 8px; background: #fbfcfe; padding: 10px 12px; min-width: 0;
}
.register-summary span { color: var(--muted); font-size: 12px; font-weight: 720; }
.register-summary strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.register-actions { display: flex; justify-content: space-between; gap: 10px; }
.register-actions .btn { min-width: 112px; }
.captcha-row {
  display: grid; grid-template-columns: minmax(0, 1fr) 204px; gap: 12px; align-items: end;
}
.captcha-image-wrap {
  display: grid; grid-template-columns: 132px 60px; gap: 8px; align-items: center;
}
.captcha-image {
  width: 132px; height: 42px; border: 1px solid var(--line); border-radius: 8px; background: #f8fafc; display: block;
}
.captcha-refresh {
  min-height: 42px; padding: 0 10px;
}
.agreement-row {
  display: flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 620;
}
.agreement-row input { width: 16px; height: 16px; min-height: 0; flex: 0 0 auto; }
.agreement-row span { font-size: 13px; }
.agreement-row a { color: var(--text); font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }
.password-rules {
  display: grid; gap: 7px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe; padding: 12px;
  color: var(--muted); font-size: 13px;
}
.password-rules span { display: flex; align-items: center; gap: 8px; }
.password-rules span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #cbd5e1; flex: 0 0 auto;
}
.password-rules .is-valid { color: var(--success); font-weight: 680; }
.password-rules .is-valid::before { background: var(--success); }
.password-rules .is-invalid { color: var(--danger); }
.password-rules .is-invalid::before { background: var(--danger); }
.username-field-stack { display: grid; gap: 7px; min-width: 0; align-content: start; }
.username-rules {
  display: flex; flex-wrap: wrap; gap: 6px 12px; border: 1px solid var(--line); border-radius: 8px;
  background: #fbfcfe; padding: 9px 10px; color: var(--muted); font-size: 12px; line-height: 1.35;
}
.username-rules span { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.username-rules span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #cbd5e1; flex: 0 0 auto;
}
.username-rules .is-valid { color: var(--success); font-weight: 680; }
.username-rules .is-valid::before { background: var(--success); }
.username-rules .is-invalid { color: var(--danger); }
.username-rules .is-invalid::before { background: var(--danger); }
.username-rules .is-checking { color: #475569; }
.username-rules .is-checking::before { background: #64748b; }
.username-rules .is-muted { color: var(--muted); }
.username-availability { flex-basis: 100%; padding-top: 6px; border-top: 1px solid var(--line); }
input.username-is-valid,
input.password-confirm-is-valid { border-color: #86d5a7; box-shadow: 0 0 0 2px rgba(22, 163, 74, .08); }
input.username-is-invalid,
input.password-confirm-is-invalid { border-color: #f0a39a; box-shadow: 0 0 0 2px rgba(220, 38, 38, .07); }
.field-validation-message { margin: -2px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.field-validation-message.is-valid { color: var(--success); font-weight: 680; }
.field-validation-message.is-invalid { color: var(--danger); }
.admin-shell .username-rules { gap: 4px 8px; padding: 6px 8px; font-size: 11px; }
.portal-divider {
  display: flex; align-items: center; gap: 12px; margin: 22px 0 14px; color: var(--muted); font-size: 13px;
}
.portal-divider::before, .portal-divider::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.mfa-setup-grid {
  display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 18px; align-items: stretch;
}
.mfa-qr-card {
  border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 14px;
  display: grid; gap: 10px; place-items: center; text-align: center; color: var(--muted); font-size: 12px;
}
.mfa-qr {
  width: 144px; height: 144px; display: grid; place-items: center; overflow: hidden;
}
.mfa-qr svg { width: 144px; height: 144px; display: block; }
.mfa-secret-stack { display: grid; gap: 10px; align-content: start; min-width: 0; }
.admin-security-page { max-width: 960px; }
.admin-security-head { margin-bottom: 14px; }
.admin-security-console {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.admin-security-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.admin-security-summary-grid article {
  min-width: 0;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 9px 11px;
}
.admin-security-summary-grid article.is-enabled { border-color: #bbf7d0; background: #f0fdf4; }
.admin-security-summary-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.admin-security-summary-grid span {
  color: #64748b;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.admin-security-summary-grid strong {
  min-width: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-security-summary-grid small {
  min-width: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 680;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-mfa-card { padding: 18px; }
.activation-grid { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(520px, 1.18fr); gap: 18px; align-items: start; }
.license-summary-card, .activation-card { min-height: 100%; }
.license-identity {
  display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; gap: 12px; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.license-avatar {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 8px; background: #111827; color: #fff;
  font-size: 20px; font-weight: 820; letter-spacing: .02em;
}
.license-avatar-license {
  background: #f8fafc; color: #111827; border: 1px solid var(--line); box-shadow: inset 0 0 0 1px #fff;
}
.license-avatar-license svg {
  width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.license-identity strong, .license-identity span { display: block; }
.license-identity span { color: var(--muted); font-size: 13px; margin-top: 2px; }
.detail-list { display: grid; margin: 16px 0; border-top: 1px solid var(--line); }
.detail-list div {
  display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line);
}
.detail-list dt { color: var(--muted); font-weight: 680; }
.detail-list dd { margin: 0; color: var(--text); font-weight: 720; text-align: right; overflow-wrap: anywhere; }
.activation-license-list { display: grid; gap: 8px; margin: 0 0 16px; }
.activation-license-list article {
  display: grid; gap: 5px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.activation-license-list strong, .activation-license-list span, .activation-license-list small { display: block; min-width: 0; overflow-wrap: anywhere; }
.activation-license-list strong { color: var(--text); font-size: 13px; line-height: 1.35; }
.activation-license-list span, .activation-license-list small { color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 680; }
.activation-output { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.activation-output-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.request-code-preview {
  display: grid; gap: 8px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe; padding: 10px 12px;
}
.request-code-preview div {
  display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 10px; align-items: start;
}
.request-code-preview span { color: var(--muted); font-size: 12px; font-weight: 720; }
.request-code-preview code {
  color: var(--text); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px;
  line-height: 1.45; overflow-wrap: anywhere; word-break: break-all;
}
.copy-button {
  border: 1px solid var(--line); background: #fff; color: var(--muted); border-radius: 8px; padding: 6px 10px; font-weight: 700;
}
.copy-button:hover { color: var(--text); border-color: #b8c3d4; background: #f8fafc; }
.button-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.admin-dialog {
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 30px 80px rgba(15, 23, 42, .2);
}
.admin-dialog::backdrop { background: rgba(15, 23, 42, .34); }
.dialog-panel { margin: 0; }
.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--line);
}
.dialog-head h3 { margin: 3px 0 0; font-size: 20px; line-height: 1.2; }
.dialog-body { padding: 16px 18px; }
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 18px 16px;
  border-top: 1px solid var(--line);
}
.software-edit-dialog textarea { min-height: 112px; }
.activation-code-box {
  width: 100%; min-height: 124px; border-color: var(--line); background: #fbfcfe; resize: vertical;
}
.activation-output p { margin: 10px 0 0; color: var(--muted); }
.panel { padding: 20px; margin-bottom: 18px; }
.form-stack { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-subhead {
  border-top: 1px solid var(--line); padding-top: 14px; color: var(--muted); font-size: 12px; font-weight: 760;
  text-transform: uppercase; letter-spacing: .08em;
}
.span-2 { grid-column: span 2; }
.span-3 { grid-column: 1 / -1; }
label { display: grid; gap: 7px; color: var(--text); font-weight: 680; }
label span { font-size: 13px; }
.field-group { display: grid; gap: 7px; color: var(--text); font-weight: 680; }
.field-group > span { font-size: 13px; }
.cms-image-preview {
  display: grid; gap: 8px; color: var(--text); font-weight: 680;
}
.cms-image-preview span { font-size: 12px; }
.cms-image-preview img {
  width: min(100%, 560px); border: 1px solid var(--line); border-radius: 8px; background: #fff;
  aspect-ratio: 1580 / 995; object-fit: cover; box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.cms-qr-preview img {
  width: min(100%, 180px); aspect-ratio: 1 / 1; object-fit: contain; padding: 8px;
}
.cms-home-form {
  grid-template-columns: 1fr;
  gap: 10px;
}
.cms-overview-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-bottom: 10px;
}
.cms-overview-grid article {
  min-width: 0; display: grid; gap: 4px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.cms-overview-grid span {
  color: #64748b; font-size: 11px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase;
}
.cms-overview-grid strong {
  min-width: 0; color: #111827; font-size: 16px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cms-overview-grid small {
  min-width: 0; color: #64748b; font-size: 12px; font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cms-home-form > .span-3,
.cms-home-form > .form-actions { grid-column: 1 / -1; }
.cms-home-mode {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 10px;
  align-items: end;
}
.cms-home-group {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcfe;
}
.cms-home-group-head,
.cms-home-details > summary {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}
.cms-home-group-head strong,
.cms-home-details > summary strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}
.cms-home-group-head span,
.cms-home-details > summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
  text-align: right;
}
.cms-home-details { padding-top: 10px; }
.cms-home-details > summary {
  list-style: none;
  cursor: pointer;
  padding-top: 0;
}
.cms-home-details > summary::-webkit-details-marker { display: none; }
.cms-home-details > summary::after {
  content: "+";
  margin-left: 4px;
  color: var(--muted);
  font-weight: 820;
}
.cms-home-details[open] > summary::after { content: "-"; }
.cms-home-detail-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
}
.cms-home-group > .span-2,
.cms-home-detail-grid > .span-2 { grid-column: span 2; }
.cms-home-group > .span-3,
.cms-home-detail-grid > .span-3 { grid-column: 1 / -1; }
.cms-home-media-group .cms-image-preview { margin-bottom: 0; }
.cms-home-actions {
  position: sticky;
  bottom: 0;
  z-index: 8;
  margin: 0;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
}
.compact-help-text {
  align-self: end; min-height: 38px; display: flex; align-items: center; padding: 8px 11px;
  border: 1px solid #dbe3ee; border-radius: 8px; background: #f8fafc; color: #667085; font-size: 12px; line-height: 1.45;
}
.admin-section-divider {
  display: flex; align-items: center; gap: 12px; margin-top: 4px; color: #475569; font-size: 12px; font-weight: 820;
  text-transform: uppercase; letter-spacing: .07em;
}
.admin-section-divider::before,
.admin-section-divider::after { content: ""; height: 1px; flex: 1; background: #e2e8f0; }
.nav-settings-grid {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px;
}
.nav-settings-block {
  min-width: 0; display: grid; gap: 9px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe; padding: 12px;
}
.nav-settings-block-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding-bottom: 8px; border-bottom: 1px solid #e2e8f0;
}
.nav-settings-block-head strong { color: var(--text); font-size: 14px; }
.nav-settings-block-head span { color: var(--muted); font-size: 12px; font-weight: 650; }
.nav-settings-table-wrap { border-radius: 8px; }
.nav-settings-table { min-width: 0; font-size: 12px; }
.nav-settings-table th,
.nav-settings-table td { padding: 8px 9px; }
.nav-settings-table th:first-child,
.nav-settings-table td:first-child { width: 74px; }
.nav-settings-table th:nth-child(3),
.nav-settings-table td:nth-child(3) { width: 58px; text-align: center; }
.nav-settings-table th:last-child,
.nav-settings-table td:last-child { width: 78px; }
.nav-menu-cell {
  display: grid; gap: 2px; min-width: 0;
}
.nav-menu-cell label { display: block; min-width: 0; }
.nav-menu-cell input {
  min-height: 31px; padding: 5px 8px; border-radius: 7px; font-size: 12px; font-weight: 760;
}
.nav-menu-cell code {
  color: #64748b; font-size: 11px; line-height: 1.25; background: transparent; border: 0; padding: 0;
  white-space: normal; overflow-wrap: anywhere;
}
.nav-visible-check {
  width: max-content; min-height: 28px; gap: 6px; font-size: 12px; font-weight: 760;
}
.nav-visible-check input[type="checkbox"] {
  width: 15px; height: 15px; min-height: 0; padding: 0; margin: 0; flex: 0 0 15px; accent-color: #111827;
}
.nav-position-label {
  min-width: 28px; display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 7px; border: 1px solid #dbe3ee; border-radius: 999px; background: #fff;
  color: #475569; font-size: 12px; font-weight: 820; line-height: 1.2;
}
.nav-sort-input {
  width: 68px; min-height: 30px; padding: 5px 7px; text-align: center;
}
.nav-order-actions {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.nav-order-actions .btn-compact {
  width: 30px; min-height: 28px; padding: 4px 0; border-radius: 7px; font-size: 13px; line-height: 1; box-shadow: none;
}
.nav-settings-table tr.is-reordered {
  animation: nav-reordered-pulse .42s ease;
}
@keyframes nav-reordered-pulse {
  0% { background: #eef6ff; }
  100% { background: transparent; }
}
input, select, textarea {
  width: 100%; border: 1px solid #cbd5e1; border-radius: 8px; background: #fff; color: var(--text);
  padding: 9px 11px; min-height: 38px; outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 23, 42, .12); }
input:disabled, select:disabled, textarea:disabled { cursor: not-allowed; color: var(--muted); background: #f5f7fb; }
.check-row { display: flex; align-items: center; gap: 8px; }
.check-row input { width: auto; min-height: auto; }
.form-actions { display: flex; align-items: end; justify-content: flex-end; }
.form-actions.split { justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.form-link { color: var(--primary); font-weight: 700; }
.output-code { min-height: 160px; }
.code-box {
  border: 1px solid var(--line); border-radius: 8px; background: #f8fafc; padding: 12px;
  overflow-wrap: anywhere;
}
.code-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.code-grid code { background: #f8fafc; border: 1px solid var(--line); border-radius: 8px; padding: 10px; text-align: center; }
.prose { color: #334155; line-height: 1.7; }

.multi-select-dropdown { position: relative; width: 100%; }
.multi-select-dropdown summary {
  list-style: none; min-height: 38px; border: 1px solid #cbd5e1; border-radius: 8px; background: #fff;
  padding: 9px 34px 9px 11px; cursor: pointer; font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.multi-select-dropdown summary::-webkit-details-marker { display: none; }
.multi-select-dropdown summary::after {
  content: ""; position: absolute; right: 13px; top: 16px; width: 8px; height: 8px;
  border-right: 1.5px solid #64748b; border-bottom: 1.5px solid #64748b; transform: rotate(45deg);
}
.multi-select-dropdown[open] summary {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 23, 42, .12);
}
.multi-select-menu {
  position: absolute; z-index: 20; left: 0; right: 0; top: calc(100% + 6px); max-height: 260px; overflow: auto;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 18px 38px rgba(15, 23, 42, .16);
  padding: 6px;
}
.multi-select-option {
  display: flex; align-items: flex-start; gap: 8px; padding: 8px; border-radius: 7px; cursor: pointer; font-weight: 680;
}
.multi-select-option:hover { background: #f8fafc; }
.multi-select-option input { width: auto; min-height: auto; margin-top: 3px; }
.multi-select-option span { display: grid; gap: 2px; min-width: 0; }
.multi-select-option strong { font-size: 13px; }
.multi-select-option small { color: var(--muted); font-size: 12px; font-weight: 650; }
.multi-select-empty { padding: 10px; color: var(--muted); font-size: 13px; }

.notice {
  max-width: 1200px; margin: 16px auto; border-radius: 8px; padding: 12px 14px; border: 1px solid var(--line);
  background: #fff; color: var(--text);
}
.notice-success { background: #f0fdf4; border-color: #bbf7d0; color: var(--success); }
.notice-error { background: #fff7ed; border-color: #fed7aa; color: var(--danger); }
.notice-info { background: #f8fafc; border-color: #cbd5e1; color: #334155; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 18px; }
.stat-card { padding: 18px; }
.stat-card span { display: block; color: var(--muted); font-weight: 680; }
.stat-card strong { display: block; font-size: 32px; margin-top: 4px; }
.quick-grid, .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.quick-card { padding: 20px; font-weight: 760; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #f8fafc; color: #475569; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
tr:last-child td { border-bottom: 0; }
.empty-state { padding: 22px; color: var(--muted); text-align: center; }
.table-note { margin: 6px 0 0; color: var(--muted); line-height: 1.5; max-width: 460px; white-space: normal; }
.inline-form { display: inline-flex; align-items: center; gap: 8px; margin: 2px 0; }
.inline-form input { width: 150px; }
.admin-shell .inline-form {
  display: inline-flex; align-items: center; gap: 5px; margin: 0; flex-wrap: wrap; max-width: 100%;
}
.admin-shell .inline-form input:not([type="hidden"]),
.admin-shell .inline-form select {
  width: auto; min-width: 68px; max-width: 148px; min-height: 28px; padding: 4px 7px; border-radius: 7px; font-size: 12px;
}
.admin-shell .inline-form input[type="number"] { width: 64px; }
.admin-shell .inline-form .btn {
  min-height: 28px; padding: 4px 8px; border-radius: 7px; font-size: 12px;
}

.app-shell { display: grid; grid-template-columns: 244px minmax(0, 1fr); min-height: 100vh; }
.sidebar {
  background: #0f172a; color: #dbeafe; padding: 22px 16px; position: sticky; top: 0; height: 100vh;
}
.sidebar .brand { color: #fff; margin-bottom: 22px; }
  .sidebar .brand-mark { background: #334155; }
.sidebar nav { display: grid; gap: 4px; }
.sidebar nav a { padding: 10px 12px; border-radius: 8px; color: #cbd5e1; font-weight: 700; }
.sidebar nav a:hover, .sidebar nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-nav { align-content: start; }
.nav-group { border-radius: 8px; }
.nav-group summary {
  position: relative; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 10px; border-radius: 8px; color: #94a3b8; cursor: pointer; font-size: 12px; font-weight: 820;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary span {
  min-width: 0; white-space: normal; overflow-wrap: anywhere;
}
.nav-group summary small {
  min-width: 20px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  margin-left: auto; padding: 0 6px; border-radius: 999px; background: rgba(148, 163, 184, .14);
  color: #cbd5e1; font-size: 10px; font-weight: 820; line-height: 1; flex: 0 0 auto;
}
.nav-group summary::after {
  content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg); transition: transform .16s ease;
  flex: 0 0 auto;
}
.nav-group[open] summary { color: #fff; background: rgba(255,255,255,.06); }
.nav-group[open] summary small { background: rgba(255,255,255,.13); color: #fff; }
.nav-group[open] summary::after { transform: rotate(45deg); }
.nav-submenu { display: grid; gap: 3px; margin: 4px 0 8px 8px; padding-left: 8px; border-left: 1px solid rgba(148,163,184,.22); }
.nav-submenu a { font-size: 13px; padding: 8px 10px; }
.main-pane { padding: 24px; min-width: 0; }
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px;
}
.topbar h1 { margin: 4px 0 0; letter-spacing: 0; }
.app-shell.admin-shell { grid-template-columns: 224px minmax(0, 1fr); background: #f5f7fb; }
.admin-shell .sidebar { padding: 14px 12px; overflow-y: auto; transition: padding .16s ease, width .16s ease; }
.admin-sidebar-collapsed .app-shell.admin-shell { grid-template-columns: 0 minmax(0, 1fr); }
.admin-sidebar-collapsed .admin-shell .sidebar {
  width: 0; min-width: 0; padding-right: 0; padding-left: 0; overflow: hidden; border: 0;
}
.admin-shell .sidebar .brand {
  min-height: 38px; margin-bottom: 12px; padding: 4px 6px; border-radius: 9px;
}
.admin-shell .sidebar nav { gap: 3px; }
.admin-shell .sidebar nav a {
  min-height: 32px; display: flex; align-items: center; padding: 7px 9px; border-radius: 7px;
}
.admin-shell .nav-group[hidden],
.admin-shell .nav-submenu a[hidden] { display: none; }
.admin-shell .nav-group summary { min-height: 32px; padding: 7px 9px; }
.admin-shell .nav-submenu { gap: 2px; margin: 3px 0 7px 7px; padding-left: 7px; }
.admin-shell .nav-submenu a { font-size: 12px; padding: 6px 8px; }
.admin-shell .main-pane { min-width: 0; padding: 14px 16px 24px; }
.admin-shell .topbar {
  position: sticky; top: 0; z-index: 16; margin: -14px -16px 14px; padding: 12px 16px;
  border-bottom: 1px solid rgba(217, 224, 234, .92); background: rgba(245, 247, 251, .92);
  backdrop-filter: blur(16px);
}
.admin-shell .topbar h1 { font-size: 23px; line-height: 1.15; }
.admin-shell .topbar .eyebrow { color: #64748b; }
.admin-shell .topbar-actions { gap: 6px; row-gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.admin-account-menu summary {
  max-width: 170px; border-color: #cbd5e1; background: #fff; color: #334155; font-size: 12px; font-weight: 780;
}
.admin-account-menu .account-menu-panel {
  min-width: 232px; z-index: 48;
}
.admin-account-meta {
  display: grid; gap: 2px; padding: 8px 10px 10px; margin-bottom: 4px; border-bottom: 1px solid #e2e8f0;
}
.admin-account-meta strong {
  color: #111827; font-size: 13px; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.admin-account-meta span {
  color: #64748b; font-size: 12px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.admin-account-language {
  display: grid; gap: 5px; padding: 8px 10px; color: #64748b; font-size: 12px; font-weight: 760;
}
.admin-account-layout {
  display: grid; gap: 6px; padding: 8px 10px; color: #64748b; font-size: 12px; font-weight: 760;
}
.admin-account-layout .admin-density-toggle {
  width: 100%; min-height: 32px; border-radius: 8px;
}
.admin-account-layout .admin-density-toggle button { flex: 1; min-height: 26px; border-radius: 7px; }
.admin-account-language .language-switch { width: 100%; }
.admin-account-language .language-switch select {
  width: 100%; max-width: none; min-height: 32px; border-radius: 7px; background: #fff; color: #111827;
}
.admin-account-reset {
  width: 100%; min-height: 34px; display: flex; align-items: center; padding: 8px 10px;
  border: 0; border-radius: 8px; background: transparent; color: #991b1b;
  font: inherit; font-size: 13px; font-weight: 760; cursor: pointer; text-align: left;
}
.admin-account-reset:hover { background: #fef2f2; color: #7f1d1d; }
.admin-sidebar-toggle {
  min-height: 34px; display: inline-flex; align-items: center; justify-content: center; padding: 6px 10px;
  border: 1px solid #cbd5e1; border-radius: 999px; background: #fff; color: #334155;
  font: inherit; font-size: 12px; font-weight: 780; cursor: pointer; white-space: nowrap;
}
.admin-sidebar-toggle:hover { border-color: #94a3b8; background: #f8fafc; color: #111827; }
.admin-sidebar-toggle[aria-pressed="true"] { background: #111827; border-color: #111827; color: #fff; }
.admin-shell .topbar-actions > .admin-sidebar-toggle,
.admin-shell .topbar-actions > .admin-command-trigger,
.admin-shell .topbar-actions > .admin-account-menu > summary {
  min-height: 32px; padding-top: 5px; padding-bottom: 5px; font-size: 11px;
}
.admin-shell .topbar-actions > .admin-account-menu > summary { max-width: 150px; }
.admin-density-toggle {
  min-height: 34px; display: inline-flex; align-items: center; gap: 2px; padding: 2px;
  border: 1px solid #cbd5e1; border-radius: 999px; background: #fff; color: #334155; white-space: nowrap;
}
.admin-density-toggle button {
  min-height: 28px; display: inline-flex; align-items: center; justify-content: center; padding: 4px 10px;
  border: 0; border-radius: 999px; background: transparent; color: #475569;
  font: inherit; font-size: 12px; font-weight: 780; cursor: pointer;
}
.admin-density-toggle button:hover { background: #f1f5f9; color: #111827; }
.admin-density-toggle button[aria-pressed="true"] { background: #111827; color: #fff; }
.admin-command-trigger {
  min-height: 34px; display: inline-flex; align-items: center; gap: 10px; padding: 6px 10px 6px 12px;
  border: 1px solid #cbd5e1; border-radius: 999px; background: #fff; color: #334155;
  font: inherit; font-size: 12px; font-weight: 780; cursor: pointer;
}
.admin-command-trigger:hover { border-color: #94a3b8; background: #f8fafc; color: #111827; }
.admin-command-trigger kbd,
.admin-command-search kbd {
  min-width: 32px; min-height: 22px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #dbe3ee; border-radius: 6px; background: #f8fafc; color: #64748b;
  font-size: 11px; font-weight: 800; box-shadow: inset 0 -1px 0 rgba(15, 23, 42, .05);
}
.admin-shell .topbar-actions > .admin-command-trigger kbd {
  min-width: 28px; min-height: 20px; font-size: 10px;
}
.admin-command-open { overflow: hidden; }
.admin-command-palette {
  position: fixed; inset: 0; z-index: 80; display: grid; place-items: start center; padding: 10vh 20px 24px;
}
.admin-command-palette[hidden] { display: none; }
.admin-command-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .38); backdrop-filter: blur(4px); }
.admin-command-panel {
  position: relative; z-index: 1; width: min(720px, 100%); overflow: hidden; border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 14px; background: #fff; box-shadow: 0 28px 78px rgba(15, 23, 42, .26);
}
.admin-command-search {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px;
  padding: 12px 14px; border-bottom: 1px solid #e2e8f0;
}
.admin-command-search span { color: #64748b; font-size: 18px; line-height: 1; }
.admin-command-search input {
  min-height: 36px; border: 0; box-shadow: none; padding: 0; color: #111827; font-size: 15px; font-weight: 700;
}
.admin-command-search input:focus { border: 0; box-shadow: none; }
.admin-command-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 7px 12px 0; color: #64748b; font-size: 11px; font-weight: 760;
}
.admin-command-meta span:first-child {
  min-height: 22px; display: inline-flex; align-items: center; padding: 2px 8px;
  border: 1px solid #e2e8f0; border-radius: 999px; background: #f8fafc; color: #475569;
}
.admin-command-list {
  max-height: min(58vh, 520px); overflow: auto; display: grid; gap: 4px; padding: 8px;
}
.admin-command-item {
  display: grid; grid-template-columns: 116px minmax(0, 1fr) auto; align-items: center; gap: 10px;
  min-height: 42px; padding: 8px 10px; border-radius: 9px; color: #111827;
}
.admin-command-item:hover,
.admin-command-item:focus,
.admin-command-item.is-active { outline: none; background: #f1f5f9; }
.admin-command-item.is-active {
  box-shadow: inset 3px 0 0 #111827;
}
.admin-command-item span {
  color: #64748b; font-size: 12px; font-weight: 760; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.admin-command-item strong { font-size: 13px; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-command-item code {
  color: #64748b; font-size: 11px; font-weight: 760; background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 999px; padding: 3px 7px; white-space: nowrap;
}
.admin-command-action code {
  color: #166534; background: #f0fdf4; border-color: #bbf7d0;
}
.admin-command-field code {
  color: #854d0e; background: #fffbeb; border-color: #fde68a;
}
.admin-command-empty { padding: 22px; color: #64748b; text-align: center; font-weight: 720; }
.admin-back-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 42; min-height: 36px; padding: 7px 12px;
  border: 1px solid #111827; border-radius: 999px; background: #111827; color: #fff;
  font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
}
.admin-back-top:hover { background: #020617; }
.admin-back-top[hidden] { display: none; }
.admin-save-bar-visible .admin-back-top { bottom: 86px; }
.admin-shell section.panel,
.admin-shell .grid-2 > .panel { scroll-margin-top: 190px; }
.admin-shell .panel { padding: 16px 18px; margin-bottom: 14px; border-radius: 8px; }
.admin-shell .panel-head {
  position: relative; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px;
  margin-bottom: 10px; padding-right: 0;
}
.admin-shell .panel-head .eyebrow {
  display: none;
}
.admin-shell .panel-head h2 {
  min-width: 0; margin: 0; font-size: 18px; overflow-wrap: anywhere;
}
.admin-shell .panel-head p {
  flex: 1 0 100%; max-width: 78ch; margin-top: 2px; overflow: visible; white-space: normal;
  font-size: 12px; line-height: 1.45;
}
.admin-disclosure-summary {
  position: relative; min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  list-style: none; cursor: pointer; padding-right: 8px;
}
.admin-disclosure-summary::-webkit-details-marker { display: none; }
.admin-disclosure-summary > span { min-width: 0; display: grid; gap: 3px; }
.admin-disclosure-summary strong {
  color: var(--text); font-size: 16px; line-height: 1.3; font-weight: 800; overflow-wrap: anywhere;
}
.admin-disclosure-summary small {
  color: var(--muted); font-size: 12px; line-height: 1.4; font-weight: 680; overflow-wrap: anywhere;
}
.admin-disclosure-summary::after {
  content: "›"; flex: 0 0 auto; color: #64748b; font-size: 24px; line-height: 1; transform: rotate(90deg);
  transition: transform .16s ease, color .16s ease;
}
.admin-disclosure-panel[open] > .admin-disclosure-summary,
.admin-inline-disclosure[open] > .admin-disclosure-summary {
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.admin-disclosure-panel[open] > .admin-disclosure-summary::after,
.admin-inline-disclosure[open] > .admin-disclosure-summary::after { transform: rotate(-90deg); color: var(--text); }
.admin-disclosure-summary:hover strong { color: #334155; }
.admin-disclosure-summary:focus-visible { outline: 2px solid #94a3b8; outline-offset: 4px; border-radius: 6px; }
.admin-inline-disclosure {
  margin-top: 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.admin-disclosure-subhead {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 10px;
}
.admin-disclosure-subhead strong { color: var(--text); font-size: 13px; line-height: 1.35; }
.admin-disclosure-subhead span { color: var(--muted); font-size: 12px; line-height: 1.4; font-weight: 680; text-align: right; }
.admin-disclosure-subsection { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.admin-shell .panel.is-hash-target,
.admin-shell section.is-hash-target {
  outline: 2px solid rgba(17, 24, 39, .16); outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(15, 23, 42, .05);
}
.admin-shell .panel-head .inline-form {
  flex: 1 0 100%; margin-top: 2px; padding: 5px; border: 1px solid #e2e8f0; border-radius: 8px; background: #fbfcfe;
}
.admin-shell .panel-head .inline-form + .inline-form { margin-top: 0; }
.admin-shell .stat-grid { gap: 12px; margin-bottom: 14px; }
.admin-shell .stat-card { padding: 15px 16px; }
.admin-shell .stat-card strong { font-size: 28px; }
.admin-shell .grid-2 { gap: 14px; }
.admin-shell .form-stack { gap: 11px; }
.admin-shell .form-grid { gap: 12px 14px; }
.admin-shell .form-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: end; }
.admin-shell .form-grid.compact > label, .admin-shell .form-grid.compact > .field-group { min-width: 0; }
.admin-shell .form-grid.compact .form-actions { align-self: end; justify-content: flex-end; min-width: 0; }
.form-grid.compact.mfa-disable-grid,
.admin-shell .form-grid.compact.mfa-disable-grid {
  grid-template-columns: minmax(0, 1fr) auto; align-items: end;
}
.admin-shell .form-stack > .btn { justify-self: end; }
.admin-shell .main-pane form.is-dirty {
  outline: 2px solid rgba(15, 23, 42, .08);
  outline-offset: 4px;
  border-radius: 8px;
}
.admin-shell .main-pane form.is-locating {
  outline-color: rgba(17, 24, 39, .28);
  box-shadow: 0 0 0 6px rgba(15, 23, 42, .06);
}
.admin-form-save-bar {
  position: fixed; right: 18px; bottom: 18px; z-index: 56;
  width: min(520px, calc(100vw - 36px)); display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 10px 10px 14px; border: 1px solid #cbd5e1; border-radius: 12px;
  background: rgba(255,255,255,.96); box-shadow: 0 18px 44px rgba(15, 23, 42, .18); backdrop-filter: blur(14px);
}
.admin-form-save-bar[hidden] { display: none; }
.admin-form-save-bar span {
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  color: #334155; font-size: 13px; font-weight: 800;
}
.admin-form-save-bar div { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; }
.admin-form-save-bar .btn { min-height: 32px; padding: 6px 10px; border-radius: 8px; font-size: 12px; }
.admin-form-save-bar kbd {
  margin-left: 6px; min-width: 28px; min-height: 18px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.36); border-radius: 5px; background: rgba(255,255,255,.14);
  color: inherit; font-size: 10px; font-weight: 820;
}
.admin-shell label { gap: 6px; }
.admin-shell label span { font-size: 12px; }
.admin-shell .field-group { gap: 6px; }
.admin-shell .field-group > span { font-size: 12px; }
.admin-shell input, .admin-shell select, .admin-shell textarea {
  max-width: 100%; min-height: 36px; padding: 7px 10px; border-radius: 8px;
}
.admin-shell input[type="checkbox"],
.admin-shell input[type="radio"] {
  width: 16px; height: 16px; min-height: 0; padding: 0; margin: 0; flex: 0 0 16px; accent-color: #111827;
}
.admin-shell input[type="number"] { width: min(100%, 124px); }
.admin-shell input[type="date"] { width: min(100%, 158px); }
.admin-shell input[type="datetime-local"] { width: min(100%, 190px); }
.admin-shell .form-grid.compact .multi-select-field { grid-column: span 2; }
.admin-shell .multi-select-dropdown summary { min-height: 36px; padding-top: 7px; padding-bottom: 7px; }
.admin-shell .multi-select-dropdown summary::after { top: 14px; }
.admin-shell .multi-select-menu { max-height: 220px; padding: 4px; }
.admin-shell .multi-select-option { gap: 7px; padding: 6px 7px; border-radius: 6px; }
.admin-shell .multi-select-option input[type="checkbox"] { margin-top: 2px; flex: 0 0 16px; }
.admin-shell .btn { min-height: 34px; padding: 7px 11px; white-space: nowrap; }
.admin-shell .btn.is-command-target {
  outline: 3px solid rgba(22, 101, 52, .18); outline-offset: 3px; box-shadow: 0 0 0 1px rgba(22, 101, 52, .22);
}
.admin-shell label.is-command-target {
  outline: 3px solid rgba(133, 77, 14, .16); outline-offset: 4px; border-radius: 8px;
  background: rgba(255, 251, 235, .82);
}
.admin-table-shell {
  display: grid; gap: 7px;
}
.admin-table-shell .table-wrap {
  box-shadow: inset 0 10px 16px -18px rgba(15, 23, 42, .45), inset 0 -10px 16px -18px rgba(15, 23, 42, .45);
}
.admin-table-shell.is-filter-target {
  outline: 2px solid rgba(15, 23, 42, .1);
  outline-offset: 4px;
  border-radius: 8px;
}
.admin-table-meta {
  display: flex; align-items: center; justify-content: flex-start; gap: 8px; min-height: 30px;
  padding: 6px 9px; border: 1px solid #e2e8f0; border-radius: 8px; background: #fbfcfe;
  color: #64748b; font-size: 12px; font-weight: 760;
}
.admin-table-meta [data-admin-table-count] { margin-right: auto; }
.admin-table-meta strong { color: #475569; font-size: 12px; font-weight: 760; }
.admin-table-scroll-tools {
  display: inline-flex; align-items: center; gap: 4px; padding: 2px; border: 1px solid #dbe3ee;
  border-radius: 999px; background: #fff;
}
.admin-table-scroll-tools[hidden] { display: none; }
.admin-table-scroll-tools button {
  min-width: 26px; min-height: 24px; display: inline-flex; align-items: center; justify-content: center; padding: 3px 7px;
  border: 0; border-radius: 999px; background: transparent; color: #475569;
  font: inherit; font-size: 13px; font-weight: 820; cursor: pointer; white-space: nowrap;
}
.admin-table-scroll-tools button:hover:not(:disabled) { background: #f1f5f9; color: #111827; }
.admin-table-scroll-tools button:disabled { color: #94a3b8; cursor: not-allowed; }
.admin-table-copy-visible {
  min-height: 28px; display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 9px; border: 1px solid #dbe3ee; border-radius: 999px;
  background: #fff; color: #475569; font: inherit; font-size: 12px; font-weight: 780;
  cursor: pointer; white-space: nowrap;
}
.admin-table-copy-visible:hover { border-color: #94a3b8; background: #f8fafc; color: #111827; }
.admin-table-filter {
  position: relative; width: min(100%, 260px); display: block;
}
.admin-table-filter input {
  width: 100%; min-height: 28px; padding: 5px 55px 5px 8px; border-radius: 7px; font-size: 12px;
}
.admin-table-filter-clear {
  position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; min-height: 0; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #dbe3ee; border-radius: 999px; background: #fff; color: #64748b;
  font: inherit; font-size: 13px; font-weight: 820; line-height: 1; cursor: pointer; padding: 0;
}
.admin-table-filter-clear:hover { border-color: #94a3b8; background: #f8fafc; color: #111827; }
.admin-table-filter-clear[hidden] {
  display: none;
}
.admin-table-filter kbd {
  position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
  min-width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #dbe3ee; border-radius: 5px; background: #f8fafc; color: #64748b;
  font-size: 11px; font-weight: 800; pointer-events: none;
}
.admin-shell tr[hidden] { display: none; }
.admin-shell tr.is-filter-match-target td {
  background: #f0fdf4; box-shadow: inset 3px 0 0 #22c55e;
}
.admin-shell .table-wrap {
  max-height: min(68vh, 720px); overflow: auto; border-radius: 8px;
  overscroll-behavior: contain; scrollbar-width: thin;
}
.admin-shell table { min-width: 860px; font-size: 13px; }
.admin-shell th, .admin-shell td { padding: 10px 12px; vertical-align: middle; }
.admin-shell thead th {
  position: sticky; top: 0; z-index: 3; background: #f8fafc; letter-spacing: .04em;
  box-shadow: 0 1px 0 #e2e8f0;
}
.admin-shell td { max-width: 320px; overflow-wrap: anywhere; }
.admin-shell td .mono,
.admin-shell td code { overflow-wrap: anywhere; }
.admin-shell table.admin-table-sticky-actions th:last-child,
.admin-shell table.admin-table-sticky-actions tbody tr:not([data-admin-table-empty-row]):not([data-admin-table-no-match]) > td:last-child:not([colspan]) {
  position: sticky; right: 0; min-width: 104px; max-width: 226px;
  box-shadow: -1px 0 0 #e2e8f0, -14px 0 22px -24px rgba(15, 23, 42, .55);
}
.admin-shell table.admin-table-sticky-actions th:last-child {
  z-index: 6; background: #f8fafc;
}
.admin-shell table.admin-table-sticky-actions tbody tr:not([data-admin-table-empty-row]):not([data-admin-table-no-match]) > td:last-child:not([colspan]) {
  z-index: 2; background: #fff;
}
.admin-shell table.admin-table-sticky-actions tr.is-filter-match-target > td:last-child:not([colspan]) {
  background: #f0fdf4;
}
.admin-shell td:last-child .inline-form,
.admin-shell td:last-child .admin-actions {
  justify-content: flex-start; gap: 4px; max-width: 226px;
}
.admin-shell td:last-child .btn {
  min-height: 28px; padding: 4px 7px; font-size: 11px; border-radius: 7px;
}
.admin-shell td:last-child .admin-action-form {
  gap: 4px;
}
.admin-shell td:last-child .admin-action-form select {
  width: 112px;
}
.admin-shell td:last-child .admin-action-form input[type="number"] {
  width: 58px;
}
.admin-shell td:last-child .admin-action-form input[name="ban_reason"] {
  width: 92px;
}
.admin-shell .empty-state { padding: 18px; }
.admin-density-comfortable .admin-shell .main-pane { padding: 18px 22px 30px; }
.admin-density-comfortable .admin-shell .topbar {
  margin: -18px -22px 18px; padding: 14px 22px;
}
.admin-density-comfortable .admin-shell .panel { padding: 20px 22px; margin-bottom: 18px; }
.admin-density-comfortable .admin-shell .panel-head { gap: 6px 10px; margin-bottom: 16px; }
.admin-density-comfortable .admin-shell .panel-head .eyebrow { font-size: 12px; }
.admin-density-comfortable .admin-shell .panel-head h2 { font-size: 20px; }
.admin-density-comfortable .admin-shell .panel-head p {
  max-width: none; overflow: visible; white-space: normal; font-size: 13px;
}
.admin-density-comfortable .admin-shell .stat-grid { gap: 16px; margin-bottom: 18px; }
.admin-density-comfortable .admin-shell .grid-2 { gap: 18px; }
.admin-density-comfortable .admin-shell .form-stack { gap: 14px; }
.admin-density-comfortable .admin-shell .form-grid { gap: 16px 18px; }
.admin-density-comfortable .admin-shell input,
.admin-density-comfortable .admin-shell select,
.admin-density-comfortable .admin-shell textarea {
  min-height: 40px; padding: 9px 12px;
}
.admin-density-comfortable .admin-shell input[type="checkbox"],
.admin-density-comfortable .admin-shell input[type="radio"] {
  width: 16px; height: 16px; min-height: 0; padding: 0; margin: 0; flex: 0 0 16px;
}
.admin-density-comfortable .admin-shell .multi-select-dropdown summary {
  min-height: 40px; padding-top: 9px; padding-bottom: 9px;
}
.admin-density-comfortable .admin-shell .multi-select-dropdown summary::after { top: 16px; }
.admin-density-comfortable .admin-shell .multi-select-option input[type="checkbox"] {
  width: 16px; height: 16px; min-height: 0; padding: 0; margin-top: 2px; flex: 0 0 16px;
}
.admin-density-comfortable .admin-shell .btn { min-height: 38px; padding: 8px 13px; }
.admin-density-comfortable .admin-shell .table-wrap { max-height: min(70vh, 780px); }
.admin-density-comfortable .admin-shell th,
.admin-density-comfortable .admin-shell td { padding: 12px 14px; }
.admin-density-comfortable .admin-table-meta { min-height: 34px; padding: 8px 11px; }
.admin-density-comfortable .admin-table-filter input { min-height: 32px; padding-top: 6px; padding-bottom: 6px; }
.admin-density-comfortable .admin-shell .empty-state { padding: 22px; }
.admin-attention-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 9px;
}
.admin-attention-card {
  display: grid; gap: 5px; min-height: 112px; padding: 12px; border: 1px solid #dbe3ee;
  border-radius: 8px; background: #fbfcfe; color: #111827; transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
}
.admin-attention-card:hover { border-color: #94a3b8; background: #fff; transform: translateY(-1px); }
.admin-attention-card span {
  color: #64748b; font-size: 12px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase;
}
.admin-attention-card strong { font-size: 28px; line-height: 1; letter-spacing: 0; }
.admin-attention-card small { color: #64748b; font-size: 12px; line-height: 1.4; font-weight: 680; }
.admin-attention-card.has-value {
  border-color: #fed7aa; background: #fff7ed;
}
.admin-attention-card.has-value span,
.admin-attention-card.has-value small { color: #9a3412; }
.admin-attention-card.has-value strong { color: #c2410c; }
.license-policy-form {
  grid-template-columns: minmax(180px, 1.15fr) minmax(150px, .9fr) minmax(90px, .45fr) minmax(240px, 1.35fr) minmax(142px, .7fr) minmax(112px, .55fr);
}
.license-policy-form .field-hint { margin-top: -8px; }
.license-policy-form .form-subhead { margin: 0; padding-top: 8px; }
.license-policy-form .check-row { align-self: end; min-height: 36px; }
.license-policy-form input[name="max_devices"],
.license-policy-form input[name="valid_days"],
.license-policy-form input[name="grace_days"] { width: min(100%, 96px); }
.license-policy-form .license-policy-actions { grid-column: 1 / -1; padding-top: 0; }
.license-console-panel .panel-head { margin-bottom: 10px; }
.license-overview-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px;
}
.license-overview-grid article {
  min-width: 0; display: grid; gap: 4px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.license-overview-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.license-overview-grid span {
  color: #64748b; font-size: 11px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase;
}
.license-overview-grid strong {
  min-width: 0; color: #111827; font-size: 16px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.license-overview-grid small {
  min-width: 0; color: #64748b; font-size: 12px; font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.license-filter-bar,
.activation-filter-bar,
.software-filter-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}
.license-filter-form,
.activation-filter-form,
.software-filter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 6px;
  margin: 0;
}
.license-filter-form label,
.activation-filter-form label,
.software-filter-form label {
  min-width: 118px;
  gap: 4px;
}
.license-filter-form .license-filter-search,
.activation-filter-form .activation-filter-search,
.software-filter-form .software-filter-search { min-width: 220px; }
.license-filter-form select,
.license-filter-form input,
.activation-filter-form select,
.activation-filter-form input,
.software-filter-form select,
.software-filter-form input {
  min-height: 30px;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 12px;
}
.license-filter-form .btn,
.activation-filter-form .btn,
.software-filter-form .btn { min-height: 30px; padding: 5px 9px; font-size: 12px; }
.product-console-panel .panel-head,
.activation-console-panel .panel-head { margin-bottom: 10px; }
.product-overview-grid,
.activation-overview-grid {
  display: grid; gap: 8px;
}
.product-overview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.activation-overview-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.product-overview-grid article,
.activation-overview-grid article {
  min-width: 0; display: grid; gap: 4px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.product-overview-grid article.has-value,
.activation-overview-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.product-overview-grid span,
.activation-overview-grid span {
  color: #64748b; font-size: 11px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase;
}
.product-overview-grid strong,
.activation-overview-grid strong {
  min-width: 0; color: #111827; font-size: 16px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.product-overview-grid small,
.activation-overview-grid small {
  min-width: 0; color: #64748b; font-size: 12px; font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.admin-shell .license-user-assign-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin-shell .license-user-assign-form > .span-3,
.admin-shell .license-user-assign-form > .field-hint { grid-column: 1 / -1; }
.admin-shell .license-user-assign-form .form-actions,
.admin-shell .license-group-assign-form .form-actions,
.admin-shell .license-quantity-form .form-actions { align-self: end; justify-content: flex-end; }
.license-assignment-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0 -2px;
}
.license-assignment-block { min-width: 0; padding: 2px 16px 14px; }
.license-assignment-block + .license-assignment-block { border-left: 1px solid var(--line); }
.admin-shell .license-group-assign-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-shell .license-group-assign-form .field-hint { align-self: end; margin: 0; }
.admin-shell .license-quantity-form {
  grid-template-columns: minmax(320px, 1.5fr) minmax(112px, .45fr) auto;
}
.admin-shell .license-quantity-form > .span-2 { grid-column: auto; }
.admin-shell .product-save-form,
.admin-shell .product-module-form { grid-template-columns: minmax(130px, .8fr) minmax(150px, 1fr) minmax(120px, .72fr) minmax(108px, .56fr); }
.admin-shell .product-save-form > .span-2,
.admin-shell .product-module-form > .span-2 { grid-column: span 2; }
.certificate-console-panel .panel-head { margin-bottom: 10px; }
.certificate-overview-grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px;
}
.certificate-overview-grid article {
  min-width: 0; display: grid; gap: 4px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.certificate-overview-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.certificate-overview-grid span {
  color: #64748b; font-size: 11px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase;
}
.certificate-overview-grid strong {
  min-width: 0; color: #111827; font-size: 16px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.certificate-overview-grid small {
  min-width: 0; color: #64748b; font-size: 12px; font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.admin-shell .certificate-upload-form {
  grid-template-columns: minmax(150px, .75fr) minmax(170px, .82fr) minmax(220px, 1.1fr) minmax(170px, .82fr) minmax(260px, 1.25fr) auto;
}
.admin-shell .certificate-upload-form > .span-2 { grid-column: span 2; }
.admin-shell .certificate-upload-form > .span-3,
.admin-shell .certificate-upload-form > .field-hint { grid-column: 1 / -1; }
.admin-shell .certificate-upload-form .form-actions { align-self: end; justify-content: flex-end; }
.admin-standalone-activation-form {
  grid-template-columns: minmax(190px, .9fr) minmax(260px, 1.35fr) minmax(136px, .58fr) minmax(132px, .52fr);
}
.admin-standalone-activation-form textarea[name="request_code"] { min-height: 86px; }
.admin-standalone-actions { align-self: end; justify-content: flex-end; min-width: max-content; }
.admin-standalone-output { margin-top: 14px; padding-top: 14px; }
.admin-standalone-output textarea { min-height: 112px; }
.admin-card-form {
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 10px 12px;
}
.admin-card-form > .span-2,
.admin-card-form > .span-3,
.admin-card-form > .form-subhead,
.admin-card-form > .form-actions {
  grid-column: 1 / -1;
}
.admin-card-form > .form-actions { padding-top: 0; }
.admin-card-form .check-row { align-self: end; min-height: 36px; }
.admin-card-form input[type="number"] { width: min(100%, 104px); }
.software-release-summary {
  display: grid; grid-template-columns: minmax(220px, 1.55fr) repeat(3, minmax(120px, .7fr));
  gap: 8px; margin: 0 0 10px;
}
.software-release-summary article {
  min-width: 0; display: grid; gap: 4px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.software-release-summary span {
  color: #64748b; font-size: 11px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase;
}
.software-release-summary strong {
  min-width: 0; color: #111827; font-size: 14px; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.panel-head-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.panel-head-row > div { min-width: 0; }
.software-release-console > .muted { margin: 8px 0 12px; font-size: 12px; line-height: 1.6; }
.admin-shell .software-publish-form {
  display: grid; gap: 12px; padding: 12px;
}
.software-publish-template {
  display: grid; grid-template-columns: minmax(260px, 430px) minmax(260px, 1fr); gap: 5px 14px; align-items: end;
  padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.software-publish-template label { min-width: 0; }
.software-publish-template p {
  align-self: center; margin: 0; color: var(--muted); font-size: 11px; font-weight: 650; line-height: 1.55;
}
.software-publish-template-status {
  grid-column: 1 / -1; min-height: 16px; color: #166534; font-size: 11px; font-weight: 720;
}
.software-form-section-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px;
}
.software-form-section-head > div { display: grid; gap: 2px; }
.software-form-section-head span { color: var(--muted); font-size: 10px; font-weight: 820; text-transform: uppercase; }
.software-form-section-head h3 { margin: 0; font-size: 16px; line-height: 1.25; }
.software-release-fields,
.software-platform-section { min-width: 0; padding-top: 2px; }
.software-release-fields > .form-grid { grid-template-columns: repeat(4, minmax(130px, 1fr)); }
.software-release-fields > .form-grid > .span-3 { grid-column: 1 / -1; }
.software-release-fields textarea { min-height: 100px; }
.software-append-context {
  display: grid; grid-template-columns: minmax(190px, .8fr) minmax(100px, .45fr) minmax(260px, 1.4fr) auto;
  gap: 8px; align-items: end; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.software-append-context > div { min-width: 0; display: grid; gap: 3px; }
.software-append-context span { color: var(--muted); font-size: 10px; font-weight: 800; }
.software-append-context strong { overflow-wrap: anywhere; font-size: 12px; }
.software-platform-tabs {
  display: flex; align-items: center; gap: 4px; min-width: 0; margin: 0 0 8px;
  padding: 3px; overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #f1f5f9;
}
.software-platform-tab {
  flex: 0 0 auto; min-height: 30px; padding: 5px 10px; border: 0; border-radius: 6px;
  background: transparent; color: #475569; font: inherit; font-size: 12px; font-weight: 740; cursor: pointer;
}
.software-platform-tab:hover { color: #111827; background: #fff; }
.software-platform-tab.is-active { color: #fff; background: #111827; box-shadow: 0 1px 2px rgba(15, 23, 42, .14); }
.software-platform-build-list { display: grid; gap: 10px; }
.software-platform-build {
  min-width: 0; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.software-platform-build[hidden] { display: none; }
.software-platform-build-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.software-platform-build-head strong { font-size: 13px; }
.software-platform-build-fields { grid-template-columns: repeat(4, minmax(120px, 1fr)); }
.software-platform-build-fields > .span-2 { grid-column: span 2; }
.software-platform-build-fields > .span-3,
.software-platform-build-fields > .software-external-links { grid-column: 1 / -1; }
.software-platform-build-fields .software-external-links { background: #fff; }
.software-publish-actions { justify-content: flex-end; padding-top: 0; }
.admin-shell .software-publish-form .check-row { min-height: 34px; align-self: end; }
.admin-shell .software-notes-form {
  grid-template-columns: minmax(260px, .85fr) minmax(360px, 1.4fr) auto;
}
.admin-shell .software-notes-form > .span-3,
.admin-shell .software-notes-form > .field-hint {
  grid-column: 1 / -1;
}
.admin-shell .software-notes-form textarea { min-height: 126px; }
#software-version-list table { min-width: 980px; }
#software-version-list td { vertical-align: middle; }
#software-version-list td:first-child { min-width: 160px; }
.software-platform-list {
  display: flex; flex-wrap: wrap; gap: 4px; max-width: 260px;
}
.software-platform-list span {
  display: inline-flex; align-items: center; min-height: 22px;
  padding: 2px 7px; border: 1px solid #dbe3ee; border-radius: 999px;
  background: #f8fafc; color: #334155; font-size: 11px; font-weight: 760; line-height: 1.2;
}
.table-date {
  display: inline-block; color: #475569; font-size: 12px; font-weight: 720; white-space: nowrap;
}
.software-version-actions { gap: 4px; max-width: 260px; }
.software-version-actions .btn {
  min-width: 0; min-height: 28px; padding: 4px 7px; border-radius: 7px; font-size: 12px;
}
.software-builds-dialog { width: min(960px, calc(100vw - 32px)); }
.software-add-platform-dialog { width: min(860px, calc(100vw - 32px)); }
.software-add-platform-dialog [data-add-platform-template-status] { margin: 0; }
.software-add-platform-dialog [data-add-platform-template-status]:empty { display: none; }
.software-edit-dialog .dialog-head p {
  margin: 4px 0 0; color: var(--muted); font-size: 12px; font-weight: 650;
}
.software-release-build-list { display: grid; gap: 0; padding-top: 4px; padding-bottom: 4px; }
.software-release-build-row {
  min-width: 0; display: grid; grid-template-columns: minmax(190px, 1fr) minmax(250px, 1.2fr) auto;
  gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line);
}
.software-release-build-row:last-child { border-bottom: 0; }
.software-release-build-identity { min-width: 0; display: grid; gap: 3px; }
.software-release-build-identity strong { font-size: 13px; line-height: 1.3; }
.software-release-build-identity span,
.software-release-build-meta span { color: var(--muted); font-size: 11px; font-weight: 650; }
.software-release-build-meta { min-width: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.software-release-build-actions { justify-content: flex-end; gap: 4px; flex-wrap: nowrap; }
.software-release-build-actions .btn { min-height: 28px; padding: 4px 8px; font-size: 12px; }
.software-status-tabs {
  width: fit-content; display: inline-grid; grid-template-columns: repeat(3, auto); gap: 1px;
  margin-bottom: 10px; padding: 2px; border: 1px solid var(--line); border-radius: 8px; background: #f1f5f9;
}
.software-status-tabs a {
  min-height: 30px; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 5px 10px; border-radius: 6px; color: #475569; font-size: 12px; font-weight: 720;
}
.software-status-tabs a:hover { color: #111827; background: #fff; }
.software-status-tabs a.is-active { color: #fff; background: #111827; box-shadow: 0 1px 2px rgba(15, 23, 42, .14); }
.software-status-tabs strong { font-size: 11px; font-weight: 800; }
.security-settings-form { gap: 9px 12px; }
.security-settings-form .form-subhead { margin: 0; padding-top: 8px; }
.admin-shell .system-settings-form {
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}
.admin-shell .system-settings-form > .span-3 { grid-column: 1 / -1; }
.system-console-panel .panel-head { margin-bottom: 10px; }
.system-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.system-overview-grid article {
  min-width: 0;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 9px 11px;
}
.system-overview-grid article.is-enabled { border-color: #bbf7d0; background: #f0fdf4; }
.system-overview-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.system-overview-grid span {
  color: #64748b;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.system-overview-grid strong {
  min-width: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.system-overview-grid small {
  min-width: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 680;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.settings-block {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 10px 12px 12px;
}
.settings-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}
details.settings-block > .settings-block-head {
  list-style: none;
  cursor: pointer;
}
details.settings-block > .settings-block-head::-webkit-details-marker { display: none; }
details.settings-block > .settings-block-head::after {
  content: "›";
  flex: 0 0 auto;
  color: #64748b;
  font-size: 20px;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform .16s ease;
}
details.settings-block[open] > .settings-block-head::after { transform: rotate(-90deg); }
details.settings-block:not([open]) > .settings-block-head {
  padding-bottom: 0;
  border-bottom: 0;
}
.settings-block-head span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.settings-block-head strong {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #475569;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}
.settings-fields {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 8px 12px;
  align-items: end;
  justify-content: start;
}
.settings-fields > label { min-width: 0; }
.settings-fields input:not([type="checkbox"]):not([type="radio"]),
.settings-fields select,
.settings-fields textarea {
  width: 100%;
  min-width: 0;
}
.settings-fields-access {
  grid-template-columns: 180px 180px 220px 220px;
}
.settings-fields-smtp {
  grid-template-columns: 180px 360px 116px 180px;
}
.settings-fields-daily-summary {
  grid-template-columns: 180px 140px 140px 170px minmax(280px, 1fr);
}
.settings-fields-daily-summary .settings-message { grid-column: 1 / 4; }
.settings-fields-daily-summary .settings-message textarea { max-width: none; }
.settings-fields-daily-summary .settings-summary-help { grid-column: 4 / -1; align-self: center; }
.settings-fields-daily-summary [hidden] { display: none !important; }
.settings-fields-time {
  grid-template-columns: 360px 220px 180px;
}
.settings-fields-security {
  grid-template-columns: repeat(2, max-content) repeat(2, 150px);
}
.settings-fields .check-row {
  display: inline-flex;
  align-self: end;
  min-height: 34px;
  width: max-content;
  max-width: 180px;
  padding: 0;
  line-height: 1.35;
  white-space: normal;
}
.settings-fields .check-row input[type="checkbox"],
.settings-fields .check-row input[type="radio"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  margin: 0;
  flex: 0 0 16px;
}
.settings-fields input[type="number"] { max-width: 116px; }
.settings-fields input[type="datetime-local"] { min-width: 0; }
.settings-fields textarea {
  min-height: 56px;
  line-height: 1.5;
}
.settings-message,
.settings-wide {
  grid-column: span 2;
}
.settings-message textarea { max-width: 540px; }
.settings-port input { max-width: 104px; }
.system-settings-actions {
  display: none;
  padding-top: 2px;
  justify-content: flex-end;
}
.system-settings-form:has(details[open]) .system-settings-actions { display: flex; }
.daily-summary-run-grid {
  display: grid; grid-template-columns: minmax(230px, .9fr) minmax(330px, 1.35fr) minmax(230px, 1fr) auto;
  gap: 12px; align-items: end;
}
.daily-summary-run-grid .code-box { margin-top: 5px; padding: 9px 11px; }
.daily-summary-run-grid .code-box code { font-size: 12px; }
.daily-summary-run-status { display: grid; gap: 4px; min-width: 0; }
.daily-summary-run-status span,
.daily-summary-run-grid .field-label { color: #64748b; font-size: 12px; font-weight: 760; }
.daily-summary-run-status strong { font-size: 13px; line-height: 1.4; }
.daily-summary-run-status small { color: #64748b; font-size: 12px; line-height: 1.45; overflow-wrap: anywhere; }
.daily-summary-run-action { display: flex; justify-content: flex-end; }
.security-settings-panel .panel-head { margin-bottom: 14px; }
.security-overview-grid {
  display: grid; grid-template-columns: minmax(170px, 1.1fr) repeat(4, minmax(130px, .8fr));
  gap: 8px; margin: 0 0 12px;
}
.security-overview-grid article {
  min-width: 0; display: grid; gap: 4px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.security-overview-grid article.is-enabled { border-color: #bbf7d0; background: #f0fdf4; }
.security-overview-grid article.is-disabled,
.security-overview-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.security-overview-grid span {
  color: #64748b; font-size: 11px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase;
}
.security-overview-grid strong {
  min-width: 0; color: #111827; font-size: 16px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.security-overview-grid small {
  min-width: 0; color: #64748b; font-size: 12px; font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.security-settings-form { display: grid; gap: 12px; }
.security-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.security-settings-block {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 12px;
}
.security-settings-block-wide { grid-column: 1 / -1; }
.security-settings-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}
details.security-settings-block > .security-settings-block-head {
  list-style: none;
  cursor: pointer;
}
details.security-settings-block > .security-settings-block-head::-webkit-details-marker { display: none; }
details.security-settings-block > .security-settings-block-head::after {
  content: "›";
  flex: 0 0 auto;
  color: #64748b;
  font-size: 20px;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform .16s ease;
}
details.security-settings-block[open] > .security-settings-block-head::after { transform: rotate(-90deg); }
details.security-settings-block:not([open]) > .security-settings-block-head {
  padding-bottom: 0;
  border-bottom: 0;
}
.security-settings-block-head h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}
.security-settings-block-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}
.security-settings-block-head strong {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #475569;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}
.security-toggle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.security-toggle-list-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.security-toggle-list-six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.security-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 32px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  padding: 6px 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.3;
}
.security-toggle span { min-width: 0; font-size: 12px; }
.security-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  margin: 0;
  flex: 0 0 16px;
  accent-color: #111827;
}
.security-toggle-inline {
  width: max-content;
  white-space: nowrap;
}
.security-toggle-pair {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.security-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  align-items: end;
}
.security-field-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.security-field-wide { grid-column: 1 / -1; }
.security-field { display: grid; gap: 5px; min-width: 0; }
.security-field span {
  color: var(--text);
  font-size: 12px;
  font-weight: 760;
}
.admin-shell .security-field input,
.admin-shell .security-field select,
.admin-shell .security-field textarea {
  width: 100%;
  min-height: 34px;
  padding: 7px 9px;
}
.admin-shell .security-field input[type="number"] {
  width: 100%;
  max-width: none;
}
.security-field textarea {
  min-height: 64px;
  line-height: 1.5;
}
.security-password-layout {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: 12px;
  align-items: end;
}
.security-settings-actions {
  justify-content: flex-end;
  padding-top: 0;
}
.security-admin-grid {
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(420px, 1.15fr);
  gap: 14px;
  align-items: start;
}
.security-mini-form {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.security-invitation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.security-invitation-grid .security-mini-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 10px;
}
.security-mini-form .form-actions {
  padding-top: 0;
  justify-content: flex-end;
}
.version-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.version-summary-grid div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 10px 12px;
  min-width: 0;
}
.version-summary-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}
.version-summary-grid strong {
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upgrade-status-head {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 10px 12px;
}
.upgrade-status-head strong { font-size: 15px; }
.upgrade-status-head > span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  overflow-wrap: anywhere;
}
.badge-running { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.badge-failed { background: #fff1f2; color: #be123c; border-color: #fecdd3; }
.site-upgrade-console-panel .panel-head { margin-bottom: 10px; }
.site-upgrade-workbench {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 10px;
  align-items: stretch;
}
.site-upgrade-status-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 12px;
  min-width: 0;
}
.site-upgrade-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.site-upgrade-status-line strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
}
.site-upgrade-status-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.site-upgrade-runtime-grid { margin-bottom: 10px; }
.site-upgrade-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.site-upgrade-meta span {
  overflow: hidden;
  border-radius: 7px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.3;
  padding: 6px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upgrade-status-output { margin-top: 12px; }
.upgrade-status-output code {
  white-space: normal;
  overflow-wrap: anywhere;
}
.site-upgrade-form {
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: end;
}
.site-rollback-notice { margin-bottom: 10px; }
.site-upgrade-history-list {
  display: grid;
  gap: 8px;
}
.site-upgrade-history-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 10px 12px;
}
.site-upgrade-history-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.site-upgrade-history-title,
.site-upgrade-history-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  min-width: 0;
}
.site-upgrade-history-title strong {
  color: var(--text);
  font-size: 15px;
}
.site-upgrade-history-title .mono,
.site-upgrade-history-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}
.site-upgrade-rollback-action {
  display: flex;
  justify-content: flex-end;
}
.site-upgrade-rollback-action .btn { white-space: nowrap; }
.admin-shell .smtp-test-form {
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr) auto;
  align-items: end;
}
.mail-console-panel .panel-head { margin-bottom: 10px; }
.mail-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.mail-overview-grid article {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}
.mail-overview-grid article.is-enabled { border-color: #bbf7d0; background: #f0fdf4; }
.mail-overview-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.mail-overview-grid span {
  color: #64748b;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mail-overview-grid strong {
  min-width: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mail-overview-grid small {
  min-width: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 680;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mail-compose-form {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}
.mail-compose-form > .span-3,
.mail-compose-form > .form-actions {
  grid-column: 1 / -1;
}
.mail-compose-form textarea[name="body"] { min-height: 180px; }
.mail-compose-form textarea[name="extra_emails"] { min-height: 64px; }
.mail-compose-form .multi-select-menu { max-height: 320px; }
.mail-template-form {
  grid-template-columns: minmax(180px, .8fr) minmax(120px, .45fr) minmax(220px, 1fr);
}
.mail-template-form > .span-3,
.mail-template-form > .form-actions {
  grid-column: 1 / -1;
}
.mail-template-form textarea { min-height: 220px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.mail-template-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 14px;
  align-items: start;
}
.mail-template-preview {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.mail-template-preview-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}
.mail-template-preview-head span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.mail-template-preview-head strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.mail-template-preview iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  background: #fff;
}
.template-var-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: #f8fafc;
}
.template-var-list code {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.audit-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}
.audit-overview-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-bottom: 10px;
}
.audit-overview-grid article {
  min-width: 0; display: grid; gap: 4px; padding: 9px 11px;
  border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.audit-overview-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.audit-overview-grid span {
  color: #64748b; font-size: 11px; font-weight: 820; letter-spacing: .04em; text-transform: uppercase;
}
.audit-overview-grid strong {
  min-width: 0; color: #111827; font-size: 16px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.audit-overview-grid small {
  min-width: 0; color: #64748b; font-size: 12px; font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.audit-toolbar .inline-form {
  display: inline-flex;
  align-items: end;
  gap: 5px;
  margin: 0;
  flex-wrap: wrap;
}
.audit-toolbar label {
  min-width: 92px;
  gap: 4px;
}
.audit-toolbar select { width: 150px; }
.audit-toolbar .audit-filter-search { min-width: 220px; }
.audit-toolbar .audit-filter-search input { width: 100%; }
.audit-toolbar .audit-filter-form .btn { min-height: 30px; padding: 5px 9px; font-size: 12px; }
.audit-toolbar input[type="number"] { width: 78px; }
.mail-log-toolbar { justify-content: flex-start; }
.mail-log-toolbar .toolbar-note {
  flex: 0 0 auto;
  padding: 0 4px;
}
.toolbar-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
}
.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--muted);
  font-weight: 680;
  font-size: 12px;
}
.pagination-bar div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.pagination-bar .btn {
  min-height: 30px;
  padding: 5px 9px;
}
.cms-page-form textarea { min-height: 220px; }
.group-console-summary {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-bottom: 10px;
}
.group-console-summary article {
  min-width: 0; display: grid; gap: 4px;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.group-console-summary span {
  min-width: 0; color: #64748b; font-size: 12px; font-weight: 760; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.group-console-summary strong { color: var(--text); font-size: 18px; line-height: 1; }
.group-console-summary small {
  min-width: 0; color: #64748b; font-size: 12px; font-weight: 680; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.group-console-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: start; }
.group-console-grid-2 { grid-template-columns: minmax(260px, .82fr) minmax(420px, 1.18fr); }
.group-console-card {
  min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .035);
}
.group-console-card.admin-inline-disclosure { margin-top: 0; }
.group-console-card .form-subhead {
  grid-column: 1 / -1; margin: 0 0 2px; border-top: 0; padding-top: 0;
  color: var(--text); text-transform: none; letter-spacing: 0; font-size: 14px;
}
.group-create-form { grid-template-columns: minmax(120px, .7fr) minmax(180px, 1fr) minmax(110px, .65fr); }
.group-policy-bind-form { grid-template-columns: minmax(180px, .9fr) minmax(260px, 1.3fr) minmax(100px, .48fr) minmax(100px, .48fr) auto; }
.group-policy-bind-form .form-actions { align-self: end; justify-content: flex-end; }
.permission-console-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.permission-console-grid .form-grid.compact {
  border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: #fbfcfe;
  grid-template-columns: minmax(180px, .9fr) minmax(280px, 1.4fr) minmax(110px, .5fr) auto;
  align-items: end;
}
.permission-multi-field { min-width: 0; }
.admin-advanced-panel summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.admin-advanced-panel summary::-webkit-details-marker { display: none; }
.admin-advanced-panel summary strong { font-size: 20px; line-height: 1.2; }
.admin-advanced-panel summary::after { content: "+"; margin-left: auto; color: var(--muted); font-weight: 800; }
.admin-advanced-panel[open] summary::after { content: "-"; }
.admin-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; min-width: 0; max-width: 360px; }
.admin-action-form { display: inline-grid; grid-auto-flow: column; grid-auto-columns: max-content; align-items: center; gap: 6px; margin: 0; }
.admin-action-form select { width: 132px; }
.admin-action-form input[type="number"] { width: 68px; }
.admin-action-form input[name="ban_reason"] { width: 112px; }
.admin-action-form .btn,
.admin-actions .btn { min-width: 0; min-height: 30px; padding: 5px 9px; font-size: 12px; }
.group-row-actions { min-width: 0; align-items: flex-start; }
.user-row-actions {
  width: min(226px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}
.user-row-actions .user-status-form {
  min-width: 0;
  grid-template-columns: minmax(86px, 1fr) auto;
}
.user-row-actions .user-status-form select { width: 100%; }
.user-authorization-usage { display: block; font-size: 13px; line-height: 1.3; white-space: nowrap; }
.user-authorization-usage + .table-note,
.user-authorization-na { margin-top: 3px; font-size: 11px; white-space: nowrap; }
.user-row-action-panel { justify-self: end; }
.user-row-action-panel[open] {
  grid-column: 1 / -1;
  justify-self: stretch;
}
.user-row-action-popover {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 8px;
}
.user-row-action-popover .admin-action-form {
  display: grid;
  grid-auto-flow: initial;
  grid-template-columns: 58px minmax(72px, 1fr) auto;
  gap: 6px;
}
.user-row-action-popover .admin-action-form input[name="ban_reason"] { width: 100%; }
.user-row-action-popover .user-mfa-form {
  grid-template-columns: 1fr;
  justify-items: start;
}
.device-row-actions {
  width: min(210px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}
.device-row-actions > .admin-action-form { min-width: 0; }
.device-row-action-panel { justify-self: end; }
.device-row-action-panel[open] {
  grid-column: 1 / -1;
  justify-self: stretch;
}
.row-edit-form.device-row-action-popover {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.device-row-action-popover .admin-action-form {
  display: grid;
  grid-auto-flow: initial;
  grid-template-columns: 1fr;
}
.row-edit-panel { display: inline-flex; flex-direction: column; align-items: flex-start; max-width: 100%; }
.row-edit-panel[open] { flex-basis: 100%; }
.row-edit-panel > summary {
  min-height: 30px; display: inline-flex; align-items: center; list-style: none;
  border: 1px solid var(--line); border-radius: 7px; padding: 5px 9px; background: #fff;
  font-size: 12px; font-weight: 700; cursor: pointer;
}
.row-edit-panel > summary::-webkit-details-marker {
  display: none;
}
.row-edit-form {
  margin-top: 8px; width: min(460px, 100%); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
  padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfe;
}
.row-edit-form.user-row-action-popover {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 8px;
}
.row-edit-form textarea { min-height: 62px; resize: vertical; }
.group-member-move-dialog { width: min(620px, calc(100vw - 32px)); }
.group-member-move-dialog .dialog-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: calc(100vh - 50px);
}
.group-member-move-dialog .dialog-head p {
  margin: 4px 0 0; color: var(--muted); font-size: 12px; font-weight: 650; line-height: 1.45;
}
.group-member-move-body { min-width: 0; display: grid; gap: 12px; overflow-y: auto; }
.group-member-move-target {
  min-width: 0; display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 12px; align-items: center;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #f8fafc;
}
.group-member-move-target span,
.group-member-move-preview span { color: var(--muted); font-size: 12px; font-weight: 700; }
.group-member-move-target strong,
.group-member-move-preview strong { min-width: 0; font-size: 13px; overflow-wrap: anywhere; }
.group-member-search-field { min-width: 0; }
.group-member-search-field input { width: 100%; min-width: 0; }
.group-member-move-body > .field-hint { margin: -5px 0 0; }
.group-member-move-preview {
  min-width: 0; display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 7px 12px;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.group-member-move-preview:not(:has(strong)) {
  display: block; color: var(--muted); font-size: 12px; font-weight: 650;
}
.group-member-move-dialog .form-error {
  margin: 0; padding: 9px 11px; border: 1px solid #fecaca; border-radius: 8px;
  background: #fff7f7; color: #b42318; font-size: 12px; font-weight: 700;
}
.user-overview-grid,
.support-overview-grid,
.announcement-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.user-overview-grid article,
.support-overview-grid article,
.announcement-overview-grid article {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}
.user-overview-grid article.has-value,
.support-overview-grid article.has-value,
.announcement-overview-grid article.has-value { border-color: #fed7aa; background: #fff7ed; }
.user-overview-grid span,
.support-overview-grid span,
.announcement-overview-grid span {
  color: #64748b;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.user-overview-grid strong,
.support-overview-grid strong,
.announcement-overview-grid strong {
  min-width: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-overview-grid small,
.support-overview-grid small,
.announcement-overview-grid small {
  min-width: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 680;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.announcement-overview-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.user-filter-bar,
.support-filter-bar,
.announcement-filter-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}
.user-filter-form,
.support-filter-form,
.announcement-filter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 6px;
  margin: 0;
}
.user-filter-form label,
.support-filter-form label,
.announcement-filter-form label {
  min-width: 112px;
  gap: 4px;
}
.user-filter-form .user-filter-search,
.announcement-filter-form .announcement-filter-search { min-width: 190px; }
.user-filter-form select,
.user-filter-form input,
.support-filter-form select,
.announcement-filter-form select,
.announcement-filter-form input {
  min-height: 30px;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 12px;
}
.user-filter-form .btn,
.support-filter-form .btn,
.announcement-filter-form .btn { min-height: 30px; padding: 5px 9px; font-size: 12px; }
.user-create-form { grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr) minmax(120px, .55fr) minmax(120px, .55fr) auto; }
.user-create-form .form-actions { align-self: end; }
.user-permission-form { grid-template-columns: minmax(240px, 1.3fr) minmax(140px, .7fr) minmax(92px, .44fr) minmax(92px, max-content) minmax(92px, max-content) minmax(110px, .5fr) auto; }
.user-permission-form .check-row {
  min-height: 36px;
  align-self: end;
  padding: 7px 9px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #fbfcfe;
}
.admin-feedback-form {
  display: grid;
  grid-template-columns: 112px minmax(150px, 1fr) auto;
  gap: 6px;
  align-items: start;
  width: min(420px, 100%);
  min-width: 320px;
}
.admin-feedback-form textarea { min-height: 48px; resize: vertical; }
.support-user-history-setting {
  display: grid; grid-template-columns: minmax(230px, auto) minmax(260px, 1fr) auto; gap: 12px; align-items: center;
  margin-bottom: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfe;
}
.support-user-history-setting .check-row { min-height: 32px; padding: 5px 7px; }
.support-user-history-setting > span { color: var(--muted); font-size: 12px; }
.support-user-history-setting .btn { min-height: 30px; padding: 5px 10px; font-size: 12px; }
.support-screenshot-field { gap: 7px; }
.support-file-picker {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.support-file-picker:focus-within { border-color: #94a3b8; box-shadow: 0 0 0 3px rgba(148, 163, 184, .16); }
.support-file-picker input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.support-file-button {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f9fc;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}
.support-file-name {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.support-screenshot-field small { color: var(--muted); font-size: 12px; font-weight: 650; }
.support-storage-maintenance {
  margin-bottom: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.support-storage-maintenance > summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 2px;
  cursor: pointer;
  list-style: none;
}
.support-storage-maintenance > summary::-webkit-details-marker { display: none; }
.support-storage-maintenance > summary > span:first-child { min-width: 0; display: flex; align-items: baseline; gap: 9px; }
.support-storage-maintenance > summary strong { color: var(--ink); font-size: 13px; }
.support-storage-maintenance > summary small { color: var(--muted); font-size: 12px; font-weight: 650; }
.support-storage-maintenance-body {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(260px, 1fr) minmax(330px, 1.1fr);
  gap: 0;
  padding: 0 0 10px;
}
.support-storage-note,
.support-storage-action {
  min-width: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-left: 1px solid var(--line);
}
.support-storage-note { display: grid; gap: 3px; padding-left: 2px; border-left: 0; }
.support-storage-note strong,
.support-storage-action strong { font-size: 12px; }
.support-storage-note span,
.support-storage-action small { color: var(--muted); font-size: 11px; font-weight: 640; line-height: 1.45; }
.support-storage-action > div { min-width: 0; display: grid; gap: 2px; flex: 1; }
.support-storage-action .btn { flex: 0 0 auto; min-height: 30px; padding: 5px 9px; font-size: 12px; }
.support-storage-history { display: grid; grid-template-columns: minmax(150px, 1fr) auto; align-items: end; }
.support-storage-history label { min-width: 0; gap: 3px; }
.support-storage-history input { min-height: 30px; padding: 5px 8px; font-size: 12px; }
.support-attachment-link {
  display: inline-grid;
  gap: 2px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}
.support-attachment-link:hover span { text-decoration: underline; }
.support-attachment-link small { color: var(--muted); font-size: 10px; font-weight: 650; }
.analytics-stat-grid { margin-bottom: 14px; }
.analytics-usage-panel .analytics-stat-grid { margin-bottom: 12px; }
.analytics-usage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-template-areas:
    "usage-trend usage-platform"
    "usage-trend usage-address";
  gap: 12px;
  align-items: stretch;
}
.analytics-usage-grid > :nth-child(1) { grid-area: usage-trend; }
.analytics-usage-grid > :nth-child(2) { grid-area: usage-platform; }
.analytics-usage-grid > :nth-child(3) { grid-area: usage-address; }
.analytics-usage-widget {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 12px;
}
.analytics-usage-widget .panel-head { margin-bottom: 0; }
.analytics-usage-grid > :first-child {
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.analytics-usage-grid > :first-child .analytics-chart-shell {
  height: 100%;
  min-height: 360px;
}
.analytics-trend-grid,
.analytics-distribution-grid {
  display: grid;
  gap: 12px;
  align-items: start;
}
.analytics-trend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.analytics-distribution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}
.analytics-record-list { display: grid; gap: 8px; }
.analytics-record-disclosure.admin-inline-disclosure { margin-top: 0; }
.analytics-record-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.analytics-record-counts,
.analytics-record-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 14px;
}
.analytics-record-counts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
}
.analytics-record-counts strong { margin-left: 3px; color: var(--text); font-size: 13px; }
.analytics-record-actions { justify-content: flex-end; }
.analytics-record-actions .inline-form + .inline-form {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.analytics-record-retention-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.analytics-record-disclosure .pagination-bar { margin-bottom: 2px; }
.analytics-chart-shell {
  display: grid;
  grid-template-columns: 18px 38px minmax(0, 1fr);
  grid-template-rows: minmax(230px, 1fr) 20px;
  min-height: 250px;
}
.analytics-axis-title {
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
}
.analytics-axis-title-y {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.analytics-axis-title-x {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  justify-self: center;
}
.analytics-y-axis {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  padding: 12px 7px 30px 0;
}
.analytics-y-axis span {
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 680;
  line-height: 1;
  transform: translateY(-50%);
}
.analytics-chart-plot {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.analytics-chart-canvas {
  position: relative;
  min-width: 400px;
  height: 100%;
  min-height: 228px;
}
.analytics-chart-grid-lines {
  position: absolute;
  z-index: 0;
  inset: 12px 12px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #aeb8c7;
  border-bottom: 1px solid #aeb8c7;
  pointer-events: none;
}
.analytics-chart-grid-lines i {
  display: block;
  width: 100%;
  border-top: 1px solid #e3e8ef;
}
.analytics-chart-grid-lines i:first-child { border-top-color: #d5dce6; }
.analytics-column-chart {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(14, minmax(22px, 1fr));
  gap: 4px;
  height: 100%;
  min-height: inherit;
  align-items: end;
  padding: 12px 12px 8px;
}
.analytics-column {
  display: grid;
  grid-template-rows: minmax(160px, 1fr) auto;
  gap: 7px;
  min-width: 0;
}
.analytics-column-bars {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3px;
  min-height: 160px;
}
.analytics-column-bars i {
  display: block;
  width: 7px;
  min-height: 4px;
  border-radius: 5px 5px 2px 2px;
}
.analytics-column-bars i.is-zero { min-height: 0; }
.analytics-column span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.analytics-column:first-child span { text-align: left; }
.analytics-column:last-child span { text-align: right; }
.analytics-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}
.analytics-legend span { display: inline-flex; align-items: center; gap: 6px; }
.analytics-legend i {
  width: 9px; height: 9px; border-radius: 999px; display: inline-block;
}
.analytics-bar-list { display: grid; gap: 10px; }
.analytics-bar-row {
  display: grid;
  grid-template-columns: minmax(112px, .9fr) minmax(80px, 1.3fr) 30px;
  gap: 10px;
  align-items: center;
}
.analytics-bar-label {
  min-width: 0; display: grid; gap: 1px;
}
.analytics-bar-label span {
  color: var(--text);
  font-size: 13px;
  font-weight: 730;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.analytics-bar-label small {
  color: var(--muted); font-size: 10px; font-weight: 700; line-height: 1.3;
}
.analytics-bar-row > div:not(.analytics-bar-label) {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}
.analytics-bar-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #111827;
}
.analytics-bar-row strong {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.admin-shell [class*="-overview-grid"],
.admin-shell .admin-security-summary-grid,
.admin-shell .group-console-summary {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.admin-shell [class*="-overview-grid"] :is(strong, small),
.admin-shell .admin-security-summary-grid :is(strong, small),
.admin-shell .group-console-summary :is(span, small),
.admin-shell .software-release-summary strong,
.admin-shell .version-summary-grid strong,
.admin-shell .site-upgrade-meta span {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
}
.admin-shell [class*="-console-panel"] > .panel-head p { display: none; }
.analytics-donut-wrap {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.analytics-donut {
  width: 138px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--line);
}
.analytics-donut::after {
  content: "";
  width: 76px;
  aspect-ratio: 1;
  border-radius: inherit;
  background: #fff;
  box-shadow: 0 0 0 1px var(--line);
}
.analytics-donut span {
  position: absolute;
  z-index: 1;
  color: var(--text);
  font-size: 24px;
  font-weight: 820;
}
.analytics-donut-legend { display: grid; gap: 8px; min-width: 0; }
.analytics-donut-legend span {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}
.analytics-donut-legend i { width: 10px; height: 10px; border-radius: 999px; }
.analytics-donut-legend strong { color: var(--text); }
.timeline { display: grid; gap: 14px; }
.timeline-item { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.timeline-item h3 { margin: 8px 0; }

.site-footer {
  display: grid; grid-template-columns: minmax(200px, .7fr) minmax(320px, 1.3fr); align-items: center; gap: 22px 36px;
  padding: 28px max(32px, calc((100vw - 1320px) / 2 + 32px)) 22px;
  color: var(--muted); border-top: 1px solid var(--line); margin-top: auto; background: rgba(255,255,255,.72);
}
.footer-brand { color: var(--text); }
.site-footer p { margin: 10px 0 0; max-width: 360px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.footer-links a { color: var(--muted); font-weight: 680; }
.footer-links a:hover { color: var(--text); }
.footer-copy {
  grid-column: 1 / -1; display: inline-flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; padding-top: 18px;
  border-top: 1px solid #e4e9f0; white-space: normal; font-size: 12px; font-weight: 680;
}
.footer-copy a { color: var(--muted); font-weight: 680; }
.footer-copy a:hover { color: var(--text); }
.police-record-link { display: inline-flex; align-items: center; gap: 5px; }
.police-record-link img { width: 16px; height: 16px; display: block; object-fit: contain; }

@media (max-width: 1220px) {
	  .analytics-distribution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	  .nav-settings-grid { grid-template-columns: 1fr; }
		  .cms-overview-grid,
.cms-home-group,
.cms-home-detail-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }
	  .cms-home-mode { grid-template-columns: 1fr; }
	  .group-console-grid-2,
	  .group-policy-bind-form {
	    grid-template-columns: 1fr;
	  }
  .group-policy-bind-form .form-actions { justify-content: flex-start; }
	  .software-release-summary,
.security-overview-grid,
.product-overview-grid,
.activation-overview-grid,
.audit-overview-grid,
.user-overview-grid,
.support-overview-grid,
.system-overview-grid,
.license-overview-grid,
.mail-overview-grid,
.certificate-overview-grid,
.user-create-form,
.user-permission-form,
.admin-shell .software-publish-form,
.admin-shell .software-notes-form,
.admin-shell .product-save-form,
.admin-shell .product-module-form,
.admin-shell .license-user-assign-form,
.admin-shell .license-group-assign-form,
.admin-shell .license-quantity-form,
.admin-shell .certificate-upload-form {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }
	  .admin-shell .software-publish-form { grid-template-columns: 1fr; }
	  .software-release-fields > .form-grid,
	  .software-platform-build-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	  .software-append-context { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	  .admin-shell .product-save-form > .span-2,
	  .admin-shell .product-module-form > .span-2 { grid-column: 1 / -1; }
  .license-policy-form { grid-template-columns: repeat(3, minmax(150px, 1fr)); }
  .admin-shell .license-quantity-form > .span-2 { grid-column: 1 / -1; }
  .admin-standalone-activation-form { grid-template-columns: repeat(3, minmax(150px, 1fr)); }
  .settings-fields,
  .settings-fields-access,
  .settings-fields-smtp,
  .settings-fields-daily-summary,
  .settings-fields-time {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .settings-fields-security { grid-template-columns: repeat(2, minmax(170px, max-content)); }
	  .license-assignment-grid { grid-template-columns: 1fr; }
	  .license-assignment-block { padding-left: 0; padding-right: 0; }
	  .license-assignment-block + .license-assignment-block { border-top: 1px solid var(--line); border-left: 0; padding-top: 14px; }
	  .daily-summary-run-grid { grid-template-columns: 1fr; align-items: start; }
	  .daily-summary-run-action { justify-content: flex-start; }
	  .support-storage-maintenance-body { grid-template-columns: 1fr; }
	  .support-storage-action { padding-left: 2px; border-top: 1px solid var(--line); border-left: 0; }
	  .settings-message,
	  .settings-wide {
	    grid-column: 1 / -1;
	  }
	  .settings-fields-daily-summary .settings-message,
	  .settings-fields-daily-summary .settings-summary-help { grid-column: 1 / -1; }
	  .security-field-grid-4,
	  .security-toggle-list-four,
	  .security-toggle-list-six {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }
	  .security-admin-grid,
.security-invitation-grid,
.analytics-usage-grid,
.site-upgrade-workbench {
	    grid-template-columns: 1fr;
	  }
	  .analytics-usage-grid {
	    grid-template-areas: "usage-trend" "usage-platform" "usage-address";
	  }
	  .site-upgrade-form {
	    grid-template-columns: 1fr;
	  }
	  .site-upgrade-history-item { grid-template-columns: 1fr; }
	  .site-upgrade-rollback-action { justify-content: flex-start; }
	}

@media (max-width: 920px) {
  .support-user-history-setting { grid-template-columns: 1fr auto; }
  .support-user-history-setting > span { grid-column: 1 / -1; grid-row: 2; }
  .software-release-build-row { grid-template-columns: 1fr; gap: 8px; }
  .software-release-build-actions { justify-content: flex-start; flex-wrap: wrap; }
  .analytics-record-toolbar { align-items: flex-start; flex-direction: column; }
  .analytics-record-actions { width: 100%; justify-content: flex-start; }
  .analytics-record-actions .inline-form + .inline-form { padding-left: 0; border-left: 0; }
  .site-header {
    min-height: 64px; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; padding: 12px 18px;
  }
  .site-header > .brand { grid-column: 1; }
  .site-header > .language-switch { grid-column: 2; grid-row: 1; justify-self: end; }
  .site-menu-toggle { grid-column: 3; grid-row: 1; display: inline-flex; }
  .site-nav,
  .site-header-auth { grid-column: 1 / -1; display: none; width: 100%; }
  .site-header.is-menu-open .site-nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; padding-top: 10px; border-top: 1px solid var(--line); }
  .site-header.is-menu-open .site-nav a { min-height: 40px; display: flex; align-items: center; padding: 7px 10px; border-radius: 7px; }
  .site-header.is-menu-open .site-nav a:hover { background: #f4f6f8; }
  .site-header.is-menu-open .site-header-auth { display: flex; align-items: center; justify-content: flex-start; padding-top: 10px; border-top: 1px solid var(--line); }
  .home-hero { grid-template-columns: 1fr; padding-top: 44px; gap: 28px; }
  .home-hero h1 { font-size: 48px; }
  .home-feature-grid { grid-template-columns: 1fr; }
  .download-center-hero { grid-template-columns: 1fr; align-items: start; padding: 28px 28px 24px; }
  .version-information { max-width: none; }
  .download-center-body { padding: 26px 28px 30px; }
  .download-os-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-package-table-head,
  .account-package-row { grid-template-columns: minmax(240px, 1fr) 88px 92px 148px; gap: 10px; }
  .portal-card-grid.three, .portal-stat-grid, .contact-grid { grid-template-columns: 1fr; }
  .documentation-hero { grid-template-columns: 1fr; gap: 18px; }
  .documentation-quick-actions { grid-template-columns: 1fr; }
  .documentation-search { grid-template-columns: 28px minmax(0, 1fr) auto; }
  .documentation-search input { grid-column: 1 / -1; }
  .documentation-chapter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-extra-card { grid-column: auto; }
  .license-list-head { display: none; }
  .license-list-main { grid-template-columns: 1fr; gap: 11px; padding: 16px; }
  .license-list-name span,
  .license-list-field span,
  .license-list-status span { display: block; }
  .license-list-status { display: block; }
	  .license-list-activations { margin-left: 16px; margin-right: 16px; }
	  .cms-home-group,
	  .cms-home-detail-grid {
	    grid-template-columns: 1fr;
	  }
	  .cms-home-group > .span-2,
	  .cms-home-detail-grid > .span-2 { grid-column: 1; }
	  .cms-home-group-head,
	  .cms-home-details > summary {
	    align-items: flex-start;
	    flex-direction: column;
	    gap: 3px;
	  }
		  .cms-home-group-head span,
		  .cms-home-details > summary span { text-align: left; }
			  .license-filter-bar,
			  .activation-filter-bar,
			  .user-filter-bar,
			  .support-filter-bar,
			  .announcement-filter-bar,
			  .software-filter-bar {
			    align-items: flex-start;
			    flex-direction: column;
			  }
			  .license-filter-form,
			  .license-filter-form label,
			  .license-filter-form .license-filter-search,
			  .activation-filter-form,
			  .activation-filter-form label,
			  .activation-filter-form .activation-filter-search,
			  .software-filter-form,
			  .software-filter-form label,
			  .software-filter-form .software-filter-search,
			  .user-filter-form,
			  .user-filter-form label,
			  .user-filter-form .user-filter-search,
			  .announcement-filter-form,
			  .announcement-filter-form label,
			  .announcement-filter-form .announcement-filter-search,
		  .support-filter-form,
		  .support-filter-form label {
		    width: 100%;
		  }
  .support-storage-maintenance > summary > span:first-child { align-items: flex-start; flex-direction: column; gap: 2px; }
  .support-storage-history { grid-template-columns: minmax(0, 1fr) auto; }
  .analytics-trend-grid,
  .analytics-distribution-grid { grid-template-columns: 1fr; }
  .analytics-usage-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "usage-trend" "usage-platform" "usage-address";
  }
  .analytics-donut-wrap { grid-template-columns: 1fr; justify-items: start; }
	  .group-console-summary,
.group-console-grid,
.group-create-form,
.software-release-summary,
.security-overview-grid,
.product-overview-grid,
.activation-overview-grid,
.audit-overview-grid,
.user-overview-grid,
.support-overview-grid,
.system-overview-grid,
.announcement-overview-grid,
.license-overview-grid,
.mail-overview-grid,
.certificate-overview-grid,
.user-create-form,
.user-permission-form,
.admin-shell .software-publish-form,
.admin-shell .software-notes-form,
.admin-shell .product-save-form,
.admin-shell .product-module-form,
.admin-shell .license-user-assign-form,
.admin-shell .license-group-assign-form,
.admin-shell .license-quantity-form,
.admin-shell .certificate-upload-form { grid-template-columns: 1fr; }
	  .admin-shell .software-publish-form,
	  .software-release-fields > .form-grid,
	  .software-platform-build-fields,
	  .software-append-context { grid-template-columns: 1fr; }
	  .software-platform-build-fields > .span-2,
	  .software-platform-build-fields > .span-3 { grid-column: 1; }
  .software-publish-template { grid-template-columns: 1fr; }
  .software-status-tabs { width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .permission-console-grid .form-grid.compact { grid-template-columns: 1fr; }
  .group-member-move-target,
  .group-member-move-preview { grid-template-columns: 1fr; gap: 4px; }
  .admin-shell .form-grid.compact .multi-select-field,
  .license-policy-form .license-policy-actions,
	  .admin-standalone-actions { grid-column: 1; }
	  .activation-grid { grid-template-columns: 1fr; }
	  .mfa-setup-grid,
.admin-security-summary-grid { grid-template-columns: 1fr; }
	  .site-footer { grid-template-columns: 1fr; }
	  .footer-links { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { font-size: 48px; }
  .card-grid.three, .grid-2, .quick-grid, .home-card-grid { grid-template-columns: 1fr; }
  .form-grid, .form-grid.compact { grid-template-columns: 1fr; }
  .upgrade-status-head { grid-template-columns: 1fr; align-items: start; }
  .settings-fields,
  .settings-fields-access,
  .settings-fields-smtp,
  .settings-fields-daily-summary,
  .settings-fields-time,
  .settings-fields-security {
    grid-template-columns: 1fr;
  }
	  .settings-message,
	  .settings-wide {
	    grid-column: 1;
	  }
	  .settings-fields-daily-summary .settings-message,
	  .settings-fields-daily-summary .settings-summary-help { grid-column: 1; }
	  .security-settings-grid,
.security-field-grid,
.security-field-grid-4,
.security-toggle-list,
.security-toggle-list-four,
.security-toggle-list-six,
.security-password-layout,
.security-admin-grid,
.security-invitation-grid {
	    grid-template-columns: 1fr;
	  }
	  .security-settings-block-wide,
	  .security-field-wide {
	    grid-column: 1;
	  }
	  .security-settings-block-head:not(summary) {
	    flex-direction: column;
	    gap: 8px;
	  }
	  .security-toggle-pair {
	    justify-content: flex-start;
	  }
	  .version-summary-grid {
	    grid-template-columns: 1fr;
	  }
	  .settings-block-head:not(summary) {
	    align-items: flex-start;
	    flex-direction: column;
	    gap: 6px;
	  }
  .smtp-test-form,
  .mail-compose-form,
  .mail-template-form,
  .mail-template-editor-grid {
    grid-template-columns: 1fr;
  }
  .mail-template-preview iframe { height: 380px; }
		  .audit-toolbar,
		  .pagination-bar {
		    align-items: stretch;
		    flex-direction: column;
		  }
		  .audit-toolbar .inline-form,
		  .audit-toolbar .inline-form label,
		  .audit-toolbar .inline-form select,
		  .audit-toolbar .audit-filter-search {
		    width: 100%;
		  }
		  .mail-log-toolbar .inline-form,
	  .mail-log-toolbar .inline-form label,
	  .mail-log-toolbar .inline-form select {
	    width: 100%;
	  }
  .pagination-bar div { justify-content: flex-start; }
  .admin-form-save-bar {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-save-bar-visible .admin-back-top { bottom: 132px; }
  .admin-form-save-bar div { justify-content: flex-end; }
  .span-2 { grid-column: span 1; }
  .span-3 { grid-column: span 1; }
  .install-checks .check-row { grid-template-columns: 1fr; gap: 4px; }
  .app-shell { grid-template-columns: 1fr; }
  .app-shell.admin-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
  .admin-shell .sidebar { position: static; height: auto; }
  .admin-sidebar-collapsed .app-shell.admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar-collapsed .admin-shell .sidebar { display: none; }
  .sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar nav.admin-nav { grid-template-columns: 1fr; }
  .admin-shell .topbar { position: static; margin: 0 0 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
  .admin-shell .topbar-actions { width: 100%; flex-wrap: nowrap; justify-content: flex-start; }
  .admin-sidebar-toggle { width: auto; flex: 0 0 auto; }
  .admin-density-toggle { width: 100%; }
  .admin-command-trigger { width: auto; min-width: 0; flex: 1 1 auto; justify-content: space-between; }
  .admin-account-menu { width: auto; min-width: 0; flex: 0 1 auto; }
  .admin-account-menu summary { width: auto; max-width: 148px; justify-content: space-between; }
  .admin-account-menu .account-menu-panel { left: auto; right: 0; width: min(320px, calc(100vw - 32px)); }
  .admin-table-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .admin-table-meta [data-admin-table-count] { margin-right: 0; }
  .admin-table-scroll-tools { width: 100%; justify-content: space-between; border-radius: 8px; }
  .admin-table-scroll-tools button { flex: 1; }
  .admin-table-copy-visible { width: 100%; border-radius: 8px; }
  .admin-table-filter { width: 100%; }
  .admin-shell section.panel,
  .admin-shell .grid-2 > .panel { scroll-margin-top: 18px; }
}

@media (max-width: 640px) {
  .account-feedback-head { align-items: flex-start; flex-direction: column; }
  .account-feedback-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-user-history-setting { grid-template-columns: 1fr; }
  .support-user-history-setting > span { grid-column: 1; grid-row: auto; }
  .support-user-history-setting .btn { justify-self: start; }
  .analytics-record-actions,
  .analytics-record-actions .inline-form { align-items: stretch; flex-direction: column; width: 100%; }
  .admin-shell .analytics-record-actions .inline-form input:not([type="hidden"]),
  .admin-shell .analytics-record-actions .inline-form select,
  .analytics-record-actions .btn { width: 100%; max-width: none; }
  .site-header.is-menu-open .site-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header.is-menu-open .site-header-auth { flex-wrap: wrap; }
  .admin-command-palette { padding: 8vh 12px 18px; }
  .admin-command-item { grid-template-columns: 1fr; gap: 3px; align-items: start; }
  .admin-command-item code { justify-self: start; }
  .admin-disclosure-subhead { align-items: flex-start; flex-direction: column; gap: 3px; }
  .admin-disclosure-subhead span { text-align: left; }
  .announcement-bar { grid-template-columns: auto minmax(0, 1fr); border-radius: 14px; margin-left: 18px; margin-right: 18px; }
  .announcement-bar-link { display: none; }
  .announcement-card-head { flex-direction: column; gap: 6px; }
  .announcement-card-head time { white-space: normal; }
  .hero, .home-hero, .home-section, .content-band, .page-section, .main-pane { padding-left: 18px; padding-right: 18px; }
  .home-hero h1 { font-size: 40px; }
  .hero-lede { font-size: 18px; }
  .hero-trust-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; margin-top: 24px; }
  .hero-trust-list li { min-width: 0; padding: 0 10px; }
  .hero-trust-list li:first-child { padding-left: 0; }
  .hero-trust-list strong, .hero-trust-list span { overflow-wrap: anywhere; }
  .home-hero-media { aspect-ratio: 4 / 3; border-radius: 12px; }
  .download-center-card { border-radius: 14px; }
  .download-center-hero, .download-center-body { padding-left: 18px; padding-right: 18px; }
  .download-release-copy h2 { font-size: 34px; }
  .version-information dl { grid-template-columns: 1fr; }
  .download-os-grid { grid-template-columns: 1fr; }
  .download-os-options { position: static; display: none; padding: 0 9px 9px; visibility: visible; opacity: 1; transform: none; }
  .download-os-card:focus-within .download-os-options,
  .download-os-card.is-open .download-os-options { display: block; }
  .download-os-options-inner { box-shadow: none; }
  .download-os-card:hover { transform: none; }
  .software-external-links-head { align-items: flex-start; flex-direction: column; }
  .software-external-link-row { grid-template-columns: 1fr; }
  .software-external-link-row .btn { justify-self: start; }
  .download-center-heading, .release-notes-strip { align-items: flex-start; flex-direction: column; }
  .release-notes-strip { margin-left: 18px; margin-right: 18px; margin-bottom: 24px; }
  .portal-auth-page, .portal-page { padding-left: 18px; padding-right: 18px; }
  .release-note-header { grid-template-columns: 1fr; gap: 12px; }
  .release-note-meta { display: flex; align-items: center; justify-content: space-between; }
  .release-note-platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-download-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .account-download-summary { grid-template-columns: auto auto; }
  .account-download-summary small { grid-column: 1 / -1; text-align: left; }
  .account-release-header { grid-template-columns: 42px minmax(0, 1fr); }
  .account-release-header time { grid-column: 2; }
  .account-package-table-head { display: none; }
  .account-package-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 14px; padding: 15px 16px; }
  .account-package-identity,
  .account-package-download { grid-column: 1 / -1; }
  .account-package-meta span { display: block; }
  .account-package-download > small { text-align: left; }
  .account-download-source-popover { position: relative; top: auto; right: auto; width: 100%; filter: none; }
  .account-download-source-popover::before { border-color: var(--line); }
  .documentation-hero { padding-top: 4px; }
  .documentation-hero h1 { font-size: 34px; }
  .documentation-search { grid-template-columns: 28px minmax(0, 1fr); }
  .documentation-search > span:last-child { grid-column: 1 / -1; min-width: 0; text-align: left; }
  .documentation-chapter-header h1 { font-size: 32px; }
  .documentation-chapter-grid,
  .documentation-guide-grid { grid-template-columns: 1fr; }
  .documentation-chapter-card { min-height: 0; }
  .documentation-guide { padding: 14px; }
  .documentation-chapter-pager { grid-template-columns: 1fr; }
  .documentation-chapter-pager > span { display: none; }
  .documentation-chapter-pager .is-next { text-align: left; }
  .documentation-support { align-items: flex-start; flex-direction: column; }
  .documentation-support > div:last-child { justify-content: flex-start; }
  .portal-card { padding: 18px; }
  .license-card-grid { grid-template-columns: 1fr; }
  .license-activation-meta { grid-template-columns: 1fr; }
  .table-card { padding: 0; }
  .verification-row { grid-template-columns: 1fr; }
  .captcha-row { grid-template-columns: 1fr; }
  .license-identity { grid-template-columns: 48px minmax(0, 1fr); }
  .license-identity .badge { grid-column: 2; justify-self: start; }
  .detail-list div { display: grid; gap: 4px; }
  .detail-list dd { text-align: left; }
  .metric-row { grid-template-columns: 1fr; }
  .footer-copy { justify-content: flex-start; }
  .analytics-column-chart {
    grid-template-columns: repeat(14, minmax(14px, 1fr));
    gap: 4px;
    padding: 10px 8px 7px;
  }
}

@media (max-width: 360px) {
  .release-note-platform-grid { grid-template-columns: 1fr; }
  .hero-trust-list li { padding-left: 8px; padding-right: 8px; }
  .hero-trust-list span { display: none; }
}
