/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --bg: #f6f5f1;
  --surface: #fffefb;
  --ink: #1a1a1a;
  --ink-2: #4a4a48;
  --muted: #8a8a85;
  --line: #e8e6df;
  --line-2: #f0eee7;
  --accent: #1a1a1a;
  --green: #0a7a45;
  --green-soft: #e9f5ee;
  --red: #b8362c;
  --red-soft: #fbeae8;
  --amber: #a05a00;
  --amber-soft: #fbf1de;
  --blue: #2a3b9c;
  --blue-soft: #e8ebf7;

  /* Typography */
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Geist', sans-serif;
  --font-mono: 'Geist Mono', monospace;

  /* Spacing (4px rhythm) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;

  /* Radii */
  --r-sm: 5px;
  --r-md: 8px;
  --r-lg: 10px;
  --r-xl: 12px;
  --r-2xl: 18px;
  --r-3xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 0 rgba(0,0,0,.02);
  --shadow-md: 0 1px 0 rgba(0,0,0,.02), 0 24px 50px -30px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 24px -8px rgba(0,0,0,.12);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

/* ============================================================
   APP SHELL
   ============================================================ */
.app { width: 1440px; margin: 0 auto; display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
  width: 236px; background: var(--bg); position: fixed; top: 0; bottom: 0;
  left: calc(50% - 720px); display: flex; flex-direction: column;
  padding: 24px 16px; border-right: 1px solid var(--line); z-index: 30;
}
.brand { display: flex; align-items: center; gap: 10px; padding: 0 8px 24px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; background: #1a1a1a; color: #f6f5f1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px;
}
.brand-name { font-weight: 600; letter-spacing: -.01em; font-size: 15px; }
.brand-name small { display: block; color: var(--muted); font-weight: 400; font-size: 11px; letter-spacing: .02em; }

.nav-sec {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); padding: 14px 10px 8px; font-weight: 500;
}
.nav-i {
  display: flex; align-items: center; gap: 11px; padding: 8px 10px;
  color: var(--ink-2); text-decoration: none; border-radius: var(--r-md);
  font-size: 13.5px; font-weight: 500; margin-bottom: 1px;
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease;
}
.nav-i:hover { background: rgba(0,0,0,.04); color: var(--ink); }
.nav-i.active {
  background: var(--surface); color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 0 0 1px var(--line);
}
.nav-i .ico { width: 16px; height: 16px; opacity: .8; display: flex; align-items: center; }
.nav-i .pill {
  margin-left: auto; background: #1a1a1a; color: #fff;
  font-size: 10.5px; padding: 1px 7px; border-radius: 20px;
  font-weight: 600; font-family: var(--font-mono);
}

