/* ===========================================================================
   CIN TERMINAL v2 — Design System
   Premium dark theme. Generous whitespace. Bloomberg/Koyfin/TradingView polish.
   =========================================================================== */

:root {
  /* Surfaces */
  --v2-bg:           #0F0F0F;
  --v2-bg-elev-1:    #141414;
  --v2-bg-elev-2:    #1A1A1A;
  --v2-bg-elev-3:    #1F1F1F;
  --v2-bg-hover:     #222222;

  /* Borders */
  --v2-border:        rgba(255, 255, 255, 0.06);
  --v2-border-strong: rgba(255, 255, 255, 0.10);
  --v2-border-bright: rgba(255, 255, 255, 0.18);

  /* Text */
  --v2-text:          rgba(255, 255, 255, 0.95);
  --v2-text-strong:   #FFFFFF;
  --v2-text-muted:    rgba(255, 255, 255, 0.62);
  --v2-text-dim:      rgba(255, 255, 255, 0.42);
  --v2-text-faint:    rgba(255, 255, 255, 0.28);

  /* Signal colors */
  --v2-green:        #22FF88;
  --v2-green-soft:   rgba(34, 255, 136, 0.16);
  --v2-green-glow:   rgba(34, 255, 136, 0.28);
  --v2-green-deep:   #0E8A4E;

  --v2-red:          #FF5C5C;
  --v2-red-soft:     rgba(255, 92, 92, 0.14);

  --v2-amber:        #FFB547;
  --v2-amber-soft:   rgba(255, 181, 71, 0.14);

  --v2-cyan:         #5BD5FF;

  /* Type */
  --v2-font-display: 'Clash Display', 'Space Grotesk', system-ui, sans-serif;
  --v2-font-body:    'Satoshi', system-ui, sans-serif;
  --v2-font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Radii */
  --v2-r-sm: 6px;
  --v2-r-md: 10px;
  --v2-r-lg: 14px;
  --v2-r-xl: 18px;

  /* Spacing */
  --v2-shadow-card:   0 1px 0 rgba(255,255,255,0.03) inset, 0 8px 24px rgba(0,0,0,0.35);
  --v2-shadow-hover:  0 1px 0 rgba(255,255,255,0.05) inset, 0 12px 32px rgba(0,0,0,0.45);

  /* Layout */
  --v2-topbar-h:    52px;
  --v2-ticker-h:    44px;
  --v2-sidebar-w:   220px;
  --v2-sidebar-w-collapsed: 60px;
  --v2-content-max: 1380px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--v2-bg);
  color: var(--v2-text);
  font-family: var(--v2-font-body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* =========================================================================
   1. TOP BAR — Sticky, 52px
   ========================================================================= */
.v2-topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--v2-topbar-h);
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--v2-border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 24px;
}

.v2-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.v2-brand-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--v2-green) 0%, var(--v2-green-deep) 100%);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v2-font-display);
  font-weight: 700;
  color: #061B0E;
  font-size: 14px;
  letter-spacing: -0.02em;
  box-shadow: 0 0 16px rgba(34,255,136,0.25);
}
.v2-brand-name {
  font-family: var(--v2-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--v2-text-strong);
  letter-spacing: -0.01em;
}
.v2-brand-sub {
  font-family: var(--v2-font-mono);
  font-size: 9px;
  color: var(--v2-text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.v2-regions {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--v2-bg-elev-1);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--v2-border);
}
.v2-region-tab {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--v2-text-muted);
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.15s ease, background 0.15s ease;
  border: none;
  background: transparent;
}
.v2-region-tab:hover { color: var(--v2-text); }
.v2-region-tab.is-active {
  color: var(--v2-green);
  background: var(--v2-green-soft);
  box-shadow: 0 0 0 1px rgba(34,255,136,0.18) inset;
}

.v2-topbar-spacer { flex: 1; }

