:root {
  color-scheme: dark;
  --bg: #0b0c0f;
  --bg-elevated: #101115;
  --panel: #141519;
  --panel-strong: #181a1f;
  --panel-soft: #111216;
  --line: #262830;
  --line-soft: #1d1f25;
  --text: #f1f2ee;
  --text-soft: #c3c5c0;
  --muted: #858982;
  --muted-2: #898d86;
  --acid: #d8ff69;
  --acid-ink: #151a08;
  --green: #8ee7b0;
  --amber: #f2ce7e;
  --red: #f18e8e;
  --blue: #9ab4ff;
  --sidebar: 248px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 13px;
  --shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 77% -15%, rgba(216, 255, 105, .055), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(216, 255, 105, .72);
  outline-offset: 2px;
}
.is-hidden { display: none !important; }

/* Brand */
.brand-lockup { display: flex; align-items: center; gap: 11px; }
.brand-lockup > span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand-lockup strong { font-size: 14px; font-weight: 720; letter-spacing: -.01em; }
.brand-lockup small { color: var(--muted); font-size: 10px; letter-spacing: .13em; margin-top: 5px; text-transform: uppercase; }
.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  border: 1px solid #34373f;
  border-radius: 10px;
  background: linear-gradient(145deg, #1b1d22, #0f1013);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}
.brand-mark::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 4px 7px 4px 7px;
  left: 9px;
  top: 9px;
  background: var(--acid);
  transform: rotate(45deg);
}
.brand-mark i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 14px;
  top: 14px;
  z-index: 1;
  background: #171b0b;
}

