/* ═══════════════════════════════════════════════
   who cares? — 2026 Terminal Lux · dark glass redesign
═══════════════════════════════════════════════ */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.0.3/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.0.3/500.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.0.3/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.0.3/700.css');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* brand accents — tab identity colors */
  --orange:  #FF8A2E;   /* short (단타) */
  --purple:  #8B5CF6;   /* long  (장타) */
  --cyan:    #22D3EE;   /* us    (해외) */
  --mint:    #34E4A6;   /* insight (AI 관측성) */

  /* surfaces — MONO AI: pure black + subtle white-alpha borders */
  --bg:        #000000;
  --bg-elev:   #050505;
  --surface:   #0A0A0A;
  --surface-2: #111213;
  --border:       rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.18);

  /* text */
  --text:    #FAFAFA;
  --gray:    rgba(255,255,255,0.55);

  /* semantic */
  --up:      #22C55E;
  --dn:      #F5455C;

  --font: 'Geist Sans', 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
          'Segoe UI', system-ui, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  --font-logo: 'Space Grotesk', 'Geist Sans', 'Pretendard Variable', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad:     20px;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ambient background motion — 비디오 배경 (main.mp4) */
#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
body::before {
  content: '';
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(640px 420px at 18% 8%,  rgba(255,255,255,0.07), transparent 62%),
    radial-gradient(880px 560px at 82% 28%, rgba(255,255,255,0.045), transparent 62%),
    radial-gradient(700px 480px at 50% 90%, rgba(255,255,255,0.035), transparent 65%);
  animation: bgDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes bgDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(3.5%, -2.5%, 0) scale(1.07); }
}

#app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* ────────────────────────────────────────────
   GNB
──────────────────────────────────────────── */
.gnb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(var(--pad), calc((100vw - 1440px) / 2));
  height: 72px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.30);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  will-change: backdrop-filter;
  transform: translateZ(0);
  -webkit-app-region: drag;
}

.gnb-logo {
  font-family: var(--font-logo);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  -webkit-app-region: no-drag;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}

.gnb-nav {
  display: flex;
  align-items: center;
  height: 78px;
  gap: 4px;
  -webkit-app-region: no-drag;
}

.gnb-nav-btn {
  background: none;
  border: none;
  padding: 0 16px;
  height: 40px;
  border-radius: 64px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: color .14s, background .14s;
  -webkit-app-region: no-drag;
}
.gnb-nav-btn:hover { color: #FAFAFA; }
.gnb-nav-btn.active {
  background: rgba(255,255,255,0.15);
  color: #FAFAFA;
  font-weight: 600;
}

.gnb-hidden { display: none; }
.engine-badge, #clock, #win-controls { display: none; }

/* ────────────────────────────────────────────
   PAGE SCROLL
──────────────────────────────────────────── */
.page-wrap {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 var(--pad) 80px;
  padding-top: 160px; /* 확장 GNB 112px + 상단 여백 48px */
}

/* 스크롤바 숨김 (스크롤 동작은 유지) */
::-webkit-scrollbar { width: 0; height: 0; display: none; }
* { scrollbar-width: none; -ms-overflow-style: none; }

/* ────────────────────────────────────────────
   TAB PANELS
──────────────────────────────────────────── */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ────────────────────────────────────────────
   SECTIONS
──────────────────────────────────────────── */
.pg-sec {
  padding: 28px 0;
}

/* report. + relearning to db. 그룹 회색 배경 (전폭) */
.sec-group-gray {
  background: var(--surface);
  margin: 0 calc(-1 * var(--pad));
  padding: 0 var(--pad);
}

/* Section headings — "balance." "report." etc. */
.sec-h {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 500;
  color: #FAFAFA;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.sub-h {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
  color: #FAFAFA;
}

/* heading row: title LEFT + control RIGHT */
.sec-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 10px;
}
.sec-hd .sec-h { margin-bottom: 0; }

.sec-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ────────────────────────────────────────────
   DATE SELECT  (orange text + chevron)
