:root {
    color-scheme: light;
    --page: #f4f6f9;
    --page-2: #eef2f7;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --surface-muted: #f1f5f9;
    --surface-strong: #e2e8f0;
    --ink: #172033;
    --ink-strong: #0b1220;
    --muted: #5f6f86;
    --faint: #8a97aa;
    --line: #d8dee8;
    --line-strong: #c5cfdd;
    --brand: #25406f;
    --brand-strong: #172c52;
    --brand-soft: #e8eef8;
    --accent: #0f766e;
    --accent-soft: #d9f2ef;
    --success: #17803f;
    --success-soft: #dff6e8;
    --warning: #a16207;
    --warning-soft: #fff1cc;
    --danger: #b42318;
    --danger-soft: #fde4df;
    --info: #2563eb;
    --info-soft: #dbeafe;
    --shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 8px 18px rgba(15, 23, 42, 0.05);
    --sidebar-width: 300px;
    --radius: 14px;
    --radius-sm: 9px;
    --radius-xs: 6px;
    --topbar-height: 116px;
    --focus: #0f766e;
}

* { box-sizing: border-box; }

html,
body { min-height: 100%; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        linear-gradient(90deg, rgba(37, 64, 111, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(37, 64, 111, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, var(--page) 0%, var(--page-2) 100%);
    background-size: 28px 28px, 28px 28px, auto;
    color: var(--ink);
    font: 500 13px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

code,
pre {
    font-family: "Cascadia Code", Consolas, Menlo, monospace;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}

button,
input,
select,
textarea { font: inherit; }

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    border: 2px solid var(--focus);
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--surface);
    color: var(--ink-strong);
    box-shadow: var(--shadow);
}

.skip-link:focus { transform: translateY(0); }

.ops-workbench {
    min-height: 100vh;
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
}

.workbench-area {
    min-width: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 30;
    overflow-y: auto;
    border-right: 1px solid var(--line);
    background: #fbfcfe;
    scrollbar-width: thin;
    scrollbar-color: #aab5c4 transparent;
}

.sidebar-inner {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 14px;
    padding: 18px 16px;
}

.sidebar-brand,
.auth-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.sidebar-brand {
    padding: 14px;
    border: 1px solid var(--line);
    border-left: 5px solid var(--brand);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--brand);
    color: #ffffff;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.04em;
}

.brand-kicker,
.hero-kicker,
.foundation-section-kicker {
    margin: 0;
    color: var(--accent);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 850;
}

.sidebar-brand strong,
.auth-brand h1 {
    display: block;
    margin: 3px 0 0;
    color: var(--ink-strong);
    line-height: 1.1;
}

.sidebar-brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
}

.sidebar-context {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sidebar-context span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.nav-filter {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-filter input { min-height: 39px; }

.sidebar-nav {
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 0;
}

.nav-group h2 {
    margin: 0 0 8px;
    color: var(--faint);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 900;
}

.nav-group-links { display: grid; gap: 5px; }

.nav-link {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 54px;
    padding: 10px 11px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--muted);
    transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}

.nav-link:hover {
    background: var(--brand-soft);
    border-color: #cfdae9;
    color: var(--ink-strong);
}

.nav-link.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff;
}

.nav-marker {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 2px solid currentColor;
    opacity: 0.6;
}

.nav-link.active .nav-marker {
    background: #ffffff;
    border-color: #ffffff;
    opacity: 1;
}

.nav-link-copy { min-width: 0; }

.nav-link strong {
    display: block;
    font-size: 13px;
    line-height: 1.15;
    color: currentColor;
}

.nav-link small {
    display: block;
    margin-top: 3px;
    color: currentColor;
    font-size: 11px;
    line-height: 1.25;
    opacity: 0.78;
}

.sidebar-footer {
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--muted);
}

.sidebar-footer strong {
    display: block;
    color: var(--ink-strong);
    margin-bottom: 4px;
}

.sidebar-footer p { margin: 0; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    min-height: var(--topbar-height);
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    background: #fbfcfe;
}

.topbar-main { min-width: 0; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 6px;
    color: var(--faint);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 850;
}

.breadcrumb span:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: #bdc7d5;
}