.side-foot {
  margin-top: auto; padding: 12px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
}
.av {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a, #555);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 12px; flex-shrink: 0;
}
.side-foot .who { font-size: 12.5px; line-height: 1.3; min-width: 0; }
.side-foot .who b { font-weight: 600; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-foot .who span { color: var(--muted); font-size: 11.5px; }

/* Main */
.main { margin-left: 236px; flex: 1; }

/* Topbar */
.topbar {
  height: 64px; display: flex; align-items: center; gap: 18px;
  padding: 0 32px; border-bottom: 1px solid var(--line);
  background: rgba(246,245,241,.85); backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 20;
}
.search {
  flex: 1; max-width: 460px; height: 38px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  display: flex; align-items: center; padding: 0 14px; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.search input {
  border: 0; outline: 0; background: 0; flex: 1;
  font-family: inherit; font-size: 13px; color: var(--ink);
}
.kbd {
  font-family: var(--font-mono); font-size: 10.5px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 1px 5px; color: var(--muted);
}
.live {
  display: flex; align-items: center; gap: 8px; padding: 7px 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; font-size: 12px; font-weight: 500; white-space: nowrap;
}
.live .blip {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(10,122,69,.18); animation: blip 2s infinite;
}
.tb-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.ib {
  width: 38px; height: 38px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; font-size: 14px;
  transition: background var(--duration-fast) ease;
  color: var(--ink-2);
}
.ib:hover { background: var(--line-2); }
.ib .dot {
  position: absolute; top: 8px; right: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--red); box-shadow: 0 0 0 2px var(--surface);
}

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.page { padding: 28px 32px 56px; }
.crumb {
  font-size: 12px; color: var(--muted); margin-bottom: 16px;
  display: flex; align-items: center; gap: 7px;
}
.crumb a { color: var(--muted); text-decoration: none; transition: color var(--duration-fast); }
.crumb a:hover { color: var(--ink); }
.crumb b { color: var(--ink); font-weight: 500; }
.crumb .s { opacity: .5; }

.title-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 24px; gap: 24px;
}
.h1 {
  font-family: var(--font-display); font-size: 42px;
  letter-spacing: -.015em; line-height: 1.05; margin-bottom: 8px; font-weight: 400;
}
.h1 em { font-style: italic; color: var(--muted); }
.sub { color: var(--ink-2); font-size: 14px; max-width: 540px; }
.title-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* Buttons */
.btn {
  height: 40px; padding: 0 16px; border-radius: var(--r-lg);
  font-size: 13px; font-weight: 500; font-family: inherit;
  background: var(--surface); color: var(--ink); border: 1px solid var(--line);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--duration-fast) ease;
  white-space: nowrap;
}
.btn:hover { background: var(--line-2); }
.btn:active { transform: scale(.98); }
.btn-dark { background: #1a1a1a; color: #fffefb; border-color: #1a1a1a; }
.btn-dark:hover { background: #000; }

/* ============================================================
   HERO / KPI SECTION
   ============================================================ */
.hero {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-3xl);
  padding: 26px 28px; margin-bottom: 20px; box-shadow: var(--shadow-md);
}
.hero-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px;
}
.hero-label {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); font-weight: 500;
}
.hero-tabs {
  display: flex; gap: 2px; background: var(--bg); padding: 3px;
  border-radius: var(--r-lg); border: 1px solid var(--line);
}
.htab {
  padding: 7px 14px; font-size: 12.5px; color: var(--muted);
  border-radius: 7px; cursor: pointer; font-weight: 500;
  transition: all var(--duration-fast) ease;
}
.htab:hover { color: var(--ink); }
.htab.active {
  background: var(--surface); color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.kpi { padding: 0 24px; border-right: 1px solid var(--line-2); }
.kpi:first-child { padding-left: 0; }
.kpi:last-child { border-right: 0; padding-right: 0; }
.kpi-l {
  font-size: 12px; color: var(--muted); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px; font-weight: 500;
}
.kpi-v {
  font-family: var(--font-display); font-size: 38px;
  letter-spacing: -.02em; line-height: 1; margin-bottom: 10px; font-weight: 400;
}
.kpi-v.pos { color: var(--green); }
.kpi-foot { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.trend {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  padding: 2px 8px; border-radius: 20px;
}
.trend.up { background: var(--green-soft); color: var(--green); }
.trend.dn { background: var(--red-soft); color: var(--red); }
.trend.warn { background: var(--amber-soft); color: var(--amber); }
.trend.blue { background: var(--blue-soft); color: var(--blue); }
.spark { display: inline-block; width: 80px; height: 24px; }

/* ============================================================
   GRID & PANELS
   ============================================================ */
.grid { display: grid; grid-template-columns: 1fr 480px; gap: 20px; align-items: start; }

.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-sm);
}
.panel-head {
  padding: 18px 22px; border-bottom: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: center;
}
.panel-title {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: -.01em; font-weight: 400;
}
.panel-title small {
  font-family: var(--font-body); font-size: 12.5px;
  color: var(--muted); margin-left: 8px;
}