.v2-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Get Today's Brief — the hero CTA */
.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--v2-green);
  color: #051A0D;
  font-family: var(--v2-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 0 0 0 rgba(34,255,136,0.0);
}
.v2-btn-primary:hover {
  background: #3FFF98;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(34,255,136,0.35);
}
.v2-btn-primary svg { width: 14px; height: 14px; }

.v2-icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  color: var(--v2-text-muted);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.v2-icon-btn:hover {
  color: var(--v2-text);
  border-color: var(--v2-border-strong);
  background: var(--v2-bg-elev-1);
}
.v2-icon-btn svg { width: 16px; height: 16px; }

.v2-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F1F1F, #2A2A2A);
  border: 1px solid var(--v2-border-strong);
  color: var(--v2-text-muted);
  font-family: var(--v2-font-display);
  font-weight: 600;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.v2-avatar:hover { border-color: var(--v2-green); color: var(--v2-text); }

/* =========================================================================
   2. SMART TICKER BAR — Marquee + click-to-expand
   ========================================================================= */
.v2-ticker {
  position: sticky;
  top: var(--v2-topbar-h);
  z-index: 80;
  height: var(--v2-ticker-h);
  background: var(--v2-bg-elev-1);
  border-bottom: 1px solid var(--v2-border);
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.15s ease;
}
.v2-ticker:hover { background: var(--v2-bg-elev-2); }

.v2-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 20px;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
  border-right: 1px solid var(--v2-border);
  height: 100%;
}
.v2-ticker-label .v2-live-dot {
  width: 6px; height: 6px;
  background: var(--v2-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--v2-green-glow);
  animation: v2-pulse 2s ease-in-out infinite;
}
@keyframes v2-pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.35; }
}

.v2-ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.v2-ticker-viewport::before,
.v2-ticker-viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.v2-ticker-viewport::before { left: 0;  background: linear-gradient(90deg, var(--v2-bg-elev-1), transparent); }
.v2-ticker-viewport::after  { right: 0; background: linear-gradient(270deg, var(--v2-bg-elev-1), transparent); }

.v2-ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: v2-marquee 90s linear infinite;
  padding-right: 36px;
  white-space: nowrap;
  will-change: transform;
}
.v2-ticker:hover .v2-ticker-track { animation-play-state: paused; }
@keyframes v2-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.v2-ticker-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--v2-font-mono);
  font-size: 12px;
  font-weight: 600;
  padding-right: 10px;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.v2-ticker-pill:last-child { border-right: none; }
.v2-ticker-pill .sym { color: var(--v2-text); letter-spacing: 0.04em; font-weight: 700; }
.v2-ticker-pill .px  { color: var(--v2-text-muted); font-variant-numeric: tabular-nums; }
.v2-ticker-pill .chg { font-weight: 700; font-variant-numeric: tabular-nums; }
.v2-ticker-pill .chg.up   { color: var(--v2-green); }
.v2-ticker-pill .chg.dn   { color: var(--v2-red); }
.v2-ticker-pill .chg.flat { color: var(--v2-text-dim); }

.v2-ticker-expand-hint {
  flex-shrink: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-text-muted);
  border-left: 1px solid var(--v2-border);
  height: 100%;
  cursor: pointer;
  background: linear-gradient(180deg, transparent, rgba(34,255,136,0.02));
  transition: color 0.15s ease, background 0.15s ease;
}
.v2-ticker-expand-hint:hover,
.v2-ticker:hover .v2-ticker-expand-hint { color: var(--v2-green); background: linear-gradient(180deg, transparent, rgba(34,255,136,0.06)); }
.v2-ticker-expand-hint svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.v2-ticker-expand-hint:hover svg { transform: translateX(2px); }

/* Ticker expanded panel */
.v2-ticker-panel {
  position: relative;
  background: var(--v2-bg-elev-1);
  border-bottom: 1px solid var(--v2-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.v2-ticker-panel.is-open { max-height: 560px; }

.v2-ticker-panel-inner {
  padding: 18px 24px 22px;
  max-width: var(--v2-content-max);
  margin: 0 auto;
}

.v2-ticker-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.v2-search {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--v2-bg);
  border: 1px solid var(--v2-border-strong);
  border-radius: 10px;
  transition: border-color 0.15s ease;
}
.v2-search:focus-within { border-color: var(--v2-green); }
.v2-search svg { width: 14px; height: 14px; color: var(--v2-text-dim); flex-shrink: 0; }
.v2-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--v2-text);
  font-family: var(--v2-font-mono);
  font-size: 12px;
}
.v2-search input::placeholder { color: var(--v2-text-faint); }

