/* ═══════════════════════════════════════════════════════════════
   SIGNALS DESK — v3 Homepage Override
   Bebas Neue · Plus Jakarta Sans · JetBrains Mono
   Deep Space Black · Neon Green · Amber Data
   Full revamp — applied via @push('style') in home.blade.php
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── v3 Tokens ── */
:root {
  --nx-bg:        #050508;
  --nx-bg-1:      #09090f;
  --nx-bg-2:      #0e0e18;
  --nx-card:      #111120;
  --nx-border:    rgba(255,255,255,.06);
  --nx-border-2:  rgba(255,255,255,.11);
  --nx-text:      #eeeef8;
  --nx-text-2:    rgba(238,238,248,.5);
  --nx-text-3:    rgba(238,238,248,.22);
  --nx-green:     #00e676;
  --nx-green-d:   #00c853;
  --nx-green-glow:rgba(0,230,118,.18);
  --nx-amber:     #fbbf24;
  --nx-amber-bg:  rgba(251,191,36,.08);
  --nx-red:       #ff4d4d;
  --bebas:        'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --jakarta:      'Plus Jakarta Sans', system-ui, sans-serif;
  --mono:         'JetBrains Mono', 'Fira Code', monospace;
}

/* ── Force fonts across revamped sections ── */
.nx-hero, .nx-monolith, .nx-marquee-section,
.nx-copy-section, .nx-edu-section,
.nx-testi-section, .nx-cta-section {
  font-family: var(--jakarta);
}

/* ═══════════════════════════════════════════
   HERO — Full-viewport cinematic
═══════════════════════════════════════════ */
.nx-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--nx-bg);
  padding-top: 68px; /* nav height */
}

/* Background image layer */
.nx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nx-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .18;
  filter: saturate(.4) blur(2px);
  transform: scale(1.06);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}

/* Gradient overlays */
.nx-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,230,118,.07) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(5,5,8,.6) 0%, rgba(5,5,8,.3) 40%, rgba(5,5,8,.95) 100%);
}

/* Grain texture */
.nx-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: .5;
}

/* Animated scan line */
.nx-hero-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--nx-green) 50%, transparent 100%);
  opacity: .35;
  z-index: 2;
  animation: heroScan 5s ease-in-out infinite;
}
@keyframes heroScan {
  0%   { top: 0;    opacity: .35; }
  50%  { opacity: .6; }
  100% { top: 100%; opacity: 0; }
}

/* Center block */
.nx-hero-center {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 1100px;
  width: 100%;
}

/* Eyebrow */
.nx-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nx-green);
  border: 1px solid rgba(0,230,118,.25);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: clamp(28px, 4vw, 48px);
  background: rgba(0,230,118,.06);
  animation: fadeSlideDown .8s var(--ease) both;
}
.nx-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nx-green);
  box-shadow: 0 0 8px var(--nx-green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* Main headline */
.nx-hero-h1 {
  display: block;
  font-family: var(--bebas);
  font-size: clamp(88px, 14vw, 200px);
  line-height: .88;
  letter-spacing: -2px;
  margin: 0 0 clamp(24px, 3.5vw, 44px);
  color: var(--nx-text);
  perspective: 600px;
}
.nx-h1-line1 {
  display: block;
  color: var(--nx-text);
}
.nx-h1-line2 {
  display: block;
}

/* Sub text */
.nx-hero-sub {
  font-family: var(--jakarta);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  color: var(--nx-text-2);
  max-width: 560px;
  margin: 0 auto clamp(32px, 4.5vw, 52px);
  line-height: 1.7;
  animation: fadeSlideDown 1s .2s var(--ease) both;
}

/* CTA buttons */
.nx-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideDown 1.1s .3s var(--ease) both;
}
.nx-btn-trial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--nx-green) 0%, var(--nx-green-d) 100%);
  color: #020f07;
  font-family: var(--jakarta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 0 40px rgba(0,230,118,.25), 0 4px 20px rgba(0,0,0,.4);
  transition: all .25s;
  text-decoration: none;
  white-space: nowrap;
}
.nx-btn-trial:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(0,230,118,.4), 0 8px 30px rgba(0,0,0,.4);
  color: #020f07;
}
.nx-btn-trial svg { flex-shrink: 0; }
.nx-btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 12px;
  border: 1px solid var(--nx-border-2);
  background: rgba(255,255,255,.04);
  color: var(--nx-text-2);
  font-family: var(--jakarta);
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.nx-btn-signin:hover {
  border-color: rgba(255,255,255,.2);
  color: var(--nx-text);
  background: rgba(255,255,255,.07);
}