.topbar h1 {
    margin: 0;
    color: var(--ink-strong);
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.topbar p {
    margin: 8px 0 0;
    max-width: 960px;
    color: var(--muted);
}

.topbar-actions,
.form-actions,
.actions,
.job-form,
.debug-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.operator-card {
    display: grid;
    gap: 2px;
    min-width: 132px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.operator-card span {
    color: var(--faint);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 850;
}

.operator-card strong {
    color: var(--ink-strong);
    overflow-wrap: anywhere;
}

.content-shell {
    min-width: 0;
    padding: 22px 24px 34px;
}

.page-stack,
.section-stack,
.stack,
.page-message-stack { display: grid; gap: 16px; }
.page-message-stack { margin-bottom: 16px; }

.panel,
.metric-card,
.mini-metric-card,
.hero-card,
.event-card,
.json-viewer,
.json-viewer-empty,
.foundation-section-card,
.foundation-decision-card,
.signal-card,
.auth-panel,
.auth-form-card,
.empty-state,
.loading-state,
.detail-meta-card,
.detail-json-card,
.wallet-hero,
.wallet-mini-card,
.wallet-chart-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.panel { overflow: hidden; }
.panel-subtle { background: var(--surface-soft); box-shadow: none; }
.panel-danger-soft { background: var(--danger-soft); border-color: #f5b8af; box-shadow: none; }

.panel-header {
    display: grid;
    gap: 5px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-soft);
}

.panel-header-flush { padding: 16px 0 0; border-bottom: 0; background: transparent; }

.panel-title,
.wallet-section-title,
.foundation-decision-title,
.foundation-section-title,
.detail-panel-title {
    margin: 0;
    color: var(--ink-strong);
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.panel-copy,
.foundation-decision-copy,
.foundation-section-summary { margin: 0; color: var(--muted); }
.panel-body { padding: 17px 18px; }
.panel-body-compact { padding: 14px; }

.hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(270px, 0.82fr);
    gap: 18px;
    padding: 20px;
    border-left: 6px solid var(--brand);
    background: linear-gradient(135deg, #ffffff 0%, #f6f9fd 100%);
    box-shadow: var(--shadow);
}

.hero-card-ok { border-left-color: var(--success); }
.hero-card-warning { border-left-color: var(--warning); }
.hero-card-error { border-left-color: var(--danger); }

.hero-title {
    margin: 5px 0 0;
    color: var(--ink-strong);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hero-copy { margin: 12px 0 0; max-width: 900px; color: var(--muted); font-size: 14px; }

.hero-stats,
.metric-grid,
.mini-metric-grid,
.summary-row,
.badge-row,
.grid,
.foundation-decision-grid,
.foundation-section-grid,
.event-list,
.json-grid,
.wallet-kv-grid {
    display: grid;
    gap: 12px;
}

.hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.metric-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.mini-metric-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.json-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }
.event-list { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.foundation-decision-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.foundation-section-grid { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }

.hero-stat,
.metric-card,
.mini-metric-card {
    position: relative;
    min-width: 0;
    padding: 15px;
    background: var(--surface);
    overflow: hidden;
}

.metric-card::before,
.mini-metric-card::before,
.hero-stat::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--brand);
}

.metric-card-accent-cyan::before { background: var(--accent); }
.metric-card-accent-green::before { background: var(--success); }
.metric-card-accent-violet::before { background: #6d5bd0; }
.metric-card-accent-amber::before { background: var(--warning); }
.metric-card-accent-blue::before { background: var(--info); }
.metric-card-accent-rose::before { background: var(--danger); }

.hero-stat span,
.metric-label,
.mini-metric-label {
    display: block;
    margin: 0;
    color: var(--faint);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 850;
}

.hero-stat strong,
.metric-value,
.mini-metric-value {
    display: block;
    margin: 8px 0 0;
    color: var(--ink-strong);
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
}

.metric-subvalue { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.summary-row,
.badge-row { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.summary-row span,
.badge-row span,
.foundation-metric-item,
.wallet-kv,
.kv-item {
    min-width: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    color: var(--muted);
    overflow-wrap: anywhere;
}

.summary-row strong,
.badge-row strong,
.kv-item strong,
.wallet-kv strong { color: var(--ink-strong); }

.kv-list,
.detail-meta-list,
.foundation-metric-list,
.json-tree { display: grid; gap: 9px; }

.status {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    gap: 7px;
    border-radius: 999px;
    padding: 4px 9px;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--ink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.status::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: currentColor;
}

.status.ok,
.status.completed,
.status.active,
.status.sent,
.status.evaluated,
.status.fresh,
.status.runner_healthy,
.status.pending_runner,
.status.waiting_current_runner,
.status.queued_runner,
.status.skipped_due,
.status.waiting_for_data,
.status.info {
    border-color: #a7d9bc;
    color: var(--success);
    background: var(--success-soft);
}

.status.running,
.status.running_over_interval {
    border-color: #9dc9f6;
    color: var(--info);
    background: rgba(61, 140, 214, 0.14);
}

.status.warning,
.status.partial,
.status.queued,
.status.pending_dispatch,
.status.dispatched,
.status.suppressed,
.status.paused {
    border-color: #efd184;
    color: var(--warning);
    background: var(--warning-soft);
}

.status.error,
.status.failed,
.status.no_run,
.status.not_run,
.status.missing,
.status.unknown,
.status.inactive,
.status.expired,
.status.invalidated,
.status.skipped,
.status.stale,
.status.running_stale {
    border-color: #efb0a8;
    color: var(--danger);
    background: var(--danger-soft);
}

.status-soft,
.status.status-soft { color: var(--muted); border-color: var(--line); background: var(--surface-muted); }

.table-wrap {
    overflow: auto;
    max-width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

table {
    width: 100%;
    min-width: 820px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
}

th,
td {
    padding: 12px 13px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
    word-break: break-word;
}

th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #edf2f8;
    color: #667489;
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 900;
}

tr:nth-child(even):not(.table-detail-row) td { background: #fbfcfe; }
tr:hover td { background: #eff5fb; }
tr:last-child td { border-bottom: 0; }
.table-detail-row td { background: #f7fafc; }

label { display: grid; gap: 7px; color: var(--muted); font-weight: 800; }
label.full { grid-column: 1 / -1; }

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--ink);
    padding: 10px 12px;
    outline: none;
}

textarea { resize: vertical; }
input::placeholder,
textarea::placeholder { color: #9aa8b9; }

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.24);
    border-color: var(--focus);
    outline-offset: 1px;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--brand);
    border-radius: var(--radius-sm);
    background: var(--brand);
    color: #ffffff;
    padding: 9px 12px;
    font-weight: 850;
    cursor: pointer;
    transition: background 0.14s ease, border-color 0.14s ease, transform 0.14s ease;
}

.button:hover,
button:hover { background: var(--brand-strong); border-color: var(--brand-strong); transform: translateY(-1px); }

.button.secondary,
button.secondary { border-color: var(--line-strong); background: var(--surface); color: var(--ink-strong); }
.button.secondary:hover,
button.secondary:hover { background: var(--surface-muted); border-color: var(--brand); }

.button.danger,
button.danger,
.danger { border-color: var(--danger); background: var(--danger); color: #ffffff; }
.button.danger:hover,
button.danger:hover,
.danger:hover { background: #8f1c14; border-color: #8f1c14; }

.topbar-shortcut { padding-inline: 11px; }
button:disabled,
input:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.message { border-radius: var(--radius-sm); padding: 12px 14px; border: 1px solid var(--line); }
.message.ok { color: var(--success); background: var(--success-soft); border-color: #a7d9bc; }
.message.error { color: var(--danger); background: var(--danger-soft); border-color: #efb0a8; }

.muted { color: var(--muted); }
.faint { color: var(--faint); }

.auth-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(90deg, rgba(37, 64, 111, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(37, 64, 111, 0.045) 1px, transparent 1px),
        linear-gradient(135deg, #eef3f8 0%, #f8fafc 100%);
    background-size: 30px 30px, 30px 30px, auto;
}

.auth-shell { width: min(980px, 100%); }

.auth-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 18px;
    padding: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.auth-intro,
.auth-form-card {
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface-soft);
}

.auth-intro { border-left: 6px solid var(--brand); }
.auth-brand h1 { font-size: 28px; letter-spacing: -0.04em; }
.auth-lead { margin: 22px 0 0; color: var(--muted); font-size: 15px; }
.auth-facts { display: grid; gap: 9px; margin-top: 22px; }
.auth-facts span { display: block; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); background: var(--surface); }
.auth-copy p { margin: 0; color: var(--muted); }
.form-grid { display: grid; gap: 13px; }
.form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.json-viewer,
.json-viewer-empty { min-width: 0; background: var(--surface); overflow: hidden; }
.json-viewer-header { display: flex; justify-content: space-between; gap: 10px; padding: 12px 14px; list-style: none; color: var(--muted); cursor: pointer; background: var(--surface-muted); }
.json-viewer-header::-webkit-details-marker,
.json-node > summary::-webkit-details-marker,
.signal-card summary::-webkit-details-marker { display: none; }
.json-viewer-body { padding: 12px 14px; border-top: 1px solid var(--line); }
.json-node { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #ffffff; overflow: hidden; }
.json-node > summary { display: flex; justify-content: space-between; gap: 10px; padding: 9px 11px; cursor: pointer; list-style: none; background: #f8fafc; }
.json-node-body { padding: 0 11px 11px; }
.json-leaf { display: grid; grid-template-columns: minmax(90px, 180px) auto minmax(0, 1fr); gap: 9px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.json-leaf:last-child { border-bottom: 0; }
.json-key { color: var(--info); font-weight: 900; overflow-wrap: anywhere; }
.json-meta { color: var(--faint); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.json-type-string { color: #1d4ed8; }
.json-type-number { color: #92400e; }
.json-type-bool { color: #047857; }
.json-type-null { color: #be123c; }

.signal-list { display: grid; gap: 14px; }
.signal-card { overflow: hidden; }
.signal-card summary { padding: 13px 14px; list-style: none; cursor: pointer; background: var(--surface-soft); }
.signal-card[open] summary { border-bottom: 1px solid var(--line); }
.signal-summary { display: flex; flex-wrap: wrap; gap: 7px; }
.signal-summary span { padding: 6px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--surface); }
.signal-summary strong { color: var(--ink-strong); }
.signal-body { display: grid; gap: 16px; padding: 16px; }

.detail-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 1.1fr); gap: 12px; padding: 10px; }
.detail-panel-single { grid-template-columns: minmax(0, 1fr); }
.detail-meta-card,
.detail-json-card { overflow: hidden; box-shadow: none; }
.detail-panel-title { padding: 11px 13px; border-bottom: 1px solid var(--line); background: var(--surface-muted); }
.detail-meta-item { padding: 9px 13px; border-bottom: 1px dashed var(--line); color: var(--muted); }
.detail-meta-item:last-child { border-bottom: 0; }

.event-card { padding: 13px; background: var(--surface); }
.event-card-head { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.event-card-message { margin: 10px 0 0; }
.event-card-time { margin: 8px 0 0; color: var(--faint); font-size: 12px; }

.foundation-decision-card,
.foundation-section-card { padding: 14px; background: var(--surface); }
.foundation-decision-head,
.foundation-section-head { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.foundation-decision-title,
.foundation-section-title { margin-top: 10px; }
.foundation-note-list { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }

.debug-export-text { min-height: 420px; line-height: 1.45; background: #ffffff; font-family: "Cascadia Code", Consolas, Menlo, monospace; }
.wallet-address-link { color: var(--info); text-decoration: underline; text-decoration-color: rgba(37, 99, 235, 0.35); text-underline-offset: 2px; }
.wallet-search-panel .wallet-search-form { align-items: end; }
.wallet-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr); gap: 14px; padding: 16px; border-left: 6px solid var(--brand); }
.wallet-title { margin: 0; font-size: 24px; line-height: 1.15; overflow-wrap: anywhere; color: var(--ink-strong); }
.wallet-address-line,
.wallet-chip-row,
.wallet-tabbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.wallet-address-line { margin-top: 10px; }
.wallet-chip-row { margin-top: 12px; }
.wallet-address-code { padding: 7px 9px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-soft); overflow-wrap: anywhere; }
.wallet-chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 5px 8px; background: var(--surface-soft); color: var(--muted); font-size: 11px; font-weight: 850; }
.wallet-hero-side { display: grid; gap: 9px; align-content: start; }
.wallet-mini-card { padding: 11px; background: var(--surface-soft); box-shadow: none; }
.wallet-mini-card span { display: block; color: var(--faint); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 850; }
.wallet-mini-card strong { display: block; margin-top: 5px; font-size: 18px; color: var(--ink-strong); overflow-wrap: anywhere; }
.wallet-chart-wrap { padding: 12px; overflow: hidden; background: var(--surface); }
.wallet-chart { width: 100%; height: auto; display: block; }
.wallet-chart-grid { stroke: #d7dee8; stroke-width: 1; }
.wallet-chart-line { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.wallet-chart-label { fill: var(--faint); font-size: 11px; font-family: "Cascadia Code", Consolas, Menlo, monospace; }
.wallet-tab-button { border-color: var(--line-strong); background: var(--surface); color: var(--ink-strong); }
.wallet-tab-button.active { border-color: var(--brand); background: var(--brand); color: #ffffff; }
.wallet-tab-panel { display: none; }
.wallet-tab-panel.active { display: block; }
.wallet-kv-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.wallet-kv { display: block; }
.wallet-kv span { display: block; color: var(--faint); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 850; }
.wallet-kv strong { display: block; margin-top: 5px; overflow-wrap: anywhere; }
.wallet-note-list { margin: 0; padding-left: 18px; color: var(--muted); }
.wallet-note-list li + li { margin-top: 7px; }
.wallet-empty-copy { margin: 0; color: var(--muted); }

.empty-state,
.loading-state { padding: 15px; color: var(--muted); background: var(--surface-soft); box-shadow: none; }
.empty-state strong { color: var(--ink-strong); }
.empty-state p { margin: 6px 0 0; }
.loading-state { display: inline-flex; align-items: center; gap: 9px; }
.loading-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.icon-button {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    flex: 0 0 auto;
    border-radius: var(--radius-sm);
}
.icon-button span { display: block; width: 17px; height: 2px; background: currentColor; }
.sidebar-backdrop { position: fixed; inset: 0; z-index: 25; background: rgba(15, 23, 42, 0.42); }



/* Secure login surface: solid dark financial-platform layout with minimal disclosure. */
.ops-auth-page {
    color-scheme: dark;
    min-height: 100vh;
    padding: 28px;
    background:
        linear-gradient(90deg, #06101d 0%, #081522 48%, #0b1420 100%);
    color: #e6edf7;
}

.ops-auth-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, #132238 1px, transparent 1px),
        linear-gradient(#111f34 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.36;
}

.ops-auth-page::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42vh;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, #050b13 100%);
}

.ops-auth-page .auth-shell {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
}

.ops-auth-page .auth-panel {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid #24344d;
    border-radius: 8px;
    background: #0b1420;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.ops-auth-page .auth-intro,
.ops-auth-page .auth-form-card {
    min-height: 480px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.ops-auth-page .auth-intro {
    position: relative;
    display: grid;
    align-content: space-between;
    gap: 34px;
    overflow: hidden;
    padding: 38px;
    background: #0a1320;
    border-right: 1px solid #24344d;
}

.ops-auth-page .auth-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 49%, #17263d 49% 50%, transparent 50% 100%),
        linear-gradient(180deg, transparent 0 49%, #15233a 49% 50%, transparent 50% 100%);
    background-size: 74px 74px;
    opacity: 0.4;
}

.ops-auth-page .auth-intro::after {
    content: "";
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 158px;
    height: 1px;
    background: #1f8fcb;
}

.ops-auth-page .auth-brand {
    position: relative;
    z-index: 1;
    align-self: start;
}

.ops-auth-page .brand-mark {
    border: 1px solid #2b4868;
    background: #0f2b45;
    color: #e6f7ff;
    box-shadow: none;
}

.ops-auth-page .brand-kicker {
    color: #65c7e7;
}

.ops-auth-page .auth-brand h1 {
    color: #f4f7fb;
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -0.055em;
}

.ops-auth-page .auth-lead {
    position: relative;
    z-index: 1;
    max-width: 420px;
    margin: 24px 0 0;
    color: #b6c4d7;
    font-size: 15px;
}

.ops-auth-page .auth-facts {
    display: none;
}

.ops-auth-page .auth-visual {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    width: min(460px, 100%);
}

.ops-auth-page .auth-chart-line {
    height: 118px;
    border: 1px solid #263a56;
    border-radius: 6px;
    background:
        linear-gradient(135deg, transparent 0 18%, #1d7fb1 18% 20%, transparent 20% 39%, #26a69a 39% 41%, transparent 41% 64%, #2f88c5 64% 66%, transparent 66% 100%),
        linear-gradient(180deg, #0d1a2a 0%, #0a1320 100%);
}

.ops-auth-page .auth-market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ops-auth-page .auth-market-grid span {
    height: 56px;
    border: 1px solid #243852;
    border-radius: 6px;
    background:
        linear-gradient(90deg, transparent 0 22%, #245c7d 22% 24%, transparent 24% 55%, #1d7d70 55% 57%, transparent 57% 100%),
        linear-gradient(180deg, #111f31 0%, #0c1726 100%);
}

.ops-auth-page .auth-form-card {
    display: grid;
    align-content: center;
    padding: 42px;
    background: #101a2b;
    color: #e6edf7;
}

.ops-auth-page .auth-copy p {
    margin: 0 0 18px;
    color: #aebdd0;
    font-size: 14px;
}

.ops-auth-page .form-grid {
    gap: 16px;
}

.ops-auth-page label {
    color: #c7d3e3;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ops-auth-page input,
.ops-auth-page select,
.ops-auth-page textarea {
    min-height: 46px;
    border-color: #33445f;
    background: #07111e;
    color: #f4f7fb;
    box-shadow: none;
}

.ops-auth-page input::placeholder,
.ops-auth-page textarea::placeholder {
    color: #7f8ea3;
}

.ops-auth-page input:focus,
.ops-auth-page select:focus,
.ops-auth-page textarea:focus {
    border-color: #37a7d8;
    box-shadow: 0 0 0 3px #173b55;
}

.ops-auth-page .button.primary,
.ops-auth-page button.primary {
    min-height: 46px;
    border-color: #1d6f8f;
    background: #1d6f8f;
    color: #ffffff;
    font-weight: 900;
}

.ops-auth-page .button.primary:hover,
.ops-auth-page button.primary:hover {
    border-color: #2584aa;
    background: #2584aa;
}

.ops-auth-page .message {
    margin-bottom: 16px;
    box-shadow: none;
}

.ops-auth-page .message.ok {
    border-color: #1f7a4e;
    background: #0a2a1d;
    color: #baf4d0;
}

.ops-auth-page .message.error {
    border-color: #8b2d2d;
    background: #2a1012;
    color: #fecaca;
}

@media (max-width: 1240px) {
    .topbar { grid-template-columns: auto minmax(0, 1fr); }
    .topbar-actions { grid-column: 1 / -1; justify-content: flex-start; }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-card { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
    .ops-workbench { grid-template-columns: 1fr; }
    .sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(var(--sidebar-width), 88vw);
        transform: translateX(-102%);
        transition: transform 0.18s ease;
    }
    body.sidebar-open .sidebar { transform: translateX(0); }
    body.sidebar-open { overflow: hidden; }
    .icon-button { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
    .detail-panel { grid-template-columns: 1fr; }
    .topbar { grid-template-columns: auto minmax(0, 1fr); min-height: auto; }
}

@media (max-width: 760px) {
    body { font-size: 12px; }
    .content-shell { padding: 14px; }
    .topbar { padding: 14px; }
    .topbar-actions { align-items: stretch; }
    .topbar-actions > * { flex: 1 1 auto; }
    .grid-2,
    .grid-3,
    .grid-4,
    .hero-stats,
    .form-grid-2,
    .json-grid,
    .event-list,
    .foundation-section-grid,
    .foundation-decision-grid,
    .wallet-hero,
    .auth-panel {
        grid-template-columns: 1fr;
    }
    .json-leaf { grid-template-columns: 1fr; }
    .summary-row span,
    .badge-row span,
    .foundation-metric-item,
    .kv-item {
        align-items: flex-start;
        flex-direction: column;
    }
    .hero-title { font-size: 28px; }
    .topbar h1 { font-size: 25px; }
}

@media (max-width: 760px) {
    .ops-auth-page {
        padding: 16px;
    }

    .ops-auth-page .auth-panel {
        grid-template-columns: 1fr;
    }

    .ops-auth-page .auth-intro,
    .ops-auth-page .auth-form-card {
        min-height: auto;
        padding: 26px;
    }

    .ops-auth-page .auth-visual {
        display: none;
    }

    .ops-auth-page .auth-brand h1 {
        font-size: 30px;
    }
}

/* Login refinement: solid financial-console visual without internal operational disclosure. */
.ops-auth-page .auth-intro {
    align-content: stretch;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 28px;
    padding: 34px;
}

.ops-auth-page .auth-intro::after {
    display: none;
}

.ops-auth-page .auth-brand.auth-brand-compact {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
}

.ops-auth-page .auth-brand-name {
    color: #f4f7fb;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 900;
}

.ops-auth-page .auth-market-board {
    position: relative;
    z-index: 1;
    align-self: end;
    display: grid;
    gap: 12px;
    width: min(480px, 100%);
    padding: 16px;
    border: 1px solid #263a56;
    border-radius: 8px;
    background: #08111d;
    box-shadow: inset 0 1px 0 #17263d;
}

.ops-auth-page .auth-market-board-header,
.ops-auth-page .auth-market-row {
    display: grid;
    grid-template-columns: 0.7fr 1fr 0.7fr;
    gap: 12px;
    align-items: center;
}

.ops-auth-page .auth-market-board-header {
    padding-bottom: 9px;
    border-bottom: 1px solid #1d2d45;
    color: #7f92aa;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 900;
}

.ops-auth-page .auth-market-table {
    display: grid;
    gap: 8px;
}

.ops-auth-page .auth-market-row {
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid #1f314b;
    border-radius: 6px;
    background: #0d1929;
}

.ops-auth-page .auth-market-row span {
    color: #dbe7f5;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.ops-auth-page .auth-market-row strong {
    color: #f4f7fb;
    font-family: "Cascadia Code", Consolas, Menlo, monospace;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

.ops-auth-page .auth-market-row em {
    font-style: normal;
    font-family: "Cascadia Code", Consolas, Menlo, monospace;
    font-size: 12px;
    font-weight: 900;
    text-align: right;
}

.ops-auth-page .auth-market-row-positive em {
    color: #39d0a8;
}

.ops-auth-page .auth-market-row-negative em {
    color: #ff8a8a;
}

.ops-auth-page .auth-depth-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
    min-height: 88px;
    padding: 12px;
    border: 1px solid #1f314b;
    border-radius: 6px;
    background:
        linear-gradient(90deg, #132238 1px, transparent 1px),
        linear-gradient(#132238 1px, transparent 1px),
        #0a1422;
    background-size: 24px 24px, 24px 24px, auto;
}

.ops-auth-page .auth-depth-bar {
    display: block;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, #1f8fcb 0%, #1e4f73 100%);
}

.ops-auth-page .auth-depth-bar-1 { height: 34px; }
.ops-auth-page .auth-depth-bar-2 { height: 62px; background: linear-gradient(180deg, #2bbf9f 0%, #1f7668 100%); }
.ops-auth-page .auth-depth-bar-3 { height: 44px; }
.ops-auth-page .auth-depth-bar-4 { height: 70px; background: linear-gradient(180deg, #2bbf9f 0%, #1f7668 100%); }
.ops-auth-page .auth-depth-bar-5 { height: 52px; }

.ops-auth-page .auth-risk-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.ops-auth-page .auth-risk-grid span {
    height: 36px;
    border: 1px solid #1f314b;
    border-radius: 6px;
    background:
        linear-gradient(90deg, transparent 0 35%, #1f8fcb 35% 37%, transparent 37% 100%),
        #0d1929;
}

.ops-auth-page .auth-form-card {
    padding: 48px;
    border-left: 1px solid #24344d;
    background: #101a2b;
}

.ops-auth-page .form-grid {
    width: min(408px, 100%);
    margin-left: auto;
}

.ops-auth-page .auth-copy {
    display: none;
}

@media (max-width: 760px) {
    .ops-auth-page .auth-intro {
        padding: 22px;
    }

    .ops-auth-page .auth-market-board {
        display: none;
    }

    .ops-auth-page .auth-form-card {
        padding: 28px;
        border-left: 0;
        border-top: 1px solid #24344d;
    }

    .ops-auth-page .form-grid {
        margin-left: 0;
    }
}

/* Login refinement: subtler financial-platform visual without concrete market data. */
.ops-auth-page .auth-panel {
    width: min(1040px, 100%);
    min-height: 500px;
    border-color: #263853;
    background: #0b1420;
}

.ops-auth-page .auth-intro {
    align-content: stretch;
    grid-template-rows: auto minmax(0, 1fr);
    padding: 34px;
    background:
        linear-gradient(90deg, rgba(45, 69, 100, 0.32) 1px, transparent 1px),
        linear-gradient(rgba(45, 69, 100, 0.24) 1px, transparent 1px),
        #07111e;
    background-size: 34px 34px, 34px 34px, auto;
}

.ops-auth-page .auth-intro::before {
    opacity: 0.12;
}

.ops-auth-page .auth-brand.auth-brand-compact {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.ops-auth-page .auth-brand-name {
    color: #edf4ff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 900;
}

.ops-auth-page .auth-market-board.auth-market-board-subtle {
    align-self: stretch;
    display: grid;
    grid-template-rows: minmax(170px, 1fr) auto auto;
    gap: 14px;
    width: 100%;
    max-width: 460px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ops-auth-page .auth-terminal-surface {
    position: relative;
    overflow: hidden;
    min-height: 206px;
    border: 1px solid #223651;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(49, 78, 112, 0.32) 1px, transparent 1px),
        linear-gradient(rgba(49, 78, 112, 0.24) 1px, transparent 1px),
        linear-gradient(180deg, #0b1726 0%, #08111d 100%);
    background-size: 26px 26px, 26px 26px, auto;
}

.ops-auth-page .auth-terminal-surface::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 8%;
    top: 28%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a89b8 22%, #2bbf9f 54%, #2a89b8 78%, transparent);
    opacity: 0.72;
}

.ops-auth-page .auth-terminal-surface::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 12%;
    bottom: 26%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2bbf9f 30%, #2a89b8 68%, transparent);
    opacity: 0.48;
}

.ops-auth-page .auth-surface-line,
.ops-auth-page .auth-surface-node {
    position: absolute;
    display: block;
    pointer-events: none;
}

.ops-auth-page .auth-surface-line {
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, transparent, rgba(87, 206, 232, 0.86), transparent);
}

.ops-auth-page .auth-surface-line-1 { left: 9%; top: 58%; width: 43%; transform: rotate(-17deg); }
.ops-auth-page .auth-surface-line-2 { left: 34%; top: 46%; width: 40%; transform: rotate(12deg); opacity: 0.62; }
.ops-auth-page .auth-surface-line-3 { left: 14%; top: 72%; width: 28%; transform: rotate(9deg); opacity: 0.44; }
.ops-auth-page .auth-surface-line-4 { right: 8%; top: 64%; width: 30%; transform: rotate(-11deg); opacity: 0.50; }

.ops-auth-page .auth-surface-node {
    width: 6px;
    height: 6px;
    border: 1px solid #47c5d8;
    border-radius: 50%;
    background: #0b1726;
    box-shadow: 0 0 0 3px rgba(45, 158, 190, 0.10);
}

.ops-auth-page .auth-surface-node-1 { left: 28%; top: 51%; }
.ops-auth-page .auth-surface-node-2 { left: 58%; top: 48%; border-color: #2bbf9f; }
.ops-auth-page .auth-surface-node-3 { right: 18%; top: 61%; }

.ops-auth-page .auth-signal-matrix {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 7px;
}

.ops-auth-page .auth-signal-matrix span {
    height: 26px;
    border: 1px solid #1e314b;
    border-radius: 4px;
    background:
        linear-gradient(90deg, transparent 0 44%, rgba(42, 137, 184, 0.70) 44% 46%, transparent 46% 100%),
        #0b1726;
}

.ops-auth-page .auth-signal-matrix span:nth-child(3n) {
    background:
        linear-gradient(90deg, transparent 0 52%, rgba(43, 191, 159, 0.64) 52% 54%, transparent 54% 100%),
        #0b1726;
}

.ops-auth-page .auth-signal-matrix span:nth-child(5n) {
    opacity: 0.56;
}

.ops-auth-page .auth-liquidity-strip {
    display: grid;
    grid-template-columns: 0.65fr 1fr 0.82fr 1.18fr 0.74fr;
    gap: 8px;
    align-items: end;
    height: 36px;
}

.ops-auth-page .auth-liquidity-strip span {
    display: block;
    height: 100%;
    min-height: 10px;
    border: 1px solid #1e314b;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(42, 137, 184, 0.55) 0%, rgba(14, 38, 61, 0.92) 100%);
}

.ops-auth-page .auth-liquidity-strip span:nth-child(2),
.ops-auth-page .auth-liquidity-strip span:nth-child(4) {
    background: linear-gradient(180deg, rgba(43, 191, 159, 0.58) 0%, rgba(18, 63, 61, 0.88) 100%);
}

.ops-auth-page .auth-form-card {
    align-content: center;
    padding: 52px 48px;
    background: #101a2b;
}

.ops-auth-page .auth-form-card::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 0 0 28px auto;
    border-radius: 999px;
    background: #2a89b8;
    opacity: 0.88;
}

.ops-auth-page .form-grid {
    width: min(396px, 100%);
    margin-left: auto;
}

@media (max-width: 760px) {
    .ops-auth-page .auth-form-card::before {
        margin-left: 0;
    }

    .ops-auth-page .auth-terminal-surface {
        min-height: 132px;
    }

    .ops-auth-page .auth-signal-matrix,
    .ops-auth-page .auth-liquidity-strip {
        display: none;
    }
}

/* Login final refinement: single solid access card, no decorative left panel. */
.ops-auth-page .auth-shell {
    width: min(500px, 100%);
}

.ops-auth-page .auth-panel.auth-panel-single {
    display: block;
    width: min(500px, 100%);
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #273854;
    border-radius: 8px;
    background: #0f1929;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.ops-auth-page .auth-panel.auth-panel-single .auth-form-card {
    min-height: 0;
    display: block;
    padding: 38px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(31, 48, 74, 0.52) 0%, rgba(15, 25, 41, 0) 34%),
        #0f1929;
    color: #e6edf7;
    box-shadow: none;
}

.ops-auth-page .auth-form-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid #24344d;
}

.ops-auth-page .auth-form-brand .brand-mark {
    width: 36px;
    height: 36px;
    border: 1px solid #2b4868;
    border-radius: 9px;
    background: #0d2a43;
    color: #e6f7ff;
    font-size: 15px;
    box-shadow: none;
}

.ops-auth-page .auth-form-brand .auth-brand-name {
    color: #f4f7fb;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 900;
}

.ops-auth-page .auth-panel.auth-panel-single .form-grid {
    width: 100%;
    margin: 0;
}

.ops-auth-page .auth-panel.auth-panel-single .form-actions {
    justify-content: flex-end;
    margin-top: 2px;
}

.ops-auth-page .auth-panel.auth-panel-single .button.primary,
.ops-auth-page .auth-panel.auth-panel-single button.primary {
    min-width: 132px;
}

@media (max-width: 760px) {
    .ops-auth-page .auth-panel.auth-panel-single .auth-form-card {
        padding: 28px;
    }

    .ops-auth-page .auth-form-brand {
        margin-bottom: 24px;
    }
}
