
:root {
  --bg: #050b14;
  --surface: #080f1c;
  --surface-2: #0c1628;
  --text: #d8eaf8;
  --muted: #5a7490;
  --accent: #00d4ff;
  --accent2: #00ff88;
  --gold: #c9a84c;
  --gold-light: #f0cc7a;
  --border: rgba(0, 212, 255, 0.12);
  --border-strong: rgba(0, 212, 255, 0.22);
  --border-gold: rgba(201, 168, 76, 0.2);
  --glow-gold: 0 0 40px rgba(201, 168, 76, 0.2);
}

html {
  --website-nav-height: 84px;
  --website-nav-mobile-height: 76px;
  background: var(--bg);
}

html,
body {
  width: 100%;
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
}


/* ─── NAV ───────────────────────────────────────────── */
.website-layout,
.user-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
}

.website-page-content {
  flex: 1 0 auto;
  width: 100%;
  min-width: 0;
  display: block;
}

.website-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1300;
  width: 100%;
  background: rgba(5, 11, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}
.website-navbar-inner {
  min-height: var(--website-nav-height);
  max-width: 1640px;
  margin: 0 auto;
  padding: 16px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  flex-shrink: 0;
}
.nav-logo .hl { color: var(--accent); }
.logo-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent2);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.75);} }

.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active, .account-summary.active { color: var(--accent); }
.nav-links a.active {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.account-dropdown {
  position: relative;
}
.account-details {
  position: relative;
}
.account-summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.account-summary::-webkit-details-marker,
.account-summary::-moz-list-marker {
  display: none;
}
.account-avatar,
.account-avatar-placeholder {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.account-avatar {
  object-fit: cover;
}
.account-avatar-placeholder {
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}
.account-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.account-username {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-transform: none;
}
.account-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 5px;
}

.account-caret {
  font-size: 0.7rem;
  line-height: 1;
  transform: translateY(1px);
}
.account-menu {
  position: absolute;
  top: 110%;
  right: 0;
  margin-top: 8px;
  background: rgba(8, 15, 28, 0.95);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  min-width: 190px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
}
.account-details[open] .account-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.account-menu li {
  padding: 0;
}
.account-menu a,
.account-menu .nav-link-button {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
}
.account-menu a:hover,
.account-menu .nav-link-button:hover,
.account-details[open] .account-summary,
.account-menu a.active {
  color: var(--accent);
}
.nav-inline-form { margin: 0; }
.nav-link-button {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s;
}
.nav-link-button:hover { color: var(--accent); }
.nav-vip {
  background: var(--gold); color: #000 !important;
  padding: 8px 22px; border-radius: 3px; font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-vip:hover { box-shadow: var(--glow-gold) !important; transform: translateY(-1px) !important; }
.website-mobile-sidebar,
#sidebar.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  z-index: 1410;
  background: linear-gradient(180deg, rgba(8,15,28,0.98) 0%, rgba(12,22,40,0.98) 100%);
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 60px rgba(0,0,0,0.35);
  transform: translateX(calc(100% + 32px));
  transition: transform 0.28s ease;
  display: flex !important;
  flex-direction: column;
  backdrop-filter: blur(18px);
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  contain: layout paint;
  overflow: hidden;
}
.website-mobile-sidebar.open,
#sidebar.mobile-sidebar.open,
html.website-menu-open .website-mobile-sidebar,
html.website-menu-open #sidebar.mobile-sidebar,
body.website-menu-open .website-mobile-sidebar,
body.website-menu-open #sidebar.mobile-sidebar {
  transform: translateX(0) !important;
  visibility: visible;
  pointer-events: auto;
}
.website-mobile-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--border);
}
.website-mobile-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0,212,255,0.04);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.website-mobile-close-btn:hover {
  background: rgba(0,212,255,0.12);
  color: var(--accent);
  transform: translateY(-1px);
}
.website-mobile-sidebar-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px calc(28px + env(safe-area-inset-bottom, 0px));
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.45) rgba(12, 22, 40, 0.4);
  overscroll-behavior: contain;
}
.website-mobile-sidebar-body::-webkit-scrollbar {
  width: 6px;
}
.website-mobile-sidebar-body::-webkit-scrollbar-track {
  background: rgba(12, 22, 40, 0.35);
  border-radius: 999px;
}
.website-mobile-sidebar-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.55), rgba(0, 212, 255, 0.25));
  border-radius: 999px;
}
.website-mobile-sidebar-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.7), rgba(0, 212, 255, 0.35));
}
.website-mobile-nav-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,212,255,0.08);
  background: rgba(12,22,40,0.42);
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
}
.website-mobile-nav-item:hover,
.website-mobile-nav-item.active {
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.18);
  transform: translateX(2px);
}
.website-mobile-nav-item-vip {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #050b14;
  border-color: rgba(201,168,76,0.35);
  justify-content: center;
  box-shadow: var(--glow-gold);
}
.website-mobile-nav-item-vip:hover,
.website-mobile-nav-item-vip.active {
  color: #050b14;
  background: linear-gradient(135deg, #f6d884, var(--gold));
  border-color: rgba(201,168,76,0.5);
}
.website-mobile-nav-form { margin: 0; }
.website-mobile-nav-item-button {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}
.website-mobile-account-dropdown {
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: 12px;
  overflow: visible;
}
.website-mobile-account-summary {
  margin: 0;
  width: 100%;
  justify-content: space-between;
}
.mobile-account-caret {
  font-size: 0.85rem;
}
.website-mobile-account-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(12,22,40,0.30);
  padding: 8px 12px 12px;
}
.website-mobile-account-dropdown[open] .website-mobile-account-menu {
  display: flex;
}