.v2-chip {
  padding: 7px 13px;
  background: var(--v2-bg);
  border: 1px solid var(--v2-border-strong);
  border-radius: 999px;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--v2-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.v2-chip:hover {
  color: var(--v2-text);
  border-color: var(--v2-border-bright);
}
.v2-chip.is-active {
  color: var(--v2-green);
  border-color: var(--v2-green);
  background: var(--v2-green-soft);
}

.v2-ticker-table-wrap {
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-r-md);
  background: var(--v2-bg);
}
.v2-ticker-table-wrap::-webkit-scrollbar { width: 8px; }
.v2-ticker-table-wrap::-webkit-scrollbar-track { background: transparent; }
.v2-ticker-table-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }
.v2-ticker-table-wrap::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.22); }

.v2-ticker-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--v2-font-mono);
  font-size: 12px;
}
.v2-ticker-table thead th {
  position: sticky;
  top: 0;
  background: var(--v2-bg-elev-2);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
  text-align: right;
  padding: 10px 14px;
  border-bottom: 1px solid var(--v2-border);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.v2-ticker-table thead th:first-child,
.v2-ticker-table thead th:nth-child(2) { text-align: left; }
.v2-ticker-table thead th:hover { color: var(--v2-text); }
.v2-ticker-table thead th.is-sorted { color: var(--v2-green); }
.v2-ticker-table thead th.is-sorted::after {
  content: " \25BC";
  font-size: 9px;
  margin-left: 4px;
}
.v2-ticker-table thead th.is-sorted.asc::after { content: " \25B2"; }

.v2-ticker-table tbody td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--v2-border);
  text-align: right;
  white-space: nowrap;
  color: var(--v2-text-muted);
}
.v2-ticker-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--v2-text);
  letter-spacing: 0.02em;
}
.v2-ticker-table tbody td:nth-child(2) {
  text-align: left;
  color: var(--v2-text-muted);
  font-family: var(--v2-font-body);
  font-size: 12px;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v2-ticker-table tbody tr {
  cursor: pointer;
  transition: background 0.12s ease;
}
.v2-ticker-table tbody tr:hover { background: var(--v2-bg-elev-2); }
.v2-ticker-table .chg.up   { color: var(--v2-green); font-weight: 700; }
.v2-ticker-table .chg.dn   { color: var(--v2-red); font-weight: 700; }
.v2-ticker-table .chg.flat { color: var(--v2-text-dim); }

.v2-ticker-empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--v2-text-dim);
  font-family: var(--v2-font-mono);
  font-size: 12px;
}

/* =========================================================================
   3. SHELL — Sidebar + content area
   ========================================================================= */
.v2-shell {
  display: flex;
  min-height: calc(100vh - var(--v2-topbar-h) - var(--v2-ticker-h));
}

