:root {
  --bg: #050b14;
  --surface: #080f1c;
  --surface2: #0c1628;
  --accent: #00d4ff;
  --accent2: #00ff88;
  --gold: #C9A84C;
  --gold-light: #F0CC7A;
  --red: #FF3B5C;
  --text: #d8eaf8;
  --muted: #5a7490;
  --border: rgba(0,212,255,0.12);
  --border-gold: rgba(201,168,76,0.2);
  --glow: 0 0 40px rgba(0,212,255,0.18);
  --glow-gold: 0 0 40px rgba(201,168,76,0.2);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}
/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  padding: 120px 64px 80px;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-right-stack {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-chart-bg {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 55%; opacity: 0.06; pointer-events: none;
  z-index: 0;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2);
  padding: 6px 18px; border-radius: 100px;
  font-family: 'Space Mono', monospace; font-size: 0.7rem;
  color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); animation: pulse 1.5s infinite; }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 28px; max-width: 780px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 .hl-cyan { color: var(--accent); }
.hero h1 .hl-gold { color: var(--gold-light); }

.hero-desc {
  font-size: 1.1rem; color: var(--muted); line-height: 1.75;
  max-width: 580px; font-weight: 300; margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 56px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.stat-item { border-left: 2px solid var(--border); padding-left: 18px; }
.stat-num {
  font-family: 'Space Mono', monospace; font-size: 1.6rem; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.stat-num.gold { color: var(--gold-light); }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.btn-primary {
  background: var(--gold); color: #000;
  padding: 15px 36px; border: none; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.03em; cursor: crosshair;
  transition: box-shadow 0.3s, transform 0.2s;
}
.btn-primary:hover { box-shadow: var(--glow-gold); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--accent);
  padding: 15px 36px; border: 1px solid rgba(0,212,255,0.3); border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  cursor: crosshair; text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(0,212,255,0.05); }

.hero-chart-overlay {
  width: 100%;
  max-width: 640px;
  text-align: left;
}

.font-size-3rem {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.font-size-3rem .hl {
  color: var(--accent);
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to { opacity:1; transform: translateY(0); }
}

/* ─── SECTION COMMON ────────────────────────────────── */
section { position: relative; z-index: 1; padding: 100px 64px; }
.section-label {
  font-family: 'Space Mono', monospace; font-size: 0.7rem;
  color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label.gold { color: var(--gold); }
.section-title {
  font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 600px;
  font-weight: 300; margin-bottom: 60px;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0 64px; }

/* ─── MARKET STRUCTURE CONCEPTS ─────────────────────── */
.concepts-intro { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.concept-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px; background: var(--border); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
}
.concept-card {
  background: var(--surface); padding: 36px 32px;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.concept-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.concept-card:hover { background: var(--surface2); }
.concept-card:hover::before { transform: scaleX(1); }

.concept-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.3rem;
}
.concept-icon.gold-icon {
  background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.15);
}
.concept-card h3 {
  font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.concept-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.concept-tag {
  display: inline-block; margin-top: 14px;
  font-family: 'Space Mono', monospace; font-size: 0.65rem;
  color: var(--accent); background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.15); padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.concept-tag.gold { color: var(--gold); background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.15); }

/* ─── WHY IT MATTERS STRIP ──────────────────────────── */
.why-strip {
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, rgba(201,168,76,0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 64px;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.why-visual {
  position: relative;
}
.chart-mockup {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 24px; overflow: hidden;
}
.chart-title-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.chart-pair {
  font-family: 'Space Mono', monospace; font-size: 0.75rem; color: var(--accent);
}
.chart-tf {
  font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--muted);
}
.svg-chart { width: 100%; }

.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 24px; border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.why-point:hover { border-color: var(--border); background: var(--surface); }
.why-num {
  font-family: 'Space Mono', monospace; font-size: 0.65rem; font-weight: 700;
  color: var(--accent); min-width: 28px; padding-top: 2px;
}
.why-point h4 {
  font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700;
  margin-bottom: 6px;
}
.why-point p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── PAGES OVERVIEW ─────────────────────────────────── */
.pages-section { background: var(--bg); }
.pages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.page-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
}
.page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.page-card.active-page { border-color: rgba(0,212,255,0.4); }
.page-card.active-page:hover { box-shadow: var(--glow); }
.page-card.gold-page { border-color: var(--border-gold); }
.page-card.gold-page:hover { border-color: rgba(201,168,76,0.5); box-shadow: var(--glow-gold); }

.page-header {
  padding: 28px 28px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.page-icon-wrap {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.15);
}
.page-icon-wrap.gold { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }

.page-badge {
  font-family: 'Space Mono', monospace; font-size: 0.6rem;
  padding: 4px 10px; border-radius: 100px; letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-live { color: var(--accent2); background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.2); }
.badge-active { color: var(--accent); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); }
.badge-vip { color: var(--gold); background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); }