──────────────────────────────────────────── */
.date-sel {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  outline: none;
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23FAFAFA'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.date-sel option { color: var(--text); font-weight: 400; }

/* 검은색 날짜 셀렉트 (report 섹션) */
.date-sel--black {
  color: var(--text);
  font-weight: 700;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23FAFAFA'/%3E%3C/svg%3E");
}

/* ── Report 미준비 상태 ── */
.report-not-ready {
  padding: 52px 20px;
  text-align: center;
}
.report-nr-main {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.report-nr-sub {
  font-family: var(--font);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

.refresh-btn {
  background: none;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 12px;
  color: var(--gray);
  padding: 5px 14px;
  border-radius: 64px;
  cursor: pointer;
}
.refresh-btn:hover { border-color: rgba(255,255,255,0.4); color: #FAFAFA; }

/* ────────────────────────────────────────────
   BALANCE SECTION — card + layer design
──────────────────────────────────────────── */

/* balance. 헤더 행 : 제목 LEFT / 갱신시간+잠구기 RIGHT */
.bal-sec-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bal-sec-hd .sec-h { margin-bottom: 0; }

.bal-sec-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* 카드 프레임 : 라운드 + 그림자 */
.balance-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  padding: 24px 28px;
}

.balance-wrap {
  position: relative;
  min-height: 200px;
}

/* Inner content: always rendered; blurred when locked */
.bal-data-inner {
  transition: filter .25s ease;
}
.bal-data-inner.blurred {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

/* ── LAYER 1: semi-white fog over blurred rows ── */
/* ── LAYER 2: floating pin box with shadow     ── */
#acc-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,15,0.55);  /* dark scrim over blurred content */
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 20;
}

.pin-box {
  background: rgba(19,19,28,0.85);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1.5px solid var(--border-strong);
  border-radius: 16px;
  padding: 36px 48px 32px;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  min-width: 340px;
  max-width: 480px;
  width: 90%;
}

/* Padlock icon */
.lock-icon {
  display: block;
  margin: 0 auto 20px;
}

.pin-label {
  display: block;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}

.pin-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.pin-input {
  border: none;
  border-bottom: 2.5px solid rgba(255,255,255,0.18);
  border-radius: 0;
  padding: 6px 4px;
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 8px;
  outline: none;
  width: 180px;
  text-align: center;
  background: transparent;
  color: var(--text);
  transition: border-color .15s;
}
.pin-input:focus { border-bottom-color: #FAFAFA; }
.pin-input::placeholder { letter-spacing: 4px; color: #5C5C70; font-size: 20px; }

.pin-btn {
  background: #FAFAFA;
  color: #111111;
  border: none;
  border-radius: 64px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s, transform .1s;
  flex-shrink: 0;
}
.pin-btn:hover  { background: #FFFFFF; }
.pin-btn:active { transform: scale(0.96); }
.pin-err { font-size: 12px; color: var(--dn); display: block; margin-top: 12px; font-weight: 600; }

/* ────────────────────────────────────────────
   BALANCE & REPORT TABLE
──────────────────────────────────────────── */
.bal-table {
  width: 100%;
  border-collapse: collapse;
}
.bal-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font);
  font-size: 14px;
  vertical-align: middle;
}
.bal-table tr:last-child td { border-bottom: none; }
.bal-table td:first-child { color: var(--gray); font-weight: 400; }
.bal-table td:last-child  { text-align: right; font-weight: 600; color: var(--text); white-space: nowrap; }

/* Total row — larger & bold */
.bal-total-row td {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}
.bal-total-row td:first-child {
  color: var(--text);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  border-bottom: none;
}

.update-time {
  font-family: var(--font);
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}
.relock-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}
.relock-btn:hover { opacity: 0.7; }

/* ────────────────────────────────────────────
   REPORT STAT VALUE
──────────────────────────────────────────── */
.report-stat-value { font-weight: 700; }

/* ────────────────────────────────────────────
   MISC
──────────────────────────────────────────── */
.empty-msg  { color: #5C5C70; font-size: 13px; padding: 6px 0; }
.empty-cell {
  text-align: center; color: #5C5C70;
  font-size: 13px; padding: 24px 0 !important;
}
.gray  { color: var(--gray); }
.muted { color: var(--gray); }
.pnl-pos { color: var(--up); font-weight: 600; }
.pnl-neg { color: var(--dn); font-weight: 600; }
.buy-text  { color: var(--up); font-weight: 700; }
.sell-text { color: var(--dn); font-weight: 700; }

/* ────────────────────────────────────────────
   SHORT / LONG TOGGLE
──────────────────────────────────────────── */
.type-toggle { display: flex; gap: 8px; }
.tgl-btn {
  background: none; border: none;
  font-family: var(--font);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7); cursor: pointer;
  padding: 6px 14px;
  border-radius: 64px;
  transition: color .12s, background .12s;
}
.tgl-btn.active {
  background: rgba(255,255,255,0.15);
  color: #FAFAFA;
  font-weight: 600;
}
.tgl-btn:hover:not(.active) { color: #FAFAFA; }

/* ────────────────────────────────────────────
   GENERIC TABLES
──────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; }

thead th {
  text-align: left;
  padding: 8px 10px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  background: var(--surface);
}

tbody td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.05); }

.mono { font-family: var(--font); }

/* ────────────────────────────────────────────
   RELEARNING TABLE
──────────────────────────────────────────── */
.learn-table { border-collapse: collapse; width: 100%; }

/* thead 패딩 (카드 안이므로 좌우 여백 추가) */
.learn-table thead th { padding: 14px 16px; }
.learn-table tbody td { padding: 14px 16px; }

.learn-no    { color: var(--gray); font-size: 12px; white-space: nowrap; }
.learn-name  { font-size: 13px; color: var(--text); }
.learn-price { font-size: 13px; color: var(--text); white-space: nowrap; }

/* 수익 / 손실 타입 */
.type-win  { color: var(--up);  font-weight: 700; font-size: 13px; }
.type-loss { color: var(--dn);  font-weight: 700; font-size: 13px; }

/* MFE / MAE */
.mfe-val { color: var(--up); font-weight: 600; font-size: 13px; white-space: nowrap; }
.mae-val { color: var(--dn); font-weight: 600; font-size: 13px; white-space: nowrap; }

/* 클릭 가능한 행 */
.learn-row {
  cursor: pointer;
  transition: background .1s;
}
.learn-row:hover td { background: rgba(255,255,255,0.05); }
.learn-row.row-expanded td { background: rgba(255,255,255,0.08); }

/* MFE = 빨강 / MAE = 파랑 (한국 주식 컨벤션) */
.mfe-val { color: var(--dn); font-weight: 600; font-size: 13px; white-space: nowrap; }
.mae-val { color: #5B9DFF; font-weight: 600; font-size: 13px; white-space: nowrap; }
.mfe-dash, .mae-dash { color: #5C5C70; }

/* ── 확장 패널 행 ── */
.trade-expand-row td {
  padding: 0 !important;
  border-bottom: 1px solid var(--border) !important;
}

/* 위원회 인라인 테이블 — 회색 배경 */
.committee-inner-table {
  width: 100%;
  border-collapse: collapse;
}
.committee-inner-table td {
  padding: 18px 20px;
  font-size: 13px;
  color: #D6D6DE;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.06);   /* 회색 배경 */
}
.committee-inner-table tr:last-child td { border-bottom: none; }

.ci-icon   { width: 44px; text-align: center; font-size: 17px; }
.ci-role   { font-weight: 700; color: var(--text); white-space: nowrap; width: 110px; }
.ci-vote   { color: #D6D6DE; font-weight: 500; white-space: nowrap; width: 140px; }
.ci-reason { color: #B4B4C4; line-height: 1.7; }

/* ── #AI COMMENT : 라운드 카드 + 오렌지 헤더 + 흰 본문 ── */
.review-container {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.review-header {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  color: #FAFAFA;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-badge {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.22);
  padding: 3px 10px;
  border-radius: 12px;
}

.review-body {
  background: var(--surface);
  padding: 20px 20px 24px;
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.85;
  color: #E8E8EE;
}
.review-body b { font-weight: 700; color: var(--text); }

/* 빈 상태 */
.learn-empty-cell {
  text-align: center;
  padding: 64px 20px !important;
  border-bottom: none !important;
}
.learn-empty-main {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.learn-empty-sub {
  font-family: var(--font);
  font-size: 12px;
  color: #7C7C90;
  line-height: 1.8;
}

/* 기존 badges (short/long 패널에서 사용) */
.badge-buy {
  display: inline-block;
  background: #FAFAFA; color: #111111;
  padding: 2px 10px; border-radius: 64px;
  font-size: 11px; font-weight: 700;
  white-space: nowrap;
}
.badge-sell {
  display: inline-block;
  background: rgba(255,255,255,0.15); color: #FAFAFA;
  padding: 2px 10px; border-radius: 64px;
  font-size: 11px; font-weight: 700;
  white-space: nowrap;
}

/* ────────────────────────────────────────────
   TIME CELL — 날짜/시간 줄바꿈
──────────────────────────────────────────── */
.dt-cell  { white-space: nowrap; }
.dt-br    { display: none; }
.dt-date  { margin-right: 6px; }
@media (max-width: 900px) {
  .dt-br   { display: block; }
  .dt-cell { white-space: normal; }
  .dt-date { margin-right: 0; }
  .dt-time { display: inline-block; margin-top: 4px; }
}

/* ────────────────────────────────────────────
   MONITORING TABLE  (short tab)
──────────────────────────────────────────── */
.order-buy  { color: var(--orange); font-weight: 700; }
.order-sell { color: #B4B4C4; font-weight: 700; }
.order-none { color: #5C5C70; }
.price-up { color: var(--up); font-size: 11px; }
.price-dn { color: var(--dn); font-size: 11px; }

/* ────────────────────────────────────────────
   AI CONFERENCE  (short tab)
──────────────────────────────────────────── */
/* conf-list: sec-group-gray 안에 포함, 배경/마진 제거 */
.conf-list {
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.conf-list:empty { display: none; }

.conf-item { display: flex; flex-direction: column; }

.conf-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

/* 결정별 컬러 헤더 바 */
.conf-card-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.conf-hd-hold { background: #D6D6DE33f; }
.conf-hd-buy  { background: #5B9DFF; }
.conf-hd-sell { background: #FF4D5E; }

.conf-table { width: 100%; border-collapse: collapse; }
.conf-table thead tr { border-bottom: 1px solid var(--border); }
.conf-table thead th { color: var(--gray); font-size: 12px; font-weight: 500; padding: 8px 12px; text-align: left; }
.conf-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.conf-table tbody tr:last-child { border-bottom: none; }
.conf-table td { padding: 10px 12px; }

.conf-time    { font-size: 12px; white-space: nowrap; color: var(--gray); }
.conf-field   { font-weight: 600; white-space: nowrap; min-width: 90px; font-size: 13px; }
.conf-opinion { font-size: 13px; line-height: 1.6; color: #C4C4D0; }
.conf-score   { text-align: right; white-space: nowrap; font-size: 13px; font-weight: 600; }
.conf-th-r    { text-align: right !important; }
.conf-type    { text-align: right; font-weight: 700; white-space: nowrap; font-size: 13px; }
.conf-vote-hold { color: var(--gray); }

/* ── DEBATE BADGE ── */
.debate-yes { color: #FAFAFA; font-weight: 700; }
.debate-no  { color: #5C5C70;       font-weight: 600; }

/* ────────────────────────────────────────────
   ANALYSIS HEADER  (long tab)
──────────────────────────────────────────── */
.analysis-hd {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0 0;
}
.analysis-hd .sec-h { margin-bottom: 0; }
.analysis-date {
  font-family: var(--font);
  font-size: 14px; font-weight: 600; color: var(--text);
  cursor: pointer; user-select: none;
}
.analysis-date:hover { color: rgba(255,255,255,0.7); }

/* 날짜 드롭다운 래퍼 */
.lt-date-wrap {
  position: relative;
  display: flex; align-items: center;
}

/* 날짜 드롭다운 */
.lt-date-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  min-width: 180px; z-index: 200; overflow: hidden;
}
.lt-date-dropdown.open { display: block; }
.lt-date-item {
  padding: 10px 16px; font-size: 13px; color: #D6D6DE;
  cursor: pointer; font-family: var(--font);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lt-date-item:last-child { border-bottom: none; }
.lt-date-item:hover { background: rgba(255,255,255,0.08); color: #FAFAFA; }
.lt-date-item.selected { font-weight: 700; color: #FAFAFA; }

/* ────────────────────────────────────────────
   PROCESS UI  (long tab)
──────────────────────────────────────────── */

/* ── 헤더 카드 (좌=피치 / 우=흰색 분리 배경) ── */
.prc-card {
  display: flex; align-items: center;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  margin-bottom: 14px;
  min-height: 130px;
  padding: 16px 24px;
  gap: 24px;
  box-sizing: border-box;
}
/* 내부 FFEFE0 프레임 */
.prc-next-frame {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 28px;
  flex: 1; min-width: 0;
}
/* left/right 래퍼 유지 (JS 참조 없음 → 단순 컨테이너) */
.prc-card-left { flex: 1; min-width: 0; display: flex; }
.prc-card-right {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 360px;
  padding: 0 8px;
}
.prc-clock-box {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--surface); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}
.prc-next-lbl {
  font-family: var(--font); font-size: 13px;
  color: rgba(255,255,255,0.7); font-weight: 600; margin-bottom: 6px;
}
.prc-next-row { display: flex; align-items: baseline; gap: 14px; }
.prc-next-time {
  font-family: var(--font); font-size: 42px;
  font-weight: 500; letter-spacing: -0.04em; color: #FAFAFA; line-height: 1;
}
.prc-next-name {
  font-size: 30px; font-weight: 500; letter-spacing: -0.03em; color: var(--text); line-height: 1;
}
.prc-stats { display: flex; gap: 0; align-items: center; }
.prc-stat {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 0 40px;
}
.prc-stat + .prc-stat { border-left: 1px solid var(--border); }
.prc-ic-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
}
.prc-stat-lbl { font-size: 13px; color: var(--gray); white-space: nowrap; }
.prc-stat-val { font-family: var(--font); font-size: 28px; font-weight: 700; color: var(--text); line-height: 1; }

/* ── 리스트 컨테이너 (외부 카드 없음, 위치 기준만) ── */
.prc-list-card {
  position: relative;
  padding-left: 16px; /* 도트 영역 좌측 여백 */
}
/* 세로 연결선: 첫 번째 dot 중앙 → 마지막 dot 중앙 */
.prc-list-card::before {
  content: '';
  position: absolute;
  left: calc(16px + 18px); /* padding-left + 36px dot 반지름 */
  top: 30px;  /* 첫 행 높이 / 2 */
  bottom: 30px;
  width: 1.5px;
  background: rgba(255,255,255,0.14);
  pointer-events: none;
}

/* ── 행 ── */
.prc-list { display: flex; flex-direction: column; gap: 10px; }
.prc-row {
  display: flex; align-items: center;
  padding: 0; gap: 48px; /* 리플 max scale(3.2) 기준 ~40px 확장 + 여유 */
  border-bottom: none;
}
.prc-row:first-child { padding-top: 0; }
.prc-row:last-child  { padding-bottom: 0; }

/* 개별 카드 (각 항목마다 독립 프레임) */
.prc-row-body {
  display: flex; align-items: center;
  flex: 1; gap: 20px;
  padding: 16px 22px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.10);
  background: var(--surface);
  box-sizing: border-box;
}
.prc-row.st-next .prc-row-body {
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 2px 10px rgba(255,255,255,0.08);
}

/* ── 텍스트 컬러 ── */
.prc-num  { font-family: var(--font); font-size: 14px; width: 22px; text-align: center; flex-shrink: 0; }
.prc-time { font-family: var(--font); font-size: 14px; width: 54px; flex-shrink: 0; }
.prc-act  { font-size: 15px; flex: 1; }
.prc-row.st-done   .prc-num, .prc-row.st-done   .prc-time, .prc-row.st-done   .prc-act { color: #C4C4D0; }
.prc-row.st-next   .prc-num, .prc-row.st-next   .prc-time, .prc-row.st-next   .prc-act { color: #FAFAFA; font-weight: 700; }
.prc-row.st-future .prc-num, .prc-row.st-future .prc-time, .prc-row.st-future .prc-act { color: #5C5C70; }

/* ── 도트 (z-index:1 → 세로선 위에 표시) ── */
.prc-dot-wrap {
  width: 36px; height: 36px; flex-shrink: 0;
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.prc-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  opacity: 0; pointer-events: none;
}
.prc-dot-inner {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface); border: 2px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: transparent;
  position: relative; z-index: 1;
  transition: background .2s, border-color .2s, color .2s;
}
.prc-dot-wrap.st-done .prc-dot-inner {
  background: var(--text); border-color: var(--text); color: var(--bg);
}
.prc-dot-wrap.st-next .prc-dot-inner {
  background: #FAFAFA; border-color: #FAFAFA;
}
.prc-dot-wrap.st-next .prc-ring { animation: prcRipple 1.8s ease-out infinite; }
.prc-dot-wrap.st-next .r2 { animation-delay: .6s; }
.prc-dot-wrap.st-next .r3 { animation-delay: 1.2s; }
@keyframes prcRipple {
  0%   { transform: scale(1); opacity: .65; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* 카드 내부 padding */
.lt-card-inner { padding: 24px 24px 20px; }

/* ────────────────────────────────────────────
   SUMMARY TABLE  (long tab)
──────────────────────────────────────────── */
#lt-macro-summary table, .box-table {
  width: 100%; border-collapse: collapse;
}
#lt-macro-summary table th, .box-table thead th {
  padding: 12px 16px; font-size: 12px; font-weight: 500;
  color: var(--gray); border-bottom: 1px solid var(--border);
  text-align: left; white-space: nowrap;
}
#lt-macro-summary table td, .box-table tbody td {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  font-size: 13px; vertical-align: top;
}
#lt-macro-summary table tr:last-child td,
.box-table tbody tr:last-child td { border-bottom: none; }
#lt-macro-summary table tr:hover td,
.box-table tbody tr:hover td { background: rgba(255,255,255,0.05); }

.sum-hojai   { color: var(--up); font-weight: 700; white-space: nowrap; }
.sum-akjai   { color: var(--dn);     font-weight: 700; white-space: nowrap; }
.sum-jungrib { color: var(--gray);   white-space: nowrap; }
.sum-topic { display: flex; flex-direction: column; gap: 3px; }
.sum-topic-hd { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4; }
.sum-topic-bd { font-size: 12px; color: var(--gray); line-height: 1.55; }
.sum-rel     { text-align: right !important; color: var(--gray); white-space: nowrap; }

/* 카드 안 제목 */
.lt-sec-title { padding: 22px 24px 0; margin-bottom: 14px; }

/* summary 하단 disclaimer — 카드 안 */
.summary-notes {
  padding: 14px 20px;
  font-size: 12px; color: var(--gray); line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* recommendation 버튼 영역 */
.lt-action-pad { padding: 16px 20px; }

/* ────────────────────────────────────────────
   RECOMMENDATION TABLE  (long tab)
──────────────────────────────────────────── */
.rec-bar { height: 10px; background: #FAFAFA; border-radius: 64px; min-width: 4px; }
.rec-type-buy  { color: #FAFAFA; font-weight: 700; }
.rec-type-hold { color: #7C7C90; }
.rec-type-sell { color: var(--dn); font-weight: 700; }

/* ────────────────────────────────────────────
   LONG TAB BUTTONS
──────────────────────────────────────────── */
.action-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.lt-btn {
  padding: 11px 22px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  border: none; border-radius: 64px;
  background: #FAFAFA; color: #111111;
  cursor: pointer; transition: background .12s;
}
.lt-btn:hover:not(:disabled) { background: #FFFFFF; }
.lt-btn:disabled { opacity: .4; cursor: default; }
.lt-btn-outline {
  background: rgba(255,255,255,0.15); border: none; color: #FAFAFA;
}
.lt-btn-outline:hover:not(:disabled) { background: rgba(255,255,255,0.22); color: #FAFAFA; }
.action-msg { font-size: 13px; color: var(--gray); margin-top: 10px; min-height: 18px; }

/* ────────────────────────────────────────────
   RESPONSIVE — 동적 폰트 + 레이아웃 축소
──────────────────────────────────────────── */

/* 태블릿 / 소형 데스크탑 */
@media (max-width: 900px) {
  :root { --pad: 18px; }
  .sec-h       { font-size: 24px; }
  .gnb-logo    { font-size: 18px; }
  .gnb-nav-btn { font-size: 14px; padding: 0 13px; }
  .balance-card { padding: 20px 20px; }
  .bal-table td { font-size: 13px; padding: 10px 0; }
  .bal-total-row td { font-size: 16px; }
  thead th  { font-size: 10px; }
  tbody td  { font-size: 12px; padding: 9px 8px; }
}

/* 모바일 / 소화면 */
@media (max-width: 600px) {
  :root { --pad: 12px; }
  html, body      { font-size: 12px; }
  .sec-h          { font-size: 20px; }
  .gnb            { height: 62px; padding: 0 12px; }
  .page-wrap      { padding-top: 94px; } /* GNB 62px + 여백 32px */
  .gnb-logo       { font-size: 17px; }
  .gnb-nav        { overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; max-width: 62vw; }
  .gnb-nav::-webkit-scrollbar { display: none; }
  .gnb-nav-btn    { font-size: 13px; padding: 0 11px; height: 34px; flex-shrink: 0; }
  .balance-card   { padding: 16px 14px; border-radius: 12px; }
  .bal-table td   { font-size: 12px; padding: 9px 0; }
  .bal-total-row td { font-size: 14px; }
  .pin-box        { padding: 20px 18px; min-width: 0; width: 90%; }
  .pin-label      { font-size: 12px; }
  .pin-input      { width: 110px; }
  .sec-hd         { flex-wrap: wrap; gap: 6px; }
  .bal-sec-hd     { flex-wrap: wrap; gap: 4px; }
  thead th        { font-size: 10px; padding: 6px 6px; }
  tbody td        { font-size: 11px; padding: 8px 6px; }
  .badge-buy, .badge-sell { font-size: 10px; padding: 1px 6px; }
  .memo-toggle    { font-size: 10px; padding: 2px 6px; }
  .process-track  { min-width: 700px; }
  .report-nr-main { font-size: 14px; }
  .report-nr-sub  { font-size: 11px; }
}

/* 극소화면 (320px) */
@media (max-width: 380px) {
  :root { --pad: 10px; }
  html, body   { font-size: 11px; }
  .sec-h       { font-size: 18px; }
  .gnb-logo    { font-size: 16px; }
  .gnb-nav-btn { font-size: 12px; padding: 0 9px; }
  thead th     { font-size: 9px;  padding: 5px 4px; }
  tbody td     { font-size: 10px; padding: 7px 4px; }
}

/* ── LONG 탭 반응형 ── */
@media (max-width: 1280px) {
  .prc-card        { min-height: 120px; }
  .prc-card-right  { width: 340px; padding: 16px 32px; }
  .prc-next-frame  { padding: 16px 22px; gap: 16px; }
  .prc-clock-box   { width: 54px; height: 54px; }
  .prc-next-time   { font-size: 34px; }
  .prc-next-name   { font-size: 24px; }
  .prc-stat-val    { font-size: 24px; }
  .prc-stat-lbl    { font-size: 12px; }
  .prc-ic-wrap     { width: 38px; height: 38px; }
  .prc-stat        { padding: 0 28px; }
}
@media (max-width: 1024px) {
  .prc-card        { min-height: 110px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; }
  .prc-card-right  { width: 100%; padding: 12px 20px; border-left: none; border-top: 1px solid rgba(0,0,0,0.07); }
  .prc-next-frame  { padding: 14px 18px; gap: 14px; }
  .prc-clock-box   { width: 48px; height: 48px; }
  .prc-next-time   { font-size: 28px; }
  .prc-next-name   { font-size: 20px; }
  .prc-next-lbl    { font-size: 11px; }
  .prc-stats       { justify-content: center; }
  .prc-stat-val    { font-size: 22px; }
  .prc-stat        { padding: 0 24px; }
  .prc-num         { font-size: 13px; }
  .prc-time        { font-size: 13px; }
  .prc-act         { font-size: 14px; }
  .prc-row-body    { padding: 13px 18px; }
}
@media (max-width: 768px) {
  .prc-next-time   { font-size: 22px; }
  .prc-next-name   { font-size: 16px; }
  .prc-stat-val    { font-size: 18px; }
  .prc-stat        { padding: 0 16px; }
  .prc-ic-wrap     { width: 32px; height: 32px; }
  .prc-stat-lbl    { font-size: 10px; }
}

/* Electron drag region */
.gnb { -webkit-app-region: drag; }
.gnb-logo, .gnb-nav, .gnb-nav-btn { -webkit-app-region: no-drag; }

/* ════════════════════════════════════════════
   DASHBOARD v2  (.dash- namespace)
════════════════════════════════════════════ */

/* ── 1. 헤더 ── */
.dash-header {
  padding: 28px 0 12px;
}
.dash-brand {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: var(--orange);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.dash-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 400;
}

/* ── 2. 총 자산 카드 ── */
.dash-asset-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 65%), var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 22px 22px 18px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.dash-asset-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dash-asset-label {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 500;
}
.dash-info-icon {
  opacity: 0.7;
  font-size: 13px;
}
.dash-asset-badge {
  background: #FAFAFA;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 64px;
  letter-spacing: 0.02em;
}
.dash-asset-amount {
  color: #FAFAFA;
  font-size: 34px;
  font-weight: 500;
  font-family: var(--font);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.dash-asset-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.dash-asset-today {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.dash-asset-today-label {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.dash-asset-today-val {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}
.dash-asset-today-pct {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
}
.dash-sparkline-main {
  display: block;
  opacity: 0.9;
  flex-shrink: 0;
}

/* ── 3. 통계 3카드 ── */
.dash-stats-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.dash-stat-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: none;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-stat-card--orange { background: var(--surface); border-color: var(--border); }
.dash-stat-card--purple { background: var(--surface); border-color: var(--border); }
.dash-stat-card--green  { background: var(--surface); border-color: var(--border); }

.dash-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  background: transparent;
}
.dash-stat-icon--orange { background: transparent; }
.dash-stat-icon--purple { background: transparent; }
.dash-stat-icon--green  { background: transparent; }

.dash-stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 400;
}
.dash-stat-value {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-stat-value--orange { color: var(--orange); }
.dash-stat-value--purple { color: var(--purple); }
.dash-stat-value--green  { color: var(--up); }

.dash-stat-period { font-size: 12px; color: var(--gray); }

/* legacy — kept for compat */
.dash-stat-meta { display: flex; flex-direction: column; gap: 1px; }
.dash-stat-name   { font-size: 12px; color: #B4B4C4; font-weight: 500; }

/* ── 4. 시장 현황 ── */
.dash-market-section {
  margin-bottom: 14px;
}
.dash-market-outer-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 20px;
}
.dash-section-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dash-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.dash-section-time {
  font-size: 12px;
  color: var(--gray);
}
.dash-market-row {
  display: flex;
  gap: 10px;
}
.dash-market-card {
  flex: 1;
  border-radius: 12px;
  padding: 16px 16px 12px;
}
.dash-market-card--orange { background: rgba(255,255,255,0.05); border: 1px solid var(--border); }
.dash-market-card--blue   { background: rgba(255,255,255,0.05); border: 1px solid var(--border); }
.dash-market-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.dash-market-label--orange { color: rgba(255,255,255,0.8); }
.dash-market-label--blue   { color: rgba(255,255,255,0.8); }
.dash-market-index {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.dash-market-change {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray);
}
.dash-market-change.up  { color: var(--up); }
.dash-market-change.dn  { color: var(--dn); }
.dash-spark-mini { display: block; }

/* ── 5. AI 시스템 상태 ── */
.dash-ai-status {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 20px 16px;
  margin-bottom: 14px;
}
.dash-ai-status .dash-section-hd {
  margin-bottom: 16px;
}
.dash-ai-grid {
  display: flex;
  gap: 0;
  justify-content: space-around;
}
.dash-ai-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 4px;
}
.dash-ai-item + .dash-ai-item {
  border-left: 1px solid var(--border);
}
.dash-ai-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash-ai-ok  { background: rgba(16,185,129,0.12); }
.dash-ai-err { background: rgba(220,38,38,0.12); }

/* legacy compat */
.dash-ai-labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.dash-ai-name {
  font-size: 12px;
  color: #B4B4C4;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}
.dash-ai-status-text {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.dash-ai-ok-text  { color: var(--up); }
.dash-ai-err-text { color: var(--dn); }

/* ── 6. AI 요약 ── */
.dash-summary {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 16px;
  margin-bottom: 28px;
}
.dash-summary .dash-section-hd {
  margin-bottom: 12px;
}
.dash-summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dash-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dash-dot--1 { background: #FAFAFA; }
.dash-dot--2 { background: rgba(255,255,255,0.6); }
.dash-dot--3 { background: rgba(255,255,255,0.35); }
.dash-summary-text {
  font-size: 13px;
  color: #D6D6DE;
  line-height: 1.65;
}

/* ── 반응형 ── */
@media (max-width: 600px) {
  .dash-brand            { font-size: 22px; }
  .dash-asset-amount     { font-size: 22px; }
  .dash-stat-value       { font-size: 14px; }
  .dash-stat-label       { font-size: 11px; }
  .dash-market-index     { font-size: 18px; }
  .dash-ai-name          { font-size: 10px; }
  .dash-ai-status-text   { font-size: 10px; }
  .dash-ai-icon          { width: 36px; height: 36px; }
  .dash-stat-card        { padding: 12px 10px; }
  .dash-stats-row        { gap: 8px; }
  .dash-market-row       { gap: 8px; }
  .dash-market-outer-card { padding: 14px; }
}

/* ────────────────────────────────────────────
   ANIMATIONS — 고급 인터랙션
──────────────────────────────────────────── */

/* 탭 패널 전환 페이드+슬라이드 */
.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}
.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.28s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 카드 호버 리프트 */
.balance-card,
.pg-card,
.prc-list-card,
.report-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.balance-card:hover,
.pg-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.11);
}

/* prc 개별 카드 호버 */
.prc-row-body {
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.prc-row:not(.st-next) .prc-row-body:hover {
  transform: translateX(3px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

/* 넥스트 스케쥴 프레임 숨쉬기 효과 */
.prc-next-frame {
  animation: subtlePulse 4s ease-in-out infinite;
}
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50%       { box-shadow: 0 0 0 6px rgba(255,255,255,0.05); }
}


/* 테이블 행 호버 */
.learn-row, tbody tr {
  transition: background 0.12s ease;
}

/* 스크롤 페이드인 (Intersection Observer로 .reveal 클래스 부여) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   SHORTTERM NEW DESIGN  (.st- prefix)
════════════════════════════════════════════ */

/* 단타 성과 카드 — 오렌지 */
.st-perf-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03) 65%), var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 20px 20px 18px;
  margin: 18px 0 12px;
}
.st-perf-title {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.st-perf-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.st-perf-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.st-perf-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
  margin: 0 4px;
}
.st-perf-label {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}
.st-perf-value {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font);
  white-space: nowrap;
}

/* 공통 흰 카드 */
.st-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 18px 18px 14px;
  margin-bottom: 12px;
}
.st-card-hd {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.st-card-hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.st-card-hd-row .st-card-hd { margin-bottom: 0; }
.st-trade-count { font-size: 12px; color: var(--gray); }
.st-trade-pnl   { font-size: 11px; font-weight: 600; }
.st-trade-pnl.pnl-flat { color: var(--gray); font-weight: 400; }
#st-trades-list .lt-trade-row:last-child { border-bottom: none; }

/* 후보 헤더 행 */
.st-cand-header-row {
  display: flex;
  align-items: center;
  padding: 0 6px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}
.st-cand-h-blank { flex: 1; }
.st-cand-h-badge { width: 52px; text-align: center; }
.st-cand-h-conf  { width: 52px; text-align: center; }
.st-cand-h-price { width: 130px; text-align: right; }

/* 후보 행 */
.st-cand-row {
  display: flex;
  align-items: center;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 10px;
}
.st-cand-row:last-child { border-bottom: none; }
.st-cand-rank {
  width: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #5C5C70;
  flex-shrink: 0;
  text-align: center;
}
.st-cand-logo-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  position: relative;
}
.st-cand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.st-cand-logo-fallback {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #26272B;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0; left: 0;
}
.st-cand-info {
  flex: 1;
  min-width: 0;
}
.st-cand-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.st-cand-ticker {
  font-size: 11px;
  color: var(--gray);
}

/* 심위 배지 */
.st-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}
.st-badge-buy  { background: rgba(65,142,242,0.16); color: #5B9DFF; }
.st-badge-sell { background: rgba(245,69,92,0.16); color: var(--dn); }
.st-badge-hold { background: rgba(255,255,255,0.08); color: var(--gray); }

.st-cand-conf {
  width: 52px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #B4B4C4;
  flex-shrink: 0;
}
.st-cand-price {
  width: 130px;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.st-cand-price-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.st-pct-up { color: var(--up); font-size: 11px; font-weight: 600; }
.st-pct-dn { color: var(--dn); font-size: 11px; font-weight: 600; }
.st-cand-empty { padding: 20px; text-align: center; color: #5C5C70; font-size: 13px; }

/* KOSPI 차트 */
.st-kospi-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.st-kospi-val-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-kospi-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font);
}
.st-kospi-chg {
  font-size: 13px;
  font-weight: 600;
}
.st-kospi-canvas {
  width: 100%;
  height: 100px;
  display: block;
}

/* ════════════════════════════════════════════
   LONGTERM NEW DESIGN  (.lt- prefix for new)
════════════════════════════════════════════ */

/* 장기 포트폴리오 카드 */
.lt-port-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 18px 18px 16px;
  margin: 18px 0 12px;
}
.lt-port-hd {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.lt-port-body {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lt-port-left {
  flex: 1;
  min-width: 0;
}
.lt-port-meta-label {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 2px;
}
.lt-port-meta-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-ret-val { color: #FAFAFA; }
.lt-port-donut-wrap {
  flex-shrink: 0;
}
.lt-donut-svg {
  display: block;
}
.lt-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 90px;
}
.lt-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lt-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lt-legend-label {
  font-size: 12px;
  color: #B4B4C4;
}

/* 보유 종목 TOP5 카드 */
.lt-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 18px 18px 14px;
  margin-bottom: 12px;
}
.lt-card-hd {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.lt-card-hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.lt-hold-cols {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}
.lt-hold-row {
  display: flex;
  align-items: center;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 10px;
}
.lt-hold-row:last-child { border-bottom: none; }
.lt-hold-rank {
  width: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #5C5C70;
  flex-shrink: 0;
  text-align: center;
}
.lt-cand-logo-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  position: relative;
}
.lt-cand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.lt-cand-logo-fallback {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5B9DFF;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0; left: 0;
}
.lt-hold-info {
  flex: 1;
  min-width: 0;
}
.lt-hold-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-hold-ticker {
  font-size: 11px;
  color: var(--gray);
}
.lt-hold-weight {
  width: 52px;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: #B4B4C4;
  flex-shrink: 0;
}
.lt-hold-spark {
  display: block;
  flex-shrink: 0;
}
.lt-hold-empty { padding: 20px; text-align: center; color: #5C5C70; font-size: 13px; }

/* AI 장기 의견 카드 */
.lt-opinion-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 16px;
  margin-bottom: 12px;
}
.lt-opinion-hd {
  font-size: 15px;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 12px;
}
.lt-opinion-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lt-opinion-p {
  font-size: 14px;
  color: #C4C4D0;
  line-height: 1.7;
}

/* ── 장타 거래 내역 ── */
.lt-trade-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
}
.lt-trade-row:last-child { border-bottom: none; }
.lt-trade-info { flex: 1; min-width: 0; }
.lt-trade-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.lt-trade-buy  { background: rgba(65,142,242,0.16); color: #5B9DFF; }
.lt-trade-sell { background: rgba(245,69,92,0.16); color: var(--dn); }
.lt-trade-nums {
  text-align: right;
  min-width: 110px;
}
.lt-trade-qty    { font-size: 11px; color: var(--gray); }
.lt-trade-price  { font-size: 12px; font-weight: 600; }
.lt-trade-amount { font-size: 11px; color: var(--gray); }
.lt-trade-count  { font-size: 12px; color: var(--gray); }

/* ════════════════════════════════════════════
   TAB COLOR IDENTITY — GNB underline + active tint
   short=orange · long=purple · us=cyan · insight=mint
════════════════════════════════════════════ */
/* MONO AI — 탭 컬러 아이덴티티 제거, 모노크롬 pill 상태만 사용 */
.gnb-nav-btn { position: relative; }
.gnb-nav-btn::after { display: none; }

/* ════════════════════════════════════════════
   HOVER MICRO-INTERACTIONS — cards lift on hover
════════════════════════════════════════════ */
.balance-card, .dash-stat-card, .dash-market-outer-card, .dash-ai-status, .dash-summary,
.st-card, .lt-card, .lt-port-card, .lt-opinion-card, .conf-card, .prc-row-body,
.ov-card, .ov-stat-tile, .ov-hero, .ins-card {
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.balance-card:hover, .dash-stat-card:hover, .st-card:hover, .lt-card:hover,
.ov-card:hover, .ov-stat-tile:hover, .ins-card:hover, .conf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}

/* ════════════════════════════════════════════
   US TAB — 해외 스윙  (.ov- namespace, cyan)
════════════════════════════════════════════ */
.ov-hero {
  background: linear-gradient(155deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 60%), var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 22px 22px 18px;
  margin-bottom: 14px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.ov-hero-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ov-hero-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.02em; }
.ov-hero-badge {
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.06); color: var(--gray);
}
.ov-hero-badge.is-open   { background: rgba(34,211,238,0.16); color: var(--cyan); }
.ov-hero-badge.is-closed { background: rgba(255,255,255,0.06); color: var(--gray); }
.ov-hero-body { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.ov-hero-date-lbl, .ov-hero-session-lbl { display: block; font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.ov-hero-date { font-size: 26px; font-weight: 800; color: var(--text); font-family: var(--font); }
.ov-hero-session-val { font-size: 16px; font-weight: 700; color: var(--text); font-family: var(--font); }
.ov-hero-flags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.ov-flag {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--gray);
}
.ov-flag.is-on { background: rgba(34,211,238,0.14); border-color: rgba(34,211,238,0.3); color: var(--cyan); }

.ov-stats-row { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.ov-stat-tile {
  flex: 1; min-width: 120px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 14px 14px;
}
.ov-stat-label { font-size: 12px; color: var(--gray); margin-bottom: 6px; }
.ov-stat-value { font-size: 20px; font-weight: 800; color: var(--text); font-family: var(--font); }
.ov-stat-value--cyan { color: var(--cyan); }

.ov-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px 20px 8px; margin-bottom: 14px; }
.ov-card-hd { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 14px; display: block; }
.ov-card-hd-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ov-card-hd-row .ov-card-hd { margin-bottom: 0; }
.ov-pos-count, .ov-trade-count { font-size: 12px; color: var(--gray); }
.ov-empty { text-align: center; color: var(--gray); font-size: 13px; padding: 24px 0; }

.ov-universe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; padding-bottom: 12px; }
.ov-uni-item {
  border: 1px solid var(--border); border-radius: 10px; padding: 12px 12px 10px;
  background: rgba(255,255,255,0.02);
  transition: border-color .15s;
}
.ov-uni-item:hover { border-color: rgba(34,211,238,0.35); }
.ov-uni-item.is-held { border-color: rgba(34,211,238,0.4); background: rgba(34,211,238,0.06); }
.ov-uni-symbol { font-size: 13px; font-weight: 700; color: var(--text); }
.ov-uni-name { font-size: 11px; color: var(--gray); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ov-uni-meta { font-size: 10px; color: var(--gray); margin-top: 6px; display: flex; justify-content: space-between; }
.ov-uni-held-badge {
  display: inline-block; margin-top: 8px; font-size: 10px; font-weight: 700;
  color: var(--cyan); background: rgba(34,211,238,0.14); padding: 2px 7px; border-radius: 10px;
}

.ov-pos-row, .ov-decision-row, .ov-trade-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border);
}
.ov-pos-row:last-child, .ov-decision-row:last-child, .ov-trade-row:last-child { border-bottom: none; }
.ov-pos-symbol, .ov-decision-symbol, .ov-trade-symbol { font-weight: 700; font-size: 13px; color: var(--text); min-width: 64px; }
.ov-pos-name, .ov-decision-name, .ov-trade-name { font-size: 12px; color: var(--gray); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ov-pos-nums, .ov-trade-nums { text-align: right; font-size: 12px; color: var(--text); white-space: nowrap; }
.ov-pos-sub { font-size: 11px; color: var(--gray); }

.ov-decisions-list { display: flex; flex-direction: column; gap: 10px; padding-bottom: 12px; }
.ov-decision-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px;
  background: rgba(255,255,255,0.02);
}
.ov-decision-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.ov-decision-action { font-size: 12px; font-weight: 700; padding: 2px 9px; border-radius: 20px; }
.ov-decision-action.buy  { background: rgba(34,211,238,0.16); color: var(--cyan); }
.ov-decision-action.sell { background: rgba(245,69,92,0.16); color: var(--dn); }
.ov-decision-action.hold { background: rgba(255,255,255,0.06); color: var(--gray); }
.ov-decision-score { font-size: 12px; color: var(--gray); font-weight: 600; }
.ov-decision-reason { font-size: 12.5px; color: var(--gray); line-height: 1.6; }
.ov-decision-risk { font-size: 11.5px; color: var(--dn); margin-top: 4px; }

.ov-trade-side { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; flex-shrink: 0; }
.ov-trade-side.buy  { background: rgba(34,211,238,0.16); color: var(--cyan); }
.ov-trade-side.sell { background: rgba(245,69,92,0.16); color: var(--dn); }
.ov-trade-pnl.pos { color: var(--up); }
.ov-trade-pnl.neg { color: var(--dn); }

/* ════════════════════════════════════════════
   INSIGHT TAB — AI 관측성  (.ins- namespace, mint)
════════════════════════════════════════════ */
.ins-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px 20px 12px; margin-bottom: 14px; }
.ins-card-hd { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 14px; display: block; }
.ins-card-hd-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.ins-card-hd-row .ins-card-hd { margin-bottom: 0; }
.ins-activity-date { font-size: 12px; color: var(--gray); }
.ins-empty { text-align: center; color: var(--gray); font-size: 13px; padding: 24px 0; }

.ins-activity-grid { display: flex; gap: 20px; flex-wrap: wrap; padding-bottom: 12px; }
.ins-activity-group { flex: 1; min-width: 220px; }
.ins-activity-group-lbl { font-size: 12px; color: var(--gray); font-weight: 600; margin-bottom: 8px; }
.ins-activity-tiles { display: flex; gap: 8px; flex-wrap: wrap; }
.ins-tile {
  flex: 1; min-width: 64px; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 6px 10px;
}
.ins-tile-num { display: block; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; color: #FAFAFA; font-family: var(--font); }
.ins-tile-lbl { display: block; font-size: 11px; color: var(--gray); margin-top: 2px; }

.ins-pipeline-list { display: flex; flex-direction: column; gap: 8px; padding-bottom: 12px; }
.ins-pipeline-row {
  border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px;
  cursor: pointer; background: rgba(255,255,255,0.02); transition: border-color .15s;
}
.ins-pipeline-row:hover { border-color: rgba(52,228,166,0.3); }
.ins-pipeline-row.is-open { border-color: rgba(52,228,166,0.4); background: rgba(52,228,166,0.05); }
.ins-pipeline-hd { display: flex; align-items: center; gap: 10px; }
.ins-pipeline-symbol { font-weight: 700; font-size: 13px; color: var(--text); min-width: 60px; }
.ins-pipeline-name { font-size: 12px; color: var(--gray); flex: 1; }
.ins-pipeline-action { font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 20px; }
.ins-pipeline-action.buy  { background: rgba(34,211,238,0.16); color: var(--cyan); }
.ins-pipeline-action.sell { background: rgba(245,69,92,0.16); color: var(--dn); }
.ins-pipeline-action.hold { background: rgba(255,255,255,0.06); color: var(--gray); }
.ins-pipeline-score { font-size: 12px; color: var(--gray); font-weight: 600; width: 44px; text-align: right; }
.ins-pipeline-caret { font-size: 11px; color: var(--gray); transition: transform .18s var(--ease); }
.ins-pipeline-row.is-open .ins-pipeline-caret { transform: rotate(90deg); }

.ins-pipeline-detail { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.ins-flow { display: flex; align-items: stretch; gap: 6px; flex-wrap: wrap; }
.ins-flow-step { flex: 1; min-width: 130px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ins-flow-arrow { align-self: center; color: var(--gray); font-size: 16px; flex-shrink: 0; }
.ins-flow-box {
  width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px;
  background: rgba(255,255,255,0.02); text-align: center;
}
.ins-flow-box-title { font-size: 11px; color: var(--gray); margin-bottom: 4px; }
.ins-flow-box-body { font-size: 12.5px; color: var(--text); font-weight: 600; }
.ins-committee { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; margin-top: 6px; }
.ins-committee-card { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; background: rgba(255,255,255,0.02); }
.ins-committee-role { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ins-committee-vote { font-size: 11px; font-weight: 700; padding: 1px 8px; border-radius: 20px; display: inline-block; margin-bottom: 6px; }
.ins-committee-vote.buy  { background: rgba(34,211,238,0.16); color: var(--cyan); }
.ins-committee-vote.sell { background: rgba(245,69,92,0.16); color: var(--dn); }
.ins-committee-vote.hold { background: rgba(255,255,255,0.06); color: var(--gray); }
.ins-committee-reason { font-size: 11.5px; color: var(--gray); line-height: 1.6; }

.ins-review-summary { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.ins-review-stat { flex: 1; min-width: 100px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; text-align: center; }
.ins-review-stat-num { font-size: 18px; font-weight: 800; color: var(--mint); display: block; font-family: var(--font); }
.ins-review-stat-lbl { font-size: 11px; color: var(--gray); }
.ins-review-row { border-bottom: 1px solid var(--border); padding: 12px 0; }
.ins-review-row:last-child { border-bottom: none; }
.ins-review-row-hd { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ins-review-symbol { font-weight: 700; font-size: 13px; color: var(--text); }
.ins-review-result { font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 20px; }
.ins-review-result.win  { background: rgba(34,197,94,0.16); color: var(--up); }
.ins-review-result.loss { background: rgba(245,69,92,0.16); color: var(--dn); }
.ins-review-label { font-size: 11px; color: var(--mint); background: rgba(52,228,166,0.12); padding: 2px 8px; border-radius: 8px; }
.ins-review-sub { font-size: 11px; color: var(--gray); }

.ins-weekend-box { margin-top: 14px; padding: 16px; border-radius: 12px; background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.18); }
.ins-weekend-title { font-size: 13px; font-weight: 700; color: var(--purple); margin-bottom: 8px; }
.ins-weekend-body { font-size: 12.5px; color: var(--text); line-height: 1.7; white-space: pre-wrap; }
.ins-weekend-skip { font-size: 12.5px; color: var(--gray); font-style: italic; }
.ins-weekend-warn { margin-top: 8px; font-size: 12px; color: var(--dn); }

.ins-logs-list { display: flex; flex-direction: column; gap: 4px; padding-bottom: 12px; }
.ins-log-row { display: flex; gap: 10px; padding: 7px 10px; border-radius: 6px; font-size: 12px; align-items: baseline; }
.ins-log-row:hover { background: rgba(255,255,255,0.03); }
.ins-log-time { color: var(--gray); flex-shrink: 0; white-space: nowrap; font-family: var(--font); }
.ins-log-level { flex-shrink: 0; font-weight: 700; width: auto; min-width: 72px; white-space: nowrap; }
.ins-log-level.info  { color: var(--gray); }
.ins-log-level.warn  { color: var(--orange); }
.ins-log-level.error { color: var(--dn); }
.ins-log-source { color: var(--gray); flex-shrink: 0; }
.ins-log-msg { color: var(--text); overflow-wrap: anywhere; }
.ins-log-row.is-warn  { background: rgba(255,138,46,0.06); }
.ins-log-row.is-error { background: rgba(245,69,92,0.08); }

/* ════════════════════════════════════════════
   GSAP MOTION HOOKS
   motion.js drives .reveal via GSAP; count-up targets use [data-countup]
════════════════════════════════════════════ */
.reveal { will-change: transform, opacity; }
[data-countup] { font-variant-numeric: tabular-nums; }

/* ════════════════════════════════════════════
   RESPONSIVE — US / INSIGHT TABS
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ov-stats-row { flex-direction: column; }
  .ov-hero-body { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ov-universe-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .ins-activity-grid { flex-direction: column; gap: 14px; }
  .ins-flow { flex-direction: column; }
  .ins-flow-arrow { transform: rotate(90deg); }
  .ins-committee { grid-template-columns: 1fr; }
  .ins-review-summary { flex-direction: column; }
}
@media (max-width: 600px) {
  .ov-stat-value { font-size: 17px; }
  .ins-tile-num { font-size: 18px; }
}

/* ════════════════════════════════════════════
   LIQUID GLASS OVERRIDE — 1440 컨테이너 + 글래스 패널
   (배경 비디오가 비치도록 카드 반투명 + backdrop blur)
════════════════════════════════════════════ */

/* 콘텐츠 최대폭 1440, 좌우 여백 자동 */
.tab-panel {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}


/* 카드 안 불투명 배경 제거 */
thead th { background: transparent; }
.sec-group-gray { background: rgba(255,255,255,0.03); }
.review-body { background: rgba(0,0,0,0.25); }
.review-header { background: rgba(255,255,255,0.08); }
.prc-clock-box { background: rgba(255,255,255,0.10); box-shadow: none; }

/* 떠 있는 레이어는 진한 글래스 (가독성) */
.lt-date-dropdown {
  background: rgba(10,10,12,0.85);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.15), 0 12px 40px rgba(0,0,0,0.5);
}

/* 셀렉트(드롭박스) — 글래스 pill 컨트롤 + 다크 옵션 목록 */
.date-sel, .date-sel--black {
  padding: 6px 26px 6px 14px;
  border-radius: 64px;
  background-color: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.15);
  background-position: right 10px center;
  color: #FAFAFA;
}
/* 네이티브 옵션 목록: 흰 배경에 흰 글씨가 되지 않도록 다크 글래스 톤 강제 */
select option {
  background-color: #0D0D10;
  color: #FAFAFA;
}

/* ── GNB 로고 — 스크롤 전 2단(WHO/CARES?), 스크롤 후 1단 ──
   스크롤 진행도 --gnbp(0~1)를 JS가 lerp로 부드럽게 갱신 → 높이/로고가 스크롤을 따라 자연스럽게 변형 */
.gnb {
  height: calc(112px - 40px * var(--gnbp, 0));
}

.gnb-logo {
  display: block;
  cursor: pointer;
  user-select: none;
  -webkit-app-region: no-drag;
}
.logo-l1, .logo-l2 {
  display: block;
  width: fit-content;
  font-family: var(--font-logo);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.08;
  will-change: transform;
}
/* 진행도에 비례: WHO는 반 줄 내려오고 CARES?는 반 줄 올라가 옆에 붙는다 */
.logo-l1 { transform: translateY(calc(50% * var(--gnbp, 0))); }
.logo-l2 { transform: translate(calc(var(--l1w, 66px) * var(--gnbp, 0)), calc(-50% * var(--gnbp, 0))); }

/* 탭 메뉴 — GNB 정중앙 배치 */
.gnb-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 600px) {
  .logo-l1, .logo-l2 { font-size: 18px; }
  .gnb { height: calc(92px - 30px * var(--gnbp, 0)); }
  .page-wrap { padding-top: 124px; }
  .gnb-nav { position: static; transform: none; margin-left: auto; }
}

/* 리퀴드 글래스 타이포 — 잘 보여야 하는 핵심 텍스트 */
.dash-asset-amount, .sec-h, .st-perf-value, .ov-hero-date,
.prc-next-time, .dash-market-index, .ins-tile-num, .lt-port-meta-val {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ════════════════════════════════════════════
   READABILITY SCALE-UP — 전체 폰트 크기 확대
════════════════════════════════════════════ */
html, body { font-size: 21px; }

.gnb-nav-btn { font-size: 22px; }
.logo-l1, .logo-l2 { font-size: 29px; }

thead th { font-size: 18px; }
tbody td { font-size: 20px; }

.sec-h { font-size: 39px; }
.sub-h { font-size: 25px; }

.dash-section-title, .st-card-hd, .lt-card-hd, .lt-port-hd,
.ov-card-hd, .ins-card-hd, .lt-opinion-hd, .st-perf-title { font-size: 24px; }

.dash-asset-label { font-size: 21px; }
.dash-asset-amount { font-size: 49px; }
.dash-asset-today-label, .dash-asset-today-val { font-size: 20px; }
.dash-asset-badge { font-size: 18px; }
.dash-stat-label { font-size: 20px; }
.dash-stat-value { font-size: 30px; }
.dash-stat-period, .dash-section-time { font-size: 19px; }
.dash-market-index { font-size: 35px; }
.dash-market-change { font-size: 20px; }
.dash-market-label { font-size: 20px; }
.dash-ai-name, .dash-ai-status-text { font-size: 19px; }
.dash-summary-text { font-size: 20px; }

.ins-tile-num { font-size: 35px; }
.ins-tile-lbl { font-size: 18px; }
.ins-activity-group-lbl, .ins-activity-date { font-size: 19px; }
.ins-pipeline-symbol, .ins-review-symbol { font-size: 20px; }
.ins-pipeline-name, .ins-committee-reason, .ins-flow-box-body { font-size: 19.5px; }
.ins-log-row { font-size: 19px; }

.st-perf-value { font-size: 29px; }
.st-perf-label { font-size: 19px; }
.st-cand-name, .lt-hold-name { font-size: 20px; }
.st-cand-ticker, .lt-hold-ticker { font-size: 18px; }
.st-cand-conf, .st-cand-price-val, .lt-hold-weight { font-size: 20px; }
.st-badge { font-size: 17px; }
.st-kospi-val { font-size: 25px; }
.st-kospi-chg { font-size: 20px; }

.lt-port-meta-val { font-size: 29px; }
.lt-port-meta-label { font-size: 19px; }
.lt-opinion-p { font-size: 21px; }
.lt-trade-price { font-size: 19px; }
.lt-trade-qty, .lt-trade-amount { font-size: 18px; }

.ov-stat-value { font-size: 31px; }
.ov-stat-label { font-size: 19px; }
.ov-hero-date { font-size: 37px; }
.ov-hero-session-val { font-size: 23px; }
.ov-decision-reason { font-size: 19.5px; }
.ov-pos-name, .ov-decision-name, .ov-trade-name { font-size: 19px; }
.ov-uni-symbol { font-size: 19px; }
.ov-uni-name { font-size: 17px; }

.conf-opinion { font-size: 20px; }
.conf-field { font-size: 20px; }
.conf-time { font-size: 18px; }
.prc-act { font-size: 22px; }
.prc-num, .prc-time { font-size: 21px; }
.prc-stat-lbl { font-size: 19px; }
.empty-msg, .empty-cell, .st-cand-empty, .lt-hold-empty, .ov-empty, .ins-empty { font-size: 20px; }
.date-sel, .date-sel--black { font-size: 19px; }
.update-time, .analysis-date { font-size: 20px; }

/* LONG 탭 summary/recommendation 표 */
#lt-macro-summary table th, .box-table thead th { font-size: 18px; }
#lt-macro-summary table td, .box-table tbody td { font-size: 20px; }
.sum-topic-hd { font-size: 20px; }
.sum-topic-bd { font-size: 18px; }
.sum-hojai, .sum-akjai, .sum-jungrib, .sum-rel { font-size: 19px; }
.summary-notes { font-size: 18px; }

@media (max-width: 600px) {
  html, body { font-size: 19px; }
  .dash-asset-amount { font-size: 35px; }
  .dash-stat-value { font-size: 24px; }
  .dash-market-index { font-size: 27px; }
  .sec-h { font-size: 29px; }
}

/* ════════════════════════════════════════════
   FLAT TEXT MODE — 패널 유리/외곽선/프레임 제거 (GNB 제외)
   배경 비디오 위에 텍스트만 노출
════════════════════════════════════════════ */
.balance-card, .dash-asset-card, .dash-stat-card, .dash-market-outer-card,
.dash-ai-status, .dash-summary, .ins-card, .st-card, .st-perf-card,
.lt-card, .lt-port-card, .lt-opinion-card, .ov-card, .ov-stat-tile,
.ov-hero, .prc-card, .conf-card,
.dash-market-card, .ins-tile, .prc-row-body, .prc-next-frame,
.ov-uni-item, .ov-decision-card, .ins-pipeline-row, .ins-flow-box,
.ins-committee-card, .ins-review-stat, .ins-review-stat, .prc-clock-box,
.review-container, .review-body, .sec-group-gray {
  background: transparent;
  border: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* 호버 리프트/섀도도 제거 */
.balance-card:hover, .dash-stat-card:hover, .st-card:hover, .lt-card:hover,
.ov-card:hover, .ov-stat-tile:hover, .ins-card:hover, .conf-card:hover,
.balance-card:hover, .pg-card:hover {
  transform: none;
  box-shadow: none;
}

/* 컨트롤류 — pill/유리 제거, 텍스트만 */
/* GNB 활성/호버 탭 스타일은 하단 잉크 블록에서 처리 (background-clip: text) */

/* 탭 라벨 대문자 + 글자 안에서만 번지는 물감 효과
   (@property로 잉크 반경을 등록해 트랜지션, background-clip: text로 글자 내부에만 표시) */
@property --ink {
  syntax: '<length>';
  inherits: false;
  initial-value: 0px;
}
.gnb-nav-btn {
  text-transform: uppercase;
  background-image:
    radial-gradient(circle var(--ink, 0px) at var(--rx, 50%) var(--ry, 50%),
      #FF8A2E 0%, #FF8A2E 55%, rgba(255,138,46,0) 100%),
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: --ink 3.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.gnb-nav-btn:hover { --ink: 160px; }
.gnb-nav-btn.active {
  background-image:
    radial-gradient(circle var(--ink, 0px) at var(--rx, 50%) var(--ry, 50%),
      #FF8A2E 0%, #FF8A2E 55%, rgba(255,138,46,0) 100%),
    linear-gradient(var(--orange), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ════════════════════════════════════════════
   MOBILE OVERRIDES — 반드시 파일 맨 끝 유지
   (뒤쪽의 데스크탑 확대 블록들이 앞쪽 미디어쿼리를 덮어쓰므로 최종 재정의)
════════════════════════════════════════════ */
@media (max-width: 900px) {
  html, body { font-size: 15px; }
  .gnb-nav-btn { font-size: 16px; padding: 0 12px; }
  .logo-l1, .logo-l2 { font-size: 20px; }
  .sec-h { font-size: 26px; }
  .sub-h { font-size: 18px; }
  .dash-section-title, .st-card-hd, .lt-card-hd, .lt-port-hd,
  .ov-card-hd, .ins-card-hd, .lt-opinion-hd, .st-perf-title { font-size: 18px; }
  .dash-asset-amount { font-size: 36px; }
  .dash-stat-value { font-size: 22px; }
  .dash-market-index { font-size: 26px; }
  thead th { font-size: 13px; }
  tbody td { font-size: 14px; }
  #lt-macro-summary table td, .box-table tbody td { font-size: 14px; }
  #lt-macro-summary table th, .box-table thead th { font-size: 13px; }
}

@media (max-width: 600px) {
  html, body { font-size: 14px; }

  /* GNB */
  .gnb { height: calc(78px - 22px * var(--gnbp, 0)); padding: 0 14px; }
  .page-wrap { padding-top: 102px; }
  .logo-l1, .logo-l2 { font-size: 16px; }
  .gnb-nav { max-width: 58vw; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
  .gnb-nav::-webkit-scrollbar { display: none; }
  .gnb-nav-btn { font-size: 13px; padding: 0 8px; height: 32px; flex-shrink: 0; }

  /* 헤딩/타이틀 */
  .sec-h { font-size: 21px; }
  .sub-h { font-size: 15px; }
  .dash-section-title, .st-card-hd, .lt-card-hd, .lt-port-hd,
  .ov-card-hd, .ins-card-hd, .lt-opinion-hd, .st-perf-title { font-size: 16px; }

  /* 보드 */
  .dash-asset-label { font-size: 14px; }
  .dash-asset-amount { font-size: 27px; }
  .dash-asset-today-label, .dash-asset-today-val { font-size: 13px; }
  .dash-asset-badge { font-size: 12px; }
  .dash-stat-label { font-size: 12px; }
  .dash-stat-value { font-size: 17px; }
  .dash-stat-period, .dash-section-time { font-size: 12px; }
  .dash-market-index { font-size: 20px; }
  .dash-market-change, .dash-market-label { font-size: 12px; }
  .dash-ai-name, .dash-ai-status-text { font-size: 12px; }
  .dash-summary-text { font-size: 13px; }
  .ins-tile-num { font-size: 20px; }
  .ins-tile-lbl { font-size: 11px; }
  .ins-activity-group-lbl, .ins-activity-date { font-size: 12px; }
  .ins-pipeline-symbol, .ins-review-symbol { font-size: 13px; }
  .ins-pipeline-name, .ins-committee-reason, .ins-flow-box-body { font-size: 12.5px; }
  .ins-log-row { font-size: 12px; }

  /* 테이블 */
  thead th { font-size: 11px; padding: 6px 6px; }
  tbody td { font-size: 12px; padding: 8px 6px; }
  #lt-macro-summary table td, .box-table tbody td { font-size: 12px; }
  #lt-macro-summary table th, .box-table thead th { font-size: 11px; }
  .sum-topic-hd { font-size: 13px; }
  .sum-topic-bd, .summary-notes { font-size: 12px; }
  .sum-hojai, .sum-akjai, .sum-jungrib, .sum-rel { font-size: 12px; }

  /* SHORT / LONG / US */
  .st-perf-value { font-size: 17px; }
  .st-perf-label { font-size: 12px; }
  .st-cand-name, .lt-hold-name { font-size: 13px; }
  .st-cand-ticker, .lt-hold-ticker { font-size: 11px; }
  .st-cand-conf, .st-cand-price-val, .lt-hold-weight { font-size: 13px; }
  .st-badge { font-size: 11px; }
  .st-kospi-val { font-size: 15px; }
  .st-kospi-chg { font-size: 12px; }
  .lt-port-meta-val { font-size: 17px; }
  .lt-port-meta-label { font-size: 12px; }
  .lt-opinion-p { font-size: 13px; }
  .lt-trade-price { font-size: 12px; }
  .lt-trade-qty, .lt-trade-amount { font-size: 11px; }
  .ov-stat-value { font-size: 17px; }
  .ov-stat-label { font-size: 12px; }
  .ov-hero-date { font-size: 22px; }
  .ov-hero-session-val { font-size: 14px; }
  .ov-decision-reason { font-size: 12.5px; }
  .ov-pos-name, .ov-decision-name, .ov-trade-name { font-size: 12px; }
  .ov-uni-symbol { font-size: 12px; }
  .ov-uni-name { font-size: 11px; }
  .conf-opinion, .conf-field { font-size: 13px; }
  .conf-time { font-size: 11px; }
  .prc-act { font-size: 13px; }
  .prc-num, .prc-time { font-size: 12px; }
  .prc-next-time { font-size: 22px; }
  .prc-next-name { font-size: 16px; }
  .prc-stat-lbl { font-size: 11px; }
  .prc-stat-val { font-size: 18px; }
  .empty-msg, .empty-cell, .st-cand-empty, .lt-hold-empty, .ov-empty, .ins-empty { font-size: 13px; }
  .date-sel, .date-sel--black { font-size: 12px; }
  .update-time, .analysis-date { font-size: 13px; }

  /* 오늘의 단타 후보 — 고정폭 컬럼 축소 (겹침 방지) */
  .st-cand-row { gap: 6px; padding: 8px 2px; }
  .st-cand-header-row { padding: 0 2px 6px; }
  .st-cand-logo-wrap, .st-cand-logo, .st-cand-logo-fallback { width: 28px; height: 28px; }
  .st-cand-logo-fallback { font-size: 11px; }
  .st-badge, .st-cand-h-badge { width: 44px; padding: 2px 4px; font-size: 10px; }
  .st-cand-conf, .st-cand-h-conf { width: 38px; }
  .st-cand-price, .st-cand-h-price { width: 86px; }

  /* 시스템 로그 — 줄바꿈 허용 (겹침 방지) */
  .ins-log-row { flex-wrap: wrap; gap: 4px 8px; }
  .ins-log-level { min-width: 46px; }
  .ins-log-msg { flex: 1 1 100%; }
}

@media (max-width: 380px) {
  html, body { font-size: 13px; }
  .logo-l1, .logo-l2 { font-size: 14px; }
  .gnb-nav-btn { font-size: 12px; padding: 0 6px; }
  .sec-h { font-size: 18px; }
  .dash-asset-amount { font-size: 23px; }
}

/* ════════════════════════════════════════════
   PAGE MOTION — 전체 페이지 모션 강화
════════════════════════════════════════════ */

/* 최초 로드: GNB 슬라이드다운 */
@keyframes gnbIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.gnb { animation: gnbIn .6s var(--ease) both; }

/* 섹션 진입: 블러가 걷히며 떠오르는 reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* 핵심 숫자: 은은한 글로우 브리딩 */
@keyframes softGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(255,255,255,0); }
  50%      { text-shadow: 0 0 20px rgba(255,255,255,0.35); }
}
.dash-asset-amount, .dash-market-index, .ov-hero-date, .st-perf-value {
  animation: softGlow 4s ease-in-out infinite;
}

/* 리스트 행: 호버 슬라이드 */
.st-cand-row, .lt-hold-row, .lt-trade-row, .ov-pos-row, .ov-trade-row,
.ins-pipeline-row, .prc-row-body, .ins-log-row, .ov-uni-item, .ov-decision-card {
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.st-cand-row:hover, .lt-hold-row:hover, .lt-trade-row:hover, .ov-pos-row:hover,
.ov-trade-row:hover, .ins-pipeline-row:hover, .prc-row-body:hover,
.ins-log-row:hover, .ov-uni-item:hover, .ov-decision-card:hover {
  transform: translateX(6px);
}
.tgl-btn { background: none; padding: 0; border-radius: 0; }
.tgl-btn.active { background: none; color: #FFFFFF; font-weight: 700; }
.date-sel, .date-sel--black {
  background-color: transparent;
  border: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0 18px 0 0;
  border-radius: 0;
}
.dash-asset-badge { background: none; color: #FAFAFA; padding: 0; }
.badge-buy  { background: none; color: var(--up); padding: 0; }
.badge-sell { background: none; color: var(--dn); padding: 0; }
.st-badge-buy, .lt-trade-buy, .ov-decision-action.buy, .ov-trade-side.buy,
.ins-pipeline-action.buy, .ins-committee-vote.buy { background: none; }
.st-badge-sell, .lt-trade-sell, .ov-decision-action.sell, .ov-trade-side.sell,
.ins-pipeline-action.sell, .ins-committee-vote.sell { background: none; }
.st-badge-hold, .ov-decision-action.hold, .ins-pipeline-action.hold,
.ins-committee-vote.hold, .ov-hero-badge, .ov-flag, .ins-review-label,
.ins-review-result, .ov-uni-held-badge, .review-badge { background: none; }

/* 가독성 유지를 위한 예외: PIN 모달 / 날짜 드롭다운은 다크 배경 유지 */
.pin-box {
  background: rgba(10,10,12,0.85);
  border: 1px solid var(--border-strong);
}
.lt-date-dropdown {
  background: rgba(10,10,12,0.9);
  border: 1px solid var(--border);
}