/* Chips */
.chips { display: flex; gap: 6px; align-items: center; }
.chip {
  padding: 6px 11px; font-size: 12px; border-radius: 20px;
  background: var(--bg); color: var(--ink-2); border: 1px solid var(--line);
  cursor: pointer; font-weight: 500; display: inline-flex; align-items: center; gap: 5px;
  transition: all var(--duration-fast) ease;
}
.chip:hover { background: var(--line-2); }
.chip.on { background: #1a1a1a; color: #fffefb; border-color: #1a1a1a; }

/* Table */
.tbl-wrap { padding: 0; }
.row {
  display: grid;
  grid-template-columns: 40px 1fr 70px 90px 100px 110px 90px;
  gap: 0; padding: 18px 22px; border-bottom: 1px solid var(--line-2);
  align-items: center; cursor: pointer;
  transition: background var(--duration-fast) ease;
  animation: fadeIn var(--duration-normal) var(--ease-out) both;
}
.row:hover { background: rgba(0,0,0,.015); }
.row.sel { background: #fffaf0; box-shadow: inset 3px 0 0 #1a1a1a; }
.row-head {
  padding: 12px 22px; background: var(--bg);
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--line);
}
.tick-circle {
  width: 32px; height: 32px; border-radius: 9px; background: #1a1a1a;
  color: #fffefb; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
}
.tick-circle.buy { background: var(--green); }
.tick-circle.sell { background: var(--red); }
.sym { font-weight: 600; font-size: 14px; letter-spacing: -.01em; }
.sym-name { font-size: 12px; color: var(--muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dirtag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em;
}
.dirtag.buy { color: var(--green); }
.dirtag.sell { color: var(--red); }
.confwrap { display: flex; flex-direction: column; gap: 5px; }
.confnum { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; }
.confbar { width: 70px; height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
.confbar span { display: block; height: 100%; background: var(--ink); border-radius: 2px; transition: width var(--duration-normal) ease; }
.num { font-family: var(--font-mono); font-weight: 500; font-size: 13px; }
.pos { color: var(--green); }
.neg { color: var(--red); }
.timer { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); }
.timer.urgent { color: var(--red); font-weight: 600; }

/* ============================================================
   DETAIL PANEL
   ============================================================ */
.detail { position: sticky; top: 88px; align-self: start; overflow: hidden; }
.detail-hero {
  padding: 24px; background: linear-gradient(180deg, #fffefb, #fbf9f3);
  border-bottom: 1px solid var(--line-2); position: relative;
}
.signal-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 14px;
}
.signal-tag .d { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.dt-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.dt-sym {
  font-family: var(--font-display); font-size: 46px; line-height: 1;
  letter-spacing: -.02em; font-weight: 400; display: flex; align-items: center; gap: 12px;
}
.dt-name { font-size: 13px; color: var(--muted); margin-top: 6px; }
.dt-price { text-align: right; }
.dt-price .pr { font-family: var(--font-mono); font-size: 24px; font-weight: 600; letter-spacing: -.01em; }
.dt-price .ch { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; margin-top: 2px; }
.minichart { margin-top: 18px; height: 60px; width: 100%; }

.section { padding: 20px 24px; border-bottom: 1px solid var(--line-2); }
.section h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); font-weight: 600; margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.section h4 small {
  font-family: var(--font-mono); font-size: 10.5px;
  text-transform: none; letter-spacing: 0; color: var(--muted);
}

.meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.m-l { font-size: 11px; color: var(--muted); margin-bottom: 3px; }
.m-v { font-size: 13.5px; font-weight: 600; font-family: var(--font-mono); }

.pnl-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.pnl-c {
  padding: 14px 12px; background: var(--bg); border-radius: var(--r-xl);
  border: 1px solid var(--line-2);
}
.pnl-c .l {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 600; margin-bottom: 8px;
}
.pnl-c .v {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: -.01em; font-weight: 400;
}
.pnl-c.bear { background: var(--red-soft); border-color: transparent; }
.pnl-c.bull { background: var(--green-soft); border-color: transparent; }

.exp-row {
  display: flex; align-items: center; gap: 14px; padding: 9px 0; font-size: 12.5px;
}
.exp-row + .exp-row { border-top: 1px dashed var(--line-2); }
.exp-l { width: 110px; color: var(--ink-2); }
.exp-track {
  flex: 1; height: 5px; background: var(--line); border-radius: 3px;
  position: relative; overflow: hidden;
}
.exp-track .mid {
  position: absolute; left: 50%; top: -2px; bottom: -2px;
  width: 1px; background: var(--muted); opacity: .3;
}
.exp-track .f {
  position: absolute; top: 0; height: 100%; left: 50%;
  background: var(--ink); border-radius: 3px;
  transition: width var(--duration-normal) ease;
}
.exp-track .f.n { transform: translateX(-100%); background: var(--red); }
.exp-track .f.p { background: var(--green); }
.exp-v { width: 64px; text-align: right; font-family: var(--font-mono); font-weight: 600; }

.rationale {
  font-size: 13px; color: var(--ink-2); line-height: 1.65;
  padding: 14px 16px; background: var(--bg); border-radius: var(--r-xl);
  border: 1px solid var(--line-2); position: relative;
}
.rationale::before {
  content: '"'; font-family: var(--font-display); font-size: 36px;
  color: var(--muted); position: absolute; top: -8px; left: 8px; line-height: 1; opacity: .4;
}
.rationale-body { padding-left: 20px; }

.audit { display: flex; flex-direction: column; gap: 0; }
.au { display: flex; gap: 14px; padding: 10px 0; font-size: 12.5px; }
.au-time {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  width: 54px; flex-shrink: 0; padding-top: 1px;
}
.au-bar {
  width: 1px; background: var(--line); position: relative; flex-shrink: 0;
}
.au-bar::before {
  content: ""; position: absolute; left: -3px; top: 4px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--ink);
}
.au:last-child .au-bar::before {
  background: var(--surface); border-color: var(--muted); border-style: dashed;
}
.au-body b { display: block; font-weight: 600; color: var(--ink); }
.au-body span { color: var(--muted); font-size: 12px; }

.action {
  padding: 18px 24px; display: flex; gap: 8px;
  background: linear-gradient(180deg, transparent, #faf8f2);
}
.btn-approve {
  flex: 1; height: 46px; background: var(--green); color: #fff; border: 0;
  border-radius: var(--r-xl); font-weight: 600; font-family: inherit; font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 14px -6px rgba(10,122,69,.55);
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
}
.btn-approve:hover { background: #066939; }
.btn-approve:active { transform: scale(.98); }
.btn-reject {
  height: 46px; padding: 0 18px; background: var(--surface);
  border: 1px solid var(--line); color: var(--red);
  border-radius: var(--r-xl); font-weight: 600; font-family: inherit; font-size: 14px;
  cursor: pointer; transition: background var(--duration-fast) ease;
}
.btn-reject:hover { background: var(--red-soft); }
.btn-defer {
  height: 46px; padding: 0 18px; background: var(--surface);
  border: 1px solid var(--line); color: var(--ink-2);
  border-radius: var(--r-xl); font-weight: 600; font-family: inherit; font-size: 14px;
  cursor: pointer; transition: background var(--duration-fast) ease;
}
.btn-defer:hover { background: var(--line-2); }

/* ============================================================
   DROPDOWN
   ============================================================ */
.dd-wrap { position: relative; }
.dd-panel {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 4px; min-width: 140px;
  box-shadow: var(--shadow-lg); z-index: 100;
  animation: slideUp var(--duration-fast) var(--ease-out);
}
.dd-panel.open { display: block; }
.dd-opt {
  padding: 8px 12px; border-radius: var(--r-md); font-size: 12.5px;
  cursor: pointer; transition: background var(--duration-fast) ease;
}
.dd-opt:hover { background: var(--bg); }

/* ============================================================
   LOGIN
   ============================================================ */
.login-page {
  width: 100%; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--bg); padding: 40px 20px;
}
.login-container {
  width: 560px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-3xl); padding: 48px 40px; box-shadow: var(--shadow-md);
}
.login-brand { display: flex; flex-direction: column; align-items: center; margin-bottom: 32px; }
.login-title {
  font-family: var(--font-display); font-size: 22px; text-align: center;
  margin-bottom: 24px; font-weight: 400; color: var(--ink-2);
}
.user-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px;
}
.user-card {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--r-xl); cursor: pointer;
  transition: all var(--duration-fast) ease; background: var(--surface);
}
.user-card:hover { border-color: var(--ink); background: var(--bg); }
.user-card.selected {
  border-color: var(--ink); background: #fffaf0;
  box-shadow: 0 0 0 2px var(--ink);
}
.user-card-info { min-width: 0; }
.user-card-name { font-weight: 600; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-card-role { font-size: 11.5px; color: var(--muted); }

.login-form-wrap { border-top: 1px solid var(--line-2); padding-top: 20px; }
.login-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.login-field label {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); font-weight: 500; margin-bottom: 6px;
}
.login-field input {
  width: 100%; height: 40px; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 0 14px; font-size: 13px;
  background: var(--bg); color: var(--ink);
}
.login-submit:disabled { opacity: .4; cursor: not-allowed; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-8px); } }

/* ============================================================
   SORTABLE COLUMNS
   ============================================================ */
.sortable-col { cursor: pointer; user-select: none; }
.sortable-col:hover { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 24px 32px; color: var(--muted); font-size: 12px;
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--line); margin-top: 32px;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }
