@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #07111f;
  --panel: rgba(14, 29, 47, .72);
  --panel-strong: #102339;
  --panel-soft: rgba(18, 39, 61, .56);
  --line: rgba(160, 191, 219, .12);
  --line-bright: rgba(125, 203, 255, .24);
  --text: #f4f8fc;
  --muted: #8ea2b7;
  --muted-2: #5e7289;
  --blue: #51b8ff;
  --cyan: #66e1db;
  --violet: #9276ff;
  --green: #72dfaa;
  --amber: #f4bd70;
  --red: #ff8c9a;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.ambient { position: fixed; z-index: -1; pointer-events: none; filter: blur(20px); border-radius: 50%; opacity: .5; }
.ambient-one { width: 620px; height: 420px; right: -180px; top: -180px; background: radial-gradient(circle, rgba(78, 161, 255, .2), transparent 68%); }
.ambient-two { width: 520px; height: 420px; left: 18%; bottom: -260px; background: radial-gradient(circle, rgba(113, 74, 255, .17), transparent 68%); }

.app-shell { display: flex; min-height: 100vh; }
.sidebar { width: 246px; padding: 24px 14px 18px; border-right: 1px solid var(--line); background: rgba(6, 17, 30, .72); backdrop-filter: blur(22px); display: flex; flex-direction: column; position: fixed; inset: 0 auto 0 0; z-index: 10; }
.brand { display: flex; gap: 11px; align-items: center; padding: 0 12px 25px; }
.brand-mark { width: 31px; height: 31px; border-radius: 10px; position: relative; background: linear-gradient(145deg, #62d7ff, #6d6eff 58%, #b56cff); box-shadow: 0 0 24px rgba(101, 167, 255, .35); }
.brand-mark:before, .brand-mark:after { content: ''; position: absolute; border: 1.5px solid rgba(255,255,255,.8); border-radius: 8px; transform: rotate(45deg); }
.brand-mark:before { inset: 7px; }
.brand-mark:after { inset: 11px 7px 7px 11px; opacity: .55; }
.brand-name { font-size: 13px; line-height: 1.1; font-weight: 800; letter-spacing: .19em; }
.brand-sub { display: block; color: var(--muted-2); font-size: 8px; letter-spacing: .17em; margin-top: 5px; font-family: 'DM Mono', monospace; }
.collapse-button { margin-left: auto; width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: rgba(17, 38, 59, .55); font-size: 16px; line-height: 1; transition: .2s ease; }
.collapse-button:hover { color: var(--text); border-color: var(--line-bright); background: rgba(48, 91, 126, .4); }
.nav-label { color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; padding: 0 12px 10px; }
.nav-group { display: grid; gap: 3px; }
.nav-button { border: 0; color: var(--muted); background: transparent; border-radius: 12px; padding: 11px 12px; display: flex; align-items: center; gap: 12px; text-align: left; font-size: 12px; transition: .2s ease; }
.nav-button:hover { color: var(--text); background: rgba(87, 151, 205, .08); }
.nav-button.active { color: #f6fcff; background: linear-gradient(90deg, rgba(63, 151, 235, .16), rgba(99, 91, 220, .08)); box-shadow: inset 2px 0 var(--blue); }
.nav-icon { width: 17px; text-align: center; color: currentColor; opacity: .8; font-size: 16px; line-height: 1; }
.sidebar-spacer { flex: 1; }
.upgrade-card { border: 1px solid rgba(125, 168, 242, .16); background: linear-gradient(145deg, rgba(86, 125, 221, .13), rgba(91, 58, 161, .08)); border-radius: 15px; padding: 13px; margin: 10px 3px 17px; }
.upgrade-card small { color: var(--muted); font-size: 10px; line-height: 1.45; display: block; }
.upgrade-card b { font-size: 12px; display: block; margin: 5px 0 10px; }
.upgrade-card button { border: 1px solid rgba(125, 198, 255, .3); color: var(--blue); border-radius: 7px; background: rgba(58, 143, 224, .1); padding: 7px 9px; font-size: 10px; }
.profile { display: flex; gap: 10px; align-items: center; border-top: 1px solid var(--line); padding: 16px 9px 0; }
.avatar { width: 31px; height: 31px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #06101f; font-weight: 800; font-size: 11px; background: linear-gradient(145deg, #ecc2a3, #996c79); }
.profile-info { min-width: 0; }
.profile-info b { display: block; font-size: 11px; }
.profile-info span { display: block; font-size: 9px; color: var(--muted); margin-top: 3px; }

.main { width: calc(100% - 246px); margin-left: 246px; padding: 29px 36px 40px; max-width: 1600px; transition: width .25s ease, margin-left .25s ease; }
.sidebar.collapsed { width: 78px; padding-inline: 10px; }
.sidebar.collapsed + .main { width: calc(100% - 78px); margin-left: 78px; }
.sidebar.collapsed .brand { padding-inline: 13px; justify-content: center; }
.sidebar.collapsed .brand-name, .sidebar.collapsed .nav-label, .sidebar.collapsed .nav-text, .sidebar.collapsed .upgrade-card, .sidebar.collapsed .profile-info, .sidebar.collapsed .profile > span:last-child { display: none; }
.sidebar.collapsed .collapse-button { margin-left: 0; transform: rotate(180deg); }
.sidebar.collapsed .nav-button { justify-content: center; padding-inline: 0; }
.sidebar.collapsed .nav-icon { width: auto; font-size: 17px; }
.sidebar.collapsed .profile { justify-content: center; padding-inline: 0; }
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.crumb { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }
.crumb span { color: var(--muted-2); }
.top-actions { display: flex; align-items: center; gap: 10px; }
.shortcut-button { border: 1px solid var(--line); border-radius: 8px; color: var(--muted); background: rgba(18, 37, 57, .56); padding: 7px 9px; font: 9px 'DM Mono', monospace; }
.shortcut-button:hover { color: var(--text); border-color: var(--line-bright); }
.icon-button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 10px; background: rgba(18, 37, 57, .56); color: var(--muted); position: relative; }
.icon-button:hover { color: var(--text); border-color: var(--line-bright); }
.notification-dot { position: absolute; width: 6px; height: 6px; right: 7px; top: 7px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 3px rgba(81,184,255,.13); }
.workspace-select { border: 1px solid var(--line); color: var(--muted); border-radius: 10px; background: rgba(18, 37, 57, .56); padding: 9px 12px; font-size: 10px; }

.eyebrow { font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); font-size: 10px; }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(26px, 3vw, 38px); line-height: 1.12; letter-spacing: -.045em; }
h2 { font-size: 20px; letter-spacing: -.03em; }
h3 { font-size: 13px; }
.muted { color: var(--muted); }
.muted-2 { color: var(--muted-2); }
.hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-bottom: 27px; }
.hero-copy p { color: var(--muted); font-size: 13px; margin-top: 10px; }
.button-row { display: flex; gap: 9px; align-items: center; }
.primary-button, .secondary-button { border-radius: 10px; padding: 11px 15px; font-weight: 700; font-size: 11px; border: 1px solid transparent; transition: .2s ease; }
.primary-button { color: #061422; background: linear-gradient(135deg, #62d1ff, #7ca8ff); box-shadow: 0 8px 24px rgba(76, 166, 237, .18); }
.primary-button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.secondary-button { color: var(--text); border-color: var(--line); background: rgba(20, 39, 60, .5); }
.secondary-button:hover { border-color: var(--line-bright); background: rgba(37, 69, 97, .5); }
.button-icon { margin-right: 5px; opacity: .8; }

.grid { display: grid; gap: 14px; }
.metrics-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 26px; }
.card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(20, 42, 65, .72), rgba(11, 26, 43, .68)); border-radius: var(--radius); box-shadow: var(--shadow); }
.metric-card { padding: 17px 17px 13px; min-height: 123px; position: relative; overflow: hidden; }
.metric-card:after { content: ''; position: absolute; width: 120px; height: 65px; right: -30px; bottom: -30px; background: radial-gradient(ellipse, rgba(80, 181, 255, .13), transparent 68%); }
.metric-top { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; }
.metric-icon { color: var(--blue); font-size: 14px; }
.metric-value { font-size: 25px; font-weight: 700; letter-spacing: -.06em; margin-top: 14px; }
.metric-bottom { display: flex; align-items: center; gap: 8px; margin-top: 7px; font-size: 10px; }
.positive { color: var(--green); } .negative { color: var(--red); }
.spark { margin-left: auto; width: 73px; height: 22px; display: flex; align-items: flex-end; gap: 3px; opacity: .75; }
.spark i { display: block; width: 5px; border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, rgba(79, 179, 255, .25), var(--blue)); }
.spark i:nth-child(1){height:30%}.spark i:nth-child(2){height:42%}.spark i:nth-child(3){height:35%}.spark i:nth-child(4){height:56%}.spark i:nth-child(5){height:49%}.spark i:nth-child(6){height:75%}.spark i:nth-child(7){height:64%}.spark i:nth-child(8){height:95%}
.section-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; }
.section-heading p { font-size: 11px; color: var(--muted); margin-top: 5px; }
.link-button { background: transparent; color: var(--blue); border: 0; font-size: 10px; }
.dashboard-grid { grid-template-columns: 1.48fr 1fr; margin-bottom: 26px; }
.performance-card, .ai-card { padding: 19px; min-height: 275px; }
.chart-head { display: flex; justify-content: space-between; align-items: flex-start; }
.range-tabs { display: flex; border: 1px solid var(--line); border-radius: 8px; padding: 3px; gap: 2px; }
.range-tabs button { background: transparent; border: 0; color: var(--muted); font-size: 9px; border-radius: 5px; padding: 5px 7px; }
.range-tabs button.active { color: var(--text); background: rgba(91, 172, 233, .17); }
.chart-legend { display: flex; gap: 14px; color: var(--muted); font-size: 9px; margin-top: 19px; }
.legend { display: inline-flex; align-items: center; gap: 5px; }
.legend:before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }.legend.violet:before { background: var(--violet); }
.line-chart { height: 136px; display: flex; align-items: end; gap: 11px; margin-top: 12px; padding: 10px 4px 0; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to bottom, transparent 0, transparent 32px, rgba(171,198,224,.07) 33px); }
.chart-column { flex: 1; height: 100%; display: flex; align-items: flex-end; position: relative; }
.chart-column:before { content: ''; position: absolute; left: 0; right: 0; bottom: var(--blue-h); height: 2px; border-radius: 3px; background: linear-gradient(90deg, transparent, var(--blue)); transform: skewY(-10deg); opacity: .8; }
.chart-column:after { content: ''; position: absolute; width: 6px; height: 6px; left: calc(50% - 3px); bottom: calc(var(--blue-h) - 2px); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(81,184,255,.12); }
.chart-labels { display: flex; justify-content: space-between; color: var(--muted-2); font: 9px 'DM Mono', monospace; padding-top: 8px; }
.ai-card { background: radial-gradient(circle at 100% 0, rgba(122, 100, 245, .2), transparent 40%), linear-gradient(145deg, rgba(24, 39, 72, .82), rgba(13, 27, 47, .76)); }
.ai-heading { display: flex; gap: 11px; align-items: center; }
.ai-orb { width: 38px; height: 38px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(145deg, #6dd7fa, #6e6bff); box-shadow: 0 0 28px rgba(112, 126, 255, .32); font-size: 17px; }
.ai-message { padding: 14px 0 13px; color: #dce7f4; font-size: 13px; line-height: 1.65; max-width: 370px; }
.insight { display: flex; gap: 10px; align-items: flex-start; padding: 11px 0; border-top: 1px solid var(--line); font-size: 10px; color: var(--muted); line-height: 1.5; }
.insight strong { display: block; color: var(--text); font-size: 11px; margin-bottom: 3px; }
.insight-mark { color: var(--cyan); font-size: 15px; }

.network-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 26px; }
.network-card { padding: 17px; }
.network-head { display: flex; justify-content: space-between; align-items: center; }
.network-name { display: flex; gap: 9px; align-items: center; font-size: 12px; font-weight: 700; }
.network-badge { width: 27px; height: 27px; border-radius: 9px; display: grid; place-items: center; color: #ddecf8; font-size: 10px; font-weight: 800; background: rgba(94, 174, 234, .13); border: 1px solid rgba(119, 195, 251, .17); }
.network-badge.tiktok { background: rgba(231, 252, 255, .1); }.network-badge.facebook { background: rgba(99, 125, 246, .16); }
.status { display: flex; align-items: center; gap: 5px; color: var(--green); font-size: 9px; }.status:before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(114,223,170,.1); }
.handle { color: var(--muted); font-size: 10px; margin: 14px 0 13px; }
.network-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }.network-stats span { color: var(--muted-2); display: block; font-size: 8px; }.network-stats b { display: block; font-size: 13px; margin-top: 4px; }
.network-progress { height: 3px; border-radius: 5px; background: rgba(143, 180, 214, .1); margin-top: 16px; overflow: hidden; }.network-progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--violet)); }