.page-body { padding: 20px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.page-card h3 {
  font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.page-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; flex: 1; }
.page-link {
  margin-top: 20px; font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.page-link.cyan { color: var(--accent); }
.page-link.gold-link { color: var(--gold); }
.page-link .arrow { transition: transform 0.2s; }
.page-card:hover .arrow { transform: translateX(4px); }

/* ─── VIP SECTION ────────────────────────────────────── */
.vip-section {
  background: var(--surface);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 100px 64px;
}
.vip-wrapper {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: start;
}
.vip-left {}
.vip-price-block {
  display: flex; align-items: baseline; gap: 8px;
  margin: 32px 0 8px;
}
.vip-price {
  font-family: 'Syne', sans-serif; font-size: 4.5rem; font-weight: 800;
  color: var(--gold-light); letter-spacing: -0.04em; line-height: 1;
}
.vip-per {
  font-size: 1rem; color: var(--muted); font-weight: 300;
}
.vip-desc {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 36px;
}
.vip-cta-wrap { display: flex; flex-direction: column; gap: 12px; }
.btn-vip {
  background: var(--gold); color: #000;
  padding: 16px 40px; border: none; border-radius: 4px;
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em; cursor: crosshair;
  transition: box-shadow 0.3s, transform 0.2s;
  display: inline-block; text-align: center; text-decoration: none;
  width: fit-content;
}
.btn-vip:hover { box-shadow: var(--glow-gold); transform: translateY(-2px); }
.vip-guarantee {
  font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 6px;
}

.vip-features {}
.vip-features-title {
  font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--gold-light); margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border-gold);
}
.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding-left 0.2s;
}
.feature-item:hover { padding-left: 4px; }
.feature-item:last-child { border-bottom: none; }
.fi-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--accent2); flex-shrink: 0; margin-top: 2px;
}
.fi-text h4 {
  font-size: 0.9rem; font-weight: 600; margin-bottom: 3px;
}
.fi-text p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ─── TESTIMONIAL / SOCIAL PROOF ────────────────────── */
.proof-strip {
  padding: 80px 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.proof-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600; line-height: 1.5; letter-spacing: -0.02em;
  color: var(--text); margin: 32px auto 24px;
  max-width: 720px;
}
.proof-quote .hl { color: var(--accent); }
.proof-quote .gold { color: var(--gold-light); }
.proof-source {
  font-family: 'Space Mono', monospace; font-size: 0.7rem;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.proof-logos {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-top: 48px;
}
.proof-tag {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace; font-size: 0.7rem;
  color: var(--muted); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 4px; letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── LIQUIDITY DEEP DIVE ───────────────────────────── */
.liq-section { background: var(--surface); border-top: 1px solid var(--border); }
.liq-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: start;
}
.liq-list { display: flex; flex-direction: column; gap: 20px; }
.liq-item {
  display: flex; gap: 16px; padding: 22px 22px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; transition: border-color 0.3s;
}
.liq-item:hover { border-color: rgba(0,212,255,0.3); }
.liq-num {
  font-family: 'Space Mono', monospace; font-size: 1.5rem; font-weight: 700;
  color: rgba(0,212,255,0.15); line-height: 1; min-width: 36px;
}
.liq-item h4 {
  font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700;
  margin-bottom: 6px;
}
.liq-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

.liq-visual-stack { display: flex; flex-direction: column; gap: 16px; }
.level-bar {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
}
.lb-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lb-dot.cyan { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.lb-dot.gold { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.lb-dot.red { background: var(--red); box-shadow: 0 0 8px var(--red); }
.lb-dot.green { background: var(--accent2); box-shadow: 0 0 8px var(--accent2); }
.lb-info { flex: 1; }
.lb-name { font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; }
.lb-bar-wrap { background: rgba(255,255,255,0.05); border-radius: 2px; height: 4px; overflow: hidden; }
.lb-fill { height: 100%; border-radius: 2px; }
.lb-desc { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }


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

/* ─── SCROLLING TICKER ──────────────────────────────── */
.ticker-wrap {
  overflow: hidden; background: rgba(0,212,255,0.04);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 10px 0; position: relative; z-index: 1;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 36px;
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  color: var(--muted); border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.ticker-item .up { color: var(--accent2); }
.ticker-item .dn { color: var(--red); }
@keyframes ticker { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (min-width: 901px) and (max-width: 1280px) {
  .hero {
    padding: 108px 32px 56px;
  }

  .hero-layout {
    min-height: calc(100vh - 180px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 4.6vw, 4rem);
    max-width: 620px;
    margin-bottom: 22px;
  }

  .hero-desc {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 36px;
  }

  .hero-stats {
    gap: 24px;
    margin-bottom: 40px;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .hero-chart-overlay {
    max-width: 460px;
  }

  .font-size-3rem {
    font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
    line-height: 0.95;
  }
}

@media(max-width:900px){
 section, .vip-section, .why-strip, .proof-strip, footer { padding: 64px 24px; }
  .hero { padding: 100px 24px 20px; }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 28px; }
  .hero-right-stack { justify-content: flex-start; }
  .hero-stats { gap: 28px; }
  .why-grid, .vip-wrapper, .liq-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .divider { margin: 0 24px; }
  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(--border2);
  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;
}
.ham-btn:hover { background: var(--gold-glow); }

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

@media (max-width: 900px) {
  .ham-btn { display: flex; }
}

@media (max-width: 640px) {
  .font-size-3rem {
    font-size: clamp(1.8rem, 10vw, 1rem) !important;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 4.2rem);
  }
}


/* ═══ BACK TO DASHBOARD BTN ═══════════ */
.back-dashboard-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold, #C8A84B);
  color: #07090F;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(200,168,75,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.back-dashboard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,75,0.45);
}
