:root {
  font-family: Inter, Segoe UI, PingFang SC, Microsoft YaHei, Arial, sans-serif;
  color: #172033;
  background: #f5f7fb;
  --vora-bg: #f5f7fb;
  --vora-surface: #ffffff;
  --vora-surface-soft: #f8faff;
  --vora-border: #e3e8f2;
  --vora-border-strong: #c9d3e4;
  --vora-text: #172033;
  --vora-muted: #70809a;
  --vora-primary: #1677ff;
  --vora-primary-soft: #e8f0ff;
  --vora-teal: #0d9b8a;
  --vora-teal-soft: #e5f7f3;
  --vora-amber: #d78a17;
  --vora-amber-soft: #fff4df;
  --vora-danger: #d84c5b;
  --vora-danger-soft: #ffedf0;
  --vora-shadow: 0 12px 35px rgba(38, 58, 95, .08);
}

.dark-mode {
  color-scheme: dark;
  --vora-bg: #131923;
  --vora-surface: #1b2432;
  --vora-surface-soft: #202c3d;
  --vora-border: #34445a;
  --vora-border-strong: #4a5d75;
  --vora-text: #edf3fc;
  --vora-muted: #a1aec0;
  --vora-primary: #70a7ff;
  --vora-primary-soft: #263e65;
  --vora-teal: #57c6b5;
  --vora-teal-soft: #183f3c;
  --vora-amber: #e8b55b;
  --vora-amber-soft: #493a21;
  --vora-danger: #f0818d;
  --vora-danger-soft: #4a2630;
  --vora-shadow: 0 16px 40px rgba(0, 0, 0, .25);
}