/* Hero micro note */
.nx-hero-micro {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--nx-text-3);
  letter-spacing: .8px;
  animation: fadeSlideDown 1.2s .4s var(--ease) both;
}

/* Bottom metrics strip */
.nx-hero-metrics {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--nx-border-2);
  border-radius: 20px;
  background: rgba(9,9,15,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 64px);
  animation: fadeSlideUp .9s .5s var(--ease) both;
}
.nx-metric {
  padding: clamp(18px, 2.5vw, 28px) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--nx-border);
  position: relative;
  transition: background .25s;
}
.nx-metric:last-child { border-right: none; }
.nx-metric:hover { background: rgba(0,230,118,.03); }
.nx-metric-val {
  font-family: var(--bebas);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--nx-green);
  letter-spacing: 1px;
}
.nx-metric-label {
  font-family: var(--mono);
  font-size: clamp(9px, 1vw, 11px);
  color: var(--nx-text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── Scroll indicator ── */
.nx-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1.5s 1.5s both;
}
.nx-scroll-hint span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--nx-text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nx-scroll-arrow {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 12px;
  position: relative;
}
.nx-scroll-arrow::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--nx-green);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  70%       { top: 18px; opacity: .3; }
}

/* ═══════════════════════════════════════════
   HERO — Floating Signal Cards
═══════════════════════════════════════════ */
.nx-sig-card {
  position: absolute;
  z-index: 4;
  width: 190px;
  background: rgba(10,10,18,.82);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
  pointer-events: none;
}
.nx-sig-card--buy {
  left: clamp(12px, 4vw, 72px);
  top: 50%;
  transform: translateY(-60%);
  animation: sigFloatA 6s ease-in-out infinite;
  border-left: 2px solid #00e676;
}
.nx-sig-card--sell {
  right: clamp(12px, 4vw, 72px);
  top: 50%;
  transform: translateY(-30%);
  animation: sigFloatB 7s ease-in-out infinite;
  border-left: 2px solid #ff4d4d;
}
@keyframes sigFloatA {
  0%, 100% { transform: translateY(-60%); }
  50%       { transform: translateY(-66%); }
}
@keyframes sigFloatB {
  0%, 100% { transform: translateY(-30%); }
  50%       { transform: translateY(-24%); }
}

.nx-sig-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.nx-sig-card-badge--buy  { background: rgba(0,230,118,.12); color: #00e676; border: 1px solid rgba(0,230,118,.2); }
.nx-sig-card-badge--sell { background: rgba(255,77,77,.12);  color: #ff4d4d; border: 1px solid rgba(255,77,77,.2);  }

.nx-sig-badge-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 5px #00e676;
  animation: sigDotPulse 1.6s ease-in-out infinite;
}
.nx-sig-badge-dot--red {
  background: #ff4d4d;
  box-shadow: 0 0 5px #ff4d4d;
}
@keyframes sigDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.6); }
}