.v2-sidebar {
  width: var(--v2-sidebar-w);
  flex-shrink: 0;
  background: var(--v2-bg);
  border-right: 1px solid var(--v2-border);
  padding: 20px 12px;
  position: sticky;
  top: calc(var(--v2-topbar-h) + var(--v2-ticker-h));
  height: calc(100vh - var(--v2-topbar-h) - var(--v2-ticker-h));
  overflow-y: auto;
}
.v2-sidebar-section + .v2-sidebar-section { margin-top: 20px; }
.v2-sidebar-heading {
  font-family: var(--v2-font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--v2-text-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 12px;
  margin-bottom: 8px;
}
.v2-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: var(--v2-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--v2-text-muted);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.v2-sidebar-link:hover { color: var(--v2-text); background: var(--v2-bg-elev-1); }
.v2-sidebar-link.is-active {
  color: var(--v2-green);
  background: var(--v2-green-soft);
}
.v2-sidebar-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.v2-sidebar-link .badge {
  margin-left: auto;
  font-family: var(--v2-font-mono);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--v2-bg-elev-2);
  color: var(--v2-text-muted);
  letter-spacing: 0.08em;
}
.v2-sidebar-link.is-active .badge { background: var(--v2-green); color: #051A0D; }

.v2-content {
  flex: 1;
  min-width: 0;
  padding: 28px 32px 64px;
  max-width: var(--v2-content-max);
  margin: 0 auto;
  width: 100%;
}
.v2-content.v2-content-wide {
  max-width: none;
}
/* Reset legacy widgets so they inherit v2 theme cleanly */
.v2-content .container,
.v2-content > .max-w-7xl,
.v2-content > .max-w-6xl,
.v2-content > .max-w-5xl,
.v2-content > .max-w-4xl { max-width: none; padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0; }

/* =========================================================================
   4. CARDS — Reusable card system
   ========================================================================= */
.v2-card {
  background: var(--v2-bg-elev-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-r-lg);
  padding: 22px 24px;
  box-shadow: var(--v2-shadow-card);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.v2-card.hover:hover {
  border-color: var(--v2-border-strong);
  box-shadow: var(--v2-shadow-hover);
}
.v2-card-title {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--v2-text-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-card-title .v2-live-dot {
  width: 6px; height: 6px;
  background: var(--v2-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--v2-green-glow);
  animation: v2-pulse 2s ease-in-out infinite;
}

/* =========================================================================
   5. HOMEPAGE — Hero pulse row + 3-col grid
   ========================================================================= */
.v2-pulse {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1.4fr;
  gap: 12px;
  margin-bottom: 28px;
}
.v2-pulse-tile {
  background: var(--v2-bg-elev-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-r-md);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}
.v2-pulse-label {
  font-family: var(--v2-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
  margin-bottom: 8px;
}
.v2-pulse-value {
  font-family: var(--v2-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--v2-text-strong);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.v2-pulse-value .unit { font-size: 13px; color: var(--v2-text-dim); margin-left: 4px; font-weight: 500; }
.v2-pulse-sub {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  color: var(--v2-text-muted);
  margin-top: 6px;
}
.v2-pulse-sub .up { color: var(--v2-green); }
.v2-pulse-sub .dn { color: var(--v2-red); }

.v2-pulse-cta {
  background: linear-gradient(135deg, rgba(34,255,136,0.10), rgba(34,255,136,0.02));
  border-color: rgba(34,255,136,0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.v2-pulse-cta .copy {
  font-family: var(--v2-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--v2-text-strong);
  line-height: 1.3;
}
.v2-pulse-cta .copy small {
  display: block;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--v2-text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* CMHI gauge */
.v2-gauge {
  position: relative;
  height: 60px;
  background: linear-gradient(90deg,
    rgba(255,92,92,0.35) 0%,
    rgba(255,181,71,0.35) 50%,
    rgba(34,255,136,0.35) 100%
  );
  border-radius: 6px;
  margin-top: 6px;
  overflow: hidden;
}
.v2-gauge-needle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--v2-text-strong);
  box-shadow: 0 0 8px rgba(255,255,255,0.7);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.v2-gauge-needle::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -4px;
  width: 10px; height: 10px;
  background: var(--v2-text-strong);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* 3-column grid */
.v2-grid-3 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.v2-brief-card {
  background: linear-gradient(180deg, var(--v2-bg-elev-2) 0%, var(--v2-bg-elev-1) 100%);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-r-lg);
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
}
.v2-brief-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--v2-green);
  border-radius: 0 0 3px 3px;
}
.v2-brief-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
  margin-bottom: 14px;
}
.v2-brief-meta .badge {
  padding: 3px 8px;
  background: var(--v2-green-soft);
  color: var(--v2-green);
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.v2-brief-headline {
  font-family: var(--v2-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--v2-text-strong);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.v2-brief-snippet {
  font-family: var(--v2-font-body);
  font-size: 14px;
  color: var(--v2-text-muted);
  line-height: 1.55;
  margin: 0 0 20px;
}
.v2-brief-take {
  background: rgba(34, 255, 136, 0.05);
  border-left: 2px solid var(--v2-green);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-family: var(--v2-font-body);
  font-size: 13px;
  color: var(--v2-text);
  margin-bottom: 20px;
  line-height: 1.5;
}
.v2-brief-take strong {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--v2-green);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.v2-brief-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== Enriched brief teaser additions ===== */
.v2-brief-meta .v2-brief-byline {
  margin-left: auto;
  color: var(--v2-text-faint);
  letter-spacing: 0.12em;
  font-weight: 500;
}
.v2-brief-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-brief-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.v2-brief-bullet:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--v2-border-strong);
}
.v2-brief-bullet.skeleton {
  background: var(--v2-bg-elev-1);
  border-color: var(--v2-border);
}
.v2-brief-bullet-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 7px;
  background: var(--v2-green-soft);
  color: var(--v2-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.v2-brief-bullet-icon svg { width: 14px; height: 14px; }
.v2-brief-bullet-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.v2-brief-bullet-label {
  font-family: var(--v2-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
}
.v2-brief-bullet-text {
  font-family: var(--v2-font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--v2-text);
}
.v2-brief-catalyst {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(91, 213, 255, 0.06);
  border: 1px solid rgba(91, 213, 255, 0.18);
  margin-bottom: 18px;
}
.v2-brief-catalyst-label {
  font-family: var(--v2-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-cyan);
  flex: 0 0 auto;
}
.v2-brief-catalyst-body {
  font-family: var(--v2-font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--v2-text);
}
.v2-brief-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--v2-border);
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--v2-text-faint);
}
.v2-brief-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.v2-brief-trust svg { color: var(--v2-green); }

/* Card title with right-aligned link (e.g. Live Snapshot → Full table) */
.v2-card-title-link {
  margin-left: auto;
  font-family: var(--v2-font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-text-faint);
  text-decoration: none;
  transition: color 0.12s ease;
}
.v2-card-title-link:hover { color: var(--v2-green); }

.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--v2-font-display);
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.v2-btn-secondary {
  background: var(--v2-bg-elev-3);
  color: var(--v2-text);
  border-color: var(--v2-border-strong);
}
.v2-btn-secondary:hover {
  background: var(--v2-bg-hover);
  border-color: var(--v2-border-bright);
}
.v2-btn-ghost {
  background: transparent;
  color: var(--v2-text-muted);
  border-color: var(--v2-border);
}
.v2-btn-ghost:hover { color: var(--v2-text); border-color: var(--v2-border-strong); }
.v2-btn svg { width: 14px; height: 14px; }

/* Snapshot card (center) */
.v2-snap-section { margin-bottom: 18px; }
.v2-snap-section:last-child { margin-bottom: 0; }
.v2-snap-heading {
  font-family: var(--v2-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v2-snap-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v2-snap-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  background: var(--v2-bg-elev-1);
  border-radius: 8px;
  font-family: var(--v2-font-mono);
  font-size: 12px;
  transition: background 0.12s ease, transform 0.12s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.v2-snap-row:hover {
  background: var(--v2-bg-elev-3);
  transform: translateX(2px);
}
.v2-snap-row .sym { font-weight: 700; color: var(--v2-text); }
.v2-snap-row .px  { color: var(--v2-text-muted); font-weight: 500; text-align: right; min-width: 56px; }
.v2-snap-row .chg { font-weight: 700; text-align: right; min-width: 60px; }
.v2-snap-row .chg.up { color: var(--v2-green); }
.v2-snap-row .chg.dn { color: var(--v2-red); }
.v2-snap-row .chg.flat { color: var(--v2-text-dim); }

/* Quick actions card (right) */
.v2-action-list { display: flex; flex-direction: column; gap: 8px; }
.v2-action-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--v2-bg-elev-1);
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  width: 100%;
}
.v2-action-tile:hover {
  border-color: var(--v2-green);
  background: var(--v2-bg-elev-3);
}
.v2-action-tile .icon {
  width: 32px; height: 32px;
  background: var(--v2-bg-elev-3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-green);
  flex-shrink: 0;
}
.v2-action-tile .icon svg { width: 16px; height: 16px; }
.v2-action-tile .meta {
  font-family: var(--v2-font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--v2-text);
}
.v2-action-tile .meta small {
  display: block;
  font-family: var(--v2-font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--v2-text-dim);
  margin-top: 1px;
}

.v2-ai-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--v2-bg-elev-1);
  border: 1px solid var(--v2-border-strong);
  border-radius: 999px;
  margin-top: 8px;
  transition: border-color 0.15s ease;
}
.v2-ai-input:focus-within { border-color: var(--v2-green); }
.v2-ai-input svg { width: 14px; height: 14px; color: var(--v2-green); flex-shrink: 0; }
.v2-ai-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--v2-text);
  font-family: var(--v2-font-body);
  font-size: 13px;
}
.v2-ai-input input::placeholder { color: var(--v2-text-faint); }