.content-grid { grid-template-columns: 1.05fr .95fr; }
.content-card { padding: 18px; }
.content-list { display: grid; gap: 9px; }.content-row { display: flex; align-items: center; gap: 10px; padding: 8px; background: rgba(163, 196, 225, .045); border: 1px solid rgba(159, 196, 230, .07); border-radius: 11px; }.thumbnail { width: 38px; height: 38px; border-radius: 8px; background: linear-gradient(145deg, #687ea0, #1e344f); position: relative; overflow: hidden; }.thumbnail:after { content: ''; position: absolute; inset: 8px 7px 7px; border-radius: 50% 50% 45% 45%; background: linear-gradient(145deg, rgba(242,214,193,.85), rgba(118,77,89,.7)); }.thumbnail.reel { background: linear-gradient(145deg, #a85d81, #334a94); }.thumbnail.aurora { background: linear-gradient(145deg, #5e9f9c, #283c83); }.row-copy { flex: 1; min-width: 0; }.row-copy b { display: block; font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.row-copy span { color: var(--muted); display: block; font-size: 9px; margin-top: 4px; }.row-stat { color: var(--muted); font-size: 9px; text-align: right; }.row-stat b { display: block; color: var(--text); font-size: 11px; margin-bottom: 3px; }
.queue-list { display: grid; gap: 10px; }.queue-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }.queue-item:last-child { border-bottom: 0; }.queue-time { width: 59px; color: var(--muted-2); font: 10px 'DM Mono', monospace; }.queue-line { width: 2px; align-self: stretch; border-radius: 3px; background: var(--blue); }.queue-line.purple { background: var(--violet); }.queue-line.green { background: var(--green); }.queue-copy { flex: 1; }.queue-copy b { display:block; font-size: 11px; }.queue-copy span { display:block; color:var(--muted); font-size:9px; margin-top:4px; }.queue-platform { color: var(--muted); font-size: 9px; }

/* product screens */
.screen-title { margin-bottom: 22px; }.screen-title p { color: var(--muted); font-size: 12px; margin-top: 8px; }
.composer-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 16px; align-items: start; }.composer-left, .composer-right { display: grid; gap: 14px; }.panel { padding: 19px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(20, 42, 65, .75), rgba(11, 26, 43, .68)); border-radius: var(--radius); box-shadow: var(--shadow); }.panel-label { color: var(--muted-2); font: 9px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 10px; }.publish-networks { display: flex; gap: 8px; flex-wrap: wrap; }.network-toggle { border: 1px solid var(--line); color: var(--muted); background: rgba(11, 25, 42, .6); border-radius: 9px; padding: 9px 11px; font-size: 10px; }.network-toggle.selected { border-color: rgba(90, 193, 255, .42); background: rgba(69, 157, 219, .14); color: var(--text); }.network-toggle i { display: inline-block; width: 6px; height: 6px; background: currentColor; border-radius: 50%; margin-right: 7px; opacity: .8; }.field { margin-top: 17px; }.field label { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; margin-bottom: 8px; }.field label small { color: var(--muted-2); }.input, .textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; outline: 0; color: var(--text); background: rgba(5, 17, 30, .43); padding: 11px 12px; font-size: 12px; transition: .2s; }.input:focus, .textarea:focus { border-color: var(--line-bright); box-shadow: 0 0 0 3px rgba(81,184,255,.06); }.textarea { min-height: 119px; resize: vertical; line-height: 1.6; }.upload-zone { border: 1px dashed rgba(111, 191, 240, .3); border-radius: 12px; min-height: 126px; display: grid; place-items: center; text-align: center; padding: 16px; background: radial-gradient(circle at center, rgba(75, 160, 227, .08), transparent 65%); }.upload-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: var(--blue); background: rgba(76, 165, 228, .12); margin: 0 auto 8px; }.upload-zone b { display: block; font-size: 11px; }.upload-zone span { display: block; color: var(--muted); font-size: 9px; margin-top: 5px; }.media-type-row { display: flex; gap: 8px; margin-top: 10px; }.media-type { flex: 1; border: 1px solid var(--line); background: transparent; color: var(--muted); border-radius: 8px; padding: 8px 4px; font-size: 9px; }.media-type.active { color: var(--text); border-color: var(--line-bright); background: rgba(93, 164, 221, .12); }.tool-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }.tool-button { border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: rgba(15, 31, 49, .45); padding: 7px 9px; font-size: 9px; }.tool-button:hover { color: var(--text); border-color: var(--line-bright); }.composer-footer { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); }.composer-footer .button-row { flex-wrap: wrap; justify-content: flex-end; }.schedule-note { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 9px; }.schedule-note b { color: var(--amber); font-weight: 600; }
.preview-panel { padding: 14px; }.preview-tabs { display: flex; gap: 4px; margin-bottom: 14px; }.preview-tab { flex: 1; border: 0; background: transparent; color: var(--muted); padding: 8px; border-bottom: 1px solid transparent; font-size: 10px; }.preview-tab.active { color: var(--text); border-color: var(--blue); }.phone-frame { max-width: 305px; margin: 0 auto; border: 7px solid #15263a; border-radius: 28px; padding: 10px; background: #081524; box-shadow: 0 18px 40px rgba(0,0,0,.32); }.phone-notch { width: 74px; height: 5px; border-radius: 8px; background: #233b53; margin: 0 auto 12px; }.social-post { border: 1px solid var(--line); background: #0b1b2c; border-radius: 13px; overflow: hidden; }.post-head { display: flex; align-items: center; gap: 8px; padding: 11px; }.post-avatar { width: 23px; height: 23px; border-radius: 50%; background: linear-gradient(145deg, #ffbf89, #6d6eff); }.post-head-copy { flex: 1; font-size: 9px; }.post-head-copy b { display: block; }.post-head-copy span { display: block; color: var(--muted); margin-top: 2px; }.more { color: var(--muted); }.post-art { height: 230px; background: radial-gradient(circle at 65% 25%, rgba(122,218,239,.7), transparent 16%), radial-gradient(circle at 42% 57%, rgba(171,113,249,.7), transparent 20%), linear-gradient(140deg, #172f45, #382e6a 52%, #0b647a); position: relative; overflow: hidden; }.post-art:before { content: ''; position: absolute; inset: 28px 16px 0 31px; border-radius: 48% 50% 0 0; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,0)); transform: rotate(-10deg); }.post-art:after { content: 'NEXORA / 01'; position: absolute; left: 14px; bottom: 13px; color: rgba(255,255,255,.7); font: 9px 'DM Mono'; letter-spacing: .13em; }.post-actions { display: flex; gap: 10px; padding: 11px 11px 3px; color: var(--muted); font-size: 12px; }.post-likes { padding: 3px 11px; font-size: 10px; font-weight: 700; }.post-caption { padding: 3px 11px 13px; font-size: 10px; line-height: 1.45; color: #d9e4ef; }.post-caption span { color: var(--blue); }.score-panel { padding: 17px; }.score-row { display: flex; justify-content: space-between; align-items: center; }.score-value { font-size: 33px; font-weight: 800; letter-spacing: -.07em; }.score-value small { color: var(--muted); font-size: 11px; font-weight: 500; letter-spacing: 0; }.score-ring { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--cyan) 0 84%, rgba(104,140,176,.13) 84%); position: relative; }.score-ring:after { content: ''; position: absolute; inset: 6px; background: var(--panel-strong); border-radius: 50%; }.score-ring b { position: relative; z-index: 1; font-size: 15px; }.score-breakdown { display: grid; gap: 9px; margin-top: 16px; }.score-line { display: grid; grid-template-columns: 67px 1fr 27px; align-items: center; gap: 8px; color: var(--muted); font-size: 9px; }.score-bar { height: 4px; background: rgba(136,169,199,.12); border-radius: 5px; overflow: hidden; }.score-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: inherit; }.recommendation { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 14px; color: var(--muted); font-size: 10px; line-height: 1.55; }.recommendation b { color: var(--amber); }

.creator-layout { display:grid; grid-template-columns: .78fr 1.22fr; gap: 16px; }.creator-input { min-height: 345px; }.tone-grid { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }.tone { border: 1px solid var(--line); background: transparent; color: var(--muted); padding: 8px 10px; border-radius: 8px; font-size: 9px; }.tone.active { color: var(--text); border-color: rgba(146,118,255,.5); background: rgba(132,104,240,.15); }.creator-results { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; }.result-card { border: 1px solid var(--line); background: rgba(11, 26, 43, .55); border-radius: 13px; padding: 14px; min-height: 142px; }.result-card.wide { grid-column: span 2; }.result-icon { color: var(--violet); font-size: 14px; }.result-card h3 { margin: 8px 0 7px; }.result-card p { color: var(--muted); font-size: 10px; line-height: 1.6; }.result-card .result-chip { display: inline-block; color: var(--cyan); background: rgba(98,225,219,.08); padding: 5px 7px; border-radius: 6px; font: 9px 'DM Mono'; margin-top: 9px; }

.calendar-layout { display:grid; grid-template-columns: 1.55fr .75fr; gap: 16px; }.calendar-panel { padding: 18px; }.calendar-top { display:flex; justify-content:space-between; align-items:center; margin-bottom: 18px; }.month-nav { display:flex; align-items:center; gap:12px; }.month-nav button { width: 25px; height:25px; border:1px solid var(--line); color:var(--muted); background:transparent; border-radius:7px; }.month-nav b { font-size: 13px; }.calendar-view { display:flex; gap:3px; }.calendar-view button { color:var(--muted); background:transparent; border:0; font-size:9px; padding:7px 8px; border-radius:6px; }.calendar-view button.active { color:var(--text); background:rgba(88,164,227,.15); }.calendar-grid { display:grid; grid-template-columns:repeat(7,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }.weekday, .day { border-right:1px solid var(--line); border-bottom:1px solid var(--line); }.weekday { color:var(--muted-2); font:9px 'DM Mono'; padding:9px 7px; }.day { min-height:93px; padding:7px; position:relative; }.day.muted-day { background: rgba(4,14,25,.24); color:var(--muted-2); }.day-number { color:var(--muted); font:10px 'DM Mono'; }.day.today .day-number { display:inline-grid; place-items:center; width:21px; height:21px; background:var(--blue); color:#061423; border-radius:50%; font-weight:700; }.event { padding:5px 6px; margin-top:7px; border-radius:5px; font-size:8px; line-height:1.25; border-left:2px solid var(--blue); color:#cfe2f1; background:rgba(68,159,221,.13); overflow:hidden; white-space:nowrap; text-overflow:ellipsis; }.event.tiktok { border-color:var(--violet); background:rgba(143,111,241,.13); }.event.facebook { border-color:var(--green); background:rgba(79,197,140,.1); }.queue-panel { padding:18px; }.queue-panel .queue-list { margin-top: 15px; }.queue-summary { padding:12px; border:1px solid rgba(101,206,215,.19); background:rgba(87,207,211,.06); border-radius:10px; color:var(--muted); font-size:10px; line-height:1.55; }.queue-summary b { display:block; color:var(--cyan); font-size:20px; letter-spacing:-.06em; margin-bottom:4px; }

.analytics-top { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:20px; }.analytics-filter { display:flex; gap:5px; border:1px solid var(--line); border-radius:9px; padding:4px; }.analytics-filter button { background:transparent; border:0; color:var(--muted); font-size:9px; padding:7px 9px; border-radius:6px; }.analytics-filter button.active { color:var(--text); background:rgba(91,172,233,.17); }.analytics-grid { display:grid; grid-template-columns: 1.4fr .8fr; gap:14px; }.big-chart { padding:19px; min-height: 288px; }.analytic-bars { height: 165px; margin-top: 23px; display:flex; align-items:flex-end; gap:10px; padding: 0 3px; border-bottom:1px solid var(--line); background:repeating-linear-gradient(to bottom, transparent 0, transparent 40px, rgba(171,198,224,.06) 41px); }.analytic-bars i { flex:1; border-radius:6px 6px 0 0; min-width:10px; background:linear-gradient(to top, rgba(83,177,255,.18), var(--blue)); position:relative; }.analytic-bars i:nth-child(3n) { background:linear-gradient(to top, rgba(149,115,255,.15), var(--violet)); }.analytic-labels { display:flex; justify-content:space-between; padding-top:9px; color:var(--muted-2); font:9px 'DM Mono'; }.compare-card { padding:19px; }.compare-list { display:grid; gap:13px; margin-top:20px; }.compare-row { display:grid; grid-template-columns: 78px 1fr 40px; align-items:center; gap:9px; font-size:10px; }.compare-name { color:var(--muted); }.compare-bar { height:7px; border-radius:10px; background:rgba(149,182,210,.1); overflow:hidden; }.compare-bar i { display:block; height:100%; border-radius:inherit; background:var(--blue); }.compare-bar i.violet { background:var(--violet); }.compare-bar i.green { background:var(--green); }.compare-val { text-align:right; font-weight:700; }.heatmap-card { padding:19px; margin-top:14px; }.heatmap { display:grid; grid-template-columns: 36px repeat(7, 1fr); gap:5px; margin-top:18px; }.heatmap span { height:27px; border-radius:5px; display:grid; place-items:center; color:var(--muted-2); font:8px 'DM Mono'; }.heatmap .heat-label { background:transparent; }.heatmap .h1{background:rgba(76,147,205,.11)}.heatmap .h2{background:rgba(76,147,205,.22)}.heatmap .h3{background:rgba(76,147,205,.38); color:#d9f1ff}.heatmap .h4{background:linear-gradient(135deg, rgba(91,177,232,.6), rgba(132,107,237,.5)); color:#fff}.heatmap-legend { display:flex; align-items:center; justify-content:flex-end; gap:4px; margin-top:11px; color:var(--muted-2); font-size:8px; }.heatmap-legend i { width:10px; height:7px; border-radius:2px; background:rgba(76,147,205,.13); }.heatmap-legend i:nth-of-type(2){background:rgba(76,147,205,.3)}.heatmap-legend i:nth-of-type(3){background:rgba(76,147,205,.54)}.heatmap-legend i:nth-of-type(4){background:rgba(132,107,237,.72)}

.secondary-screen { display:grid; grid-template-columns: 1.25fr .75fr; gap:15px; }.trend-card, .automation-card, .library-card, .command-card { padding:19px; }.trend-list { display:grid; gap:10px; margin-top:17px; }.trend-item { display:flex; gap:12px; align-items:center; padding:12px; border:1px solid var(--line); border-radius:11px; background:rgba(10,24,41,.5); }.trend-pulse { width:36px; height:36px; display:grid; place-items:center; border-radius:11px; color:var(--amber); background:rgba(244,189,112,.1); }.trend-copy { flex:1; }.trend-copy b { display:block; font-size:11px; }.trend-copy span { display:block; color:var(--muted); font-size:9px; margin-top:4px; }.trend-score { color:var(--green); font:11px 'DM Mono'; }.automation-flow { display:grid; gap:8px; margin-top:18px; }.flow-node { display:flex; align-items:center; gap:10px; padding:13px; border:1px solid var(--line); border-radius:10px; font-size:10px; }.flow-node b { display:block; color:var(--muted-2); font:9px 'DM Mono'; text-transform:uppercase; margin-bottom:3px; }.flow-dot { width:24px; height:24px; display:grid; place-items:center; border-radius:8px; color:var(--blue); background:rgba(81,184,255,.12); }.flow-connector { margin-left:11px; width:1px; height:17px; border-left:1px dashed var(--line-bright); }.library-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:18px; }.folder { padding:14px 12px; border:1px solid var(--line); border-radius:11px; background:rgba(12,28,47,.56); }.folder-icon { color:var(--amber); font-size:21px; }.folder b { display:block; font-size:10px; margin-top:10px; }.folder span { color:var(--muted); font-size:9px; display:block; margin-top:4px; }.command-screen { display:grid; gap:14px; }.command-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; }.live-feed, .command-stat { padding:19px; }.live-feed { min-height: 352px; }.feed-list { display:grid; gap:12px; margin-top:17px; }.feed-item { display:flex; gap:11px; align-items:flex-start; }.feed-icon { width:30px; height:30px; display:grid; place-items:center; border-radius:9px; color:var(--cyan); background:rgba(102,225,219,.1); }.feed-item:nth-child(2) .feed-icon { color:var(--violet); background:rgba(146,118,255,.11); }.feed-item:nth-child(3) .feed-icon { color:var(--green); background:rgba(114,223,170,.1); }.feed-item p { font-size:10px; color:var(--muted); line-height:1.5; }.feed-item b { color:var(--text); }.feed-item small { display:block; color:var(--muted-2); font-size:8px; margin-top:4px; }.command-stats { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }.command-stat { min-height: 168px; }.live-number { font-size:33px; letter-spacing:-.07em; margin:17px 0 7px; }.live-label { color:var(--muted); font-size:10px; }.live-pulse { height:28px; display:flex; gap:4px; align-items:end; margin-top:15px; }.live-pulse i { width:6px; border-radius:5px; background:var(--cyan); animation:pulse 1.9s ease-in-out infinite; }.live-pulse i:nth-child(1){height:35%}.live-pulse i:nth-child(2){height:65%;animation-delay:.2s}.live-pulse i:nth-child(3){height:50%;animation-delay:.4s}.live-pulse i:nth-child(4){height:90%;animation-delay:.1s}.live-pulse i:nth-child(5){height:56%;animation-delay:.3s}.live-pulse i:nth-child(6){height:75%;animation-delay:.15s}.live-pulse i:nth-child(7){height:42%;animation-delay:.5s}@keyframes pulse { 50%{opacity:.45; transform:scaleY(.75)} }

.copilot-button { position: fixed; right: 27px; bottom: 27px; z-index: 12; display:flex; align-items:center; gap:9px; border:1px solid rgba(124,213,255,.35); color:#eaf7ff; border-radius:15px; background:linear-gradient(135deg, rgba(46,128,195,.9), rgba(99,82,198,.9)); padding:11px 14px 11px 10px; font-size:10px; font-weight:700; box-shadow:0 14px 35px rgba(19,97,162,.25); }.copilot-orb { width:25px; height:25px; border-radius:9px; display:grid; place-items:center; background:rgba(255,255,255,.2); }.copilot-panel { position:fixed; z-index:20; top:18px; right:18px; width:340px; bottom:18px; padding:20px; border:1px solid rgba(136,199,242,.24); border-radius:20px; background:rgba(9,24,42,.96); box-shadow:0 30px 80px rgba(0,0,0,.48); backdrop-filter:blur(20px); transform:translateX(120%); transition:.35s ease; }.copilot-panel.open { transform:translateX(0); }.copilot-head { display:flex; align-items:center; justify-content:space-between; padding-bottom:17px; border-bottom:1px solid var(--line); }.copilot-title { display:flex; align-items:center; gap:10px; }.copilot-title b { display:block; font-size:12px; }.copilot-title span { display:block; color:var(--cyan); font:9px 'DM Mono'; margin-top:3px; }.copilot-close { background:transparent; border:0; color:var(--muted); font-size:20px; }.copilot-body { padding-top:18px; }.copilot-body p { color:#dce9f6; font-size:12px; line-height:1.65; }.copilot-body .bubble { padding:14px; border:1px solid var(--line); background:rgba(58,102,144,.13); border-radius:12px 12px 12px 3px; margin-bottom:17px; }.copilot-actions { display:grid; gap:8px; margin-top:17px; }.copilot-action { border:1px solid var(--line); color:var(--muted); background:rgba(13,29,47,.6); border-radius:9px; padding:10px; text-align:left; font-size:10px; }.copilot-action:hover { color:var(--text); border-color:var(--line-bright); }
.toast-region { position:fixed; z-index:30; left:50%; bottom:24px; transform:translateX(-50%); display:grid; gap:8px; }.toast { color:#dff3ff; border:1px solid rgba(107,205,255,.28); background:rgba(11,34,53,.94); border-radius:9px; padding:11px 15px; font-size:10px; box-shadow:0 12px 30px rgba(0,0,0,.3); animation:toast-in .25s ease both; }@keyframes toast-in {from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.modal-backdrop { position:fixed; inset:0; z-index:25; display:grid; place-items:center; padding:20px; background:rgba(2,9,18,.68); backdrop-filter:blur(7px); opacity:0; pointer-events:none; transition:.2s ease; }.modal-backdrop.show { opacity:1; pointer-events:auto; }.modal-card { width:min(420px,100%); position:relative; padding:25px; border:1px solid rgba(125,195,240,.24); border-radius:19px; background:linear-gradient(145deg,#132b44,#0b1c30); box-shadow:0 25px 80px rgba(0,0,0,.42); }.modal-card h2 { margin-top:8px; }.modal-close { position:absolute; top:15px; right:17px; border:0; background:transparent; color:var(--muted); font-size:20px; }.modal-fields { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:21px; }.modal-fields label { color:var(--muted); font-size:10px; }.modal-fields .input { display:block; margin-top:7px; }.schedule-recommendation { margin-top:13px; padding:11px; border:1px solid rgba(102,225,219,.17); border-radius:9px; color:var(--cyan); background:rgba(102,225,219,.06); font-size:10px; }.schedule-recommendation strong { color:var(--text); margin-left:4px; }.post-art.has-media { background-size:cover; background-position:center; }.post-art.has-media:before, .post-art.has-media:after { display:none; }.post-art video { width:100%; height:100%; object-fit:cover; display:block; }.media-overlay { position:absolute; left:10px; top:10px; color:#fff; background:rgba(3,14,25,.68); border:1px solid rgba(255,255,255,.18); border-radius:6px; padding:5px 7px; font-size:8px; }
.account-list { display: grid; gap: 9px; margin-top: 20px; }
.account-row { display: flex; align-items: center; gap: 10px; padding: 11px; border: 1px solid var(--line); border-radius: 11px; background: rgba(8, 23, 39, .45); }
.account-row > div { flex: 1; min-width: 0; }
.account-row b { display: block; font-size: 11px; }
.account-row small { display: block; color: var(--muted); font-size: 9px; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.account-connect { border: 1px solid rgba(91, 187, 255, .3); color: var(--blue); background: rgba(77, 158, 219, .1); border-radius: 7px; padding: 7px 9px; font-size: 9px; }
.account-connect.connected { color: var(--green); border-color: rgba(114, 223, 170, .24); background: rgba(114, 223, 170, .08); }
.account-row-rich { align-items: flex-start; }
.account-row-rich .network-badge { margin-top: 1px; }
.account-row-rich .account-connect { min-width: 108px; white-space: nowrap; }
.connection-security { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; padding: 12px; border: 1px solid rgba(102, 225, 219, .17); border-radius: 10px; background: rgba(102, 225, 219, .06); color: var(--cyan); }
.connection-security > span { font-size: 15px; }
.connection-security b, .connection-security small { display: block; }
.connection-security b { color: var(--text); font-size: 10px; }
.connection-security small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.modal-footnote { margin-top: 17px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted-2); font: 9px/1.5 'DM Mono', monospace; }
.palette-backdrop { position: fixed; inset: 0; z-index: 26; display: grid; place-items: start center; padding: 12vh 20px 20px; background: rgba(1, 7, 15, .56); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: .2s ease; }
.palette-backdrop.show { opacity: 1; pointer-events: auto; }
.command-palette { width: min(590px, 100%); border: 1px solid rgba(126, 202, 255, .28); border-radius: 17px; background: linear-gradient(145deg, rgba(21, 45, 70, .98), rgba(9, 22, 37, .98)); box-shadow: 0 30px 90px rgba(0, 0, 0, .5); overflow: hidden; }
.palette-search { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--blue); }
.palette-search input { flex: 1; min-width: 0; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 12px; }
.palette-search input::placeholder { color: var(--muted-2); }
.palette-search kbd, .palette-item kbd { border: 1px solid var(--line); border-radius: 5px; color: var(--muted-2); background: rgba(4, 14, 25, .38); padding: 3px 6px; font: 9px 'DM Mono', monospace; }
.palette-label { padding: 14px 16px 8px; color: var(--muted-2); font: 9px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .13em; }
.palette-list { display: grid; gap: 4px; padding: 0 8px 10px; }
.palette-item { display: flex; align-items: center; gap: 11px; width: 100%; padding: 10px 9px; border: 1px solid transparent; border-radius: 10px; text-align: left; color: var(--text); background: transparent; }
.palette-item:hover { border-color: var(--line-bright); background: rgba(77, 158, 219, .1); }
.palette-item > span:nth-child(2) { flex: 1; min-width: 0; }
.palette-item b, .palette-item small { display: block; }
.palette-item b { font-size: 11px; }
.palette-item small { color: var(--muted); margin-top: 3px; font-size: 9px; }
.palette-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: var(--cyan); background: rgba(102, 225, 219, .09); }
.palette-hint { padding: 11px 16px; color: var(--muted-2); border-top: 1px solid var(--line); font: 9px 'DM Mono', monospace; }
.notifications-drawer { position: fixed; z-index: 24; top: 18px; right: 18px; width: min(355px, calc(100vw - 36px)); bottom: 18px; padding: 20px; border: 1px solid rgba(126, 202, 255, .24); border-radius: 19px; background: rgba(9, 24, 42, .97); box-shadow: 0 30px 80px rgba(0,0,0,.48); backdrop-filter: blur(20px); transform: translateX(120%); transition: .3s ease; overflow: auto; }
.notifications-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin-top: 7px; }
.drawer-close { border: 0; color: var(--muted); background: transparent; font-size: 20px; }
.notification-list { display: grid; gap: 9px; margin-top: 17px; }
.notification { display: flex; gap: 10px; padding: 11px; border: 1px solid transparent; border-radius: 11px; color: var(--muted); }
.notification.unread { border-color: var(--line); background: rgba(53, 105, 145, .1); }
.notification-icon { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 8px; background: rgba(102, 225, 219, .1); color: var(--cyan); }
.notification-icon.green { color: var(--green); background: rgba(114, 223, 170, .1); }.notification-icon.amber { color: var(--amber); background: rgba(244, 189, 112, .1); }.notification-icon.violet { color: var(--violet); background: rgba(146, 118, 255, .1); }
.notification b, .notification p, .notification small { display: block; }.notification b { color: var(--text); font-size: 10px; }.notification p { margin-top: 4px; font-size: 9px; line-height: 1.5; }.notification small { margin-top: 5px; color: var(--muted-2); font-size: 8px; }
.generated-results { display: block; }
.carousel-summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 11px; min-height: 0; }
.carousel-summary h3 { margin: 7px 0 5px; font-size: 15px; }
.carousel-summary p { color: var(--muted); font-size: 10px; }
.carousel-toolbar { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.carousel-toolbar .result-chip { margin-top: 0; }
.carousel-slides { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.carousel-slide { min-height: 190px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 15px; border: 1px solid rgba(170, 203, 231, .16); border-radius: 14px; background: linear-gradient(145deg, #1d3046, #070d17 76%); isolation: isolate; }
.carousel-slide:before, .carousel-slide:after { content: ''; position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.carousel-slide:before { width: 190px; height: 190px; right: -65px; top: -74px; background: radial-gradient(circle, rgba(108, 181, 222, .4), transparent 68%); }
.carousel-slide:after { width: 125px; height: 125px; left: -50px; bottom: -60px; background: radial-gradient(circle, rgba(126, 89, 208, .32), transparent 68%); }
.carousel-slide.storm { background: linear-gradient(145deg, #253444, #0a111d 74%); }.carousel-slide.prayer { background: linear-gradient(145deg, #172b3e, #11101f 72%); }.carousel-slide.cross { background: linear-gradient(145deg, #2b2b3e, #080d15 72%); }.carousel-slide.window { background: linear-gradient(145deg, #1b3342, #08121c 72%); }.carousel-slide.light { background: linear-gradient(145deg, #26394a, #101523 72%); }.carousel-slide.hope { background: linear-gradient(145deg, #273953, #111426 72%); }.carousel-slide.gold { background: linear-gradient(145deg, #443b35, #10131b 72%); }
.slide-top, .slide-footer { display: flex; justify-content: space-between; color: rgba(229, 240, 250, .58); font: 8px 'DM Mono', monospace; letter-spacing: .1em; }
.slide-content { max-width: 92%; margin: 21px 0; }.slide-content b { display: block; font-size: clamp(18px, 2vw, 24px); line-height: 1.06; letter-spacing: -.05em; }.slide-content p { color: rgba(220, 232, 243, .7); font-size: 10px; line-height: 1.5; margin-top: 11px; max-width: 270px; }.slide-footer { color: rgba(255,255,255,.4); }
.carousel-slide.dark, .carousel-slide.storm, .carousel-slide.prayer, .carousel-slide.cross, .carousel-slide.window, .carousel-slide.light, .carousel-slide.hope, .carousel-slide.gold { background-size: cover; background-position: center; }
.carousel-slide.dark { background-image: linear-gradient(90deg, rgba(3,7,12,.82), rgba(3,7,12,.12)), url('assets/generated/rain-window.png'); }
.carousel-slide.storm { background-image: linear-gradient(90deg, rgba(3,8,16,.82), rgba(3,8,16,.16)), url('assets/generated/rain-street.png'); }
.carousel-slide.prayer, .carousel-slide.window { background-image: linear-gradient(90deg, rgba(3,8,15,.78), rgba(3,8,15,.12)), url('assets/generated/prayer-window.png'); }
.carousel-slide.cross, .carousel-slide.light, .carousel-slide.hope { background-image: linear-gradient(90deg, rgba(3,7,12,.82), rgba(3,7,12,.1)), url('assets/generated/cross-storm.png'); }
.carousel-slide.gold { background-image: linear-gradient(90deg, rgba(12,8,6,.8), rgba(12,8,6,.12)), url('assets/generated/rain-window.png'); }
.carousel-slide .slide-content b, .carousel-slide .slide-content p, .carousel-slide .slide-top, .carousel-slide .slide-footer { text-shadow: 0 2px 18px rgba(0,0,0,.72); }
.mobile-nav { display:none; }

@media (max-width: 1120px) { .main { padding-inline:24px; }.metrics-grid { grid-template-columns: repeat(2, 1fr); }.dashboard-grid, .content-grid, .composer-layout, .creator-layout, .calendar-layout, .analytics-grid, .secondary-screen, .command-grid { grid-template-columns: 1fr; }.preview-panel { max-width: 520px; width: 100%; }.phone-frame { max-width: 360px; }.dashboard-grid .ai-card { min-height: 0; } }
@media (max-width: 720px) { .sidebar { display:none; }.sidebar.collapsed + .main { width:100%; margin-left:0; }.main { width:100%; margin-left:0; padding:19px 15px 88px; }.topbar { margin-bottom:25px; }.crumb { font-size:10px; }.workspace-select { display:none; }.hero-row, .analytics-top { display:block; }.button-row { margin-top:17px; }.hero-row .button-row { justify-content:flex-start; }.network-grid, .creator-results { grid-template-columns:1fr; }.result-card.wide { grid-column:auto; }.calendar-grid { min-width: 590px; }.calendar-panel { overflow-x:auto; }.calendar-grid { width: 100%; }.day { min-height:78px; }.heatmap { min-width:450px; }.heatmap-card { overflow-x:auto; }.library-grid { grid-template-columns:repeat(2,1fr); }.command-stats { grid-template-columns:1fr 1fr; }.copilot-button { right:17px; bottom:76px; }.copilot-panel { inset:11px; width:auto; bottom:11px; }.mobile-nav { display:flex; position:fixed; left:9px; right:9px; bottom:9px; z-index:15; height:60px; align-items:center; justify-content:space-around; border:1px solid var(--line-bright); border-radius:17px; background:rgba(8,24,40,.92); backdrop-filter:blur(18px); box-shadow:0 15px 35px rgba(0,0,0,.35); }.mobile-nav button { color:var(--muted); border:0; background:transparent; display:grid; gap:3px; place-items:center; font-size:8px; }.mobile-nav button.active { color:var(--text); }.mobile-create { width:43px; height:43px; border-radius:14px; margin-top:-20px; color:#061421 !important; background:linear-gradient(145deg,#63d8fa,#7883ff) !important; box-shadow:0 7px 20px rgba(78,165,239,.32); font-size:20px !important; }.mobile-create small { display:none; }.score-panel { padding:15px; } }
@media (max-width: 720px) { .carousel-summary { display:block; }.carousel-toolbar { justify-content:flex-start; margin-top:14px; }.carousel-slides { grid-template-columns:1fr; } }

/* Carousel polish: portrait-first cards, calm scrolling and focused preview mode. */
html { scrollbar-width: thin; scrollbar-color: rgba(118, 184, 232, .42) transparent; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 9px; height: 9px; }
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track { background: rgba(4, 13, 23, .72); }
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: rgba(118, 184, 232, .38); background-clip: padding-box; }
html::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover { background: rgba(118, 184, 232, .68); background-clip: padding-box; }
textarea, .notifications-drawer, .viewer-thumbs { scrollbar-width: thin; scrollbar-color: rgba(118, 184, 232, .42) transparent; }
textarea::-webkit-scrollbar, .notifications-drawer::-webkit-scrollbar, .viewer-thumbs::-webkit-scrollbar { width: 8px; height: 8px; }
textarea::-webkit-scrollbar-track, .notifications-drawer::-webkit-scrollbar-track, .viewer-thumbs::-webkit-scrollbar-track { background: transparent; }
textarea::-webkit-scrollbar-thumb, .notifications-drawer::-webkit-scrollbar-thumb, .viewer-thumbs::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: rgba(118, 184, 232, .38); background-clip: padding-box; }
textarea::-webkit-scrollbar-thumb:hover, .notifications-drawer::-webkit-scrollbar-thumb:hover, .viewer-thumbs::-webkit-scrollbar-thumb:hover { background: rgba(118, 184, 232, .68); background-clip: padding-box; }

.carousel-summary { padding: 17px 18px; border-color: rgba(126, 202, 255, .2); background: linear-gradient(110deg, rgba(16, 38, 61, .78), rgba(10, 25, 42, .52)); }
.carousel-summary h3 { font-size: 16px; letter-spacing: -.03em; }
.carousel-toolbar { align-items: center; }
.carousel-toolbar .secondary-button, .carousel-toolbar .primary-button { white-space: nowrap; }
.carousel-hint { color: var(--muted-2); font: 9px 'DM Mono', monospace; white-space: nowrap; }
.carousel-slides { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.carousel-slide { aspect-ratio: 4 / 5; min-height: 0; padding: 16px; cursor: zoom-in; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.carousel-slide:hover, .carousel-slide:focus-visible { transform: translateY(-3px); border-color: rgba(127, 211, 255, .58); outline: none; box-shadow: 0 15px 35px rgba(0, 0, 0, .24); }
.carousel-slide:focus-visible { box-shadow: 0 0 0 3px rgba(97, 193, 255, .2), 0 15px 35px rgba(0, 0, 0, .24); }
.slide-content { margin: 18px 0; }
.slide-content b { font-size: clamp(17px, 1.5vw, 22px); }
.slide-content p { font-size: 9px; }

.carousel-viewer { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 22px; opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.carousel-viewer.open { opacity: 1; pointer-events: auto; }
.viewer-backdrop { position: absolute; inset: 0; background: rgba(1, 7, 14, .84); backdrop-filter: blur(16px); }
.viewer-shell { position: relative; z-index: 1; width: min(1060px, 100%); max-height: calc(100vh - 44px); display: grid; grid-template-rows: auto minmax(0, 1fr) auto; gap: 13px; padding: 17px; border: 1px solid rgba(145, 211, 247, .23); border-radius: 20px; background: linear-gradient(145deg, rgba(18, 40, 62, .98), rgba(6, 16, 28, .98)); box-shadow: 0 30px 100px rgba(0, 0, 0, .58); transform: translateY(12px) scale(.98); transition: transform .22s ease; }
.carousel-viewer.open .viewer-shell { transform: none; }
.viewer-head { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; }
.viewer-head b { display: block; margin-top: 5px; font: 11px 'DM Mono', monospace; color: var(--muted); }
.viewer-close, .viewer-arrows button { border: 1px solid var(--line); color: var(--muted); background: rgba(6, 17, 29, .64); border-radius: 9px; cursor: pointer; }
.viewer-close { width: 34px; height: 34px; font-size: 20px; line-height: 1; }
.viewer-close:hover, .viewer-arrows button:hover { color: var(--text); border-color: var(--line-bright); background: rgba(76, 146, 202, .17); }
.viewer-arrows { display: flex; gap: 6px; }
.viewer-arrows button { width: 34px; height: 34px; font-size: 23px; line-height: 1; }
.viewer-art { position: relative; width: min(100%, 510px); aspect-ratio: 4 / 5; justify-self: center; overflow: hidden; border: 1px solid rgba(255, 255, 255, .16); border-radius: 15px; background: #091522; box-shadow: 0 20px 50px rgba(0, 0, 0, .28); }
.viewer-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.viewer-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 6, 11, .86), rgba(2, 6, 11, .13) 72%), linear-gradient(0deg, rgba(2, 6, 11, .74), transparent 46%); }
.viewer-copy { position: absolute; left: 9%; right: 9%; top: 28%; }
.viewer-label { color: rgba(229, 240, 250, .72); font: 9px 'DM Mono', monospace; letter-spacing: .12em; }
.viewer-title { margin-top: 18px; color: #fff; font-size: clamp(25px, 4vw, 49px); line-height: 1.04; letter-spacing: -.06em; text-shadow: 0 3px 22px rgba(0, 0, 0, .7); }
.viewer-body { max-width: 370px; margin-top: 17px; color: rgba(236, 243, 248, .82); font-size: 12px; line-height: 1.5; text-shadow: 0 2px 15px rgba(0, 0, 0, .65); }
.viewer-footer { position: absolute; left: 9%; right: 9%; bottom: 7%; color: rgba(255, 255, 255, .52); font: 9px 'DM Mono', monospace; letter-spacing: .1em; }
.viewer-thumbs { display: flex; gap: 8px; justify-content: center; overflow-x: auto; padding: 2px 3px 1px; }
.viewer-thumb { position: relative; flex: 0 0 48px; width: 48px; aspect-ratio: 4 / 5; overflow: hidden; padding: 0; border: 1px solid rgba(255, 255, 255, .16); border-radius: 7px; opacity: .54; background: #091522; cursor: pointer; }
.viewer-thumb.active, .viewer-thumb:hover { opacity: 1; border-color: var(--blue); box-shadow: 0 0 0 2px rgba(81, 184, 255, .18); }
.viewer-thumb img { width: 100%; height: 100%; object-fit: cover; }
.viewer-thumb span { position: absolute; right: 4px; bottom: 3px; color: #fff; font: 7px 'DM Mono', monospace; text-shadow: 0 1px 5px #000; }
.auto-post-modal { position: fixed; inset: 0; z-index: 55; display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.auto-post-modal.open { opacity: 1; pointer-events: auto; }
.auto-post-backdrop { position: absolute; inset: 0; background: rgba(1, 7, 14, .78); backdrop-filter: blur(12px); }
.auto-post-card { position: relative; width: min(510px, 100%); padding: 25px; border: 1px solid rgba(126, 202, 255, .25); border-radius: 19px; background: linear-gradient(145deg, #142d47, #091a2d); box-shadow: 0 28px 90px rgba(0, 0, 0, .54); transform: translateY(10px) scale(.98); transition: transform .2s ease; }
.auto-post-modal.open .auto-post-card { transform: none; }
.auto-post-close { position: absolute; top: 14px; right: 16px; border: 0; color: var(--muted); background: transparent; font-size: 21px; cursor: pointer; }
.auto-post-lead { max-width: 420px; margin-top: 9px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.auto-post-section { margin-top: 21px; }
.auto-post-label { margin-bottom: 9px; color: var(--muted-2); font: 9px 'DM Mono', monospace; letter-spacing: .12em; text-transform: uppercase; }
.auto-post-networks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.auto-post-network { display: flex; align-items: center; gap: 7px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); background: rgba(7, 20, 34, .4); font-size: 10px; text-align: left; cursor: pointer; }
.auto-post-network:hover, .auto-post-network.selected { border-color: rgba(91, 187, 255, .55); color: var(--text); background: rgba(77, 158, 219, .13); }
.auto-post-network i { display: grid; place-items: center; width: 15px; height: 15px; margin-left: auto; border: 1px solid var(--line-bright); border-radius: 50%; color: transparent; font-size: 9px; font-style: normal; }
.auto-post-network.selected i { border-color: var(--cyan); color: #071521; background: var(--cyan); }
.auto-post-modes { display: grid; gap: 8px; }
.auto-post-mode { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); background: rgba(7, 20, 34, .4); text-align: left; cursor: pointer; }
.auto-post-mode b { color: var(--text); font-size: 10px; }
.auto-post-mode span { font-size: 9px; }
.auto-post-mode:hover, .auto-post-mode.selected { border-color: rgba(102, 225, 219, .5); background: rgba(102, 225, 219, .08); }
.auto-post-note { margin-top: 17px; padding: 11px; border: 1px solid rgba(244, 189, 112, .2); border-radius: 9px; color: rgba(246, 213, 159, .82); background: rgba(244, 189, 112, .06); font: 9px/1.5 'DM Mono', monospace; }
.auto-post-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 19px; }
.auto-post-button { box-shadow: 0 9px 22px rgba(76, 163, 232, .18); }

@media (max-width: 1120px) { .carousel-slides { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) {
  .carousel-summary { padding: 15px; }
  .carousel-slides { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .carousel-slide { padding: 12px; border-radius: 11px; }
  .slide-content { margin: 12px 0; }
  .slide-content b { font-size: 16px; }
  .slide-content p { font-size: 8px; margin-top: 8px; }
  .carousel-hint { display: block; width: 100%; }
  .carousel-viewer { padding: 10px; }
  .viewer-shell { max-height: calc(100vh - 20px); padding: 12px; border-radius: 16px; }
  .viewer-art { width: min(100%, 410px); }
  .viewer-copy { top: 25%; }
  .viewer-title { font-size: 28px; }
  .viewer-body { font-size: 10px; }
  .auto-post-card { padding: 20px 16px; }
  .auto-post-networks { grid-template-columns: 1fr; }
}
