.default-card{
    background-color: #1a1a26f7;
}
    :root {
      --gold: #c9a84c;
      --gold-light: #e6c96e;
      --gold-pale: #f5e6b8;
      --dark: #07090f;
      --dark-2: #0d1117;
      --dark-3: #141a24;
      --dark-4: #1c2535;
      --text-muted-custom: #8a95a8;
      --text-light: #cdd5e0;
      --accent-green: #00d68f;
      --accent-red: #ff4d6d;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--text-light);
      font-family: 'Roboto', sans-serif;
      overflow-x: hidden;
    }

    /* ── TYPOGRAPHY ── */
    .serif { font-family: 'Times New Roman', 'Playfair Display', serif; }
    .gold { color: var(--gold); }
    .gold-light { color: var(--gold-light); }

    /* ── CANVAS ── */
    #bg-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .z1 { position: relative; z-index: 1; }

    /* ── NAVBAR ── */
    .navbar-custom {
      background: rgba(7, 9, 15, 0.85);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.18);
      padding: 18px 0;
      transition: all 0.3s;
    }
    .navbar-custom.scrolled {
      padding: 10px 0;
      background: rgba(7, 9, 15, 0.97);
    }
    .navbar-brand-text {
      font-family: 'Times New Roman', serif;
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--gold) !important;
    }
    .navbar-brand-text span {
      color: #fff;
    }
    .nav-link-custom {
      font-family: 'Roboto', sans-serif;
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted-custom) !important;
      padding: 6px 14px !important;
      transition: color 0.25s;
    }
    .nav-link-custom:hover { color: var(--gold-light) !important; }
    .btn-nav {
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 9px 22px;
      border-radius: 2px;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      background: transparent;
      transition: all 0.25s;
    }
    .btn-nav:hover {
      background: var(--gold);
      color: var(--dark);
    }
    .btn-nav-portal {
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 9px 22px;
      border-radius: 2px;
      border: 1.5px solid var(--accent-green);
      color: var(--accent-green);
      background: rgba(0,214,143,0.06);
      transition: all 0.25s;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }
    .btn-nav-portal:hover {
      background: var(--accent-green);
      color: var(--dark);
      box-shadow: 0 0 20px rgba(0,214,143,0.25);
    }
    .btn-nav-portal .portal-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-green);
      animation: pulse-dot 1.5s ease-in-out infinite;
    }
    .btn-nav-portal:hover .portal-dot { background: var(--dark); animation: none; }

    /* ── INVESTOR PORTAL MODAL ── */
    .portal-modal-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(8px);
      z-index: 9999;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
    .portal-modal-overlay.open { opacity: 1; pointer-events: all; }
    .portal-modal {
      background: var(--dark-3);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 6px;
      padding: 48px 44px;
      width: 100%; max-width: 420px;
      position: relative;
      transform: translateY(24px) scale(0.97);
      transition: transform 0.3s;
    }
    .portal-modal-overlay.open .portal-modal { transform: translateY(0) scale(1); }
    .portal-modal-close {
      position: absolute; top: 16px; right: 20px;
      background: none; border: none;
      color: var(--text-muted-custom); font-size: 1.3rem; cursor: pointer;
      transition: color 0.2s;
    }
    .portal-modal-close:hover { color: var(--gold); }
    .portal-modal-title {
      font-family: 'Times New Roman', serif;
      font-size: 1.6rem; font-weight: 700; color: #fff;
      margin-bottom: 6px;
    }
    .portal-modal-sub {
      font-family: 'Roboto', sans-serif;
      font-size: 0.85rem; color: var(--text-muted-custom);
      margin-bottom: 32px;
    }
    .portal-input-group { margin-bottom: 18px; }
    .portal-input-group label {
      font-family: 'Roboto', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold); display: block; margin-bottom: 8px;
    }
    .portal-input {
      width: 100%;
      background: var(--dark-4);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 2px;
      padding: 12px 16px;
      color: #fff;
      font-family: 'Roboto', sans-serif;
      font-size: 0.93rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .portal-input:focus { border-color: var(--gold); }
    .portal-input::placeholder { color: rgba(138,149,168,0.5); }
    .btn-portal-login {
      width: 100%;
      background: var(--gold);
      color: var(--dark);
      border: none;
      border-radius: 2px;
      padding: 14px;
      font-family: 'Roboto', sans-serif;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.15em; text-transform: uppercase;
      cursor: pointer; transition: all 0.25s; margin-top: 8px;
    }
    .btn-portal-login:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 8px 30px rgba(201,168,76,0.3);
    }
    .portal-divider {
      text-align: center; margin: 20px 0;
      font-family: 'Roboto', sans-serif;
      font-size: 0.75rem; color: var(--text-muted-custom);
    }
    .portal-register-link {
      display: block; text-align: center;
      font-family: 'Roboto', sans-serif;
      font-size: 0.85rem; color: var(--gold);
      text-decoration: none; transition: color 0.2s;
    }
    .portal-register-link:hover { color: var(--gold-light); }
    .portal-error {
      background: rgba(255,77,109,0.1);
      border: 1px solid rgba(255,77,109,0.3);
      border-radius: 2px; padding: 10px 14px;
      font-family: 'Roboto', sans-serif;
      font-size: 0.8rem; color: var(--accent-red);
      margin-bottom: 16px; display: none;
    }

    /* ── INTERACTIVE PLAN TOOLTIP ── */
    .plan-min-invest {
      font-family: 'Roboto', sans-serif;
      font-size: 0.75rem; color: var(--text-muted-custom);
      margin-top: 4px;
    }

    /* ── FAQ ACCORDION ── */
    #faq { background: var(--dark); }
    .faq-item {
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .faq-question {
      font-family: 'Roboto', sans-serif;
      font-weight: 500; font-size: 0.97rem;
      color: #fff; padding: 22px 0;
      cursor: pointer; display: flex;
      justify-content: space-between; align-items: center;
      transition: color 0.2s; user-select: none;
      gap: 16px;
    }
    .faq-question:hover { color: var(--gold-light); }
    .faq-icon {
      font-size: 1.2rem; color: var(--gold);
      transition: transform 0.3s; flex-shrink: 0;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      font-family: 'Roboto', sans-serif;
      font-size: 0.9rem; color: var(--text-muted-custom);
      line-height: 1.75; max-height: 0;
      overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-item.open .faq-answer { max-height: 200px; padding-bottom: 22px; }

    /* ── ROI CALCULATOR ── */
    #calculator { background: var(--dark-2); }
    .calc-box {
      background: var(--dark-3);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 4px; padding: 48px 40px;
    }
    .calc-label {
      font-family: 'Roboto', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); display: block; margin-bottom: 10px;
    }
    .calc-input {
      width: 100%;
      background: var(--dark-4);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 2px; padding: 13px 18px;
      color: #fff; font-family: 'Roboto', sans-serif;
      font-size: 1rem; outline: none;
      transition: border-color 0.2s; margin-bottom: 20px;
    }
    .calc-input:focus { border-color: var(--gold); }
    .calc-range {
      width: 100%; appearance: none;
      height: 3px; border-radius: 2px;
      background: rgba(201,168,76,0.2); outline: none;
      margin-bottom: 6px; cursor: pointer;
    }
    .calc-range::-webkit-slider-thumb {
      appearance: none; width: 18px; height: 18px;
      border-radius: 50%; background: var(--gold);
      border: 2px solid var(--dark); cursor: pointer;
    }
    .calc-result-box {
      background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 4px; padding: 32px;
      text-align: center;
    }
    .calc-result-num {
      font-family: 'Times New Roman', serif;
      font-size: 3rem; font-weight: 700; color: var(--accent-green);
      margin-bottom: 6px;
    }
    .calc-result-label {
      font-family: 'Roboto', sans-serif;
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-muted-custom);
    }
    .calc-breakdown {
      margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    }
    .calc-breakdown-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 3px; padding: 12px 18px; text-align: center;
      flex: 1; min-width: 100px;
    }
    .calc-breakdown-val {
      font-family: 'Times New Roman', serif;
      font-size: 1.3rem; font-weight: 700; color: var(--gold);
    }
    .calc-breakdown-lbl {
      font-family: 'Roboto', sans-serif;
      font-size: 0.68rem; color: var(--text-muted-custom);
      text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px;
    }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--dark-3); }
    .testi-card {
      background: var(--dark-4);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 4px; padding: 36px 30px;
      height: 100%; transition: all 0.3s;
    }
    .testi-card:hover {
      border-color: rgba(201,168,76,0.3);
      transform: translateY(-4px);
    }
    .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
    .testi-text {
      font-family: 'Roboto', sans-serif;
      font-size: 0.93rem; color: var(--text-light);
      line-height: 1.75; margin-bottom: 24px; font-style: italic;
    }
    .testi-author {
      font-family: 'Times New Roman', serif;
      font-size: 1rem; font-weight: 700; color: #fff;
    }
    .testi-role {
      font-family: 'Roboto', sans-serif;
      font-size: 0.75rem; color: var(--gold); margin-top: 3px;
      text-transform: uppercase; letter-spacing: 0.1em;
    }

    /* ── SMOOTH SCROLL PROGRESS BAR ── */
    #scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 2px; background: var(--gold);
      z-index: 99999; width: 0%;
      transition: width 0.1s linear;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
    }
    .hero-label {
      font-family: 'Roboto', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
    }
    .hero-label::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }
    .hero-headline {
      font-family: 'Times New Roman', serif;
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 700;
      line-height: 1.07;
      color: #fff;
      margin-bottom: 32px;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-sub {
      font-family: 'Roboto', sans-serif;
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text-muted-custom);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 44px;
    }
    .btn-primary-gold {
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 16px 38px;
      border-radius: 2px;
      background: var(--gold);
      color: var(--dark);
      border: none;
      text-decoration: none;
      display: inline-block;
      transition: all 0.25s;
    }
    .btn-primary-gold:hover {
      background: var(--gold-light);
      color: var(--dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 40px rgba(201,168,76,0.3);
    }
    .btn-outline-gold {
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 15px 36px;
      border-radius: 2px;
      border: 1.5px solid rgba(201,168,76,0.5);
      color: var(--gold);
      background: transparent;
      text-decoration: none;
      display: inline-block;
      transition: all 0.25s;
    }
    .btn-outline-gold:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.07);
      color: var(--gold-light);
    }
    .hero-stats {
      display: flex;
      gap: 44px;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    .hero-stat-num {
      font-family: 'Times New Roman', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
    }
    .hero-stat-label {
      font-family: 'Roboto', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted-custom);
      margin-top: 4px;
    }

    /* ── TICKER ── */
    .ticker-wrap {
      background: var(--dark-3);
      border-top: 1px solid rgba(201,168,76,0.12);
      border-bottom: 1px solid rgba(201,168,76,0.12);
      padding: 12px 0;
      overflow: hidden;
    }
    .ticker-track {
      display: flex;
      gap: 60px;
      animation: ticker 30s linear infinite;
      width: max-content;
    }
    .ticker-item {
      font-family: 'Roboto', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      white-space: nowrap;
      color: var(--text-muted-custom);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .ticker-item .pair { color: #fff; font-weight: 700; }
    .ticker-item .up { color: var(--accent-green); }
    .ticker-item .dn { color: var(--accent-red); }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── SECTION BASE ── */
    section { padding: 100px 0; }
    .section-label {
      font-family: 'Roboto', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Times New Roman', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: #ffffff;
      text-shadow: 0 2px 20px rgba(255,255,255,0.08);
      line-height: 1.18;
      margin-bottom: 20px;
    }
    .section-title .highlight {
      color: var(--gold-light);
    }
    .section-desc {
      font-family: 'Roboto', sans-serif;
      font-size: 1rem;
      color: var(--text-muted-custom);
      line-height: 1.75;
      max-width: 560px;
    }

    /* ── PLANS ── */
    #plans { background: var(--dark-2); }
    .plan-card {
      background: var(--dark-3);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 4px;
      padding: 40px 32px;
      height: 100%;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .plan-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .plan-card:hover {
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    }
    .plan-card:hover::before { opacity: 1; }
    .plan-card.featured {
      border-color: rgba(201,168,76,0.5);
      background: linear-gradient(145deg, #1c2535, #14202e);
    }
    .plan-card.featured::before { opacity: 1; }
    .plan-badge {
      position: absolute;
      top: 18px; right: 18px;
      font-family: 'Roboto', sans-serif;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
      background: var(--gold);
      color: var(--dark);
    }
    .plan-icon {
      width: 52px; height: 52px;
      border-radius: 3px;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.2);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      font-size: 1.4rem;
      color: var(--gold);
    }
    .plan-name {
      font-family: 'Times New Roman', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      text-transform: capitalize;
    }
    .plan-roi {
      font-family: 'Times New Roman', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin: 20px 0 6px;
    }
    .plan-roi span {
      font-family: 'Roboto', sans-serif;
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text-muted-custom);
    }
    .plan-features {
      list-style: none;
      margin: 24px 0 32px;
    }
    .plan-features li {
      font-family: 'Roboto', sans-serif;
      font-size: 0.88rem;
      color: var(--text-muted-custom);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .plan-features li:last-child { border-bottom: none; }
    .plan-features li i { color: var(--gold); font-size: 0.75rem; }
    .btn-plan {
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 13px 28px;
      border-radius: 2px;
      border: 1.5px solid rgba(201,168,76,0.4);
      color: var(--gold);
      background: transparent;
      text-decoration: none;
      display: block;
      text-align: center;
      transition: all 0.25s;
      width: 100%;
    }
    .btn-plan:hover, .plan-card.featured .btn-plan {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark);
    }

    /* ── HOW IT WORKS ── */
    #how { background: var(--dark); }
    .step-item {
      display: flex;
      gap: 28px;
      margin-bottom: 52px;
    }
    .step-num {
      font-family: 'Times New Roman', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: rgba(201,168,76,0.15);
      line-height: 1;
      min-width: 60px;
      user-select: none;
    }
    .step-title {
      font-family: 'Times New Roman', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .step-desc {
      font-family: 'Roboto', sans-serif;
      font-size: 0.93rem;
      color: var(--text-muted-custom);
      line-height: 1.7;
    }

    /* ── METRICS ── */
    #metrics { background: var(--dark-2); }
    .metric-card {
      background: var(--dark-3);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 4px;
      padding: 40px 32px;
      text-align: center;
      transition: all 0.3s;
    }
    .metric-card:hover {
      border-color: rgba(201,168,76,0.35);
      transform: translateY(-4px);
    }
    .metric-num {
      font-family: 'Times New Roman', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .metric-label {
      font-family: 'Roboto', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted-custom);
    }

    /* ── FEATURES ── */
    #features { background: var(--dark); }
    .feature-item {
      display: flex;
      gap: 22px;
      margin-bottom: 40px;
    }
    .feature-icon {
      width: 48px; height: 48px;
      min-width: 48px;
      border-radius: 3px;
      background: rgba(201,168,76,0.08);
      border: 1px solid rgba(201,168,76,0.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      color: var(--gold);
    }
    .feature-title {
      font-family: 'Times New Roman', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 7px;
    }
    .feature-desc {
      font-family: 'Roboto', sans-serif;
      font-size: 0.88rem;
      color: var(--text-muted-custom);
      line-height: 1.65;
    }

    /* ── REFERRAL ── */
    #referral { background: var(--dark-3); }
    .referral-card {
      background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 4px;
      padding: 60px 50px;
    }
    .referral-big {
      font-family: 'Times New Roman', serif;
      font-size: 5rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    /* ── PAYOUT ── */
    #payout { background: var(--dark-2); }
    .method-card {
      background: var(--dark-3);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 4px;
      padding: 36px 28px;
      text-align: center;
      transition: all 0.3s;
    }
    .method-card:hover {
      border-color: rgba(201,168,76,0.35);
      transform: translateY(-4px);
    }
    .method-icon {
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .method-title {
      font-family: 'Times New Roman', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .method-desc {
      font-family: 'Roboto', sans-serif;
      font-size: 0.85rem;
      color: var(--text-muted-custom);
      line-height: 1.6;
    }

    /* ── CTA ── */
    #cta { background: var(--dark); }
    .cta-box {
      background: linear-gradient(135deg, #0d1117 0%, #141a24 50%, #0d1117 100%);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 6px;
      padding: 80px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 200px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .cta-headline {
      font-family: 'Times New Roman', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: #ffffff;
      text-shadow: 0 2px 24px rgba(255,255,255,0.1);
      margin-bottom: 20px;
    }

    /* ── PLAN PICKER (CALCULATOR) ── */
    .plan-pick {
      background: var(--dark-4);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 3px; padding: 14px 10px;
      text-align: center; cursor: pointer;
      transition: all 0.2s;
    }
    .plan-pick:hover {
      border-color: rgba(201,168,76,0.4);
      background: rgba(201,168,76,0.06);
    }
    .plan-pick.active {
      border-color: var(--gold);
      background: rgba(201,168,76,0.1);
    }
    .plan-pick-name {
      font-family: 'Roboto', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-muted-custom); margin-bottom: 4px;
    }
    .plan-pick.active .plan-pick-name { color: var(--gold-light); }
    .plan-pick-roi {
      font-family: 'Times New Roman', serif;
      font-size: 1.05rem; font-weight: 700; color: #fff;
    }
    .plan-pick.active .plan-pick-roi { color: var(--gold); }
    .cta-sub {
      font-family: 'Roboto', sans-serif;
      font-size: 1rem;
      color: var(--text-muted-custom);
      margin-bottom: 44px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark-2);
      border-top: 1px solid rgba(201,168,76,0.12);
      padding: 70px 0 30px;
    }
    .footer-brand {
      font-family: 'Times New Roman', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .footer-tagline {
      font-family: 'Roboto', sans-serif;
      font-size: 0.85rem;
      color: var(--text-muted-custom);
      line-height: 1.65;
      max-width: 280px;
      margin-bottom: 24px;
    }
    .footer-heading {
      font-family: 'Roboto', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .footer-link {
      font-family: 'Roboto', sans-serif;
      font-size: 0.88rem;
      color: var(--text-muted-custom);
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-link:hover { color: var(--gold-light); }
    .footer-divider {
      border-color: rgba(201,168,76,0.1);
      margin: 40px 0 24px;
    }
    .footer-copy {
      font-family: 'Roboto', sans-serif;
      font-size: 0.78rem;
      color: rgba(138,149,168,0.6);
    }
    .footer-legal {
      font-family: 'Roboto', sans-serif;
      font-size: 0.78rem;
      color: rgba(138,149,168,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal:hover { color: var(--gold); }

    /* ── DIVIDER ── */
    .gold-divider {
      width: 56px; height: 2px;
      background: var(--gold);
      margin: 20px 0 32px;
    }

    /* ── TRUST BADGES ── */
    .trust-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Roboto', sans-serif;
      font-size: 0.8rem;
      color: var(--text-muted-custom);
      margin-bottom: 10px;
    }
    .trust-row i { color: var(--gold); }

    /* ── SCROLL ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }

    /* ── LIVE BADGE ── */
    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'Roboto', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-green);
      background: rgba(0, 214, 143, 0.08);
      border: 1px solid rgba(0, 214, 143, 0.25);
      padding: 5px 12px;
      border-radius: 2px;
    }
    .live-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-green);
      animation: pulse-dot 1.5s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    /* ── NAVBAR TOGGLER ── */
    .navbar-toggler { border-color: rgba(201,168,76,0.3); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 168, 76, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ── TRADING TABLE ── */
    #trading { background: var(--dark); }
    .trade-table {
      background: var(--dark-3);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 4px;
      overflow: hidden;
    }
    .trade-table table { margin: 0; }
    .trade-table thead th {
      font-family: 'Roboto', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201,168,76,0.06);
      border-color: rgba(201,168,76,0.12);
      padding: 16px 20px;
    }
    .trade-table tbody td {
      font-family: 'Roboto', sans-serif;
      font-size: 0.88rem;
      color: var(--text-light);
      background: transparent;
      border-color: rgba(255,255,255,0.04);
      padding: 14px 20px;
    }
    .trade-table tbody tr:hover td { background: rgba(201,168,76,0.03); }
    .pair-cell { font-weight: 700; color: #fff; }
    .status-active {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 2px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(0, 214, 143, 0.1);
      color: var(--accent-green);
      border: 1px solid rgba(0, 214, 143, 0.2);
    }
    .up-val { color: var(--accent-green); font-weight: 700; }
    .dn-val { color: var(--accent-red); font-weight: 700; }

    @media (max-width: 768px) {
      .hero-stats { flex-wrap: wrap; gap: 24px; }
      .cta-box { padding: 50px 28px; }
      .referral-card { padding: 40px 28px; }
    }
img.logo{
    width: 106px;
}
