 /* ===== RESET + TOKENS (aligned to your premium system) ===== */
    *{margin:0;padding:0;box-sizing:border-box}
    :root{
      --bg:#0A1F2F;
      --accent:#00C853;
      --gold:#F9A825;
      --secondary:#1E3A5F;
      --soft:#F4F6F8;
      --black:#000;
      --white:#fff;

      --text: rgba(244,246,248,.92);
      --muted: rgba(244,246,248,.72);
      --muted2: rgba(244,246,248,.58);
      --border: rgba(255,255,255,.10);
      --border2: rgba(255,255,255,.16);

      --radius: 18px;
      --radius2: 22px;
      --pill: 999px;
      --shadow: 0 18px 50px rgba(0,0,0,.40);
      --shadow2: 0 12px 34px rgba(0,0,0,.35);
      --ease: cubic-bezier(.2,.8,.2,1);

      --container: 1280px;
      --sp-1: 8px;
      --sp-2: 16px;
      --sp-3: 24px;
      --sp-4: 32px;
      --sp-5: 48px;
      --sp-6: 64px;

      --font: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }
    html{scroll-behavior:smooth}
    body{
      font-family: var(--font);
      background:
        radial-gradient(1200px 700px at 20% 10%, rgba(0,200,83,.16), transparent 55%),
        radial-gradient(1200px 800px at 85% 15%, rgba(249,168,37,.12), transparent 60%),
        radial-gradient(1100px 700px at 50% 105%, rgba(30,58,95,.35), transparent 60%),
        var(--bg);
      color: var(--text);
      line-height: 1.65;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .container{width:min(var(--container),92vw);margin:0 auto}
    .section{padding: 84px 0}
    .section-sm{padding: 64px 0}

    h1,h2,h3{color:var(--white);letter-spacing:-.3px}
    h1{font-size: clamp(34px, 4vw, 52px); line-height: 1.08}
    h2{font-size: clamp(26px, 2.6vw, 38px); line-height: 1.15}
    p{color: var(--muted)}

    .eyebrow{
      display:inline-flex;align-items:center;gap:10px;
      padding:8px 14px;border-radius:var(--pill);
      border:1px solid var(--border);
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-size: 14px;
      backdrop-filter: blur(10px);
    }
    .dot{
      width:8px;height:8px;border-radius:999px;background:var(--accent);
      box-shadow:0 0 0 6px rgba(0,200,83,.14);
    }

    /* ===== NAVBAR (same black theme, logo slot) ===== */
    .nav-wrap{
      position: sticky; top:0; z-index:999;
      padding: 14px 0;
      background: rgba(0,0,0,.35);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .navbar{display:flex;align-items:center;justify-content:space-between;gap:18px}
    .brand{display:inline-flex;align-items:center;gap:12px;min-width:200px}
    .logo-slot{
      width:44px;height:44px;border-radius:14px;overflow:hidden;
      border:1px solid var(--border);
      background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      box-shadow: 0 10px 30px rgba(0,0,0,.35);
      display:grid;place-items:center;
    }
    .logo-slot img{width:100%;height:100%;object-fit:cover}
    .brand strong{font-weight:800;letter-spacing:.2px}
    .brand small{display:block;color:var(--muted2);font-weight:500;margin-top:-2px}

    .nav-links{display:flex;align-items:center;gap:18px}
    .nav-links a{
      color: var(--muted);
      font-weight: 650;
      font-size: 14px;
      letter-spacing: .2px;
      padding: 10px 12px;
      border-radius: var(--pill);
      transition: background .2s var(--ease), color .2s var(--ease);
    }
    .nav-links a:hover{color:var(--text);background:rgba(255,255,255,.06)}
    .nav-links a.active{
      color: var(--white);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(249,168,37,.25);
    }

    .nav-actions{display:flex;align-items:center;gap:10px}
    .btn{
      border:0;cursor:pointer;border-radius:var(--pill);
      padding: 12px 18px;
      font-weight: 700;
      font-size: 14.5px;
      letter-spacing: .2px;
      display:inline-flex;align-items:center;gap:10px;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
      user-select:none;white-space:nowrap;
    }
    .btn-primary{
      color:#062016;
      background: linear-gradient(135deg, rgba(0,200,83,1), rgba(0,200,83,.78));
      box-shadow: 0 18px 45px rgba(0,200,83,.22);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 22px 52px rgba(0,200,83,.28)}
    .btn-ghost{
      color: var(--text);
      background: rgba(255,255,255,.05);
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover{transform:translateY(-2px);border-color:var(--border2);box-shadow:var(--shadow2)}
    .menu-btn{
      display:none;
      width:44px;height:44px;border-radius:14px;
      border:1px solid var(--border);
      background: rgba(255,255,255,.05);
      color: var(--text);
      cursor:pointer;
    }
    .mobile-panel{
      display:none;margin-top:12px;
      border:1px solid var(--border);
      background: rgba(10,31,47,.92);
      backdrop-filter: blur(14px);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .mobile-panel .inner{padding:14px;display:grid;gap:10px}
    .mobile-panel a{
      padding:12px;border-radius:14px;
      color: var(--muted);
      font-weight: 700;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.06);
    }
    .mobile-panel a:hover{color:var(--text);border-color:rgba(255,255,255,.12)}
    .mobile-open .mobile-panel{display:block}
    @media (max-width:980px){
      .nav-links{display:none}
      .menu-btn{display:inline-grid;place-items:center}
      .brand{min-width:auto}
    }

    /* ===== PAGE HEADER ===== */
    .page-hero{padding: 72px 0 26px}
    .page-hero .wrap{
      display:grid;grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: start;
    }
    @media (max-width:980px){ .page-hero .wrap{grid-template-columns: 1fr} }

    .hero-card{
      border: 1px solid var(--border);
      background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding: 18px;
      overflow: hidden;
      position: relative;
    }
    .hero-card:before{
      content:"";position:absolute;inset:-1px;
      background: radial-gradient(600px 220px at 20% 0%, rgba(0,200,83,.22), transparent 60%),
                  radial-gradient(520px 240px at 95% 10%, rgba(249,168,37,.18), transparent 62%);
      opacity:.8;pointer-events:none;
    }
    .hero-card > *{position:relative;z-index:1}

    .hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
    .meta-row{
      display:flex;flex-wrap:wrap;gap:10px;margin-top:14px
    }
    .pill{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 12px;border-radius:var(--pill);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .2px;
    }
    .pill i{color:var(--gold)}
    .pill strong{color:var(--white);font-weight:800}

    /* ===== FILTER BAR ===== */
    .toolbar{
      display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between;
      margin-bottom: 14px;
    }
    .filters{
      display:flex;flex-wrap:wrap;gap:10px;align-items:center;
    }
    .group{
      display:flex;flex-wrap:wrap;gap:8px;align-items:center;
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.06);
      padding: 10px 10px;
      border-radius: var(--pill);
      backdrop-filter: blur(10px);
    }
    .filter-pill{
      display:inline-flex;align-items:center;gap:8px;
      padding: 8px 14px;
      border-radius: var(--pill);
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.10);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      cursor:pointer;
      transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
      user-select:none;
    }
    .filter-pill:hover{transform:translateY(-1px);border-color: rgba(255,255,255,.16);color: var(--text)}
    .filter-pill.active{
      background: rgba(30,58,95,.60);
      border-color: rgba(249,168,37,.35);
      color: var(--white);
    }

    .search{
      display:flex;align-items:center;gap:10px;
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.10);
      padding: 10px 12px;
      border-radius: var(--pill);
      min-width: 280px;
    }
    .search i{color: var(--muted2)}
    .search input{
      width: 100%;
      border:0;outline:none;
      background: transparent;
      color: var(--text);
      font-family: inherit;
      font-size: 14.5px;
    }
    .search input::placeholder{color: rgba(244,246,248,.50)}

    @media (max-width:980px){
      .search{min-width: 100%}
    }

    /* ===== CALENDAR CARD + TABLE ===== */
    .calendar-card{
      border: 1px solid var(--border);
      background: rgba(255,255,255,.04);
      border-radius: var(--radius2);
      box-shadow: var(--shadow2);
      overflow: hidden;
    }
    .calendar-head{
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between;
      background: rgba(0,0,0,.18);
    }
    .legend{
      display:flex;flex-wrap:wrap;gap:10px;align-items:center;
      color: var(--muted2);
      font-size: 13px;
      font-weight: 700;
    }

    .legend .chip{
      display:inline-flex;align-items:center;gap:8px;
      padding: 6px 10px;
      border-radius: var(--pill);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
    }
    .impact{
      display:inline-flex;align-items:center;gap:8px;
      padding: 6px 10px;
      border-radius: var(--pill);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: .2px;
      border: 1px solid rgba(255,255,255,.10);
    }
    .impact.high{background: rgba(244,67,54,.18); color: #ffb4b4; border-color: rgba(244,67,54,.28)}
    .impact.med{background: rgba(255,193,7,.18); color: #ffe9a8; border-color: rgba(255,193,7,.28)}
    .impact.low{background: rgba(76,175,80,.18); color: #bff0c2; border-color: rgba(76,175,80,.28)}

    .table-wrap{overflow:auto}
    table{width:100%;border-collapse:collapse;min-width: 980px}
    thead th{
      text-align:left;
      padding: 14px 14px;
      color: rgba(249,168,37,.95);
      font-weight: 900;
      font-size: 12px;
      letter-spacing: .45px;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.16);
      position: sticky;
      top: 0;
      z-index: 2;
    }
    tbody td{
      padding: 14px 14px;
      border-bottom: 1px solid rgba(255,255,255,.06);
      color: rgba(244,246,248,.86);
      font-size: 14.5px;
      vertical-align: middle;
    }
    tbody tr:hover{background: rgba(255,255,255,.03)}
    .currency-badge{
      display:inline-flex;align-items:center;gap:8px;
      padding: 6px 10px;
      border-radius: var(--pill);
      background: rgba(0,0,0,.26);
      border: 1px solid rgba(255,255,255,.10);
      font-weight: 900;
      font-size: 12px;
      letter-spacing: .35px;
    }
    .currency-dot{
      width:8px;height:8px;border-radius:999px;background: var(--gold);
      box-shadow: 0 0 0 5px rgba(249,168,37,.12);
    }
    .event-title{font-weight: 850; color: var(--white)}
    .event-sub{
      color: var(--muted2);
      font-size: 13px;
      margin-top: 2px;
    }
    .num{font-variant-numeric: tabular-nums}
    .badge{
      display:inline-flex;align-items:center;gap:8px;
      padding: 6px 10px;
      border-radius: var(--pill);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      color: var(--muted);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: .2px;
    }
    .status{
      display:inline-flex;align-items:center;gap:8px;
      padding:6px 10px;border-radius: var(--pill);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.18);
      color: var(--muted);
      font-weight: 900;
      font-size: 12px;
      letter-spacing: .2px;
    }
    .status.live{border-color: rgba(0,200,83,.35); color: rgba(0,200,83,.95)}
    .status.upcoming{border-color: rgba(249,168,37,.30); color: rgba(249,168,37,.95)}
    .status.done{border-color: rgba(255,255,255,.12); color: rgba(244,246,248,.70)}

    /* expand row */
    .more-row{display:none}
    .more{
      background: rgba(0,0,0,.18);
      border-top: 1px dashed rgba(255,255,255,.10);
    }
    .more .box{
      padding: 14px;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
    }
    @media (max-width:980px){
      table{min-width: 840px}
      .more .box{grid-template-columns: 1fr}
    }
    .more h4{
      margin:0 0 8px;
      font-size: 14px;
      letter-spacing: .2px;
    }
    .more p{margin:0;color: var(--muted); font-size: 14px; line-height: 1.7}
    .mini-grid{
      display:grid;gap:10px;
      grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .mini{
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      border-radius: 16px;
      padding: 12px;
    }
    .mini .k{color: var(--muted2); font-size: 12px; text-transform: uppercase; letter-spacing:.35px; font-weight: 900}
    .mini .v{margin-top: 6px; font-weight: 900; color: var(--white); font-size: 14px}
    .mini .v span{color: var(--muted); font-weight: 800; font-size: 12.5px}

    .row-actions{
      display:flex;flex-wrap:wrap;gap:8px;align-items:center;
    }
    .row-btn{
      padding: 8px 12px;
      border-radius: var(--pill);
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: var(--text);
      font-weight: 800;
      font-size: 12.5px;
      cursor:pointer;
      transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
      display:inline-flex;align-items:center;gap:8px;
      user-select:none;
    }
    .row-btn:hover{transform:translateY(-1px);border-color: rgba(255,255,255,.18)}
    .row-btn.gold{border-color: rgba(249,168,37,.22)}
    .row-btn.green{border-color: rgba(0,200,83,.22)}
    .muted-note{
      margin-top: 10px;
      font-size: 13px;
      color: var(--muted2);
      display:flex;justify-content:flex-end;gap:10px;align-items:center;
    }

    /* ===== INSIGHT CARDS ===== */
    .grid{display:grid;gap: 16px}
    .grid-3{grid-template-columns: repeat(3, minmax(0,1fr))}
    .grid-2{grid-template-columns: repeat(2, minmax(0,1fr))}
    @media (max-width:980px){
      .grid-3,.grid-2{grid-template-columns: 1fr}
    }
    .card{
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
      box-shadow: 0 10px 30px rgba(0,0,0,.28);
      padding: 18px;
      transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
      position: relative;
      overflow: hidden;
    }
    .card:before{
      content:"";position:absolute;inset:-1px;
      background:
        radial-gradient(360px 170px at 10% 0%, rgba(0,200,83,.10), transparent 62%),
        radial-gradient(360px 170px at 90% 0%, rgba(249,168,37,.08), transparent 62%);
      opacity:.7;pointer-events:none;
    }
    .card > *{position:relative;z-index:1}
    .card:hover{transform:translateY(-3px);border-color:var(--border2);box-shadow:0 18px 44px rgba(0,0,0,.38)}
    .icon-badge{
      width:44px;height:44px;border-radius:16px;
      display:grid;place-items:center;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.25);
      box-shadow: 0 10px 24px rgba(0,0,0,.28);
      margin-bottom: 12px;
    }
    .icon-badge i{font-size:18px;color: var(--gold)}
    .card h3{margin:6px 0 10px;font-size: 18px}
    .card p{margin:0;color:var(--muted);font-size: 14.8px;line-height: 1.75}

    /* ===== FOOTER (uniform black theme + logo + Saraha credit + contacts) ===== */
    footer{
      background:#000;
      border-top:1px solid rgba(255,255,255,.08);
      padding: 54px 0 22px;
      margin-top: 30px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .9fr .9fr;
      gap: 18px;
      align-items:start;
    }
    @media (max-width:980px){ .footer-grid{grid-template-columns: 1fr} }
    .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:14px}
    .footer-logo{
      width:46px;height:46px;border-radius:16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      overflow:hidden;display:grid;place-items:center;
    }
    .footer-logo img{width:100%;height:100%;object-fit:cover}
    .footer h4{
      margin:0 0 12px;
      font-size: 14px;
      letter-spacing: .28px;
      text-transform: uppercase;
      color: rgba(255,255,255,.82);
    }
    .footer p,.footer a,.footer li{
      color: rgba(255,255,255,.70);
      font-size: 14.5px;
      line-height: 1.75;
    }
    .footer ul{list-style:none;padding:0;margin:0;display:grid;gap:10px}
    .footer a:hover{color: rgba(255,255,255,.92)}
    .contact-line{display:flex;gap:10px;align-items:flex-start;margin: 10px 0}
    .contact-line i{margin-top:3px;color: var(--gold);width:18px}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      margin-top: 22px;
      padding-top: 16px;
      display:flex;flex-wrap:wrap;gap:10px;
      justify-content:space-between;align-items:center;
    }
    .footer-bottom small{color: rgba(255,255,255,.55); line-height: 1.6}
    .credit a{color: rgba(0,200,83,.95); font-weight: 800}

    /* ===== small helpers ===== */
    .right{margin-left:auto}
    .hide{display:none!important}