/* Tab bar */
.v2-tabbar {
  display: flex;
  gap: 4px;
  background: var(--v2-bg-elev-1);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 18px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}
.v2-tab {
  padding: 8px 16px;
  font-family: var(--v2-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--v2-text-muted);
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: transparent;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.v2-tab:hover { color: var(--v2-text); }
.v2-tab.is-active {
  color: var(--v2-text-strong);
  background: var(--v2-bg-elev-3);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}

.v2-tabpanel { display: none; }
.v2-tabpanel.is-active { display: block; animation: v2-fade 0.25s ease; }
@keyframes v2-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Free account CTA strip */
.v2-cta-strip {
  background: linear-gradient(135deg, rgba(34,255,136,0.08) 0%, rgba(34,255,136,0.02) 100%);
  border: 1px solid rgba(34,255,136,0.20);
  border-radius: var(--v2-r-lg);
  padding: 28px 32px;
  margin: 32px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.v2-cta-strip::after {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(34,255,136,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.v2-cta-strip h2 {
  font-family: var(--v2-font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--v2-text-strong);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  position: relative;
}
.v2-cta-strip p {
  font-family: var(--v2-font-body);
  font-size: 14px;
  color: var(--v2-text-muted);
  margin: 0;
  position: relative;
}
.v2-cta-strip .v2-btn-primary { position: relative; }
.v2-cta-perks {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  color: var(--v2-text-muted);
  letter-spacing: 0.06em;
}
.v2-cta-perks li {
  display: inline-flex; align-items: center; gap: 6px;
  list-style: none;
}
.v2-cta-perks li::before {
  content: "\2713";
  color: var(--v2-green);
  font-weight: 700;
}

/* =========================================================================
   6. CHARTS PAGE — Three-pane layout
   ========================================================================= */
.v2-charts-layout {
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 20px;
  height: calc(100vh - var(--v2-topbar-h) - var(--v2-ticker-h) - 56px);
  min-height: 600px;
}

.v2-ticker-browser {
  background: var(--v2-bg-elev-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-r-lg);
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.v2-tb-search {
  margin-bottom: 12px;
}
.v2-tb-section { margin-bottom: 16px; }
.v2-tb-list { display: flex; flex-direction: column; gap: 2px; }
.v2-tb-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--v2-font-mono);
  font-size: 12px;
  transition: background 0.12s ease;
}
.v2-tb-item:hover { background: var(--v2-bg-elev-1); }
.v2-tb-item.is-active { background: var(--v2-green-soft); color: var(--v2-green); }
.v2-tb-item .sym { font-weight: 700; color: var(--v2-text); }
.v2-tb-item.is-active .sym { color: var(--v2-green); }
.v2-tb-item .chg.up { color: var(--v2-green); font-weight: 700; }
.v2-tb-item .chg.dn { color: var(--v2-red); font-weight: 700; }

.v2-chart-stage {
  background: var(--v2-bg-elev-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-r-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.v2-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.v2-chart-symbol {
  font-family: var(--v2-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--v2-text-strong);
  letter-spacing: -0.015em;
  margin: 0;
}
.v2-chart-name {
  font-family: var(--v2-font-body);
  font-size: 13px;
  color: var(--v2-text-muted);
  margin-top: 2px;
}
.v2-chart-price {
  font-family: var(--v2-font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--v2-text-strong);
  letter-spacing: -0.01em;
}
.v2-chart-change {
  font-family: var(--v2-font-mono);
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.v2-chart-change.up { color: var(--v2-green); }
.v2-chart-change.dn { color: var(--v2-red); }

.v2-chart-canvas {
  flex: 1;
  min-height: 520px;
  position: relative;
  background: var(--v2-bg);
  border-radius: var(--v2-r-md);
  border: 1px solid var(--v2-border);
  padding: 18px;
}
.v2-chart-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.v2-chart-ranges {
  display: flex;
  gap: 4px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.v2-range-btn {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--v2-border-strong);
  border-radius: 999px;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--v2-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.v2-range-btn:hover { color: var(--v2-text); border-color: var(--v2-border-bright); }
.v2-range-btn.is-active {
  color: var(--v2-green);
  border-color: var(--v2-green);
  background: var(--v2-green-soft);
}

.v2-side-panel {
  background: var(--v2-bg-elev-2);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-r-lg);
  padding: 22px;
  overflow-y: auto;
}
.v2-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.v2-stat {
  background: var(--v2-bg-elev-1);
  border-radius: 8px;
  padding: 10px 12px;
}
.v2-stat-label {
  font-family: var(--v2-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-text-dim);
  margin-bottom: 4px;
}
.v2-stat-value {
  font-family: var(--v2-font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-text);
}

/* =========================================================================
   7. MODAL — Brief reader + email capture
   ========================================================================= */
.v2-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.v2-modal.is-open { display: flex; animation: v2-fade 0.2s ease; }
.v2-modal-dialog {
  background: var(--v2-bg-elev-2);
  border: 1px solid var(--v2-border-strong);
  border-radius: var(--v2-r-xl);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.v2-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--v2-bg-elev-3);
  border: 1px solid var(--v2-border-strong);
  border-radius: 50%;
  color: var(--v2-text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.v2-modal-close:hover { color: var(--v2-text); }
.v2-modal-body { padding: 32px 36px; }

.v2-deep-dive-cta {
  margin-top: 24px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(34,255,136,0.08), rgba(34,255,136,0.02));
  border: 1px solid rgba(34,255,136,0.22);
  border-radius: var(--v2-r-md);
}
.v2-deep-dive-cta h3 {
  font-family: var(--v2-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--v2-text-strong);
  margin: 0 0 6px;
}
.v2-deep-dive-cta p {
  font-family: var(--v2-font-body);
  font-size: 13px;
  color: var(--v2-text-muted);
  margin: 0 0 14px;
}
.v2-email-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.v2-email-form input {
  flex: 1;
  padding: 11px 14px;
  background: var(--v2-bg);
  border: 1px solid var(--v2-border-strong);
  border-radius: 10px;
  color: var(--v2-text);
  font-family: var(--v2-font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s ease;
}
.v2-email-form input:focus { border-color: var(--v2-green); }
.v2-trust {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  color: var(--v2-text-dim);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-trust::before {
  content: "\1F512";
  font-size: 11px;
}
.v2-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  color: var(--v2-text-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.v2-or-divider::before, .v2-or-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--v2-border);
}

/* =========================================================================
   8. FOOTER
   ========================================================================= */
.v2-footer {
  border-top: 1px solid var(--v2-border);
  padding: 28px 32px;
  max-width: var(--v2-content-max);
  margin: 32px auto 0;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  color: var(--v2-text-dim);
  letter-spacing: 0.04em;
}
.v2-footer a { color: var(--v2-text-muted); transition: color 0.15s ease; }
.v2-footer a:hover { color: var(--v2-green); }
.v2-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.v2-footer-trust { padding-bottom: 18px; border-bottom: 1px solid var(--v2-border); margin-bottom: 18px; }
.v2-footer-trust-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  color: var(--v2-text-muted); font-size: 11px;
}
.v2-trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(34,255,136,0.08);
  border: 1px solid rgba(34,255,136,0.22);
  color: var(--v2-green); font-weight: 600;
}
.v2-trust-sep { color: var(--v2-text-faint); opacity: 0.6; }
.v2-footer-trust-sources {
  margin-top: 10px; font-size: 10.5px; color: var(--v2-text-faint);
  letter-spacing: 0.03em; line-height: 1.55; max-width: 920px;
}
.v2-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.v2-ai-send {
  background: none; border: 0; color: var(--v2-green);
  font-family: var(--v2-font-mono); font-size: 16px; font-weight: 700;
  cursor: pointer; padding: 0 6px; line-height: 1;
  transition: transform 0.12s ease;
}
.v2-ai-send:hover { transform: translateX(2px); }

/* =========================================================================
   9. MOBILE RESPONSIVE
   ========================================================================= */
/* Regional heatmap grid */
.hp-heatmap-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
@media (max-width: 860px) {
  .hp-heatmap-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hp-heatmap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .v2-grid-3 { grid-template-columns: 1fr 1fr; }
  .v2-brief-card { grid-column: 1 / -1; }
  .v2-pulse { grid-template-columns: repeat(3, 1fr); }
  .v2-pulse-tile:nth-child(5) { grid-column: 1 / -1; }
  .v2-charts-layout { grid-template-columns: 220px 1fr; }
  .v2-side-panel { display: none; }
}

@media (max-width: 860px) {
  .v2-sidebar { display: none; }
  .v2-content { padding: 20px; }
  .v2-grid-3 { grid-template-columns: 1fr; }
  .v2-pulse { grid-template-columns: 1fr 1fr; }
  .v2-pulse-tile:nth-child(5) { grid-column: 1 / -1; }
  .v2-charts-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  .v2-ticker-browser { max-height: 220px; }
  .v2-chart-stage { min-height: 480px; }
  .v2-cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .v2-topbar { padding: 0 12px; gap: 12px; }
  .v2-regions { display: none; }
  .v2-brand-sub { display: none; }
  .v2-topbar-actions .v2-icon-btn:nth-child(2) { display: none; }
  .v2-btn-primary { padding: 8px 12px; font-size: 12px; }
  .v2-btn-primary span.long { display: none; }
  .v2-pulse { grid-template-columns: 1fr; }
  .v2-pulse-tile:nth-child(5) { grid-column: 1; }
  .v2-brief-headline { font-size: 22px; }
  .v2-ticker-label { font-size: 9px; padding: 0 10px; }
  .v2-content { padding: 16px 14px 48px; }
  .v2-cta-strip { padding: 22px; flex-direction: column; }
  .v2-cta-strip h2 { font-size: 20px; }
  .v2-cta-strip > div { width: 100%; }
  .v2-cta-strip form,
  .v2-cta-strip .v2-email-form { width: 100%; min-width: 0 !important; }
  .v2-cta-perks { flex-wrap: wrap; gap: 8px 14px; }
  .v2-cta-perks li { font-size: 12px; }
  .v2-modal-body { padding: 24px 20px; }
  .v2-email-form { flex-direction: column; }
}

/* =========================================================================
   10. UTILS
   ========================================================================= */
.v2-skel {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: v2-skel 1.4s ease-in-out infinite;
  border-radius: 4px;
  display: inline-block;
  height: 1em;
  min-width: 60px;
  vertical-align: middle;
  color: transparent;
}
@keyframes v2-skel {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.v2-fade-in { animation: v2-fade 0.3s ease; }

/* Hide legacy heritage if rendered */
.legacy-only { display: none !important; }