.nx-sig-card-pair {
  font-family: var(--bebas);
  font-size: 22px;
  letter-spacing: 1px;
  color: #eeeef8;
  margin-bottom: 10px;
  line-height: 1;
}
.nx-sig-card-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.nx-sig-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
}
.nx-sig-row span:first-child {
  color: rgba(238,238,248,.35);
  font-size: 9.5px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.nx-sig-val { color: rgba(238,238,248,.85); font-weight: 500; }
.nx-tp       { color: #00e676; }
.nx-sl       { color: #ff4d4d; }

.nx-val-tick {
  animation: valTick .35s ease-out;
}
@keyframes valTick {
  0%   { opacity: .5; transform: translateY(-2px); }
  100% { opacity: 1;  transform: translateY(0); }
}

.nx-sig-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.nx-sig-pips {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}
.nx-sig-pips--green { color: #00e676; }
.nx-sig-pips--red   { color: #ff4d4d; }
.nx-sig-time {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(238,238,248,.28);
}

/* ── Hidden on small screens ── */
@media (max-width: 900px) {
  .nx-sig-card { display: none; }
}
@media (max-width: 1100px) {
  .nx-sig-card--buy  { left: 8px;  }
  .nx-sig-card--sell { right: 8px; }
}

/* ── Accuracy badge float ── */
.nx-hero-badge-float {
  position: absolute;
  z-index: 4;
  left: clamp(12px, 4vw, 72px);
  bottom: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  animation: sigFloatB 8s ease-in-out infinite;
}
.nx-badge-ring {
  position: absolute;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,230,118,.25);
  animation: badgeRingPulse 2.5s ease-in-out infinite;
}
@keyframes badgeRingPulse {
  0%, 100% { transform: scale(1);    opacity: .5; }
  50%       { transform: scale(1.15); opacity: .12; }
}
.nx-badge-pct {
  font-family: var(--bebas);
  font-size: 28px;
  color: #00e676;
  letter-spacing: 1px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(0,230,118,.4));
}
.nx-badge-lbl {
  font-family: var(--mono);
  font-size: 8px;
  color: rgba(238,238,248,.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@media (max-width: 900px) { .nx-hero-badge-float { display: none; } }

/* ── Animated chart background ── */
.nx-hero-chart {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: chartReveal 1.4s 1s ease-out forwards;
}
@keyframes chartReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nx-hero-chart svg {
  width: 100%; height: 100%;
}
.nx-chart-line {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawLine 2.2s 1.2s ease-out forwards;
}
.nx-chart-line-2 {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawLine 2.4s 1.5s ease-out forwards;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* ── Eyebrow dot (replaces ::before) ── */
.nx-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nx-green);
  box-shadow: 0 0 8px var(--nx-green);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Character-by-character headline reveal ── */
.nx-h1-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-30deg);
  animation: charReveal .5s ease-out forwards;
  transform-origin: bottom center;
}
.nx-h1-char--green {
  background: linear-gradient(135deg, var(--nx-green) 0%, var(--nx-green-d) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,230,118,.25));
}
@keyframes charReveal {
  0%   { opacity: 0; transform: translateY(40px) rotateX(-30deg); }
  60%  { opacity: 1; transform: translateY(-4px) rotateX(0); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ── Second scan line ── */
.nx-hero-scan--2 {
  animation-delay: 2.5s;
  opacity: .2;
}

/* ═══════════════════════════════════════════
   PRICE TICKER (keep existing .sd-price-strip styles, override bg only)
═══════════════════════════════════════════ */
/* No changes — existing ticker works great */

/* ═══════════════════════════════════════════
   MONOLITH STATS — Full-bleed huge numbers
═══════════════════════════════════════════ */
.nx-monolith {
  background: var(--nx-bg-1);
  border-top: 1px solid var(--nx-border);
  border-bottom: 1px solid var(--nx-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  overflow: hidden;
}
.nx-monolith::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,230,118,.04) 0%, transparent 70%);
  pointer-events: none;
}
.nx-mono-cell {
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 60px);
  border-right: 1px solid var(--nx-border);
  position: relative;
  text-align: center;
  transition: background .3s;
  cursor: default;
}
.nx-mono-cell:last-child { border-right: none; }
.nx-mono-cell:hover { background: rgba(0,230,118,.025); }

.nx-mono-cell::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--nx-green);
  transition: width .4s var(--ease);
}
.nx-mono-cell:hover::before { width: 60%; }