/* Login */
.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
  position: relative;
  background: #0a0b0e;
}
.login-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}
.login-ambient { position: absolute; inset: 0; pointer-events: none; }
.ambient-orbit { position: absolute; border: 1px solid rgba(216,255,105,.15); border-radius: 50%; }
.orbit-one { width: 620px; height: 620px; left: -280px; bottom: -270px; }
.orbit-two { width: 470px; height: 470px; right: -180px; top: -180px; border-color: rgba(154,180,255,.12); }
.ambient-dot { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; position: absolute; box-shadow: 0 0 22px rgba(216,255,105,.65); }
.dot-one { left: 12%; top: 22%; }
.dot-two { right: 14%; bottom: 18%; width: 4px; height: 4px; background: var(--blue); }
.login-panel {
  position: relative;
  width: min(100%, 454px);
  padding: 36px;
  border-radius: 26px;
  border: 1px solid #2a2d33;
  background: rgba(17, 18, 22, .92);
  box-shadow: 0 38px 120px rgba(0, 0, 0, .55);
  backdrop-filter: blur(22px);
}
.login-brand { margin-bottom: 52px; }
.login-copy .eyebrow { display: inline-block; margin-bottom: 13px; }
.login-copy h1 { font-size: clamp(32px, 7vw, 45px); line-height: 1.03; letter-spacing: -.055em; margin: 0; max-width: 380px; font-weight: 650; }
.login-copy p { margin: 18px 0 30px; color: var(--muted); font-size: 14px; max-width: 360px; }
.login-form { display: grid; gap: 14px; }
.login-form label { display: grid; gap: 7px; color: var(--text-soft); font-size: 11px; font-weight: 650; letter-spacing: .04em; }
.login-form input {
  width: 100%;
  height: 48px;
  color: var(--text);
  border: 1px solid #2a2c33;
  background: #0d0e11;
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.login-form input:focus { border-color: #717c50; box-shadow: 0 0 0 3px rgba(216,255,105,.07); outline: none; }
.login-submit { width: 100%; margin-top: 4px; justify-content: space-between !important; height: 49px; }
.form-error { min-height: 18px; margin: 0; color: var(--red); font-size: 12px; }
.login-footnote { margin: 25px 0 0; display: flex; align-items: center; gap: 8px; color: var(--muted-2); font-size: 11px; justify-content: center; }
.status-pip { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(142,231,176,.5); }

/* App shell */
.app-shell { min-height: 100vh; display: grid; grid-template-columns: var(--sidebar) minmax(0, 1fr); }
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: 22px 15px 16px;
  border-right: 1px solid var(--line-soft);
  background: #0d0e11;
}
.sidebar-brand { padding: 0 8px 25px; }
.main-nav { display: grid; gap: 3px; }
.nav-item {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 8px;
  align-items: center;
  text-align: left;
  color: var(--muted);
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.nav-item:hover { color: var(--text-soft); background: rgba(255,255,255,.025); }
.nav-item.is-active { color: var(--text); background: #191b20; box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); }
.nav-item.is-active .nav-icon { color: var(--acid); }
.nav-icon { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; text-align: center; color: #696d66; font-size: 15px; }
.nav-count { font: 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; color: #747870; background: #202228; padding: 5px 6px; border-radius: 7px; min-width: 23px; text-align: center; }
.nav-item.is-active .nav-count { color: var(--acid); background: rgba(216,255,105,.08); }
.batch-nav { margin-top: 29px; min-height: 0; }
.sidebar-section-head { display: flex; align-items: center; justify-content: space-between; padding: 0 10px 8px; color: #878b84; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.sidebar-mini { font-family: ui-monospace, monospace; }
.batch-list { display: grid; gap: 3px; max-height: 215px; overflow: auto; scrollbar-width: thin; }
.batch-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 9px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  text-align: left;
  cursor: pointer;
}
.batch-button:hover, .batch-button.is-active { color: var(--text-soft); background: #15171b; }
.batch-button strong { font-size: 11px; font-weight: 600; }
.batch-button small { color: var(--muted-2); font-size: 9px; }
.batch-progress { display: flex; align-items: center; gap: 6px; font: 9px/1 ui-monospace, monospace; color: var(--muted-2); }
.batch-progress i { width: 5px; height: 5px; border-radius: 50%; background: #383b42; }
.batch-progress.done i { background: var(--green); }
.sidebar-foot { margin-top: auto; display: grid; gap: 12px; }
.private-note { padding: 11px; border-radius: 11px; background: #121418; border: 1px solid #1f2227; display: flex; gap: 10px; color: var(--muted); }
.private-note > span:last-child { display: flex; flex-direction: column; }
.private-note strong { color: var(--text-soft); font-size: 10px; font-weight: 600; }
.private-note small { font-size: 9px; margin-top: 3px; line-height: 1.35; }
.private-icon { color: var(--acid); }
.user-row { padding: 10px 7px 0; border-top: 1px solid var(--line-soft); display: flex; align-items: center; gap: 10px; }
.user-avatar { width: 29px; height: 29px; border-radius: 9px; background: #20232a; display: grid; place-items: center; color: var(--acid); font-size: 11px; font-weight: 700; }
.user-copy { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.user-copy strong { font-size: 11px; }
.user-copy small { font-size: 9px; color: var(--muted); }
.icon-button {
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--muted);
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}
.icon-button:hover { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.025); }

.main-stage { grid-column: 2; min-width: 0; }
.topbar {
  height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(11,12,15,.82);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 15;
}
.breadcrumb { color: var(--muted-2); font-size: 11px; display: flex; gap: 9px; align-items: center; }
.breadcrumb i { font-style: normal; color: #3b3e45; }
.breadcrumb strong { color: var(--text-soft); font-weight: 550; }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.search-box { width: 238px; height: 36px; border-radius: 10px; border: 1px solid #262930; background: #111216; display: flex; align-items: center; gap: 8px; padding: 0 9px; color: var(--muted-2); }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 11px; }
.search-box input::placeholder { color: #666a64; }
.search-box kbd { border: 1px solid #30333a; background: #191b20; border-radius: 5px; padding: 2px 5px; color: #92978e; font: 8px/1.2 ui-monospace, monospace; }
.private-badge { display: flex; align-items: center; gap: 7px; color: #9da198; border: 1px solid #282b31; background: #121418; border-radius: 999px; padding: 7px 10px; font-size: 9px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.private-badge i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.mobile-menu { display: none; margin-right: 8px; }

.content-wrap { width: min(100%, 1480px); margin: 0 auto; padding: 42px clamp(24px, 4vw, 58px) 70px; }
.page-heading { display: flex; align-items: flex-end; gap: 24px; justify-content: space-between; margin-bottom: 32px; }
.eyebrow { color: var(--acid); font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.page-heading h1 { margin: 8px 0 6px; font-size: clamp(32px, 4vw, 48px); line-height: 1; letter-spacing: -.052em; font-weight: 620; }
.page-heading p { margin: 0; color: var(--muted); max-width: 580px; font-size: 12px; }
.heading-actions { display: flex; align-items: center; gap: 10px; }
.select-control { height: 42px; border: 1px solid #272a30; background: #111216; border-radius: 11px; padding: 5px 10px; min-width: 144px; display: flex; flex-direction: column; }
.select-control span { font-size: 7px; color: var(--muted-2); letter-spacing: .12em; text-transform: uppercase; }
.select-control select { border: 0; outline: 0; background: transparent; color: var(--text-soft); padding: 0; margin-top: 1px; font-size: 10px; cursor: pointer; }

.metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 39px; }
.metric-card { min-height: 116px; border: 1px solid #23262c; border-radius: 15px; background: #111317; padding: 16px 18px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.metric-card::after { content: ""; position: absolute; right: -30px; top: -45px; width: 100px; height: 100px; border: 1px solid rgba(255,255,255,.025); border-radius: 50%; }
.metric-primary { background: linear-gradient(135deg, rgba(216,255,105,.09), #111317 58%); border-color: rgba(216,255,105,.18); }
.metric-label { color: var(--muted); font-size: 9px; font-weight: 650; letter-spacing: .09em; text-transform: uppercase; }
.metric-card > strong, .review-card strong { font: 600 28px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: -.06em; }
.metric-card small { color: var(--muted-2); font-size: 9px; }
.review-card > div:first-child { display: flex; align-items: flex-start; justify-content: space-between; }
.review-card strong { font-size: 20px; color: var(--acid); }
.progress-track { width: 100%; height: 4px; border-radius: 99px; overflow: hidden; background: #272a30; margin: 12px 0 7px; }
.progress-track i { display: block; width: 0; height: 100%; border-radius: 99px; background: var(--acid); transition: width .3s ease; }

.feed-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-soft); padding-bottom: 13px; margin-bottom: 16px; }
.feed-head h2 { margin: 0 0 3px; font-size: 13px; font-weight: 620; }
.feed-head p { margin: 0; color: var(--muted-2); font-size: 9px; }
.feed-legend { display: flex; align-items: center; gap: 13px; color: var(--muted-2); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.feed-legend span { display: flex; align-items: center; gap: 5px; }
.feed-legend i { width: 5px; height: 5px; border-radius: 50%; background: #555a54; }
.feed-legend .legend-promoted { background: var(--green); }
.feed-legend .legend-held { background: var(--amber); }

.idea-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.idea-card {
  min-height: 282px;
  border: 1px solid #24272d;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111216;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
}
.idea-card:hover { transform: translateY(-2px); border-color: #363941; box-shadow: 0 18px 45px rgba(0,0,0,.22); }
.idea-card[data-status="promoted"] { border-color: rgba(142,231,176,.28); }
.idea-card[data-status="held"] { border-color: rgba(242,206,126,.23); }
.idea-card[data-status="rejected"] { opacity: .7; }
.card-art {
  --c1: #7c9cff;
  --c2: #b6f2d6;
  --c3: #151a27;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 24%, color-mix(in srgb, var(--c2) 78%, white 8%) 0 6%, transparent 7%),
    radial-gradient(circle at 35% 68%, color-mix(in srgb, var(--c1) 80%, transparent) 0 18%, transparent 19%),
    linear-gradient(145deg, var(--c3), color-mix(in srgb, var(--c1) 28%, #0b0c0f));
  border-right: 1px solid rgba(255,255,255,.06);
}
.card-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.card-art::after { content: ""; position: absolute; width: 130px; height: 130px; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); left: -48px; bottom: -35px; box-shadow: 0 0 0 18px rgba(255,255,255,.025), 0 0 0 43px rgba(255,255,255,.02); }
.card-art img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.art-monogram { position: absolute; z-index: 1; right: 14px; bottom: 12px; color: rgba(255,255,255,.86); font: 600 39px/1 ui-monospace, monospace; letter-spacing: -.09em; text-transform: uppercase; }
.card-rank { position: absolute; z-index: 3; left: 11px; top: 11px; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(8,9,12,.66); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(8px); color: rgba(255,255,255,.78); font: 9px/1 ui-monospace, monospace; }
.card-body { padding: 17px 17px 14px; display: flex; min-width: 0; flex-direction: column; }
.card-topline { display: flex; align-items: center; gap: 7px; min-width: 0; }
.category-pill, .status-pill { border-radius: 999px; padding: 4px 7px; font-size: 7px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.category-pill { color: #b4b8b0; background: #212329; border: 1px solid #292c32; overflow: hidden; text-overflow: ellipsis; }
.status-pill { color: #858a82; background: #181a1e; border: 1px solid #24272c; }
.status-pill.promoted { color: var(--green); border-color: rgba(142,231,176,.22); background: rgba(142,231,176,.06); }
.status-pill.held { color: var(--amber); border-color: rgba(242,206,126,.22); background: rgba(242,206,126,.06); }
.status-pill.rejected { color: var(--red); border-color: rgba(241,142,142,.2); background: rgba(241,142,142,.05); }
.card-score { margin-left: auto; display: flex; align-items: baseline; gap: 2px; color: var(--text); font: 600 16px/1 ui-monospace, monospace; }
.card-score small { color: var(--muted-2); font-size: 7px; }
.idea-card h3 { margin: 13px 0 5px; font-size: 20px; line-height: 1.05; letter-spacing: -.035em; font-weight: 610; }
.idea-card .tagline { margin: 0; color: var(--text-soft); font-size: 11px; line-height: 1.45; }
.idea-card .card-summary { margin: 10px 0 12px; color: var(--muted); font-size: 9px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { margin-top: auto; padding-top: 11px; border-top: 1px solid #202228; display: flex; align-items: center; gap: 7px; }
.card-footer .build-time { color: var(--muted-2); font: 8px/1 ui-monospace, monospace; }
.card-footer .detail-link { margin-left: auto; color: var(--text-soft); font-size: 9px; }
.quick-actions { display: flex; gap: 4px; }
.quick-action { width: 23px; height: 23px; border-radius: 7px; border: 1px solid #272a30; background: #17191d; color: #767a73; cursor: pointer; display: grid; place-items: center; font-size: 10px; }
.quick-action:hover { color: var(--text); border-color: #3a3d45; }
.quick-action.promote:hover { color: var(--green); }
.quick-action.hold:hover { color: var(--amber); }

.empty-state { min-height: 420px; border: 1px dashed #272a30; border-radius: var(--radius-xl); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: rgba(17,18,22,.55); }
.empty-state h2 { margin: 10px 0 7px; font-size: 20px; letter-spacing: -.03em; }
.empty-state p { margin: 0; color: var(--muted); max-width: 390px; font-size: 11px; }
.empty-visual { width: 90px; height: 90px; position: relative; margin-bottom: 24px; }
.empty-visual span { position: absolute; inset: 7px; border: 1px solid #3a3e3a; border-radius: 50%; }
.empty-visual span::before, .empty-visual span::after { content: ""; position: absolute; inset: 12px; border: 1px solid #282b30; border-radius: 50%; }
.empty-visual span::after { inset: 27px; background: var(--acid); border: 0; box-shadow: 0 0 24px rgba(216,255,105,.25); }
.empty-visual i { position: absolute; left: 50%; top: 0; bottom: 0; border-left: 1px solid #272a30; }

/* Drawer */
.drawer-backdrop { position: fixed; inset: 0; z-index: 50; background: rgba(3,4,6,.66); backdrop-filter: blur(3px); }
.idea-drawer {
  --c1: #7c9cff;
  --c2: #b6f2d6;
  --c3: #151a27;
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  width: min(680px, 100vw);
  height: 100vh;
  background: #101115;
  border-left: 1px solid #30333a;
  transform: translateX(102%);
  transition: transform .24s cubic-bezier(.2,.8,.2,1);
  box-shadow: -30px 0 90px rgba(0,0,0,.45);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.idea-drawer.is-open { transform: translateX(0); }
.drawer-scroll { min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.drawer-topbar { height: 58px; padding: 0 20px 0 24px; display: flex; align-items: center; border-bottom: 1px solid var(--line-soft); position: sticky; top: 0; z-index: 3; background: rgba(16,17,21,.88); backdrop-filter: blur(16px); }
.drawer-kicker { color: var(--muted-2); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.drawer-tools { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.text-button { border: 0; background: transparent; color: var(--acid); font-size: 9px; cursor: pointer; }
.drawer-hero { min-height: 330px; position: relative; overflow: hidden; padding: 31px 31px 29px; display: flex; flex-direction: column; justify-content: flex-end; background: radial-gradient(circle at 73% 22%, color-mix(in srgb, var(--c2) 82%, white 5%) 0 5%, transparent 6%), radial-gradient(circle at 63% 44%, color-mix(in srgb, var(--c1) 80%, transparent) 0 16%, transparent 17%), linear-gradient(145deg, var(--c3), color-mix(in srgb, var(--c1) 23%, #0b0c0f)); }
.drawer-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.drawer-hero::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(6,7,9,.9)); pointer-events: none; }
.art-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 35px 35px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.art-orb { position: absolute; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(255,255,255,.23); right: -75px; top: -70px; box-shadow: 0 0 0 38px rgba(255,255,255,.025), 0 0 0 85px rgba(255,255,255,.018); }
.drawer-score { position: absolute; z-index: 2; right: 25px; top: 23px; width: 60px; height: 60px; border-radius: 18px; background: rgba(8,9,12,.58); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(12px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.drawer-score strong { font: 650 20px/1 ui-monospace, monospace; }
.drawer-score small { color: rgba(255,255,255,.55); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.drawer-hero-copy { position: relative; z-index: 2; }
.idea-meta-row { display: flex; align-items: center; gap: 7px; }
.drawer-hero h2 { margin: 13px 0 4px; font-size: 40px; line-height: 1; letter-spacing: -.055em; font-weight: 620; }
.drawer-hero p { margin: 0; color: rgba(255,255,255,.72); max-width: 500px; font-size: 12px; }
.drawer-body { padding: 31px 32px 45px; }
.brief-lead { display: grid; grid-template-columns: 28px 1fr; gap: 11px; margin-bottom: 29px; }
.section-number { color: var(--acid); font: 8px/1.5 ui-monospace, monospace; }
.brief-lead h3, .section-title h3 { margin: 0; font-size: 11px; font-weight: 650; letter-spacing: .01em; }
.brief-lead p { color: var(--text-soft); font-size: 13px; line-height: 1.65; margin: 10px 0 0; }
.brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 28px; }
.brief-block { border: 1px solid #25282e; border-radius: 12px; background: #131519; padding: 14px; }
.section-label { color: var(--muted-2); font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.brief-block p { color: var(--text-soft); font-size: 10px; line-height: 1.55; margin: 8px 0 0; }
.brief-section { padding: 25px 0; border-top: 1px solid var(--line-soft); }
.section-title { display: grid; grid-template-columns: 28px 1fr; gap: 11px; align-items: baseline; margin-bottom: 14px; }
.section-copy { color: var(--text-soft); margin: 0; font-size: 11px; line-height: 1.7; }
.feature-list, .risk-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.feature-list li, .risk-list li { position: relative; padding: 10px 12px 10px 34px; border: 1px solid #24272d; border-radius: 10px; background: #131519; color: var(--text-soft); font-size: 10px; line-height: 1.45; }
.feature-list li::before { content: "↳"; position: absolute; left: 12px; top: 10px; color: var(--blue); font-family: ui-monospace, monospace; }
.feature-positive li::before { content: "+"; color: var(--green); }
.lore-section { background: linear-gradient(125deg, rgba(216,255,105,.04), transparent 55%); margin-left: -32px; margin-right: -32px; padding-left: 32px; padding-right: 32px; }
.brand-strip { margin-top: 14px; display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 9px; }
.palette { display: flex; gap: 4px; }
.palette i { width: 17px; height: 17px; border-radius: 6px; border: 1px solid rgba(255,255,255,.13); }
.token-block { border-color: rgba(216,255,105,.16); background: rgba(216,255,105,.035); }
.risk-list li::before { content: "!"; position: absolute; left: 13px; top: 10px; color: var(--amber); font: 700 9px/1.5 ui-monospace, monospace; }
.evidence-list { display: grid; gap: 6px; }
.evidence-link { display: flex; align-items: center; gap: 10px; padding: 10px 11px; border: 1px solid #24272d; background: #131519; border-radius: 9px; color: var(--text-soft); text-decoration: none; font-size: 9px; }
.evidence-link:hover { border-color: #3b3f47; color: var(--text); }
.evidence-link span:first-child { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; background: #202329; color: var(--acid); }
.evidence-link span:last-child { margin-left: auto; color: var(--muted-2); }
.review-note-section { border-top: 1px solid var(--line-soft); padding-top: 25px; }
.review-note-section label { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.review-note-section label span { font-size: 10px; font-weight: 650; }
.review-note-section label small { color: var(--muted-2); font-size: 8px; }
.review-note-section textarea { width: 100%; min-height: 94px; resize: vertical; border: 1px solid #292c33; background: #0d0e11; color: var(--text); border-radius: 11px; padding: 12px; font-size: 10px; line-height: 1.55; }
.review-note-section textarea::placeholder { color: #555950; }
.drawer-actions { padding: 12px 18px; display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; border-top: 1px solid #292c33; background: rgba(15,16,20,.94); backdrop-filter: blur(15px); }
.button { border: 1px solid transparent; border-radius: 10px; padding: 10px 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; font-size: 10px; font-weight: 650; transition: filter .16s ease, transform .16s ease, border-color .16s ease; }
.button:hover { filter: brightness(1.07); }
.button:active { transform: translateY(1px); }
.button.primary, .button.promote { color: var(--acid-ink); background: var(--acid); }
.button.reject { color: var(--red); border-color: rgba(241,142,142,.2); background: rgba(241,142,142,.05); }
.button.hold { color: var(--amber); border-color: rgba(242,206,126,.2); background: rgba(242,206,126,.05); }
.button[disabled] { opacity: .5; cursor: wait; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; transform: translate(-50%, 18px); opacity: 0; pointer-events: none; padding: 10px 14px; border: 1px solid #3a3e45; border-radius: 10px; background: #191b20; color: var(--text-soft); box-shadow: var(--shadow); font-size: 10px; transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1120px) {
  :root { --sidebar: 218px; }
  .idea-card { grid-template-columns: 130px minmax(0, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  .app-shell { display: block; }
  .sidebar { transform: translateX(-102%); transition: transform .22s ease; box-shadow: 22px 0 60px rgba(0,0,0,.45); }
  .sidebar.is-open { transform: translateX(0); }
  .main-stage { min-width: 0; }
  .mobile-menu { display: grid; }
  .topbar { padding: 0 16px; }
  .search-box { width: 190px; }
  .content-wrap { padding: 30px 18px 60px; }
  .page-heading { align-items: flex-start; flex-direction: column; }
  .heading-actions { width: 100%; }
  .select-control { flex: 1; }
  .idea-grid { grid-template-columns: 1fr; }
  .idea-card { grid-template-columns: 145px minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .login-shell { padding: 12px; }
  .login-panel { padding: 27px 22px; }
  .login-brand { margin-bottom: 38px; }
  .breadcrumb { display: none; }
  .private-badge, .search-box kbd { display: none; }
  .search-box { width: min(63vw, 240px); }
  .page-heading h1 { font-size: 36px; }
  .heading-actions { flex-direction: column; }
  .select-control { width: 100%; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-card { min-height: 102px; padding: 14px; }
  .feed-legend { display: none; }
  .idea-card { display: block; }
  .card-art { height: 148px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .idea-card h3 { font-size: 23px; }
  .drawer-hero { min-height: 300px; padding: 25px 22px; }
  .drawer-hero h2 { font-size: 34px; }
  .drawer-body { padding: 27px 20px 38px; }
  .brief-grid { grid-template-columns: 1fr; }
  .lore-section { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .drawer-actions { grid-template-columns: 1fr 1fr; }
  .drawer-actions .promote { grid-column: 1 / -1; grid-row: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
