/* EquityPulseReport — Market Intelligence Edition
   Custom styles layered on top of Tailwind CDN utilities.
   Distinct component language from the budgeting/allocation build:
   glass cards, corner market badges, numbered editorial markers,
   and a static ticker strip instead of the prior pulse-line motif. */

   :root {
    --bg: #0D0B14;
    --panel: #181424;
    --border: #312845;
    --accent: #8B5CF6;
    --rose: #F43F5E;
    --gold: #F59E0B;
    --ink: #F3E8FF;
    --ink2: #D8B4FE;
    --muted: #A78BFA;
  }
  
  body {
    background-color: var(--bg);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
  }
  
  h1, h2, h3, h4, .font-display {
    font-family: 'Space Grotesk', sans-serif;
  }
  
  /* Numbered editorial section marker, e.g. "01 —" */
  .section-marker {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
  .section-marker .num {
    color: var(--gold);
    font-size: 1rem;
  }
  
  /* Glass panel card — signature card style for this build */
  .glass-card {
    background: rgba(24, 20, 36, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 1.1rem;
    position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
  .glass-card:hover {
    border-color: var(--accent);
  }
  
  /* Diagonal corner tag, used on report/sector cards */
  .corner-tag {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.8rem;
    border-bottom-left-radius: 0.75rem;
    border-top-right-radius: 1.1rem;
  }
  
  /* Market badge — pill with a status dot */
  .market-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background-color: var(--panel);
  }
  .market-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    flex-shrink: 0;
  }
  .dot-up { background-color: #34D399; }
  .dot-down { background-color: var(--rose); }
  .dot-flat { background-color: var(--gold); }
  
  /* Static ticker strip — horizontal row, no motion (per JS restrictions) */
  .ticker-strip {
    display: flex;
    overflow-x: auto;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    scrollbar-width: none;
  }
  .ticker-strip::-webkit-scrollbar { display: none; }
  .ticker-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    font-size: 0.85rem;
  }
  
  /* Small card rule: icon and heading always centered */
  .small-card {
    background-color: var(--panel);
    border: 1px solid var(--border);
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .small-card .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  /* Offset floating panel that overlaps an image */
  .offset-panel {
    position: relative;
    margin-top: -3rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  @media (min-width: 1024px) {
    .offset-panel {
      margin-top: 0;
      margin-left: -3rem;
    }
  }
  
  /* Gradient highlight text */
  .gradient-text {
    background: linear-gradient(90deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* Editorial list row (used for report listings) */
  .list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
  }
  .list-row:last-child { border-bottom: none; }
  
  /* Premium table styling */
  .data-table th {
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--border);
  }
  .data-table td {
    border-bottom: 1px solid var(--border);
    color: var(--ink2);
  }
  .data-table tr:last-child td { border-bottom: none; }
  
  /* Focus visibility for accessibility */
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
  
  /* Mobile menu */
  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; }
  
  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* FAQ toggle chevron rotation */
  .faq-chevron { transition: transform 0.2s ease; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-item .faq-answer { display: none; }
  .faq-item.open .faq-answer { display: block; }




/* Hide Scrollbar */
html,
body{
    overflow-x: hidden;
    scrollbar-width: none;      
    -ms-overflow-style: none;
    padding-top: 1rem;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar{
    display: none;              
}