/* =========================================================================
 * OMA Portal — style.css   (dark theme, single stylesheet)
 * ========================================================================= */

:root {
  --bg: #0F172A;
  --surface: #1E293B;
  --surface-2: #263449;
  --border: #334155;
  --border-soft: #2a3a52;
  --primary: #2563EB;
  --primary-hover: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, .15);
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --purple: #8B5CF6;
  --info: #38BDF8;
  --text: #E2E8F0;
  --text-dim: #CBD5E1;
  --muted: #94A3B8;
  --muted-2: #64748B;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 16px rgba(0, 0, 0, .25);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .45);
  --sidebar-w: 240px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; font-family: var(--font); background: var(--bg); color: var(--text);
  font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased;
}
#app { min-height: 100%; }
a { color: var(--primary); text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 .4em; font-weight: 700; letter-spacing: -.01em; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #33415580; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
code { background: #0f172a; border: 1px solid var(--border); padding: 1px 6px; border-radius: 5px; font-size: .9em; }

/* ------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid transparent; border-radius: var(--radius-sm); cursor: pointer;
  font: inherit; font-weight: 600; font-size: 13.5px; padding: 9px 16px;
  transition: background .15s, border-color .15s, transform .05s, opacity .15s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--primary-hover); }
.btn-ghost { background: transparent; color: var(--text-dim); border-color: var(--border); }
.btn-ghost:hover:not(:disabled) { background: var(--surface-2); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover:not(:disabled) { background: #dc2626; }
.btn-success { background: var(--success); color: #04231a; }
.btn-success:hover:not(:disabled) { background: #0ea371; }
.btn-sm { padding: 6px 11px; font-size: 12.5px; }
.btn-block { width: 100%; }
.icon-btn { background: transparent; border: 1px solid var(--border); color: var(--text-dim); width: 38px; height: 38px; border-radius: var(--radius-sm); cursor: pointer; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; }
.icon-btn:hover { background: var(--surface-2); color: #fff; }

/* ------------------------------------------------------------ Badges */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; padding: 3px 9px; border-radius: 20px; background: var(--surface-2); color: var(--muted); border: 1px solid var(--border); white-space: nowrap; }
.badge-info { background: rgba(56,189,248,.14); color: #7dd3fc; border-color: transparent; }
.badge-primary { background: var(--primary-soft); color: #93b4fb; border-color: transparent; }
.badge-warning { background: rgba(245,158,11,.14); color: #fbbf6b; border-color: transparent; }
.badge-purple { background: rgba(139,92,246,.16); color: #c4b5fd; border-color: transparent; }
.badge-success { background: rgba(16,185,129,.14); color: #6ee7b7; border-color: transparent; }
.badge-danger { background: rgba(239,68,68,.14); color: #fca5a5; border-color: transparent; }
.badge-muted { background: var(--surface-2); color: var(--muted); border-color: transparent; }

/* ------------------------------------------------------------ Cards */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.card-pad { padding: 20px; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.card-head h3 { margin: 0; font-size: 15px; }
.card-body { padding: 20px; }

/* ------------------------------------------------------------ Forms */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--text-dim); }
.field .hint { font-size: 11.5px; color: var(--muted-2); }
.input {
  width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text);
  border-radius: var(--radius-sm); padding: 10px 12px; font: inherit; font-size: 13.5px; transition: border-color .15s, box-shadow .15s;
}
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.input::placeholder { color: var(--muted-2); }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
textarea.input { resize: vertical; min-height: 84px; line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ Layout shell */
.app-body { display: block; }
.sidebar {
  position: fixed; inset: 0 auto 0 0; width: var(--sidebar-w); background: #0c1424;
  border-right: 1px solid var(--border); display: flex; flex-direction: column; z-index: 40;
}
.side-brand { display: flex; align-items: center; gap: 11px; padding: 20px 20px 16px; }
.logo-mark { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--primary), var(--purple)); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 17px; flex: none; }
.side-brand strong { display: block; font-size: 17px; line-height: 1; }
.side-sub { font-size: 12px; color: var(--muted); }
.side-nav { flex: 1; padding: 8px 12px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
.nav-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--muted); font-weight: 500; font-size: 14px; transition: background .13s, color .13s; }
.nav-link:hover { background: var(--surface); color: var(--text); }
.nav-link.active { background: var(--primary-soft); color: #fff; }
.nav-link.active .nav-ico { color: var(--primary); }
.nav-ico { width: 20px; text-align: center; font-size: 15px; color: var(--muted-2); }
.side-foot { padding: 14px 12px; border-top: 1px solid var(--border); }
.side-user { display: flex; align-items: center; gap: 10px; padding: 6px 8px 12px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-2); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; flex: none; }
.side-user-meta strong { display: block; font-size: 13px; max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.role-tag { font-size: 11px; color: var(--muted); }

.main { margin-left: var(--sidebar-w); min-height: 100vh; display: flex; flex-direction: column; }
.topbar { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 14px; padding: 14px 24px; background: rgba(15,23,42,.82); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.menu-toggle { display: none; }
.page-title { font-size: 18px; font-weight: 700; flex: 1; }
.top-actions { display: flex; gap: 10px; }
.top-cta { background: var(--primary); color: #fff; padding: 8px 14px; border-radius: var(--radius-sm); font-weight: 600; font-size: 13px; }
.top-cta:hover { background: var(--primary-hover); }
.view { padding: 24px; max-width: 1360px; width: 100%; }

.nav-scrim { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 35; }

/* ------------------------------------------------------------ Page headers */
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.page-head h1 { font-size: 22px; margin: 0; }
.page-head .sub { color: var(--muted); margin: 3px 0 0; font-size: 13.5px; }
.head-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ------------------------------------------------------------ KPI cards */
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
@media (max-width: 900px) { .kpi-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .kpi-row { grid-template-columns: 1fr; } }
.kpi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; position: relative; overflow: hidden; }
.kpi::after { content: ''; position: absolute; right: -20px; top: -20px; width: 80px; height: 80px; border-radius: 50%; background: var(--accent, var(--primary)); opacity: .09; }
.kpi-label { color: var(--muted); font-size: 12.5px; font-weight: 500; }
.kpi-value { font-size: 28px; font-weight: 800; margin-top: 6px; letter-spacing: -.02em; }
.kpi-ico { position: absolute; right: 16px; top: 16px; font-size: 18px; opacity: .8; }

/* ------------------------------------------------------------ Tables */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
table.table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 640px; }
.table thead th { text-align: left; padding: 12px 16px; color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; border-bottom: 1px solid var(--border); background: #17233a; position: sticky; top: 0; white-space: nowrap; }
.table thead th.sortable { cursor: pointer; user-select: none; }
.table thead th.sortable:hover { color: var(--text); }
.table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr { transition: background .1s; }
.table tbody tr:hover { background: #1b2740; }
.table tbody tr.clickable { cursor: pointer; }
.cell-strong { font-weight: 600; color: #fff; }
.cell-sub { color: var(--muted); font-size: 12px; }
.row-check { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }

/* ------------------------------------------------------------ Toolbar / filters */
.toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.toolbar .grow { flex: 1; min-width: 160px; }
.search-box { position: relative; }
.search-box .input { padding-left: 34px; }
.search-box::before { content: '⌕'; position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 15px; }
.seg { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 3px; gap: 3px; }
.seg button { background: transparent; border: 0; color: var(--muted); padding: 6px 13px; border-radius: 6px; cursor: pointer; font: inherit; font-size: 13px; font-weight: 600; }
.seg button.active { background: var(--primary); color: #fff; }

/* ------------------------------------------------------------ Kanban */
.kanban { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 14px; overflow-x: auto; padding-bottom: 8px; align-items: start; }
.kan-col { background: #16223a; border: 1px solid var(--border); border-radius: var(--radius); min-height: 120px; display: flex; flex-direction: column; }
.kan-col-head { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 13px; position: sticky; top: 0; }
.kan-count { background: var(--surface-2); color: var(--muted); border-radius: 20px; padding: 1px 9px; font-size: 11.5px; font-weight: 600; }
.kan-list { padding: 10px; display: flex; flex-direction: column; gap: 9px; min-height: 60px; }
.kan-card { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent, var(--primary)); border-radius: 9px; padding: 12px; cursor: grab; transition: border-color .12s, box-shadow .12s; }
.kan-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.kan-card.dragging { opacity: .5; }
.kan-card h4 { margin: 0 0 3px; font-size: 13.5px; }
.kan-card .meta { color: var(--muted); font-size: 12px; }
.kan-card .chips { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.sortable-ghost { opacity: .35; }

/* ------------------------------------------------------------ Detail drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 60; opacity: 0; transition: opacity .2s; }
.drawer-overlay.show { opacity: 1; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 440px; max-width: 92vw; background: var(--surface); border-left: 1px solid var(--border); z-index: 61; transform: translateX(100%); transition: transform .25s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.show { transform: translateX(0); }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.drawer-body { padding: 20px; overflow-y: auto; flex: 1; }
.detail-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border-soft); font-size: 13.5px; }
.detail-row .k { color: var(--muted); }
.detail-row .v { text-align: right; font-weight: 500; }
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { position: relative; padding: 0 0 16px 20px; border-left: 2px solid var(--border); }
.timeline li::before { content: ''; position: absolute; left: -6px; top: 3px; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); }
.timeline li:last-child { border-left-color: transparent; }

/* ------------------------------------------------------------ Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(2,6,20,.6); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 70; opacity: 0; transition: opacity .18s; }
.modal-overlay.show { opacity: 1; }
.modal { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); width: 100%; max-width: 520px; max-height: 90vh; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); transform: translateY(8px) scale(.99); transition: transform .18s; }
.modal-overlay.show .modal { transform: none; }
.modal-sm { max-width: 400px; }
.modal-lg { max-width: 780px; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.modal-head h3 { margin: 0; font-size: 16px; }
.modal-x { background: transparent; border: 0; color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; padding: 0 4px; }
.modal-x:hover { color: #fff; }
.modal-body { padding: 20px; overflow-y: auto; }
.modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 20px; border-top: 1px solid var(--border); }

/* ------------------------------------------------------------ Toast */
#toast-host { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.toast { display: flex; align-items: center; gap: 10px; background: var(--surface-2); border: 1px solid var(--border); border-left: 3px solid var(--muted); color: var(--text); padding: 12px 16px; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); min-width: 240px; max-width: 380px; transform: translateX(120%); opacity: 0; transition: transform .25s, opacity .25s; font-size: 13.5px; }
.toast.show { transform: none; opacity: 1; }
.toast-ico { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex: none; color: #fff; }
.toast-success { border-left-color: var(--success); } .toast-success .toast-ico { background: var(--success); }
.toast-error { border-left-color: var(--danger); } .toast-error .toast-ico { background: var(--danger); }
.toast-warning { border-left-color: var(--warning); } .toast-warning .toast-ico { background: var(--warning); color: #04231a; }
.toast-info { border-left-color: var(--info); } .toast-info .toast-ico { background: var(--info); }

/* ------------------------------------------------------------ Loading / empty */
.spinner-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 48px; color: var(--muted); }
.spinner { width: 34px; height: 34px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.skeleton-row { display: flex; gap: 16px; padding: 14px 16px; border-bottom: 1px solid var(--border-soft); }
.skeleton-cell { flex: 1; height: 14px; border-radius: 6px; background: linear-gradient(90deg, #223049 25%, #2c3d59 37%, #223049 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.empty { text-align: center; padding: 56px 24px; color: var(--muted); }
.empty-ico { font-size: 44px; margin-bottom: 10px; }
.empty h3 { color: var(--text); margin-bottom: 6px; }
.empty p { margin: 0 auto 16px; max-width: 340px; }

/* ------------------------------------------------------------ Misc grids */
.grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

.res-card { display: flex; flex-direction: column; gap: 8px; padding: 18px; cursor: pointer; transition: border-color .15s, transform .1s; }
.res-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.res-card .badges { display: flex; gap: 6px; flex-wrap: wrap; }
.res-card h4 { margin: 4px 0 0; font-size: 15px; }
.res-card p { color: var(--muted); font-size: 13px; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 18px; overflow-x: auto; }
.tab { background: transparent; border: 0; border-bottom: 2px solid transparent; color: var(--muted); padding: 10px 14px; cursor: pointer; font: inherit; font-weight: 600; font-size: 13.5px; white-space: nowrap; }
.tab:hover { color: var(--text); }
.tab.active { color: #fff; border-bottom-color: var(--primary); }

.channel-list { display: flex; flex-direction: column; gap: 4px; }
.channel-item { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: var(--radius-sm); cursor: pointer; color: var(--text-dim); border: 1px solid transparent; }
.channel-item:hover { background: var(--surface-2); }
.channel-item.active { background: var(--primary-soft); border-color: var(--primary); color: #fff; }
.channel-item .ico { font-size: 18px; }

.template-card { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 14px; }
.template-card .tc-head { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: #17233a; border-bottom: 1px solid var(--border); }
.template-card pre { margin: 0; padding: 14px; white-space: pre-wrap; word-break: break-word; font-family: 'Inter', monospace; font-size: 13px; line-height: 1.6; color: var(--text-dim); background: var(--bg); }
.content-html { line-height: 1.7; color: var(--text-dim); }
.content-html h2 { font-size: 18px; color: #fff; margin-top: 4px; }
.content-html h3 { font-size: 15px; color: #fff; margin-top: 18px; }
.content-html ul, .content-html ol { padding-left: 22px; }
.content-html li { margin: 5px 0; }
.content-html pre { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 14px; white-space: pre-wrap; }
.content-html table { border-collapse: collapse; width: 100%; margin: 10px 0; }
.content-html table td, .content-html table th { border: 1px solid var(--border); padding: 8px 10px; text-align: left; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { position: relative; padding: 0 0 14px 44px; counter-increment: step; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--primary-soft); color: #93b4fb; border: 1px solid var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }

/* mini bar chart */
.bars { display: flex; align-items: flex-end; gap: 6px; height: 130px; padding-top: 8px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; max-width: 26px; border-radius: 5px 5px 0 0; background: var(--primary); min-height: 3px; transition: height .4s; }
.bar.alt { background: var(--success); }
.bar-label { font-size: 10.5px; color: var(--muted); }

.chips-inline { display: flex; gap: 6px; flex-wrap: wrap; }
.pager { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; color: var(--muted); font-size: 13px; }
.pager .pg-btns { display: flex; gap: 6px; }
.copy-url { display: flex; gap: 8px; }
.copy-url .input { flex: 1; }
.bulkbar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--primary-soft); border: 1px solid var(--primary); border-radius: var(--radius-sm); margin-bottom: 14px; flex-wrap: wrap; }
.bulkbar .grow { flex: 1; }

/* ------------------------------------------------------------ Login */
.login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: radial-gradient(1000px 500px at 50% -10%, #1e293b, #0F172A); }
.login-wrap { width: 100%; max-width: 400px; padding: 24px; }
.login-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-lg); }
.login-brand { display: flex; align-items: center; gap: 12px; }
.login-brand h1 { font-size: 24px; margin: 0; } .login-brand h1 span { color: var(--primary); }
.login-sub { color: var(--muted); margin: 6px 0 22px; font-size: 13px; }
.login-err { background: rgba(239,68,68,.12); border: 1px solid var(--danger); color: #fca5a5; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 14px; }
.login-hint { text-align: center; color: var(--muted-2); font-size: 12px; margin: 16px 0 0; }

/* ------------------------------------------------------------ Responsive */
@media (max-width: 860px) {
  .sidebar { transform: translateX(-100%); transition: transform .25s; }
  .nav-open .sidebar { transform: none; }
  .nav-open .nav-scrim { display: block; }
  .main { margin-left: 0; }
  .menu-toggle { display: inline-flex; }
  .top-cta { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .view { padding: 16px; }
}