.nx-mono-num {
  display: block;
  font-family: var(--bebas);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  color: var(--nx-text);
  letter-spacing: -1px;
  transition: color .3s;
}
.nx-mono-cell:hover .nx-mono-num { color: var(--nx-green); }
.nx-mono-suffix {
  font-size: .55em;
  color: var(--nx-green);
  vertical-align: super;
  line-height: 0;
}
.nx-mono-label {
  display: block;
  font-family: var(--mono);
  font-size: clamp(10px, 1.1vw, 12px);
  color: var(--nx-text-3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════
   MARQUEE SERVICES — Dual infinite scroll belt
═══════════════════════════════════════════ */
.nx-marquee-section {
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--nx-bg);
  overflow: hidden;
  position: relative;
}
.nx-marquee-header {
  text-align: center;
  padding: 0 var(--pad);
  margin-bottom: clamp(44px, 6vw, 72px);
}
.nx-sec-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nx-green);
  background: rgba(0,230,118,.07);
  border: 1px solid rgba(0,230,118,.18);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 18px;
}
.nx-sec-h2 {
  font-family: var(--bebas);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 1px;
  color: var(--nx-text) !important;
  font-weight: 400 !important;
  margin-bottom: 14px;
}
.nx-sec-sub {
  font-family: var(--jakarta);
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--nx-text-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.nx-belt-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.nx-belt {
  display: flex;
  gap: 14px;
  width: max-content;
}
.nx-belt--fwd { animation: beltFwd 35s linear infinite; }
.nx-belt--rev { animation: beltRev 35s linear infinite; }
@keyframes beltFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes beltRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.nx-belt:hover { animation-play-state: paused; }

.nx-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--nx-card);
  border: 1px solid var(--nx-border-2);
  border-radius: 14px;
  white-space: nowrap;
  cursor: default;
  transition: all .25s;
  flex-shrink: 0;
}
.nx-pill:hover {
  border-color: rgba(0,230,118,.3);
  background: rgba(0,230,118,.05);
  transform: translateY(-2px);
}
.nx-pill-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,230,118,.1);
  border: 1px solid rgba(0,230,118,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--nx-green);
  flex-shrink: 0;
}
.nx-pill-text {}
.nx-pill-title {
  font-family: var(--jakarta);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--nx-text);
  display: block;
}
.nx-pill-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--nx-text-3);
  display: block;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   COPY TRADING — Image-backed cinematic
═══════════════════════════════════════════ */
.nx-copy-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--nx-bg-1);
}
.nx-copy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nx-copy-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .08;
  filter: saturate(.3) blur(1px);
}
.nx-copy-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--nx-bg-1) 0%, rgba(9,9,15,.7) 40%, rgba(9,9,15,.7) 60%, var(--nx-bg-1) 100%),
    linear-gradient(180deg, var(--nx-bg-1) 0%, transparent 15%, transparent 85%, var(--nx-bg-1) 100%);
}

.nx-copy-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.nx-copy-left {}
.nx-copy-left .nx-sec-h2 { text-align: left; font-size: clamp(32px, 4.5vw, 58px); }
.nx-copy-desc {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--nx-text-2);
  line-height: 1.75;
  margin: 16px 0 36px;
}

.nx-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 36px;
}
.nx-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.nx-step-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,230,118,.1);
  border: 1px solid rgba(0,230,118,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bebas);
  font-size: 18px;
  color: var(--nx-green);
  flex-shrink: 0;
}
.nx-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--nx-text);
  margin-bottom: 3px;
}
.nx-step-desc {
  font-size: 13px;
  color: var(--nx-text-2);
  line-height: 1.6;
}
.nx-btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--nx-green), var(--nx-green-d));
  color: #020f07;
  font-family: var(--jakarta);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(0,230,118,.2);
  transition: all .25s;
  text-decoration: none;
}
.nx-btn-copy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,230,118,.35);
  color: #020f07;
}

