:root {
  --sidebar-width: 248px;
  --mobile-topbar-height: 56px;
  --bg: #f8f8f8;
  --bg-lift: #f8f8f8;
  --panel: #ffffff;
  --panel-soft: rgba(10, 132, 255, 0.12);
  --ink: #1d1d1f;
  --ink-mid: #3a3a3c;
  --muted: #6e6e73;
  --faint: #a1a1a6;
  --line: rgba(10, 132, 255, 0.12);
  --line-strong: rgba(10, 132, 255, 0.24);
  --accent: #0a84ff;
  --accent-hover: #0073e6;
  --accent-soft: rgba(10, 132, 255, 0.12);
  --ok: #247a4d;
  --warn: #a15c00;
  --danger: #b42318;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: none;
  --shadow: none;
  --shadow-lg: none;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); font-size: 14.5px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: geometricPrecision; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: none; }
button, input, select, textarea { font: inherit; }
.arke-app { display: flex; min-height: 100vh; }
.arke-sidebar { position: fixed; inset: 0 auto 0 0; z-index: 60; width: var(--sidebar-width); min-width: var(--sidebar-width); display: flex; flex-direction: column; gap: 22px; padding: 22px 16px; overflow-y: auto; background: #ffffff; border-right: 0; box-shadow: 12px 0 34px rgba(15, 23, 42, 0.08); backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px); }
.arke-sidebar-brand { display: flex; align-items: center; gap: 13px; padding: 8px 8px 12px; color: var(--ink); text-decoration: none; }
.arke-sidebar-brand:hover, .arke-mobile-brand:hover, .arke-sidebar-user:hover, .arke-nav-item:hover { text-decoration: none; }
.arke-sidebar-logo, .arke-mobile-brand-mark { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: #fff; background: #0a84ff; box-shadow: 0 14px 34px rgba(10, 132, 255, 0.28); }
.arke-sidebar-logo { width: 46px; height: 46px; border-radius: 14px; font-size: 20px; font-weight: 760; }
.arke-sidebar-brand-text h3 { margin: 0; color: var(--ink); font-size: 24px; font-weight: 760; line-height: 1; letter-spacing: -0.04em; }
.arke-sidebar-brand-text span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.arke-sidebar-section { display: grid; gap: 6px; }
.arke-sidebar-section::before { content: "Workspace"; padding: 0 12px 4px; color: var(--muted); font-size: 11px; font-weight: 760; letter-spacing: 0.09em; text-transform: uppercase; }
.bo-sidebar-org-section::before { content: "Organization"; }
.arke-nav-item { display: flex; align-items: center; gap: 10px; min-height: 40px; padding: 9px 12px; color: #515154; border-radius: var(--radius-sm); font-size: 14px; font-weight: 650; transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 150ms ease; }
.arke-nav-item::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 999px; background: #d2d6de; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04); }
.arke-nav-item.active, .arke-nav-item:hover { color: #111827; background: rgba(15, 23, 42, 0.06); }
.arke-nav-item.active { box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06); }
.arke-nav-item.active::before { background: var(--org-accent, #111827); }
.arke-sidebar-footer { margin-top: auto; display: grid; gap: 8px; padding-top: 8px; }
.arke-sidebar-user { display: grid; gap: 4px; padding: 13px 12px; color: var(--ink); background: #f5f7fb; border-radius: var(--radius); }
.arke-user-name { color: var(--ink); font-size: 14px; font-weight: 760; line-height: 1.25; }
.arke-user-role { color: var(--muted); font-size: 12.5px; font-weight: 650; }
.arke-sidebar-logout { display: flex; align-items: center; justify-content: center; min-height: 40px; padding: 9px 12px; color: var(--ink); background: #fff; border-radius: var(--radius-sm); font-size: 13px; font-weight: 760; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045); }
.arke-sidebar-logout:hover { color: var(--ink); background: var(--accent-soft); text-decoration: none; }
.arke-mobile-nav-backdrop { display: none; border: 0; background: rgba(0, 0, 0, 0.24); box-shadow: none; transform: none; backdrop-filter: saturate(140%) blur(4px); -webkit-backdrop-filter: saturate(140%) blur(4px); }
.arke-main { flex: 1; min-width: 0; display: flex; flex-direction: column; min-height: 100vh; margin-left: var(--sidebar-width); }
.arke-content { flex: 1; width: min(100%, 1440px); padding: 28px; }
.arke-topbar { display: none; }
.topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.topbar h2 { margin: 0; color: var(--ink); font-size: clamp(28px, 3vw, 40px); font-weight: 780; line-height: 1.04; letter-spacing: -0.045em; }
.topbar span { color: var(--muted); font-size: 13px; font-weight: 650; white-space: nowrap; }
.bo-footer { display: none; }
.bo-main { max-width: none; }
.bo-kicker, .eyebrow { display: inline-flex; margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 0 0 10px; color: var(--ink); font-size: clamp(42px, 6vw, 82px); line-height: 0.94; font-weight: 800; letter-spacing: -0.065em; }
h2 { margin: 0 0 10px; color: var(--ink); font-size: 28px; line-height: 1.1; font-weight: 760; letter-spacing: -0.03em; }
h3 { margin: 0 0 10px; color: var(--ink); font-size: 18px; letter-spacing: -0.03em; }
p { margin: 0 0 12px; color: var(--muted); line-height: 1.55; }
.bo-card, .bo-glass { padding: 20px; background: var(--panel); border: 0; border-radius: var(--radius-lg); box-shadow: none; }
.bo-card:hover { transform: none; }
.bo-button, button.bo-button, .uk-button.bo-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding: 10px 15px; color: #fff; background: var(--accent); border: 1px solid var(--accent) !important; border-radius: var(--radius-sm) !important; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13); font-size: 14px; font-weight: 720; line-height: 1.2; text-transform: none; letter-spacing: 0; cursor: pointer; transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease; }
.bo-button:hover { color: #fff; background: var(--accent-hover); border-color: var(--accent-hover) !important; text-decoration: none; transform: translateY(-1px); }
.bo-button-ghost, .bo-button-muted { color: var(--ink) !important; background: #fff !important; border-color: transparent !important; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045); }
.bo-button-ghost:hover, .bo-button-muted:hover { color: var(--ink) !important; background: var(--accent-soft) !important; }
.bo-public-page { background: #f5f5f7; }
.bo-public-app { min-height: 100vh; display: flex; flex-direction: column; }
.bo-public-nav { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 72px; padding: 14px clamp(18px, 4vw, 52px); background: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(0,0,0,0.06); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); }
.bo-public-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.bo-public-brand span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: #fff; background: var(--accent); border-radius: 14px; font-weight: 780; box-shadow: 0 14px 34px rgba(10,132,255,0.25); }
.bo-public-brand strong { font-size: 22px; font-weight: 780; letter-spacing: -0.035em; }
.bo-public-nav nav { display: flex; align-items: center; gap: 10px; }
.bo-public-nav nav a { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; color: var(--ink); border-radius: var(--radius-sm); font-size: 14px; font-weight: 720; }
.bo-public-nav nav a:hover { background: rgba(0,0,0,0.06); }
.bo-public-nav-cta { color: #fff !important; background: var(--accent); box-shadow: 0 10px 24px rgba(10,132,255,0.18); }
.bo-public-nav-cta:hover { background: var(--accent-hover) !important; }
.bo-public-nav-toggle { display: none; width: 42px; height: 42px; flex: 0 0 auto; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; border: 0; border-radius: 999px; background: transparent; box-shadow: none; }
.bo-public-nav-toggle span { width: 20px; height: 2px; border-radius: 99px; background: var(--ink); }
.bo-public-nav-backdrop { display: none; border: 0; background: rgba(0,0,0,0.24); box-shadow: none; transform: none; backdrop-filter: saturate(140%) blur(4px); -webkit-backdrop-filter: saturate(140%) blur(4px); }
.bo-public-main { flex: 1; width: min(100%, 1240px); margin: 0 auto; padding: clamp(18px, 4vw, 52px); }
.bo-public-hero { min-height: min(720px, calc(100vh - 120px)); display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, .76fr); gap: 20px; align-items: stretch; }
.bo-public-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(20px, 4vw, 44px); border-radius: var(--radius-lg); background: #fff; }
.bo-public-hero-copy h1 { margin-bottom: 14px; font-size: clamp(68px, 11vw, 134px); letter-spacing: -0.075em; }
.bo-public-hero-copy p { max-width: 680px; font-size: clamp(17px, 2vw, 22px); line-height: 1.48; color: var(--ink-mid); }
.bo-public-hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: var(--radius-lg); background: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1400&q=80") center/cover; }
.bo-public-hero-visual::before { content: ""; position: absolute; inset: 0; background: rgba(248,248,248,0.68); backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(1px); }
.bo-visual-window { position: relative; z-index: 1; width: min(92%, 520px); padding: 14px; background: rgba(255,255,255,0.88); border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.18); backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px); }
.bo-visual-toolbar { display: flex; gap: 7px; padding: 6px 4px 14px; }
.bo-visual-toolbar span { width: 10px; height: 10px; border-radius: 999px; background: #d2d2d7; }
.bo-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bo-visual-card { min-height: 104px; display: grid; align-content: center; gap: 5px; padding: 14px; background: #f5f5f7; border-radius: 16px; }
.bo-visual-card.bo-wide { grid-column: 1 / -1; min-height: 84px; }
.bo-visual-card span { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 13px; background: color-mix(in srgb, var(--org-accent, var(--accent)), transparent 78%); font-weight: 780; }
.bo-visual-card strong { color: var(--ink); font-size: 14px; font-weight: 780; }
.bo-visual-card small { color: var(--muted); font-size: 12px; font-weight: 650; }
.bo-public-band { margin-top: 20px; padding: 22px; background: #fff; border-radius: var(--radius-lg); }
.bo-public-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px clamp(18px, 4vw, 52px); color: var(--muted); font-size: 13px; font-weight: 650; }
.bo-signup-shell { min-height: calc(100vh - 124px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr); gap: 20px; align-items: stretch; }
.bo-signup-intro, .bo-signup-card { display: flex; flex-direction: column; justify-content: center; }
.bo-signup-intro h1 { font-size: clamp(44px, 7vw, 82px); }
.bo-signup-card { padding: clamp(22px, 4vw, 34px); }
.bo-landing-hero { min-height: min(760px, calc(100vh - 140px)); display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr); gap: 18px; align-items: stretch; }
.bo-hero-copy, .bo-hero-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 4vw, 42px); background: var(--panel); border-radius: var(--radius-lg); }
.bo-hero-copy p { max-width: 560px; margin: 0; font-size: 17px; line-height: 1.55; }
.bo-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.bo-command-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: var(--muted); font-size: 12px; font-weight: 760; }
.bo-command-header span { width: 36px; height: 4px; border-radius: 999px; background: var(--accent); }
.bo-mini-grid, .bo-org-card-grid, .bo-list, .bo-task-stack { display: grid; gap: 10px; }
.bo-mini-org, .bo-org-card, .bo-list a, .bo-task-stack label, .bo-org-switcher a { display: flex; align-items: center; gap: 12px; min-height: 58px; padding: 13px 14px; color: var(--ink); background: #f8f8f8; border-radius: var(--radius); transition: background 150ms ease; }
.bo-mini-org:hover, .bo-org-card:hover, .bo-list a:hover, .bo-org-switcher a:hover { background: var(--accent-soft); color: var(--ink); }
.bo-mini-org span, .bo-org-card span, .bo-org-switcher span, .bo-org-avatar, .bo-workspace-chip span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; flex: 0 0 auto; color: var(--ink); background: color-mix(in srgb, var(--org-accent, var(--accent)), transparent 78%); border-radius: 14px; font-weight: 780; }
.bo-mini-org strong, .bo-org-card strong, .bo-list strong, .bo-org-switcher strong { display: block; color: var(--ink); font-size: 14px; font-weight: 760; }
.bo-mini-org small, .bo-org-card small, .bo-list span { display: block; margin-top: 2px; color: var(--muted); font-size: 12.5px; font-weight: 650; }
.bo-section { margin-top: 16px; }
.bo-section-heading { margin-bottom: 14px; }
.bo-section-heading h2, .bo-dark-card h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1; letter-spacing: -0.055em; }
.bo-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.bo-feature-card { min-height: 118px; display: flex; align-items: center; gap: 12px; }
.bo-feature-card span { color: var(--accent); }
.bo-split-section, .bo-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.bo-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.bo-module-cloud { display: flex; flex-wrap: wrap; gap: 10px; align-content: center; padding: 20px; background: var(--panel); border-radius: var(--radius-lg); }
.bo-module-cloud span, .bo-module-badge, .bo-pill { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; color: var(--ink-mid); background: var(--accent-soft); border-radius: 999px; font-size: 11px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.bo-page-hero, .bo-workspace-hero { display: flex; align-items: stretch; justify-content: space-between; gap: 20px; margin-bottom: 16px; padding: 20px; background: var(--panel); border-radius: var(--radius-lg); }
.bo-page-hero h1, .bo-workspace-hero h1 { max-width: 760px; margin: 0 0 8px; font-size: clamp(28px, 4vw, 46px); line-height: 1; letter-spacing: -0.055em; }
.bo-page-hero p, .bo-workspace-hero p { max-width: 680px; margin: 0; }
.bo-small-hero { align-items: center; }
.bo-workspace-chip { min-width: min(100%, 220px); display: grid; align-content: center; justify-items: end; gap: 8px; padding: 14px; background: #f8f8f8; border-radius: var(--radius); }
.bo-workspace-chip strong { color: var(--muted); font-size: 12.5px; }
.bo-org-nav { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 16px; padding: 3px 0 6px; }
.bo-org-nav a { flex: 0 0 auto; min-height: 36px; padding: 8px 12px; color: #515154; background: #fff; border-radius: 999px; font-size: 13px; font-weight: 680; }
.bo-org-nav a:hover, .bo-org-nav a.is-active { color: #111827; background: rgba(15, 23, 42, 0.06); }
.bo-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 16px; }
.bo-stat-card { min-height: 118px; }
.bo-stat-card span { margin: 0; color: var(--muted); font-size: 12px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.bo-stat-card strong { display: block; margin: 10px 0 0; color: var(--ink); font-size: 34px; font-weight: 780; line-height: 1; letter-spacing: -0.045em; }
.bo-stat-card small { display: block; margin-top: 4px; color: var(--muted); font-size: 12.5px; }
.bo-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.bo-card-head h2 { margin-bottom: 0; font-size: 18px; }
.bo-card-head a, .bo-card a:not(.bo-button) { color: var(--accent); font-weight: 720; }
.bo-org-directory { display: grid; gap: 16px; }
.bo-directory-grid { grid-template-columns: 1fr; }
.bo-org-directory-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; color: inherit; }
.bo-org-directory-card h2 { margin-bottom: 2px; font-size: 22px; }
.bo-org-directory-card strong { color: var(--accent); }
.bo-org-directory-card small { color: var(--muted); font-weight: 720; }
.bo-profile-card { align-items: stretch; }
.bo-profile-card > div { min-width: 0; }
.bo-card-actions, .bo-inline-actions, .bo-chip-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.bo-card-actions { justify-content: flex-end; }
.bo-card-actions form, .bo-inline-actions form { margin: 0; }
.bo-inline-actions .bo-button { min-height: 34px; padding: 7px 11px; font-size: 12.5px; box-shadow: none; }
.bo-chip-row { margin-top: 12px; }
.bo-table-subtext { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 650; }
.bo-alert { margin-bottom: 14px; padding: 12px 14px; border-radius: var(--radius); color: var(--ink); background: #f8f8f8; font-weight: 680; }
.bo-alert-good { color: var(--ok); background: #edf8f2; }
.bo-alert-bad { color: var(--danger); background: #fff0ee; }
.bo-profile-meter { height: 12px; overflow: hidden; margin: 14px 0; border-radius: 999px; background: rgba(0,0,0,0.08); }
.bo-profile-meter span { display: block; height: 100%; border-radius: inherit; background: var(--accent); }
.bo-table-wrap { overflow-x: auto; }
.bo-table { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0; margin: 0; color: var(--ink); }
.bo-table th, .bo-table td { padding: 13px 10px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(0,0,0,0.06) !important; font-size: 14px; }
.bo-table th { color: var(--muted); font-size: 11px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.bo-table tr:last-child td { border-bottom: 0 !important; }
.bo-table-input-group { display: grid; gap: 6px; margin-bottom: 10px; }
.bo-table-input-group:last-child { margin-bottom: 0; }
.bo-table-label { color: var(--muted); font-size: 11px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.bo-table-inline-grid { display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)); gap: 10px; }
.bo-table-inline-grid-compact { grid-template-columns: repeat(3, minmax(88px, 1fr)); }
.bo-table-actions { display: flex; flex-wrap: wrap; gap: 10px; min-width: 148px; }
.bo-table .uk-input { min-height: 40px; padding: 8px 11px; color: var(--ink); background: rgba(255,255,255,0.96); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); box-shadow: inset 0 1px 0 rgba(255,255,255,0.65); }
.bo-status-good, .bo-status-warn, .bo-status-hot, .bo-status-neutral { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.bo-status-good { color: var(--ok); background: #edf8f2; }
.bo-status-warn { color: var(--warn); background: #fff6e8; }
.bo-status-hot { color: var(--danger); background: #fff0ee; }
.bo-status-neutral { color: var(--ink-mid); background: var(--accent-soft); }
.bo-announcement-grid, .bo-document-grid, .bo-module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.bo-announcement-card span, .bo-module-card span { color: var(--muted); font-size: 11px; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }
.bo-document-card span { color: var(--accent); }
.bo-document-card h2, .bo-announcement-card h2 { margin: 12px 0 6px; font-size: 22px; }
.bo-module-card { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.bo-module-card.is-enabled { background: linear-gradient(180deg, #fff, #f6fbff); }
.bo-report-lanes { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.bo-report-lanes span { padding: 14px; border-radius: var(--radius); background: #f8f8f8; color: var(--ink); font-weight: 720; }
.bo-empty-module { max-width: 720px; }
.bo-login-shell { min-height: calc(100vh - 140px); display: grid; place-items: center; }
.bo-login-card { width: min(100%, 482px); padding: 30px; border-radius: 28px; }
.bo-login-card h1 { margin-bottom: 10px; font-size: clamp(31px, 5vw, 42px); line-height: 1.02; font-weight: 780; letter-spacing: -0.045em; }
.bo-form { display: grid; gap: 12px; margin-top: 20px; }
.bo-form label { display: block; margin-bottom: 0; color: var(--ink-mid); font-size: 13px; font-weight: 680; }
.bo-form .uk-input, .bo-form .uk-select, .bo-form .uk-textarea, .bo-admin-editor .uk-input, .bo-admin-editor .uk-select, .bo-admin-editor .uk-textarea { min-height: 46px; padding: 10px 12px; color: var(--ink); background: rgba(255,255,255,0.94); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); box-shadow: inset 0 1px 0 rgba(255,255,255,0.65); }
.bo-form .uk-textarea, .bo-admin-editor .uk-textarea { min-height: 92px; resize: vertical; }
.bo-muted { color: var(--muted); }
.bo-admin-split { align-items: start; }
.bo-admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.bo-admin-stack { display: grid; gap: 16px; }
.bo-admin-editor { display: grid; gap: 14px; padding: 18px; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,252,0.96)); }
.bo-admin-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.bo-admin-module-create { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.bo-feedback-public-shell { min-height: min(760px, calc(100vh - 140px)); display: grid; grid-template-columns: minmax(0, .86fr) minmax(360px, .78fr); gap: 18px; align-items: stretch; }
.bo-feedback-intro, .bo-feedback-form-card { display: flex; flex-direction: column; justify-content: center; }
.bo-feedback-intro h1 { font-size: clamp(48px, 8vw, 92px); }
.bo-feedback-form-card { padding: clamp(22px, 4vw, 34px); }
.bo-feedback-filter { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.bo-feedback-message { color: var(--ink-mid); font-size: 17px; white-space: normal; }
.bo-feedback-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 18px; }
.bo-feedback-detail-grid div { padding: 14px; background: #f8f8f8; border-radius: var(--radius); }
.bo-feedback-detail-grid span { display: block; color: var(--muted); font-size: 11px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.bo-feedback-detail-grid strong { display: block; margin-top: 5px; color: var(--ink); font-size: 14px; }
.bo-feedback-admin-nav { margin-top: -4px; }
.bo-report-bars { display: grid; gap: 12px; }
.bo-report-bars div { position: relative; min-height: 46px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 12px 14px; overflow: hidden; background: #f8f8f8; border-radius: var(--radius); }
.bo-report-bars span, .bo-report-bars strong { position: relative; z-index: 1; color: var(--ink); font-weight: 760; }
.bo-report-bars i { position: absolute; inset: auto auto 0 0; height: 4px; border-radius: 999px; background: var(--accent); }
.bo-checkline { display: inline-flex !important; align-items: center; gap: 8px; min-height: 46px; margin: 0 !important; color: var(--ink-mid); font-weight: 680; }
.arke-mobile-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 760; }
.arke-mobile-brand-mark { width: 34px; height: 34px; border-radius: 11px; font-size: 14px; font-weight: 760; }
.arke-mobile-nav-toggle { width: 42px; height: 42px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; border: 0; border-radius: 999px; background: transparent; box-shadow: none; }
.arke-mobile-nav-toggle span { width: 20px; height: 2px; border-radius: 99px; background: var(--ink); }
@media (max-width: 960px) {
  body.arke-nav-lock { overflow: hidden; touch-action: none; }
  .arke-app { display: block; min-height: 100vh; overflow-x: hidden; }
  .arke-main { margin-left: 0; padding-top: var(--mobile-topbar-height); }
  .arke-content { width: 100%; padding: 16px; overflow-x: hidden; }
  .arke-content .grid { grid-template-columns: 1fr !important; }
  .arke-topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1200; display: flex; align-items: center; justify-content: space-between; gap: 12px; height: var(--mobile-topbar-height); min-height: var(--mobile-topbar-height); padding: 0 18px; background: rgba(255,255,255,0.74); border-bottom: 1px solid rgba(0,0,0,0.08); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); }
  .arke-sidebar { transform: translateX(-105%); transition: transform 200ms ease; }
  body.arke-nav-open .arke-sidebar { transform: translateX(0); }
  .arke-mobile-nav-backdrop { position: fixed; inset: 0; z-index: 50; }
  body.arke-nav-open .arke-mobile-nav-backdrop { display: block; }
  .bo-landing-hero, .bo-public-hero, .bo-signup-shell, .bo-feedback-public-shell, .bo-split-section, .bo-grid-2, .bo-grid-3, .bo-admin-split { grid-template-columns: 1fr; }
  .bo-public-hero { min-height: auto; }
  .bo-public-hero-visual { min-height: 420px; }
  .bo-page-hero, .bo-workspace-hero { display: grid; }
  .bo-workspace-chip { justify-items: start; }
}
@media (max-width: 640px) {
  .bo-public-app { padding-top: var(--mobile-topbar-height); }
  .bo-public-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1200; min-height: var(--mobile-topbar-height); height: var(--mobile-topbar-height); align-items: center; display: flex; padding: 0 18px; }
  .bo-public-brand span { width: 34px; height: 34px; border-radius: 11px; font-size: 14px; }
  .bo-public-brand strong { font-size: 20px; }
  .bo-public-nav-toggle { display: inline-flex; }
  .bo-public-nav nav { position: fixed; top: calc(var(--mobile-topbar-height) + 10px); left: 16px; right: 16px; z-index: 1201; width: auto; display: grid; gap: 8px; padding: 12px; background: rgba(255,255,255,0.94); border-radius: var(--radius); box-shadow: 0 22px 58px rgba(0,0,0,0.18); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 160ms ease, transform 160ms ease; backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px); }
  body.bo-public-nav-open .bo-public-nav nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .bo-public-nav nav a { width: 100%; min-height: 44px; justify-content: flex-start; padding: 10px 12px; flex: none; }
  .bo-public-nav nav .bo-public-nav-cta { justify-content: center; }
  .bo-public-nav-backdrop { position: fixed; inset: 0; z-index: 1100; }
  body.bo-public-nav-open .bo-public-nav-backdrop { display: block; }
  .bo-public-main { padding: 14px; }
  .bo-public-hero-copy h1 { font-size: 58px; }
  .bo-public-hero-visual { min-height: 360px; }
  .bo-visual-grid { grid-template-columns: 1fr; }
  .bo-public-footer { display: grid; }
  .topbar { display: grid; gap: 8px; }
  .bo-org-directory-card { grid-template-columns: auto 1fr; }
  .bo-org-directory-card small, .bo-org-directory-card .bo-card-actions { grid-column: 1 / -1; justify-content: flex-start; }
  .bo-hero-copy, .bo-hero-panel, .bo-card { padding: 18px; }
  .bo-table-inline-grid, .bo-table-inline-grid-compact { grid-template-columns: 1fr; }
  h1 { font-size: 44px; }
}
