
    :root {
      --navy:         #0a1628;
      --navy-mid:     #122040;
      --navy-card:    #0f1e3a;
      --navy-light:   #1c3060;
      --accent:       #2a5caa;
      --accent-bright:#4a8cff;
      --white:        #ffffff;
      --offwhite:     #e8edf8;
      --gray:         #8a9bbf;
      --border:       rgba(74,140,255,0.15);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--navy);
      color: var(--white);
      min-height: 100vh;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 68px;
      background: rgba(10,22,40,0.9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      color: var(--white); text-decoration: none;
    }
    .logo span { color: var(--accent-bright); }
    .nav-right { display: flex; align-items: center; gap: 14px; }
    .nav-links { display: flex; gap: 10px; list-style: none; }
    .nav-links a {
      text-decoration: none; font-size: 0.82rem; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 8px 20px; border-radius: 40px; transition: all 0.3s;
    }
    .nav-links a.home-btn { color: var(--white); border: 1px solid rgba(255,255,255,0.22); }
    .nav-links a.home-btn:hover { border-color: var(--accent-bright); color: var(--accent-bright); }
    .nav-links a.login-btn { background: var(--accent); color: var(--white); border: 1px solid var(--accent); }
    .nav-links a.login-btn:hover { background: var(--accent-bright); box-shadow: 0 0 16px rgba(74,140,255,0.5); }

    /* ── LAYOUT ── */
    .main {
      padding: 90px 4% 60px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .page-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 36px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .page-header h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 700; line-height: 1.1;
    }
    .page-header h1 span { color: var(--accent-bright); }
    .page-header p { color: var(--gray); font-size: 0.88rem; margin-top: 4px; }
    .badge-live {
      display: flex; align-items: center; gap: 7px;
      font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: #4affb4;
      border: 1px solid rgba(74,255,180,0.3);
      padding: 6px 14px; border-radius: 30px;
    }
    .badge-live .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #4affb4;
      animation: pulse 1.4s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    /* ── SECTION LABEL ── */
    .section-label {
      font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--accent-bright); margin-bottom: 18px;
    }

    /* ── STAT CARDS GRID ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      margin-bottom: 48px;
    }
    @media (max-width: 1200px) { .cards-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 700px)  { .cards-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 450px)  { .cards-grid { grid-template-columns: 1fr; } }

    .stat-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px 18px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      animation: fadeUp 0.6s ease both;
    }
    .stat-card:nth-child(1){animation-delay:0.05s}
    .stat-card:nth-child(2){animation-delay:0.1s}
    .stat-card:nth-child(3){animation-delay:0.15s}
    .stat-card:nth-child(4){animation-delay:0.2s}
    .stat-card:nth-child(5){animation-delay:0.25s}
    .stat-card:nth-child(6){animation-delay:0.3s}

    @keyframes fadeUp {
      from { opacity:0; transform:translateY(20px); }
      to   { opacity:1; transform:translateY(0); }
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(74,140,255,0.15);
      border-color: rgba(74,140,255,0.4);
    }

    .stat-card::before {
      content:''; position:absolute; top:0; left:0; right:0; height:3px;
      border-radius: 12px 12px 0 0;
    }
    .stat-card.c1::before { background: linear-gradient(90deg,#ff5c72,#ff9a5c); }
    .stat-card.c2::before { background: linear-gradient(90deg,#ff9a5c,#ffd95c); }
    .stat-card.c3::before { background: linear-gradient(90deg,#4a8cff,#5cbaff); }
    .stat-card.c4::before { background: linear-gradient(90deg,#4affb4,#4a8cff); }
    .stat-card.c5::before { background: linear-gradient(90deg,#a56cff,#4a8cff); }
    .stat-card.c6::before { background: linear-gradient(90deg,#ff5c72,#a56cff); }

    .card-icon {
      font-size: 1.5rem; margin-bottom: 14px;
      width: 42px; height: 42px;
      background: rgba(74,140,255,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .card-label {
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gray); margin-bottom: 8px;
    }
    .card-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 700; line-height: 1;
      margin-bottom: 8px;
    }
    .card-change {
      font-size: 0.78rem; display: flex; align-items: center; gap: 4px;
    }
    .card-change.up   { color: #4affb4; }
    .card-change.down { color: #ff5c72; }

    /* ── GAUGES GRID ── */
    .gauges-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }
    @media (max-width: 1200px) { .gauges-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 700px)  { .gauges-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 450px)  { .gauges-grid { grid-template-columns: 1fr; } }

    .gauge-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px 16px 20px;
      display: flex; flex-direction: column; align-items: center;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      animation: fadeUp 0.6s ease both;
      position: relative; overflow: hidden;
    }
    .gauge-card:nth-child(1){animation-delay:0.1s}
    .gauge-card:nth-child(2){animation-delay:0.18s}
    .gauge-card:nth-child(3){animation-delay:0.26s}
    .gauge-card:nth-child(4){animation-delay:0.34s}
    .gauge-card:nth-child(5){animation-delay:0.42s}
    .gauge-card:nth-child(6){animation-delay:0.5s}

    .gauge-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(74,140,255,0.15);
      border-color: rgba(74,140,255,0.4);
    }

    .gauge-title {
      font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gray); margin-bottom: 14px; text-align: center;
    }

    /* SVG Gauge */
    .gauge-svg-wrap {
      position: relative;
      width: 100%;
      max-width: 180px;
    }
    .gauge-svg-wrap svg { width: 100%; height: auto; display: block; }

    .gauge-center-val {
      position: absolute;
      bottom: 4px; left: 50%; transform: translateX(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
    }

    .gauge-subtitle {
      margin-top: 12px;
      font-size: 0.75rem; color: var(--gray); text-align: center;
    }
    .gauge-subtitle strong { color: var(--accent-bright); }
  