/* Trader cards */
.nx-traders-board {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(9,9,15,.7);
  border: 1px solid var(--nx-border-2);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.nx-traders-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--nx-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--nx-text-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nx-traders-head-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--nx-green);
  box-shadow: 0 0 8px var(--nx-green);
  animation: pulse 2s ease-in-out infinite;
}
.nx-trader-card {
  padding: 16px 22px;
  border-bottom: 1px solid var(--nx-border);
  transition: background .2s;
}
.nx-trader-card:last-child { border-bottom: none; }
.nx-trader-card:hover { background: rgba(0,230,118,.03); }
.nx-trader-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.nx-trader-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nx-trader-av {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,230,118,.2), rgba(0,230,118,.05));
  border: 1px solid rgba(0,230,118,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bebas);
  font-size: 16px;
  color: var(--nx-green);
  letter-spacing: .5px;
}
.nx-trader-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--nx-text);
}
.nx-trader-fol {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--nx-text-3);
  margin-top: 2px;
}
.nx-trader-ret {
  font-family: var(--bebas);
  font-size: 22px;
  color: var(--nx-green);
  letter-spacing: .5px;
}
.nx-trader-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,.05);
  border-radius: 2px;
  overflow: hidden;
}
.nx-trader-bar {
  height: 100%;
  background: linear-gradient(90deg, rgba(0,230,118,.4), var(--nx-green));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s var(--ease);
}
.nx-traders-board.nx-bar-active .nx-trader-bar { }

/* ═══════════════════════════════════════════
   EDUCATION — Magazine horizontal scroll
═══════════════════════════════════════════ */
.nx-edu-section {
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--nx-bg);
  overflow: hidden;
  position: relative;
}
.nx-edu-header {
  max-width: 1320px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  padding: 0 var(--pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.nx-edu-header-text {}
.nx-edu-header-text .nx-sec-h2 { text-align: left; }
.nx-edu-link-all {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--nx-green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,230,118,.3);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color .2s;
}
.nx-edu-link-all:hover { border-color: var(--nx-green); color: var(--nx-green); }

.nx-edu-scroll {
  padding: 0 var(--pad);
  max-width: 1320px;
  margin: 0 auto;
}
.nx-edu-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.nx-edu-track::-webkit-scrollbar { display: none; }

.nx-edu-card {
  background: var(--nx-card);
  border: 1px solid var(--nx-border-2);
  border-radius: 18px;
  overflow: hidden;
  transition: all .3s var(--ease);
  cursor: pointer;
  flex-shrink: 0;
}
.nx-edu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,230,118,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.nx-edu-card-img {
  height: 140px;
  overflow: hidden;
  position: relative;
}
.nx-edu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.nx-edu-card:hover .nx-edu-card-img img { transform: scale(1.07); }
.nx-edu-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.nx-edu-badge--free { background: rgba(0,230,118,.15); color: var(--nx-green); border: 1px solid rgba(0,230,118,.25); }
.nx-edu-badge--pro  { background: rgba(251,191,36,.15); color: var(--nx-amber);  border: 1px solid rgba(251,191,36,.25); }

.nx-edu-card-body {
  padding: 18px 18px 20px;
}
.nx-edu-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--nx-text);
  line-height: 1.4;
  margin-bottom: 8px;
}
.nx-edu-card-desc {
  font-size: 12px;
  color: var(--nx-text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.nx-edu-card-cta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--nx-green);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nx-edu-card-cta:hover { color: var(--nx-green); }

/* ═══════════════════════════════════════════
   PRICING SECTION — Refined dark cards
═══════════════════════════════════════════ */
.nx-pricing-section {
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--nx-bg-1);
  position: relative;
  overflow: hidden;
}
.nx-pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,230,118,.04) 0%, transparent 60%);
  pointer-events: none;
}