/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  background: var(--surface); border-top: 1px solid var(--border-gold);
  padding: 60px 64px 32px;
  width: 100%;
  max-width: 100%;
  min-height: auto;
  overflow-x: clip;
  flex-shrink: 0;
  margin-top: 0;
}
footer::before,
footer::after {
  content: none !important;
  display: none !important;
}
.footer-grid {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-grid > * {
  min-width: 0;
}
.footer-brand {}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem;
  letter-spacing: -0.02em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.footer-logo .hl { color: var(--accent); }
.footer-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.6;  }
.footer-heading {
  font-family: 'Space Mono', monospace; font-size: 0.65rem;
  color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem; color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom > * {
  min-width: 0;
}
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }
.footer-disclaimer {
  font-family: 'Space Mono', monospace; font-size: 0.6rem;
  color: rgba(90,116,144,0.6); max-width: 480px; text-align: right;
  line-height: 1.5;
}

/* ─── ANIMATIONS / SCROLL REVEAL ───────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media(max-width:900px){
  html {
    --website-nav-height: var(--website-nav-mobile-height);
  }
  body {
    overflow-x: clip;
  }
  .website-navbar-inner {
    min-height: var(--website-nav-mobile-height);
    padding: 15px 20px;
    gap: 14px;
    justify-content: flex-start;
  }
  .nav-links { display: none; }
  .nav-logo {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 52px);
    font-size: 0.92rem;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  section, .vip-section, .why-strip, .proof-strip, footer { padding: 64px 24px; }
  .hero { padding: 120px 24px 64px; }
  .hero-stats { gap: 28px; }
  .why-grid, .vip-wrapper, .liq-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .divider { margin: 0 24px; }
  .footer-grid,
  .footer-bottom {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-disclaimer {
    max-width: 100%;
    text-align: left;
  }
  trading-psychology.html > div { grid-template-columns: 1fr !important; gap: 40px !important; }
  drawdown-management.html [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  drawdown-management.html [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ═══ MOBILE HAMBURGER ══════════════ */
.ham-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  width: 38px; height: 38px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}
.ham-btn:hover { background: rgba(201,168,76,0.12); }

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1400;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.visible { display: block; }

.back-to-top-btn {
  position: fixed;
  right: 24px;
  bottom: 130px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(12, 22, 40, 0.95), rgba(8, 15, 28, 0.98));
  color: var(--accent);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08), 0 18px 36px rgba(0, 0, 0, 0.34);
}

.back-to-top-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.12), 0 18px 36px rgba(0, 0, 0, 0.34);
}

.back-to-top-icon {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .ham-btn { display: flex; }
  .bg-orb1,
  .bg-orb2 {
    /* width: 320px !important;
    height: 320px !important; */
  }
  iframe[title*="chat"],
  iframe[title*="Chat"],
  iframe[title*="Widget"],
  #tawkchat-container,
  .tawk-min-container,
  .tawk-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .back-to-top-btn {
    right: 16px;
    bottom: 24px;
    width: 46px;
    height: 46px;
  }
}

@media (min-width: 1181px) {
  .website-mobile-sidebar,
  #sidebar.mobile-sidebar {
    display: none;
  }
}

@media screen and (min-width: 901px) and (max-width: 1180px) {
  .website-navbar-inner {
    min-height: 76px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 16px;
  }

  .nav-logo {
    font-size: 1.02rem;
    gap: 8px;
  }

  .nav-links {
    display: none;
  }
}

@media screen and (min-width: 1181px) and (max-width: 1440px) {
  .website-navbar-inner {
    padding-left: 28px;
    padding-right: 28px;
    gap: 18px;
  }

  .nav-links {
    gap: 12px !important;
  }

  .nav-links a,
  .account-summary,
  .nav-link-button {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .nav-vip {
    padding: 8px 16px;
    font-size: 0.72rem !important;
  }
}

.swal2-popup {
  background: #0f172a !important;
  color: #e2e8f0 !important;
  border-radius: 12px;
}

.swal2-title {
  color: #f8fafc;
}

.swal2-confirm {
  background: #6366f1 !important;
}

.swal2-cancel {
  background: #1f2937 !important;
}

.swal2-icon {
  border-color: #6366f1 !important;
}

.font-size-3rem {
  font-size: 3rem !important;
} 

.support-email{
  margin-top: 40px;
}
.support-email a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.support-email a:hover {
  color: var(--accent);
}
