/* =========================
   GOLD THEME SYSTEM
========================= */
:root{
  --gold-1:#f5d448;
  --gold-2:#ffcc66;
  --bg:#070708;
  --bg2:#0b0b0d;
  --txt:#f1f1f1;
  --dim:rgba(255,255,255,.62);
  --line:rgba(255,255,255,.10);
  --glass:rgba(255,255,255,.06);
  --glass2:rgba(255,255,255,.04);
}

*{ box-sizing:border-box; }
html, body{ overflow-x:hidden; }
img, video{ max-width:100%; height:auto; }
body{
  margin:0;
  background: radial-gradient(900px 500px at 70% 10%, rgba(245,212,72,.10), transparent 60%),
              radial-gradient(900px 500px at 10% 80%, rgba(245,212,72,.06), transparent 70%),
              var(--bg);
  color:var(--txt);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   HERO (Jasper-like)
========================= */
.jspr-hero{
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  padding: 22px 0 80px;
  background-color: #070708; /* fallback */
  background-image: url("./assets/img/bc-image.png");
  background-repeat: no-repeat;     /* ✅ don’t repeat */
  background-position: center;      /* ✅ center */
  background-size: cover;           /* ✅ cover full area */
}

.jspr-bg-container{ position:absolute; inset:0; pointer-events:none; }
.jspr-vignette{
  position:absolute; inset:-10%;
  background: radial-gradient(circle at 50% 30%, transparent 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.80) 100%);
}
.jspr-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity:.18;
}
.jspr-vertical-grain{
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.02) 2px, rgba(255,255,255,.02) 3px);
  opacity:.45;
}
.jspr-diagonal-beam{
  position:absolute; top:-30%; right:-20%;
  width:150%; height:140%;
  background: radial-gradient(circle at 78% 30%, rgba(245,212,72,.22) 0%, transparent 60%);
  filter: blur(90px);
  transform: rotate(-15deg);
}
.jspr-noise-overlay{
  position:absolute; inset:0; opacity:.14;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* NAV */
.jspr-nav{
  width:min(1180px, 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 18px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  position:relative;
  z-index:10;
}

.jspr-logo{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.jspr-logoMark{
  width:34px; height:34px;
  border-radius:999px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(245,212,72,.24), rgba(245,212,72,.06));
  border:1px solid rgba(245,212,72,.35);
  color:var(--gold-1);
}

.jspr-menu{ display:flex; gap:22px; }
.jspr-menu a{
  color:var(--dim);
  text-decoration:none;
  font-size:14px;
  transition:.2s ease;
}
.jspr-menu a:hover{ color:#fff; }

.jspr-nav-auth{ display:flex; align-items:center; gap:14px; }
.jspr-btn-link{ color:#fff; text-decoration:none; font-size:14px; opacity:.9; }

/* BUTTONS */
.jspr-btn-pill{
  padding:12px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition:.18s ease;
}
.jspr-btn-pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }

.jspr-btn-gold-small{
  padding:9px 16px;
  border:0;
  color:#121212;
  font-weight:800;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 14px 26px rgba(245,212,72,.18);
}
.jspr-btn-gold-glow{
  border:0;
  color:#121212;
  font-weight:900;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 18px 34px rgba(245,212,72,.22);
}
.jspr-btn-gold-glow:hover{ filter:brightness(1.05); }
.jspr-btn-glass{
  background: rgba(255,255,255,.06);
}

/* HERO GRID */
.jspr-heroWrap {
    width: min(1159px, 92%);
    margin: 90px auto 2px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1px;
    position: relative;
    z-index: 10;
}

.jspr-kicker{
  display:inline-flex;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(245,212,72,.10);
  border:1px solid rgba(245,212,72,.18);
  color:rgba(245,212,72,.95);
  font-weight:700;
  font-size:12px;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.jspr-title{
  font-size: clamp(40px, 4.4vw, 72px);
  line-height:1.02;
  margin:16px 0 14px;
  letter-spacing:-1.6px;
  position: relative;
  z-index: 111;
}
.jspr-goldText{
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.jspr-subtitle{
  margin:0 0 26px;
  max-width:560px;
  color:var(--dim);
  line-height:1.65;
  font-size:15px;
}

.jspr-cta-group{ display:flex; gap:12px; flex-wrap:wrap; }

.jspr-miniStats{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}
.jspr-miniStat{
  min-width:160px;
  padding:14px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.jspr-miniLabel{ font-size:12px; color:var(--dim); }
.jspr-miniValue{ margin-top:6px; font-weight:900; font-size:16px; }

/* PREVIEW */
.jspr-preview{
  /* position:relative;
  border-radius:26px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  overflow:hidden;
  padding:18px; */
}
.jspr-hero-image{
  width:150%;
  max-width:none;
  display:block;
}
.jspr-previewTop{ display:flex; gap:10px; align-items:center; margin-bottom:14px; }
.jspr-pill{
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:var(--dim);
}
.jspr-pill--soft{
  border-color: rgba(245,212,72,.24);
  background: rgba(245,212,72,.10);
  color: rgba(245,212,72,.92);
}
.jspr-previewCard{
  position:relative;
  height:420px;
  border-radius:22px;
  background:
    radial-gradient(500px 240px at 70% 20%, rgba(245,212,72,.18), transparent 60%),
    rgba(15,15,17,.75);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.jspr-previewGlow{
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 60% 40%, rgba(245,212,72,.24), transparent 55%);
  filter: blur(40px);
}
.jspr-previewLine{
  position:absolute; left:0; right:0; top:72px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(245,212,72,.35), transparent);
  opacity:.8;
}
.jspr-previewBlocks{
  position:absolute; inset:110px 18px 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.jspr-block{
  height:88px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}
.jspr-block.wide{
  grid-column: 1 / -1;
  height:130px;
}

/* Responsive */
@media (max-width: 980px){
  .jspr-heroWrap{
    grid-template-columns: 1fr;
    margin: 56px auto 0;
    gap: 22px;
    text-align:center;
  }
  .jspr-menu{ display:none; }
  .jspr-subtitle{ margin-left:auto; margin-right:auto; }
  .jspr-cta-group{ justify-content:center; }
  .jspr-hero-image{ width:100%; max-width:520px; margin:0 auto; }
  .jspr-nav{
    width:min(1180px, 94%);
    padding:10px 14px;
  }
}

@media (max-width: 600px){
  .jspr-nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    border-radius:18px;
  }
  .jspr-nav-auth{ width:100%; justify-content:center; flex-wrap:wrap; }
  .jspr-btn-pill{ padding:11px 16px; }
  .jspr-title{ letter-spacing:-1px; }
}

/* =========================
   GOLD SPLIT (Portfolio)
========================= */
.gld-container{
  width:min(1180px, 92%);
  margin:60px auto;
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  position: relative;
  z-index: 111;
}

.gld-left{
  padding:54px;
  background:
    radial-gradient(700px 380px at 40% 20%, rgba(245,212,72,.22), transparent 60%),
    rgba(255,255,255,.03);
  position:relative;
}
.gld-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(245,212,72,.10);
  border:1px solid rgba(245,212,72,.20);
  color: rgba(245,212,72,.92);
  font-size:12px;
  font-weight:800;
  letter-spacing:.7px;
}
.gld-main-title{
  margin:16px 0 18px;
  font-size: clamp(38px, 4.2vw, 72px);
  line-height:.92;
  letter-spacing:-1.6px;
  font-weight:950;
}
.gld-description{
  max-width:420px;
  color:var(--dim);
  line-height:1.6;
  font-size:14px;
}

.gld-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.gld-badge{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:700;
}

.gld-right{
  padding:54px;
  background:
    radial-gradient(800px 420px at 90% 10%, rgba(245,212,72,.18), transparent 60%),
    rgba(10,10,12,.85);
}

.gld-chart-title{
  margin:0 0 18px;
  font-size: clamp(26px, 2.2vw, 40px);
  font-weight:800;
  line-height:1.1;
}
.gld-legend{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:28px;
  color:rgba(255,255,255,.75);
  font-size:12px;
}
.legend-item{ display:flex; gap:8px; align-items:center; }
.dot{ width:12px; height:12px; border-radius:4px; }

/* Metallic Palettes */
.bronze{ background: linear-gradient(135deg, #cd7f32, #8b4513); }
.champagne{ background: linear-gradient(135deg, #f7e7ce, #e3c58e); }
.gold24{ background: linear-gradient(135deg, #ffd700, #b8860b); }
.rose{ background: linear-gradient(135deg, #e0bfb8, #b76e79); }

.gld-chart{ display:flex; flex-direction:column; gap:16px; }
.gld-row{ display:flex; align-items:center; gap:16px; }
.gld-bar-bg{
  flex:1;
  height:56px;
  border-radius:14px;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 11px),
    rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}
.gld-bar{
  height:100%;
  border-radius:14px;
  box-shadow: inset 0 0 35px rgba(0,0,0,.22);
  position:relative;
}
.gld-bar::after{
  content:"";
  position:absolute; inset:0;
  opacity:.18;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.gld-percent{
  width:96px;
  text-align:right;
  font-weight:900;
  font-size:18px;
  color:rgba(255,255,255,.90);
}

@media (max-width: 980px){
  .gld-container{ grid-template-columns: 1fr; }
  .gld-left,.gld-right{ padding:34px; }
}

/* =========================
   PACKAGE CARDS
========================= */
.jspr-pkg-section{
  position:relative;
  width:100%;
  padding:90px 20px 120px;
  overflow:hidden;
}
.jspr-bg-layer{ position:absolute; inset:0; pointer-events:none; }

.jspr-pkg-main-title{
  position:relative; z-index:2;
  text-align:center;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing:.12em;
  text-transform:uppercase;
  margin:0 0 64px;
  color: rgba(245,212,72,.95);
}

.jspr-pkg-container{
  position:relative; z-index:2;
  width:min(1180px, 92%);
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}

.jspr-pkg-card{
  position:relative;
  border-radius:26px;
  padding:54px 22px 22px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  transition: .22s ease;
  overflow:hidden;
}
.jspr-pkg-card:hover{
  transform: translateY(-8px);
  border-color: rgba(245,212,72,.22);
  box-shadow: 0 22px 40px rgba(0,0,0,.35);
}
.jspr-pkg-featured{
  background:
    radial-gradient(550px 240px at 50% 0%, rgba(245,212,72,.22), transparent 60%),
    rgba(255,255,255,.04);
  border-color: rgba(245,212,72,.30);
}

.jspr-featureTag{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(245,212,72,.12);
  border:1px solid rgba(245,212,72,.22);
  color: rgba(245,212,72,.95);
  font-size:12px;
  font-weight:900;
  margin-bottom:10px;
}

.jspr-pkg-badge{
  position:absolute;
  top:16px; left:16px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(245,212,72,.22);
  backdrop-filter: blur(12px);
}
.jspr-badge-inner{
  font-weight:950;
  color: rgba(245,212,72,.95);
  font-size:13px;
}

.jspr-pkg-name{ margin:18px 0 8px; font-size:20px; font-weight:900; }
.jspr-pkg-desc{ margin:0 0 18px; color:rgba(255,255,255,.65); line-height:1.5; font-size:13px; }

.jspr-pkg-list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  border-top:1px solid rgba(255,255,255,.07);
}
.jspr-pkg-list li{
  padding:11px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  color:rgba(255,255,255,.70);
  font-size:13px;
}
.jspr-gold-text{ color:rgba(245,212,72,.95); font-weight:900; }

.jspr-pkg-btn{
  width:100%;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}
.jspr-pkg-btn:hover{
  border-color: rgba(245,212,72,.28);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color:#141414;
  box-shadow: 0 18px 34px rgba(245,212,72,.20);
}
.jspr-pkg-featured .jspr-pkg-btn{
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color:#141414;
  border:0;
}

@media (max-width: 980px){
  .jspr-pkg-container{ grid-template-columns: 1fr; }
}



:root {
    --gld-bg: #0d1217;
    --gld-card: #151d25;
    --gld-accent: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 100%);
    --gld-text: #ffffff;
    --gld-dim: #94a3b8;
    --gld-green: #00ffa3;
}

.gld-crd-wrapper {
    background-color: var(--gld-bg);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}


/* Header Badge Style */
.gld-crd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gld-crd-secure {
    background: rgba(0, 255, 163, 0.1);
    color: var(--gld-green);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 10px 4px 10px 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gld-crd-live {
    font-size: 12px;
    color: var(--gld-dim);
    background: rgba(255,255,255,0.05);
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gld-crd-dot {
    width: 6px;
    height: 6px;
    background: #ff4d4d;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff4d4d;
}

/* Main Visual Area */
.gld-crd-main {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.gld-crd-coin {
    width: 80px;
    height: 80px;
    background: var(--gld-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.3);
}

.gld-crd-roi {
    color: #000;
    font-weight: 900;
    font-size: 18px;
}

.gld-crd-sub-label {
    font-size: 11px;
    color: var(--gld-dim);
    margin-top: 8px;
    text-align: center;
}

.gld-crd-category {
    font-size: 18px;
    color: var(--gld-text);
    margin-bottom: 4px;
}

.gld-crd-price {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}

/* Metrics Grid */
.gld-crd-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.gld-crd-stat {
    display: flex;
    flex-direction: column;
}

.gld-crd-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--gld-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.gld-crd-label {
    font-size: 12px;
    color: var(--gld-dim);
    margin-top: 4px;
}

/* Textual Details */
.gld-crd-details {
    font-size: 13px;
    color: var(--gld-dim);
    line-height: 1.5;
    margin-bottom: 25px;
}

.gld-crd-fee span {
    color: #ffcc00;
    font-weight: bold;
}

/* Buttons (Pill Format) */
.gld-crd-actions {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
}

.gld-crd-btn-main {
    background: var(--gld-accent);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.gld-crd-btn-sec {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 16px;
    border-radius: 50px;
    cursor: pointer;
}

.gld-crd-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(191, 149, 63, 0.4);
}




/* ============ PARTNERS + STATS (Gold Theme) ============ */
.gm-partnersStats{
  position: relative;
  width: 100%;
  padding: 90px 0 110px;
  color: #fff;
  background: radial-gradient(900px 500px at 70% 10%, rgba(245,212,72,.12), transparent 60%),
              radial-gradient(900px 500px at 20% 80%, rgba(245,212,72,.08), transparent 70%),
              rgba(7,7,8,.92);
  overflow: hidden;
}

.gm-partnersStats::before{
  content:"";
  position:absolute; inset:-10%;
  background: radial-gradient(circle at 50% 30%, transparent 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.82) 100%);
  pointer-events:none;
}

.gm-partnersStats::after{
  content:"";
  position:absolute; inset:0;
  opacity:.14;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events:none;
}

.gmps-wrap{
  width: min(1180px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Head */
.gmps-head{
  text-align:center;
  margin-bottom: 22px;
}
.gmps-title{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0;
  color: rgba(255,255,255,.92);
}

/* Partners marquee */
.gmps-partners{
  position: relative;
  margin: 18px auto 70px;
  padding: 14px 0;
}

.gmps-marquee{
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}

.gmps-track{
  display:flex;
  gap: 12px;
  padding: 12px;
  width: max-content;
  animation: gmps-scroll 22s linear infinite;
}

@keyframes gmps-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.gmps-pill{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,12,.35);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.gmps-logoDot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,212,72,1), rgba(255,204,102,1));
  box-shadow: 0 0 18px rgba(245,212,72,.30);
}

.gmps-fade{
  position:absolute;
  top:0; bottom:0;
  width: 90px;
  pointer-events:none;
}
.gmps-fade--l{
  left:0;
  background: linear-gradient(90deg, rgba(7,7,8,.95), transparent);
}
.gmps-fade--r{
  right:0;
  background: linear-gradient(270deg, rgba(7,7,8,.95), transparent);
}

/* Numbers */
.gmps-numbers{
  text-align:center;
}
.gmps-nTitle{
  margin: 0 0 26px;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.6px;
  color: rgba(255,255,255,.95);
}

.gmps-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gmps-card{
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.gmps-card:hover{
  transform: translateY(-4px);
  border-color: rgba(245,212,72,.20);
  background: rgba(255,255,255,.06);
}

.gmps-cardTop{
  display:flex;
  justify-content:center;
  margin-bottom: 10px;
}

.gmps-cardLabel{
  font-size: 12px;
  color: rgba(255,255,255,.62);
  font-weight: 700;
}

.gmps-cardVal{
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.6px;
  color: rgba(255,255,255,.95);
}

.gmps-cardValSm{
  font-size: 16px;
  font-weight: 900;
  color: rgba(245,212,72,.92);
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 900px){
  .gmps-cards{ grid-template-columns: 1fr; }
  .gmps-title{ font-size: 20px; }
  .gmps-nTitle{ font-size: 22px; }
}



:root {
    --jspr-gold: #f5d448;
    --jspr-blue: #4e8aff;
    --jspr-bg: #080808;
    --jspr-glass: rgba(20, 20, 20, 0.6);
    --jspr-border: rgba(255, 255, 255, 0.08);
}

.jspr-grid-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--jspr-bg);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* --- THE BACKGROUND ENGINE --- */
.jspr-grid-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.jspr-grid-grain {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 3px);
}
.jspr-grid-beam {
    position: absolute; top: -10%; right: -5%; width: 120%; height: 120%;
    background: radial-gradient(circle at 80% 20%, rgba(245, 212, 72, 0.15) 0%, transparent 60%);
    filter: blur(80px); transform: rotate(-10deg);
}
.jspr-grid-noise {
    position: absolute; inset: 0; opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- GRID LAYOUT --- */
.jspr-grid-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
    max-width: 1200px;
    width: 100%;
}

.jspr-grid-card {
    background: var(--jspr-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--jspr-border);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: 0.3s ease;
}

.jspr-grid-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Specific Grid Spans */
.jspr-grid-tall { grid-row: span 2; }
.jspr-grid-wide { grid-column: span 1; }

/* --- CONTENT STYLES --- */
.jspr-grid-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 25px;
}

.badge-gold { color: var(--jspr-gold); border-color: rgba(245, 212, 72, 0.3); }
.badge-blue { color: var(--jspr-blue); border-color: rgba(78, 138, 255, 0.3); }

.jspr-grid-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.jspr-gold-text { color: var(--jspr-gold); }

.jspr-grid-desc {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    max-width: 400px;
}

/* --- IMAGE PLACEHOLDERS --- */
.jspr-grid-img-area {
    margin-top: 40px;
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.jspr-img-placeholder {
    width: 90%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Blue Accent Variant */
.jspr-accent-blue {
    background: radial-gradient(circle at bottom right, rgba(78, 138, 255, 0.1), transparent 70%), var(--jspr-glass);
}

/* Responsive */
@media (max-width: 900px) {
    .jspr-grid-container { grid-template-columns: 1fr; }
    .jspr-grid-tall { grid-row: span 1; }
    .jspr-grid-wide { grid-column: span 1; }
}


:root {
    --gld-dark: #080808;
    --gld-accent: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 100%);
    --gld-gold-dim: #b38728;
    --gld-text-dim: #948da3;
}

.gld-legal-banner {
    width: 100%;
    padding: 60px 20px;
    background-color: #000; /* Deep black background for the whole section */
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.gld-legal-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 320px;
    background: linear-gradient(90deg, #121212 0%, #1a1a1a 100%);
    border-radius: 30px;
    border: 1px solid rgba(179, 135, 40, 0.2);
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden;
    z-index: 1;
}

/* Background Texture Effect */
.gld-legal-texture {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Content Area */
.gld-legal-content {
    flex: 1;
    z-index: 10;
}

.gld-legal-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.gold-text {
    background: var(--gld-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gld-legal-subtitle {
    font-size: 1.1rem;
    color: var(--gld-text-dim);
    margin-bottom: 35px;
}

/* Buttons */
.gld-legal-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gld-legal-btn-pill {
    padding: 16px 36px;
    background: var(--gld-accent);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(179, 135, 40, 0.2);
}

.gld-legal-btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(179, 135, 40, 0.4);
}

.gld-legal-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gld-legal-link:hover {
    color: var(--gld-gold-dim);
}

/* Visual Section */
.gld-legal-visual {
    position: relative;
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.gld-legal-big-letter {
    font-size: 25rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    margin-right: -40px;
}


.gld-legal-person-placeholder {
    position: absolute;
    bottom: -222px;
    right: 0;
    width: 350px;
    height: 450px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(179, 135, 40, 0.15) 0%, transparent 70%);
}

.placeholder-msg {
    color: rgba(255,255,255,0.2);
    border: 2px dashed rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .gld-legal-container { flex-direction: column; padding: 60px 30px; text-align: center; }
    .gld-legal-actions { justify-content: center; flex-direction: column; gap: 20px; }
    .gld-legal-visual { display: none; }
    .gld-legal-title { font-size: 2.5rem; }
}

:root {
    --jspr-ftr-bg: #080808;
    --jspr-ftr-gold: #f5d448;
    --jspr-ftr-gold-grad: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 100%);
    --jspr-ftr-text-dim: #888;
    --jspr-ftr-border: rgba(255, 255, 255, 0.05);
}

.jspr-ftr-section {
    position: relative;
    background-color: var(--jspr-ftr-bg);
    color: white;
    padding: 80px 0 40px 0;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    border-top: 1px solid var(--jspr-ftr-border);
}

/* Background Grain Effect */
.jspr-ftr-noise {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.jspr-ftr-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Links Columns */
.jspr-ftr-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.jspr-ftr-header {
    color: var(--jspr-ftr-gold);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jspr-ftr-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jspr-ftr-links li { margin-bottom: 12px; }

.jspr-ftr-links a {
    color: var(--jspr-ftr-text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.jspr-ftr-links a:hover { color: white; transform: translateX(5px); display: inline-block; }

/* Subscription Box */
.jspr-ftr-subscribe p { font-size: 14px; color: #ccc; margin-bottom: 20px; }

.jspr-ftr-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--jspr-ftr-border);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(10px);
}

.jspr-ftr-input-group input {
    background: transparent;
    border: none;
    padding: 0 20px;
    color: white;
    flex: 1;
    outline: none;
    font-size: 14px;
}

.jspr-ftr-btn {
    background: var(--jspr-ftr-gold-grad);
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.jspr-ftr-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(245, 212, 72, 0.3); }

.jspr-ftr-disclaimer { font-size: 11px; color: #555; display: block; margin-top: 15px; }

/* Middle Divider Section */
.jspr-ftr-mid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--jspr-ftr-border);
    padding: 40px 0;
}

.jspr-ftr-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.jspr-gold-dot { color: var(--jspr-ftr-gold); }

.jspr-ftr-socials { display: flex; gap: 20px; }
.jspr-ftr-socials a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--jspr-ftr-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; transition: 0.3s;
}
.jspr-ftr-socials a:hover { background: var(--jspr-ftr-gold); color: #000; transform: translateY(-3px); }

/* Bottom Bar */
.jspr-ftr-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #555;
    padding-top: 20px;
}

.jspr-ftr-legal { display: flex; gap: 25px; }
.jspr-ftr-legal a { color: #555; text-decoration: none; transition: 0.3s; }
.jspr-ftr-legal a:hover { color: var(--jspr-ftr-text-dim); }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .jspr-ftr-top { grid-template-columns: 1fr 1fr; }
    .jspr-ftr-mid { flex-direction: column; gap: 30px; text-align: center; }
}

@media (max-width: 600px) {
    .jspr-ftr-top { grid-template-columns: 1fr; }
    .jspr-ftr-bot { flex-direction: column; gap: 15px; text-align: center; }
}


:root {
    --gm-gold: #f9d423;
    --gm-gold-dark: #d4af37;
    --gm-gold-grad: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728);
    --gm-bg-dark: #0a0a0a;
    --gm-glass: rgba(20, 20, 20, 0.75);
    --gm-border: rgba(212, 175, 55, 0.2);
}

.gm-login-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--gm-bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: white;
}

/* --- THE BACKGROUND BEAM --- */
.gm-bg-visuals {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gm-light-beam {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80%;
    height: 140%;
    background: radial-gradient(circle at 80% 30%, rgba(249, 212, 35, 0.25) 0%, transparent 70%);
    transform: rotate(-15deg);
    filter: blur(60px);
}

.gm-particles {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    background:url('./assets/img/bc-image.png');
    background-repeat: no-repeat;     /* ✅ don’t repeat */
  background-position: center;      /* ✅ center */
  background-size: cover;           /* ✅ cover full area */
}

/* --- LOGIN CARD --- */
.gm-login-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    background: var(--gm-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gm-border);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* Logo & Title */
.gm-header { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.gm-logo-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gm-gold-grad); color: #000;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px;
}
.gm-brand { font-weight: 700; font-size: 18px; }

.gm-title { 
    font-size: 32px; font-weight: 700; margin-bottom: 30px; 
    color: var(--gm-gold);
}

/* Inputs */
.gm-input-group { margin-bottom: 20px; }
.gm-input-group label { display: block; font-size: 13px; color: #aaa; margin-bottom: 8px; }

.gm-field-wrap {
    position: relative;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--gm-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.gm-field-wrap input {
    background: transparent; border: none; padding: 14px 10px;
    color: white; width: 100%; outline: none; font-size: 15px;
}

.gm-field-icon { color: #666; font-size: 16px; }
.gm-toggle-pass { color: var(--gm-gold-dark); cursor: pointer; opacity: 0.7; }

.gm-forgot-wrap { text-align: right; margin-top: 8px; }
.gm-link-dim { font-size: 12px; color: #888; text-decoration: none; transition: 0.3s; }
.gm-link-dim:hover { color: var(--gm-gold); }

/* Buttons */
.gm-btn-primary {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    background: var(--gm-gold-grad);
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(179, 135, 40, 0.3);
}

.gm-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(179, 135, 40, 0.5); }

/* Divider */
.gm-divider {
    position: relative; text-align: center; margin: 30px 0;
}
.gm-divider::before {
    content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px;
    background: var(--gm-border); z-index: 1;
}
.gm-divider span {
    position: relative; z-index: 2; background: #1a1a1a; padding: 0 15px;
    font-size: 12px; color: #666; font-weight: 700;
}

/* Social Buttons */
.gm-social-group { display: grid; gap: 12px; }
.gm-btn-social {
    background: transparent; border: 1px solid var(--gm-border);
    color: white; padding: 14px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-weight: 500; font-size: 14px; cursor: pointer; transition: 0.3s;
}
.gm-btn-social:hover { background: rgba(255,255,255,0.05); }
.gm-btn-social img { width: 18px; }
.gm-fb-icon { color: #1877F2; font-size: 18px; }

/* Footer */
.gm-footer { text-align: center; margin-top: 30px; font-size: 14px; color: #888; }
.gm-link-gold { color: var(--gm-gold-dark); text-decoration: none; font-weight: 600; }
.gm-link-gold:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 480px) {
    .gm-login-card { padding: 30px 20px; border-radius: 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
}


:root {
  --hy-gold: #d4af37;
  --hy-gold-grad: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 100%);
  --hy-bg: #0a0a0a;
  --hy-card-bg: rgba(25, 20, 10, 0.6);
  --hy-border: rgba(212, 175, 55, 0.2);
}

body { margin: 0; background-color: var(--hy-bg); color: white; font-family: 'Inter', sans-serif; }

.hyg-dashboard {
  display: flex;
  min-height: 100vh;
  background: radial-gradient(circle at top right, #2a1f0d 0%, var(--hy-bg) 70%);
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png'); /* Starry effect */
}

/* Sidebar */
.hyg-sidebar {
  width: 260px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border-right: 1px solid var(--hy-border);
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}

.hyg-nav{ display:flex; flex-direction:column; }
.hyg-nav-divider{ height:1px; margin:12px 30px; background: rgba(255,255,255,0.08); }

.hyg-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 30px;
  font-size: 22px;
  font-weight: 800;
  color: var(--hy-gold);
  margin-bottom: 50px;
}

.hyg-nav a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.hyg-nav a i { width: 20px; font-size: 18px; }
.hyg-nav a.active {
  background: var(--hy-gold-grad);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hyg-sidebar-decor{
display: flex;
justify-content:center;
margin-top: 50px;
}

.hyg-sidebar-decor img { width: 100px; filter: drop-shadow(0 0 20px var(--hy-gold)); margin-top: auto; }

/* Main Area */
.hyg-main { flex: 1; padding: 40px; min-width: 0; }

.hyg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.hyg-header h1 { font-size: 28px; margin: 0; }
.hyg-header p { color: #888; font-size: 14px; margin: 5px 0 0; }

.hyg-header-stats {
  background: var(--hy-card-bg);
  border: 1px solid var(--hy-border);
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hyg-h-stat span { display: block; font-size: 12px; color: #777; }
.hyg-h-stat strong { color: var(--hy-gold); font-size: 18px; }
.hyg-balance { border-left: 2px solid var(--hy-gold); padding-left: 20px; }

/* Cards & Grid */
.hyg-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 25px; }
.hyg-grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 25px; }
.hyg-grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; }

.hyg-card {
  background: var(--hy-card-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--hy-border);
  border-radius: 16px;
  padding: 20px;
}

.hyg-card label { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 1px; }

.hyg-stat-main { display: flex; align-items: center; gap: 15px; margin: 15px 0; }
.hyg-gold-icon { font-size: 32px; color: var(--hy-gold); }
.hyg-stat-main h3 { font-size: 24px; margin: 0; }
.hyg-stat-main p { font-size: 12px; color: #555; margin: 0; }

.hyg-pill-row { display: flex; gap: 8px; }
.hyg-pill-row{ flex-wrap: wrap; }
.hyg-pill-row button {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--hy-border);
  color: var(--hy-gold);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
}

/* Charts & Plans */
.hyg-chart-placeholder { height: 160px; margin: 20px 0; border-bottom: 1px dashed #333; }
.hyg-plan-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  margin-top: 15px;
}

.hyg-plan-val { font-weight: 800; color: var(--hy-gold); font-size: 20px; margin-left: auto; }

/* Table */
.hyg-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
.hyg-table th { text-align: left; color: #666; font-size: 12px; padding-bottom: 10px; }
.hyg-table td { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 13px; }
.hyg-status {
  background: var(--hy-gold-grad);
  color: #000;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 11px;
}

/* Ref Link */
.hyg-ref-link {
    margin-top: 20px;
    display: flex;
    background: #000;
    border: 1px solid var(--hy-border);
    border-radius: 8px;
    overflow: hidden;
}
.hyg-ref-link input { flex: 1; background: transparent; border: none; padding: 12px; color: #aaa; }
.hyg-ref-link button { background: var(--hy-gold-grad); border: none; padding: 0 15px; font-weight: bold; cursor: pointer; }

@media (max-width: 1200px){
  .hyg-grid-4{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px){
  .hyg-dashboard{ flex-direction: column; }
  .hyg-sidebar{
    width: 100%;
    padding: 14px 0;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .hyg-logo{ margin-bottom: 0; padding: 0 16px; font-size: 18px; white-space: nowrap; }
  .hyg-nav{
    flex: 1;
    flex-direction: row;
    gap: 6px;
    padding: 0 16px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .hyg-nav a{
    padding: 10px 12px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 10px;
  }
  .hyg-nav-divider{ display:none; }
  .hyg-sidebar-decor{ display:none; }

  .hyg-main{ padding: 18px 16px 30px; }
  .hyg-header{ flex-direction: column; align-items: flex-start; gap: 14px; }
  .hyg-header-stats{ width: 100%; gap: 14px; padding: 14px 16px; }
  .hyg-balance{ border-left: 0; padding-left: 0; }
  .hyg-grid-2-1{ grid-template-columns: 1fr; }
  .hyg-grid-2{ grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  .hyg-grid-4{ grid-template-columns: 1fr; }
  .hyg-table{ display:block; overflow-x:auto; }
  .hyg-table th, .hyg-table td{ white-space: nowrap; }
}





:root {
    --hyg-gold: #f5d448;
    --hyg-gold-grad: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 100%);
    --hyg-bg: #080808;
    --hyg-border: rgba(212, 175, 55, 0.25);
    --hyg-glass: rgba(20, 20, 20, 0.7);
}

.hyg-cp-section {
    /* position: relative; */
    width: 100%;
    min-height: 100vh;
    /* background-color: var(--hyg-bg); */
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow: hidden;
}

/* --- THE BACKGROUND FX --- */
.hyg-cp-bg-fx { position: absolute; inset: 0; pointer-events: none; }
.hyg-cp-beam {
    position: absolute; top: -10%; right: -5%; width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(245, 212, 72, 0.1) 0%, transparent 70%);
    filter: blur(80px); transform: rotate(-10deg);
}
.hyg-cp-dust {
    position: absolute; inset: 0; opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- STEPPER --- */
.hyg-cp-stepper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.hyg-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.hyg-step .num {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid #444;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
}

.hyg-step.active { color: var(--hyg-gold); }
.hyg-step.active .num {
    background: var(--hyg-gold-grad);
    color: #000;
    border: none;
    font-weight: 800;
}

.hyg-sep { color: #333; font-size: 12px; }

/* --- LAYOUT & PANELS --- */
.hyg-cp-main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.hyg-glass-panel {
    background: var(--hyg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--hyg-border);
    border-radius: 20px;
    padding: 30px;
}

.hyg-panel-title {
    font-size: 24px;
    margin: 0 0 30px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

/* --- PLAN CARDS --- */
.hyg-cp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hyg-plan-card {
    position: relative;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--hyg-border);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s;
}

.hyg-plan-card:hover { transform: translateY(-5px); border-color: rgba(245,212,72,0.4); }

.hyg-popular-tag {
    position: absolute; top: 10px; left: 10px;
    background: var(--hyg-gold-grad);
    color: #000;
    font-size: 10px; font-weight: 900; text-transform: uppercase;
    padding: 4px 12px; border-radius: 8px 2px 8px 2px;
    z-index: 5;
}

.hyg-card-top {
    padding: 40px 20px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(245,212,72,0.05) 0%, transparent 100%);
    /* The curved divider effect */
    border-bottom: 2px solid rgba(245,212,72,0.1);
    position: relative;
}

.hyg-card-top h4 { font-size: 18px; margin: 0 0 15px; color: #ccc; }
.hyg-roi-val { font-size: 42px; font-weight: 800; color: var(--hyg-gold); line-height: 1; }
.hyg-roi-val span { font-size: 14px; color: #888; display: block; margin-top: 5px; }

.hyg-card-bot { padding: 25px 20px; }
.hyg-details-list { list-style: none; padding: 0; margin: 0 0 25px; }
.hyg-details-list li {
    font-size: 13px; color: #888;
    margin-bottom: 12px;
    display: flex; justify-content: space-between;
}
.hyg-details-list li strong { color: #fff; }

.hyg-select-btn {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--hyg-border);
    color: var(--hyg-gold);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.hyg-select-btn:hover { background: var(--hyg-gold-grad); color: #000; }

/* --- CALCULATOR SIDEBAR --- */
.hyg-cp-calc-sidebar { position: relative; }
.hyg-calc-input {
    background: #000;
    border: 1px solid var(--hyg-border);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.hyg-calc-input input {
    background: transparent; border: none; color: white;
    font-size: 24px; font-weight: 800; width: 60%; outline: none;
}

.hyg-calc-body label { font-size: 11px; text-transform: uppercase; color: #555; display: block; margin-bottom: 10px; }

.hyg-calc-row {
    display: flex; justify-content: space-between;
    padding: 12px 0; font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.hyg-calc-row strong { color: var(--hyg-gold); }
.hyg-calc-row.highlighted { color: var(--hyg-gold); font-weight: 800; font-size: 16px; border-bottom: none; }

.hyg-proceed-btn {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    background: var(--hyg-gold-grad);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(179, 135, 40, 0.3);
}

.hyg-calc-visual {
    margin-top: 40px;
    text-align: center;
    font-size: 100px;
    color: var(--hyg-gold);
    opacity: 0.15;
    filter: drop-shadow(0 0 20px var(--hyg-gold));
}

.hyg-help-text {
    text-align: center; margin-top: 40px; font-size: 14px; color: #555; font-style: italic;
}

/* Responsive */
@media (max-width: 1100px) {
    .hyg-cp-main-layout { grid-template-columns: 1fr; }
    .hyg-cp-calc-sidebar { order: -1; }
}

@media (max-width: 768px) {
    .hyg-cp-cards-grid { grid-template-columns: 1fr; }
    .hyg-cp-stepper { display: none; }
}