.nx-pricing-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.nx-pricing-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

/* Period switcher */
.nx-period-tabs {
  display: inline-flex;
  gap: 3px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--nx-border-2);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 48px;
}
.nx-period-btn {
  padding: 9px 20px;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--nx-text-3);
  background: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.nx-period-btn.active,
.nx-period-btn:hover {
  background: var(--nx-green);
  color: #020f07;
  font-weight: 700;
}

/* Cards grid */
.nx-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.nx-plan-card {
  background: var(--nx-card);
  border: 1px solid var(--nx-border-2);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.nx-plan-card:hover {
  border-color: rgba(0,230,118,.2);
}
.nx-plan-card--premium {
  border-color: rgba(0,230,118,.25);
  background: linear-gradient(160deg, rgba(0,230,118,.06) 0%, var(--nx-card) 50%);
  box-shadow: 0 0 80px rgba(0,230,118,.06);
}
.nx-plan-card--premium:hover {
  border-color: rgba(0,230,118,.4);
  box-shadow: 0 0 100px rgba(0,230,118,.1);
}
.nx-plan-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}
.nx-plan-stripe--green {
  background: linear-gradient(90deg, transparent, var(--nx-green), transparent);
}
.nx-plan-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--nx-green);
  color: #020f07;
  padding: 4px 10px;
  border-radius: 999px;
}
.nx-plan-tier {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nx-text-3);
  margin-bottom: 14px;
}
.nx-plan-tier--green { color: var(--nx-green); }
.nx-plan-price {
  font-family: var(--bebas);
  font-size: clamp(52px, 6vw, 72px);
  line-height: 1;
  color: var(--nx-text);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.nx-plan-price--green { color: var(--nx-green); }
.nx-plan-period {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--nx-text-3);
  margin-bottom: 24px;
}
.nx-plan-divider {
  height: 1px;
  background: var(--nx-border);
  margin-bottom: 24px;
}
.nx-plan-divider--green { background: rgba(0,230,118,.15); }
.nx-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 30px;
}
.nx-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--nx-text-2);
  line-height: 1.5;
}
.nx-plan-feature svg { flex-shrink: 0; margin-top: 2px; }
.nx-btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--jakarta);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  border: 1px solid var(--nx-border-2);
  color: var(--nx-text-2);
  background: rgba(255,255,255,.04);
}
.nx-btn-plan:hover { border-color: rgba(255,255,255,.2); color: var(--nx-text); }
.nx-btn-plan--green {
  background: linear-gradient(135deg, var(--nx-green), var(--nx-green-d));
  border-color: transparent;
  color: #020f07;
  box-shadow: 0 0 30px rgba(0,230,118,.15);
}
.nx-btn-plan--green:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 50px rgba(0,230,118,.3);
  color: #020f07;
}
.nx-pricing-note {
  text-align: center;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--nx-text-3);
  letter-spacing: .5px;
}
.nx-pricing-note a { color: var(--nx-green); }

/* ═══════════════════════════════════════════
   TESTIMONIALS — Dual marquee
═══════════════════════════════════════════ */
.nx-testi-section {
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--nx-bg);
  overflow: hidden;
}
.nx-testi-header {
  text-align: center;
  margin-bottom: clamp(44px, 5.5vw, 64px);
  padding: 0 var(--pad);
}

.nx-testi-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.nx-testi-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.nx-testi-track--1 { animation: beltFwd 40s linear infinite; }
.nx-testi-track--2 { animation: beltRev 36s linear infinite; }
.nx-testi-track:hover { animation-play-state: paused; }