* { box-sizing: border-box; }
html, body, #app { min-width: 320px; min-height: 100%; max-width: 100%; margin: 0; background: var(--vora-bg); color: var(--vora-text); overflow-x: hidden; }
body { font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
textarea { resize: vertical; }
[hidden] { display: none !important; }

.app-shell { min-height: 100vh; max-width: 100%; display: flex; align-items: stretch; background: var(--vora-bg); overflow-x: hidden; }
.app-sider {
  width: 248px; flex: 0 0 248px; display: flex; flex-direction: column;
  background: var(--vora-surface); border-right: 1px solid var(--vora-border);
  min-height: 100vh; height: auto; overflow: visible;
}
.sider-nav { display: grid; gap: 4px; padding: 0 10px 12px; overflow: visible; flex: 0 0 auto; }
.nav-item.nav-sub { min-height: 38px; font-size: 13px; padding-left: 18px; }
.app-sider.collapsed { width: 72px; flex-basis: 72px; }
.brand-lockup {
  height: 84px; display: flex; align-items: center; gap: 12px; padding: 0 22px;
  cursor: pointer; border-bottom: 1px solid var(--vora-border);
}
.app-sider.collapsed .brand-lockup { justify-content: center; padding: 0; }
.brand-mark {
  position: relative; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 11px; background: #182b52; color: #fff; font-size: 20px; font-weight: 900;
  box-shadow: 0 7px 15px #182b522e;
}
.brand-mark span {
  position: absolute; width: 8px; height: 8px; top: -3px; right: -3px;
  border: 2px solid var(--vora-surface); border-radius: 50%; background: #26b79f;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { letter-spacing: .08em; font-size: 17px; }
.brand-copy small { margin-top: 5px; color: var(--vora-muted); letter-spacing: .11em; font-size: 10px; font-weight: 700; }
.sider-caption { margin: 25px 20px 10px; color: var(--vora-muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.nav-item {
  display: flex; align-items: center; gap: 12px; min-height: 46px; padding: 0 14px;
  border: 0; border-radius: 9px; background: transparent; color: var(--vora-text); text-align: left;
  font-size: 14px; font-weight: 500;
}
.nav-item:hover { background: var(--vora-surface-soft); }
.nav-item.active { background: var(--vora-primary-soft); color: var(--vora-primary); font-weight: 600; }
.nav-icon { width: 18px; height: 18px; display: grid; place-items: center; color: inherit; }
.nav-icon svg { width: 18px; height: 18px; display: block; }
.sider-bottom {
  margin-top: auto; padding: 16px 14px; display: flex; justify-content: flex-end; align-items: center;
  border-top: 1px solid var(--vora-border);
}
.sider-health { display: flex; align-items: center; gap: 9px; min-width: 0; }
.sider-health > div { display: flex; flex-direction: column; }
.sider-health b { font-size: 11px; }
.sider-health small { margin-top: 3px; color: var(--vora-muted); font-size: 10px; white-space: nowrap; }
.health-dot, .mini-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--vora-teal);
  box-shadow: 0 0 0 4px var(--vora-teal-soft);
}
.icon-btn {
  width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 50%;
  background: transparent; color: var(--vora-muted);
}
.icon-btn:hover { background: var(--vora-surface-soft); color: var(--vora-text); }

.content-layout { min-width: 0; flex: 1; display: flex; flex-direction: column; background: var(--vora-bg); }
.top-header {
  height: 70px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; background: var(--vora-surface); border-bottom: 1px solid var(--vora-border);
}
.header-left, .breadcrumb, .header-right { display: flex; align-items: center; gap: 9px; }
.header-cdk { display: flex; align-items: center; gap: 8px; margin-right: 8px; }
.header-cdk > span { color: var(--vora-muted); font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.header-cdk .input { width: 260px; min-height: 36px; padding: 6px 10px; font-size: 13px; }
.header-cdk .btn { min-height: 36px; }
.cdk-result {
  min-width: 168px; min-height: 28px; padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0;
  color: transparent;
}
.cdk-result.ok { background: var(--vora-teal-soft); color: var(--vora-teal); }
.cdk-result.bad { background: var(--vora-danger-soft); color: var(--vora-danger); }
.breadcrumb span { color: var(--vora-muted); font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.breadcrumb strong { font-size: 14px; }
.mobile-menu { display: none; }
.page-content { padding: 32px; min-width: 0; overflow-x: hidden; }
.page-container { max-width: min(1440px, 100%); margin: 0 auto; min-width: 0; }
.page-container.gopay-protocol-wide { max-width: none; }
.page-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.page-title h1 { margin: 0; font-size: 30px; line-height: 1.18; letter-spacing: -.02em; font-weight: 750; }
.page-title p { margin: 8px 0 0; color: var(--vora-muted); font-size: 15px; }
.page-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.soft-card {
  border: 1px solid var(--vora-border); border-radius: 12px;
  background: var(--vora-surface); box-shadow: var(--vora-shadow);
  min-width: 0; max-width: 100%;
}
.panel-pad { padding: 24px; }
.section-title { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 17px; }
.section-title h2 { margin: 0; font-size: 20px; }
.section-title p { margin: 4px 0 0; color: var(--vora-muted); font-size: 13px; }
.section-eyebrow { color: var(--vora-primary); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.section-number {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px;
  background: var(--vora-primary-soft); color: var(--vora-primary); font-size: 12px; font-weight: 800;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 16px; border: 1px solid transparent; border-radius: 8px;
  background: var(--vora-surface-soft); color: var(--vora-text); font-weight: 500;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn:hover { background: #eef3fb; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-primary { background: #1677ff; color: #fff; box-shadow: 0 6px 16px #1677ff2e; }
.btn-primary:hover { background: #409eff; }
.btn-danger { background: var(--vora-danger); color: #fff; }
.btn-danger:hover { filter: brightness(1.05); }
.btn-secondary { background: var(--vora-surface); border-color: var(--vora-border); color: var(--vora-text); }
.btn-secondary:hover { border-color: var(--vora-primary); color: var(--vora-primary); background: var(--vora-primary-soft); }
.btn-text { background: transparent; color: var(--vora-primary); min-height: 32px; }
.btn-text:hover { background: var(--vora-primary-soft); }
.btn-lg { min-height: 42px; min-width: 180px; font-size: 15px; padding: 0 22px; }
.btn-sm { min-height: 32px; padding: 0 10px; font-size: 13px; }
.btn-block { width: 100%; }

.tag {
  display: inline-flex; align-items: center; gap: 6px; min-height: 26px; padding: 0 10px;
  border-radius: 999px; background: var(--vora-surface-soft); color: var(--vora-muted); font-size: 12px; font-weight: 700;
}
.tag.success { background: var(--vora-teal-soft); color: var(--vora-teal); }
.tag.info { background: var(--vora-primary-soft); color: var(--vora-primary); }
.tag.warning { background: var(--vora-amber-soft); color: var(--vora-amber); }
.tag.error { background: var(--vora-danger-soft); color: var(--vora-danger); }
.avatar {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: #e8f0ff; color: #1c64d1; font-size: 12px; font-weight: 800;
}

.field { display: grid; gap: 7px; }
.field > span, .field-label { color: var(--vora-text); font-size: 14px; font-weight: 700; }
.field small, .field-note { color: var(--vora-muted); font-size: 12px; font-weight: 500; }
.input, select.input, textarea.input {
  width: 100%; max-width: 100%; min-height: 44px; padding: 11px 14px;
  border: 1px solid #e0e0e6; border-radius: 8px;
  background: var(--vora-surface); color: var(--vora-text);
  transition: border-color .16s ease, box-shadow .16s ease;
  overflow-wrap: anywhere; word-break: break-all;
}
.dark-mode .input, .dark-mode select.input, .dark-mode textarea.input { border-color: var(--vora-border); }
textarea.input { min-height: 132px; line-height: 1.6; overflow-x: auto; }
.input:hover { border-color: var(--vora-border-strong); }
.input:focus { outline: none; border-color: #1677ff; box-shadow: 0 0 0 2px #1677ff22; }
.input-row { display: flex; gap: 0; }
.input-row .input { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.input-row .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid.one { grid-template-columns: 1fr; }
.config-wide { grid-column: 1 / -1; }
.route-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, .8fr); gap: 22px; align-items: start; width: 100%; min-width: 0; }
.sticky-column { position: sticky; top: 20px; display: grid; gap: 18px; min-width: 0; }
.metric-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 22px; }
.metric-card { padding: 19px 20px; border: 1px solid var(--vora-border); border-radius: 11px; background: var(--vora-surface); box-shadow: var(--vora-shadow); }
.metric-card span { color: var(--vora-muted); font-size: 13px; }
.metric-card strong { display: block; margin-top: 8px; font-size: 28px; line-height: 1; }
.metric-card small { display: block; margin-top: 7px; color: var(--vora-muted); font-size: 12px; }
.metric-card.blue strong { color: var(--vora-primary); }
.metric-card.teal strong { color: var(--vora-teal); }
.metric-card.amber strong { color: var(--vora-amber); }
.metric-card.red strong { color: var(--vora-danger); }

.choice-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.choice-grid.channels { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.choice-tile {
  position: relative; min-height: 72px; padding: 13px 14px 12px; cursor: pointer;
  border: 1px solid var(--vora-border); border-radius: 10px; background: var(--vora-surface);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease, background .16s ease;
}
.choice-tile:hover { transform: translateY(-1px); border-color: var(--vora-primary); box-shadow: 0 6px 15px #1677ff1a; }
.choice-tile.selected { border-color: var(--vora-primary); background: var(--vora-primary-soft); box-shadow: inset 0 0 0 1px var(--vora-primary); }
.choice-tile.disabled { opacity: .42; cursor: not-allowed; }
.choice-tile strong { display: block; font-size: 14px; }
.choice-tile small { display: block; margin-top: 4px; color: var(--vora-muted); font-size: 11px; }
.choice-tile .check { position: absolute; right: 9px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--vora-primary); }
.channel-symbol {
  display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 7px;
  border-radius: 7px; background: var(--vora-surface-soft); color: var(--vora-primary);
  font-size: 11px; font-weight: 800; vertical-align: middle;
}
.divider { margin: 18px 0 14px; color: var(--vora-muted); font-size: 13px; font-weight: 700; }
.advanced-card { margin-top: 18px; border-top: 1px solid var(--vora-border); padding-top: 18px; }
.advanced-card summary { cursor: pointer; font-size: 16px; font-weight: 750; }
.advanced-inner { padding-top: 18px; }
.toggle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.toggle-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px;
  border: 1px solid var(--vora-border); border-radius: 9px; background: var(--vora-surface-soft);
}
.toggle-item strong { display: block; font-size: 14px; }
.toggle-item small { display: block; margin-top: 3px; color: var(--vora-muted); font-size: 12px; }
.switch { position: relative; width: 42px; height: 24px; flex: 0 0 auto; }
.switch input { display: none; }
.switch i {
  position: absolute; inset: 0; border-radius: 999px; background: var(--vora-border-strong); transition: .16s;
}
.switch i:before {
  content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; transition: .16s;
}
.switch input:checked + i { background: var(--vora-primary); }
.switch input:checked + i:before { transform: translateX(18px); }
.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--vora-border); }

.signal-card { min-height: 375px; min-width: 0; overflow: hidden; }
.signal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; min-width: 0; }
.signal-progress { display: flex; justify-content: center; padding: 22px 0 16px; }
.orbit { position: relative; width: 154px; height: 154px; }
.orbit svg { width: 154px; height: 154px; transform: rotate(-90deg); }
.orbit circle { fill: none; stroke-width: 8; }
.orbit-bg { stroke: var(--vora-border); }
.orbit-value { stroke: var(--vora-primary); stroke-linecap: round; stroke-dasharray: 427.26; stroke-dashoffset: 427.26; }
.orbit b { position: absolute; inset: 0; display: grid; place-items: center; font-size: 28px; }
.signal-caption { display: flex; justify-content: space-between; gap: 14px; padding: 0 4px 14px; color: var(--vora-muted); font-size: 13px; min-width: 0; flex-wrap: wrap; }
.signal-caption span, .signal-caption strong { min-width: 0; overflow-wrap: anywhere; }
.signal-caption strong { color: var(--vora-text); }
.log-panel { position: relative; isolation: isolate; min-height: 220px; max-height: 310px; max-width: 100%; overflow: auto; padding: 4px 0; background: var(--vora-surface); }
.log-item { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--vora-border); min-width: 0; background: var(--vora-surface); }
.log-item .log-time { color: var(--vora-muted); font-family: Cascadia Code, Consolas, monospace; font-size: 11px; white-space: nowrap; }
.log-item .log-msg { font-size: 13px; overflow-wrap: anywhere; word-break: break-word; min-width: 0; }
.log-item.error .log-msg { color: var(--vora-danger); }
.empty-state { display: grid; place-items: center; min-height: 120px; color: var(--vora-muted); font-size: 13px; }
.result-value {
  padding: 12px; border-radius: 8px; background: var(--vora-surface-soft);
  font: 12px/1.6 Cascadia Code, Consolas, monospace; overflow-wrap: anywhere; white-space: pre-wrap;
}
.proto-result-ok, .proto-result-bad {
  padding: 16px 18px; border-radius: 10px; text-align: center;
  font-size: 18px; font-weight: 750; line-height: 1.4;
}
.proto-result-ok { background: var(--vora-teal-soft); color: var(--vora-teal); }
.proto-result-bad { background: var(--vora-danger-soft); color: var(--vora-danger); }
.alert { margin: 12px 0; padding: 12px 14px; border-radius: 8px; background: var(--vora-danger-soft); color: var(--vora-danger); font-size: 13px; }
.alert.info { background: var(--vora-primary-soft); color: var(--vora-primary); }
.alert.warn { background: var(--vora-amber-soft); color: var(--vora-amber); }
.kv { display: grid; gap: 8px; }
.kv div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--vora-border); font-size: 13px; }
.kv span { color: var(--vora-muted); }

.batch-summary { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin-bottom: 12px; }
.batch-summary div { padding: 8px; border-radius: 8px; background: var(--vora-surface-soft); }
.batch-summary span { display: block; color: var(--vora-muted); font-size: 11px; }
.batch-summary strong { font-size: 16px; }
.batch-list { max-height: 260px; overflow: auto; }
.batch-row {
  display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px;
  width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid var(--vora-border);
  background: transparent; text-align: left;
}
.batch-row.selected { color: var(--vora-primary); }
.batch-index { color: var(--vora-muted); font-size: 12px; }
.batch-main strong { display: block; font-size: 13px; }
.batch-main small { display: block; margin-top: 2px; color: var(--vora-muted); font-size: 11px; }
.line { height: 7px; margin: 6px 0; border-radius: 99px; background: var(--vora-border); overflow: hidden; }
.line i { display: block; height: 100%; background: var(--vora-primary); }

.oaics-group { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--vora-border); }
.oaics-group-head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.oaics-detect-row { display: flex; justify-content: space-between; gap: 8px; padding: 6px 0; font-size: 13px; }
.oaics-detect-cell { color: var(--vora-teal); }
.jobs-table { width: 100%; table-layout: fixed; border-collapse: collapse; font-size: 13px; }
.jobs-table th, .jobs-table td { padding: 10px 8px; border-bottom: 1px solid var(--vora-border); text-align: left; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.jobs-table th { color: var(--vora-muted); font-weight: 700; }
.gc-table td { vertical-align: middle; }
.gc-qr { width: 168px; height: 168px; object-fit: contain; border: 1px solid var(--vora-border); border-radius: 10px; background: #fff; padding: 8px; display: block; }
.gc-link { color: var(--vora-primary); font-weight: 700; text-decoration: none; }
.gqr-list { display: grid; gap: 12px; max-height: calc(100vh - 280px); overflow: auto; }
.gqr-list-tools { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.gqr-item { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 10px; align-items: start; padding-top: 10px; border-top: 1px solid var(--vora-border); }
.gqr-item:first-child { padding-top: 0; border-top: 0; }
.gqr-item.has-qr { grid-template-columns: 1fr; }
.gqr-poster { padding: 14px 12px 12px; border-radius: 10px; background: #fff; text-align: center; }
.gqr-hint { margin-bottom: 10px; color: #0070c9; font-size: 12px; font-weight: 700; line-height: 1.4; }
.gqr-qr { width: 72px; height: 72px; object-fit: contain; border: 1px solid var(--vora-border); border-radius: 8px; background: #fff; padding: 4px; display: block; }
.gqr-item.has-qr .gqr-qr { width: 188px; height: 188px; margin: 0 auto; border: 0; padding: 0; }
.gqr-mail { margin-top: 10px; color: #e38a96; font-size: 12px; font-weight: 600; word-break: break-all; }
.gqr-qr-empty { display: flex; align-items: center; justify-content: center; color: var(--vora-muted); background: var(--vora-surface-soft); font-size: 11px; }
.gqr-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 820px; }
.gqr-meta { min-width: 0; }
.gqr-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; }
.gqr-email { font-weight: 700; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gqr-left { flex: 0 0 auto; font-variant-numeric: tabular-nums; font-weight: 700; font-size: 12px; color: var(--vora-teal); }
.gqr-left.expired { color: var(--vora-danger); }
.gqr-link { display: block; width: 100%; margin: 6px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-break: normal; color: var(--vora-primary); font: 700 12px/1.4 inherit; text-align: left; background: none; border: 0; padding: 0; cursor: pointer; }
.gqr-link.muted { color: var(--vora-muted); cursor: default; font-weight: 500; }
.gqr-foot { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gqr-empty { color: var(--vora-muted); font-size: 13px; line-height: 1.6; }
.gc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.gc-step { padding: 10px 8px; text-align: center; border-radius: 8px; background: var(--vora-surface-soft); color: var(--vora-muted); font-size: 12px; font-weight: 700; }
.gc-step.active { background: var(--vora-primary-soft); color: var(--vora-primary); }
.gc-step.done { background: var(--vora-teal-soft); color: var(--vora-teal); }
.otp-dock { min-width: 0; }
.otp-idle { margin: 0; color: var(--vora-muted); font-size: 13px; line-height: 1.6; }
.toast-host { position: fixed; right: 18px; top: 18px; z-index: 40; display: grid; gap: 8px; }
.toast { min-width: 220px; padding: 10px 14px; border-radius: 8px; background: #172033; color: #fff; box-shadow: var(--vora-shadow); font-size: 13px; }
.toast.error { background: var(--vora-danger); }
.toast.success { background: var(--vora-teal); }
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(680px, calc(100vw - 16px));
  background: var(--vora-surface); box-shadow: var(--vora-shadow); z-index: 30; overflow: auto;
}
.drawer-mask { position: fixed; inset: 0; background: rgba(23, 32, 51, .28); z-index: 29; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--vora-border); }
.paypal-note { margin-top: 14px; padding: 12px 14px; border-radius: 8px; background: var(--vora-primary-soft); color: var(--vora-primary); font-size: 13px; }
.engine-banner {
  margin-top: 14px; padding: 14px 16px; border-radius: 10px;
  background: var(--vora-primary-soft); color: var(--vora-text);
}
.engine-banner strong { display: block; color: var(--vora-primary); font-size: 14px; }
.engine-banner p { margin: 6px 0 0; color: var(--vora-muted); font-size: 13px; line-height: 1.55; }
.paypal-region-panel {
  margin-top: 14px; padding: 16px; border: 1px solid var(--vora-border);
  border-radius: 10px; background: var(--vora-surface-soft);
}
.paypal-region-panel > strong { display: block; margin-bottom: 12px; font-size: 14px; }
.paypal-follow-row { display: grid; grid-template-columns: 160px minmax(0, 1fr) 140px; gap: 14px; align-items: end; }
@media (max-width: 800px) { .paypal-follow-row { grid-template-columns: 1fr; } }
.cdk-ok { color: var(--vora-teal); font-size: 12px; }
.cdk-bad { color: var(--vora-muted); font-size: 12px; }
.docs-card { margin-bottom: 16px; }
.docs-card p { color: var(--vora-muted); font-size: 13px; line-height: 1.6; }
.docs-card code { font-size: 12px; }
.docs-pre {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--vora-surface-soft);
  border: 1px solid var(--vora-border);
  color: var(--vora-text);
  font-size: 12px;
  line-height: 1.55;
  overflow: auto;
  white-space: pre-wrap;
}
.docs-list { margin: 8px 0 0 18px; color: var(--vora-muted); font-size: 13px; line-height: 1.7; }
.docs-table { width: 100%; margin-top: 12px; border-collapse: collapse; font-size: 13px; }
.docs-table th, .docs-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--vora-border); color: var(--vora-muted); }
.docs-table th { color: var(--vora-text); font-weight: 600; }
.page-title a { color: var(--vora-primary); }
.card-desk-inline { width: 100%; }
.plus-trial-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-height: 520px; overflow: auto; }
.plus-trial-method strong { font-size: 20px; }
.plus-trial-link { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; word-break: break-all; }

@media (max-width: 1180px) {
  .route-layout { grid-template-columns: 1fr; }
  .sticky-column { position: static; }
  .choice-grid.channels { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
  .app-sider { display: none; }
  .app-sider.open { display: flex; position: fixed; inset: 0 auto 0 0; z-index: 20; }
  .mobile-menu { display: inline-flex; }
  .top-header, .page-content { padding-left: 16px; padding-right: 16px; }
  .header-right { flex-wrap: wrap; justify-content: flex-end; }
  .header-cdk .input { width: 200px; }
  .page-title h1 { font-size: 26px; }
  .metric-row, .choice-grid, .choice-grid.channels, .form-grid, .toggle-grid, .batch-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