.nx-testi-card {
  background: var(--nx-card);
  border: 1px solid var(--nx-border-2);
  border-radius: 18px;
  padding: 24px 26px;
  width: 320px;
  flex-shrink: 0;
  position: relative;
  transition: border-color .25s;
  cursor: default;
}
.nx-testi-card:hover { border-color: rgba(0,230,118,.2); }

.nx-testi-quote-mark {
  font-family: var(--bebas);
  font-size: 64px;
  line-height: .5;
  color: rgba(0,230,118,.15);
  margin-bottom: 12px;
  display: block;
}
.nx-testi-stars {
  color: var(--nx-amber);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.nx-testi-text {
  font-size: 13.5px;
  color: var(--nx-text-2) !important;
  line-height: 1.7;
  margin-bottom: 18px;
}
.nx-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nx-testi-av {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,230,118,.1);
  border: 1px solid rgba(0,230,118,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bebas);
  font-size: 14px;
  color: var(--nx-green);
}
.nx-testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--nx-text);
}
.nx-testi-role {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--nx-text-3);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   CTA — Full-bleed dramatic finale
═══════════════════════════════════════════ */
.nx-cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) var(--pad);
  text-align: center;
  background: var(--nx-bg-1);
}
.nx-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nx-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .07;
  filter: saturate(.2) blur(2px);
}
.nx-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,230,118,.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--nx-bg-1) 0%, transparent 20%, transparent 80%, var(--nx-bg-1) 100%);
}
.nx-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.nx-cta-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nx-green);
  border: 1px solid rgba(0,230,118,.2);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 28px;
}
.nx-cta-h2 {
  font-family: var(--bebas) !important;
  font-size: clamp(52px, 8vw, 104px) !important;
  line-height: .9 !important;
  color: var(--nx-text) !important;
  font-weight: 400 !important;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.nx-cta-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--nx-text-2) !important;
  margin-bottom: 40px;
  line-height: 1.7;
}
.nx-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.nx-cta-micro {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--nx-text-3);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS (shared)
═══════════════════════════════════════════ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll reveal */
.nx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.nx-reveal.nx-in { opacity: 1; transform: none; }
.nx-reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.nx-reveal-l.nx-in { opacity: 1; transform: none; }
.nx-reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.nx-reveal-r.nx-in { opacity: 1; transform: none; }
.nx-d1 { transition-delay: .08s; }
.nx-d2 { transition-delay: .16s; }
.nx-d3 { transition-delay: .24s; }
.nx-d4 { transition-delay: .32s; }
.nx-d5 { transition-delay: .4s; }
.nx-d6 { transition-delay: .48s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nx-copy-inner { grid-template-columns: 1fr; gap: 48px; }
  .nx-copy-left .nx-sec-h2 { text-align: center; }
  .nx-copy-desc { text-align: center; }
  .nx-steps-list { max-width: 500px; margin-left: auto; margin-right: auto; }
  .nx-btn-copy { margin: 0 auto; }
  .nx-copy-left { text-align: center; }
}
@media (max-width: 900px) {
  .nx-monolith { grid-template-columns: repeat(2, 1fr); }
  .nx-monolith .nx-mono-cell:nth-child(2) { border-right: none; }
  .nx-monolith .nx-mono-cell:nth-child(3) { border-top: 1px solid var(--nx-border); }
  .nx-monolith .nx-mono-cell:nth-child(4) { border-top: 1px solid var(--nx-border); border-right: none; }
  .nx-plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .nx-hero-metrics { grid-template-columns: 1fr; border-radius: 16px; }
  .nx-metric { border-right: none; border-bottom: 1px solid var(--nx-border); }
  .nx-metric:last-child { border-bottom: none; }
  .nx-edu-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .nx-monolith { grid-template-columns: 1fr 1fr; }
  .nx-hero-actions { flex-direction: column; align-items: stretch; }
  .nx-btn-trial, .nx-btn-signin { justify-content: center; }
}
