/* ══════════════════════════════════════════════════════
   KhidaFX — main.css
   Colour philosophy: accent used SPARINGLY — only on
   CTAs, key labels, and active states. Profit numbers
   use a separate profit-green. Most borders are plain
   dark — no colour flooding everywhere.
══════════════════════════════════════════════════════ */

/* ── THEME VARS ─────────────────────────────────────── */
:root {
  /* ── Accent: Sky Blue – used on CTAs + key labels only ──
     To change: replace --ac and --ac-d below.
     Other ready themes (copy-paste):
       Indigo:  --ac:#6366F1;  --ac-d:rgba(99,102,241,
       Gold:    --ac:#D4A843;  --ac-d:rgba(212,168,67,
       Teal:    --ac:#14B8A6;  --ac-d:rgba(20,184,166,
  ────────────────────────────────────────────────────── */
  --ac: #3B9EFF;
  /* brand accent */
  --ac-dim: rgba(59, 158, 255, 0.12);
  --ac-border: rgba(59, 158, 255, 0.22);

  /* Profit / loss — semantic only (trade numbers) */
  --profit: #22C55E;
  --profit-d: rgba(34, 197, 94, 0.12);
  --loss: #EF4444;
  --loss-d: rgba(239, 68, 68, 0.12);

  /* Backgrounds — pure dark navy */
  --bg: #07090F;
  --bg2: #0C1018;
  --bg3: #111820;
  --bg4: #172030;

  /* Text */
  --tx: #F1F5F9;
  /* primary */
  --ts: #94A3B8;
  /* secondary */
  --tm: #475569;
  /* muted */

  /* Borders — neutral, very subtle */
  --br: rgba(255, 255, 255, 0.07);
  --br2: rgba(255, 255, 255, 0.12);

  /* Fonts */
  --fh: 'Bebas Neue',        cursive;
  --fb: 'Poppins', sans-serif;
  --fm: 'JetBrains Mono', monospace;

  /* Radii */
  --r: 10px;
  --r2: 16px;
  --r3: 22px;

  /* Layout */
  --max: 1200px;
  --gx: 48px;
}

/* ── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--tx);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none
}

@media(hover:none) {
  body {
    cursor: auto
  }
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font-family: var(--fh);
  letter-spacing: 1px
}

::selection {
  background: var(--ac);
  color: #000
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--bg2)
}

::-webkit-scrollbar-thumb {
  background: var(--tm);
  border-radius: 4px
}

/* ── PRELOADER ──────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .45s ease;
}

.preloader.done {
  opacity: 0;
  pointer-events: none
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px
}

.preloader-logo {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 400;
  color: var(--ac);
  letter-spacing: 2px;
  text-transform: uppercase
}

.preloader-logo em {
  color: var(--tx);
  font-style: normal;
  font-family: var(--fh);
  font-weight: 400
}

.preloader-bar {
  width: 140px;
  height: 2px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden
}

.preloader-fill {
  height: 100%;
  width: 0;
  background: var(--ac);
  border-radius: 2px;
  animation: pfill 1s ease .15s forwards;
}

@keyframes pfill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ── CURSOR ─────────────────────────────────────────── */
.cur-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 158, 255, .06) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9990;
  transition: opacity .3s;
  will-change: left, top;
}

.cur-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(59, 158, 255, .6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width .22s, height .22s, background .2s;
  will-change: left, top;
}

.cur-ring.ch {
  width: 56px;
  height: 56px;
  background: rgba(59, 158, 255, .08)
}

.cur-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--ac);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  will-change: left, top;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.sw {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--gx)
}

/* ── SECTION HEADINGS ───────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--ac);
  flex-shrink: 0
}

.section-tag.center {
  justify-content: center
}

.section-hd {
  margin-bottom: 44px
}

.section-hd.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.sh {
  font-family: var(--fh);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase
}

.sh em {
  color: var(--ac);
  font-style: normal;
  font-family: var(--fh);
  font-weight: 400
}

.section-sub {
  font-size: 17px;
  color: var(--ts);
  max-width: 520px;
  margin-top: 10px;
  line-height: 1.8
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r);
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.btn-primary {
  background: var(--ac);
  color: #000
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px)
}

.btn-ghost {
  background: transparent;
  color: var(--tx);
  border: 1px solid var(--br2)
}

.btn-ghost:hover {
  border-color: var(--ac-border);
  color: var(--ac);
  transform: translateY(-2px)
}

.btn-lg {
  font-size: 13px;
  padding: 16px 36px;
  letter-spacing: 2px
}

.live-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--profit);
  flex-shrink: 0;
  animation: lpulse 2s infinite;
}

@keyframes lpulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.8)
  }
}

/* ── NAV ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(7, 9, 15, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--br);
  transition: background .3s, box-shadow .3s;
}

#navbar.scrolled {
  background: rgba(7, 9, 15, .97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .6)
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gx);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ac)
}

.nav-logo em {
  color: var(--ac);
  font-style: normal;
  font-family: var(--fh);
  font-weight: 400
}

.nav-links {
  display: flex;
  gap: 24px
}

.nav-link {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ts);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--ac);
  transition: right .22s
}

.nav-link:hover,
.nav-link.active {
  color: var(--tx)
}

.nav-link:hover::after,
.nav-link.active::after {
  right: 0
}

.nav-cta {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--r);
  background: var(--ac);
  color: #000;
  flex-shrink: 0;
  transition: filter .2s, transform .15s;
}

.nav-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px)
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tx);
  border-radius: 2px;
  transition: all .28s
}

.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.nav-burger.open span:nth-child(2) {
  opacity: 0
}

.nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ── MOBILE OVERLAY (image 4 style) ─────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 15, .97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 32px 56px;
  transform: translateX(100%);
  transition: transform .35s ease;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-overlay.ov-open {
  transform: translateX(0)
}

.overlay-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--br2);
  background: none;
  color: var(--ac);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.overlay-close:hover {
  background: var(--br)
}

.overlay-nav {
  display: flex;
  flex-direction: column
}

.ol-link {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ts);
  padding: 16px 0;
  border-bottom: 1px solid var(--br);
  transition: color .18s;
}

.ol-link:last-child {
  border-bottom: none
}

.ol-link:hover {
  color: var(--tx)
}

.ol-link.ol-accent {
  color: var(--ac)
}

.overlay-cta-btn {
  margin-top: 36px;
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--ac);
  color: #000;
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: filter .2s;
}

.overlay-cta-btn:hover {
  filter: brightness(1.1)
}

/* ── FAB ────────────────────────────────────────────── */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ac);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 100px;
  transition: all .22s;
  opacity: 0;
  transform: translateY(60px);
}

.fab.vis {
  opacity: 1;
  transform: translateY(0)
}

.fab:hover {
  filter: brightness(1.1);
  transform: translateY(-3px)
}

/* ── SCROLL TOP ─────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 158px;
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #435264;
  border: 1px solid var(--br2);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(60px);
  transition: all .22s;
}

.scroll-top.vis {
  opacity: 1;
  transform: translateY(0)
}

.scroll-top:hover {
  color: var(--ac);
  border-color: var(--ac-border)
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .08;
  display: block
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(59, 158, 255, .04) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .018;
  background-image: linear-gradient(var(--tx) 1px, transparent 1px), linear-gradient(90deg, var(--tx) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gx) 72px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Hero left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ts);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--fh);
  font-size: clamp(64px, 10vw, 112px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--tx);
}

.hero-title em {
  color: var(--ac);
  font-style: normal;
  font-family: var(--fh);
  font-weight: 400
}

.hero-sub {
  font-size: 18px;
  color: var(--ts);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--br);
  border-radius: var(--r2);
  overflow: hidden
}

.hs {
  padding: 18px 28px;
  flex: 1;
  text-align: center
}

.hs-divider {
  width: 1px;
  background: var(--br);
  align-self: stretch
}

.hs-num {
  font-family: var(--fh);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--tx);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 1px
}

.hs-label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--tm);
  text-transform: uppercase
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

/* Hero right — terminal */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.h-terminal {
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(59, 158, 255, .04), 0 4px 40px rgba(0, 0, 0, .5);
}

.h-term-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: rgba(0, 0, 0, .4);
  border-bottom: 1px solid var(--br);
}

.h-term-dots {
  display: flex;
  gap: 6px
}

.h-term-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%
}

.d-r {
  background: #FF5F57
}

.d-y {
  background: #FEBC2E
}

.d-g {
  background: #28C840
}

.h-term-title {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--tm);
  letter-spacing: .4px
}

.h-term-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.h-t-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 9px 12px;
  border-radius: var(--r);
  transition: background .18s;
}

.h-t-row:hover {
  background: rgba(255, 255, 255, .03)
}

.h-t-pair {
  font-family: var(--fm);
  font-size: 13px;
  color: var(--ts);
  letter-spacing: .5px
}

.h-t-dir {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 100px
}

.h-t-dir.buy {
  background: var(--profit-d);
  color: var(--profit)
}

.h-t-dir.sell {
  background: var(--loss-d);
  color: var(--loss)
}

.h-t-pnl {
  font-family: var(--fm);
  font-size: 14px;
  font-weight: 700;
  color: var(--profit);
  text-align: right
}

.h-t-divider {
  height: 1px;
  background: var(--br);
  margin: 6px 0
}

.h-t-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(34, 197, 94, .06);
  border-radius: var(--r);
  border: 1px solid rgba(34, 197, 94, .14);
}

.h-t-total span:first-child {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--tm)
}

.h-t-sum {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 700;
  color: var(--profit)
}

.h-term-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: rgba(0, 0, 0, .2);
  border-top: 1px solid var(--br);
  font-family: var(--fm);
  font-size: 11px;
  color: var(--tm);
}

.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--br);
  background: var(--bg3);
  font-family: var(--fh);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ts);
}

/* ── TICKER BAR ──────────────────────────────────────── */
.ticker-bar {
  background: var(--bg2);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}

.ticker-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent)
}

.ticker-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent)
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}

.tk-brand {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--ac);
  letter-spacing: 2px
}

.tk-item {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--tm);
  letter-spacing: 1.5px
}

.tk-item.tk-hl {
  color: var(--ts)
}

.tk-sep {
  color: var(--tm);
  font-size: 8px
}

@keyframes tickerScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══ ABOUT ═════════════════════════════════════════════ */
#about {
  background: var(--bg2)
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center
}

.about-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r3);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--br);
  position: relative;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top
}

.about-frame.no-photo .about-img {
  display: none
}

.about-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--tm);
}

.about-lead {
  font-size: 17px;
  color: var(--tx);
  line-height: 1.8;
  margin-bottom: 14px;
  margin-top: 25px;
}

.about-body {
  font-size: 16px;
  color: var(--ts);
  line-height: 1.8;
  margin-bottom: 12px
}

.about-body strong,
.about-body em {
  color: var(--tx)
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px
}

.skill-chips span {
  font-family: var(--fh);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--br2);
  color: var(--ts);
  transition: color .18s, border-color .18s;
}

.skill-chips span:hover {
  color: var(--tx);
  border-color: var(--br2)
}

/* ═══ HOW IT WORKS ══════════════════════════════════════ */
#how-it-works {
  background: var(--bg)
}

.hiw-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0
}

.hiw-card {
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r2);
  padding: 32px 24px;
  text-align: center;
  transition: border-color .25s, transform .25s;
}

.hiw-card:hover {
  border-color: var(--ac-border);
  transform: translateY(-5px)
}

.hiw-num {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--tm);
  letter-spacing: 2px;
  margin-bottom: 14px
}

.hiw-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 14px
}

.hiw-card h3 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 12px
}

.hiw-card p {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--ts);
  line-height: 1.75;
  margin-bottom: 18px
}

.hiw-link {
  font-family: var(--fh);
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ts);
  transition: color .18s
}

.hiw-link:hover {
  color: var(--ac)
}

.hiw-arr {
  font-size: 24px;
  color: var(--br2);
  text-align: center;
  padding: 0 6px
}

/* ═══ RESULTS ═══════════════════════════════════════════ */
#results {
  background: var(--bg2)
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.result-card {
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r2);
  padding: 24px;
  transition: border-color .25s, transform .25s;
}

.result-card:hover {
  border-color: var(--br2);
  transform: translateY(-4px)
}

.result-big {
  border-color: rgba(34, 197, 94, .2);
  background: linear-gradient(135deg, var(--bg4) 0%, var(--bg3) 100%);
}

.result-badge {
  font-family: var(--fh);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--profit);
  background: var(--profit-d);
  border: 1px solid rgba(34, 197, 94, .18);
  border-radius: 100px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px
}

.r-pair {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ts)
}

.r-dir {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 100px
}

.r-dir.buy {
  background: var(--profit-d);
  color: var(--profit)
}

.r-dir.sell {
  background: var(--loss-d);
  color: var(--loss)
}

.r-profit {
  font-family: var(--fh);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--profit);
  line-height: 1;
  margin-bottom: 14px
}

.result-big .r-profit {
  font-size: clamp(28px, 3.5vw, 42px)
}

.r-data {
  border-top: 1px solid var(--br);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.r-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px
}

.r-row span:first-child {
  color: var(--tm)
}

.r-row span:last-child {
  color: var(--ts);
  font-family: var(--fm)
}

.result-quote {
  grid-column: 1/-1;
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r2);
  padding: 36px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.result-quote blockquote {
  font-family: var(--fh);
  font-size: clamp(16px, 2vw, 22px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ts);
  max-width: 560px;
  line-height: 1.5
}

.result-quote cite {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--ac);
  letter-spacing: .5px
}

/* ═══ PROOF GALLERY ══════════════════════════════════════ */
#proof {
  background: var(--bg)
}

.proof-tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r2);
  padding: 4px;
  margin-bottom: 28px;
}

.ptab {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--tm);
  transition: all .2s;
}

.ptab.active {
  background: var(--ac);
  color: #000;
  font-weight: 700
}

.tab-panel {
  display: none
}

.tab-panel.active {
  display: block
}

.masonry {
  columns: 3;
  column-gap: 14px
}

.pc {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--br);
  cursor: pointer;
  transition: border-color .22s, transform .22s;
  position: relative;
}

.pc:hover {
  border-color: var(--br2);
  transform: scale(1.02)
}

.pc img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover
}

.pc.pe img {
  display: none
}

.pc.pe::before {
  content: '📊';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  padding: 36px;
  background: var(--bg4)
}

.pc-ov {
  position: absolute;
  inset: 0;
  background: rgba(59, 158, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}

.pc-ov span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ac);
  border: 1px solid var(--ac-border);
  padding: 6px 18px;
  border-radius: 100px;
  background: rgba(7, 9, 15, .9)
}

.pc:hover .pc-ov {
  opacity: 1
}

.pc-lbl {
  padding: 9px 14px;
  font-size: 12px;
  color: var(--ts)
}

.pc-lbl strong {
  color: var(--profit)
}

.pc-feat {
  border-color: rgba(34, 197, 94, .18)
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center
}

.lightbox.open {
  display: flex
}

.lb-drop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .9)
}

.lb-box {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.lb-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--br);
  background: var(--bg4);
  color: var(--ts);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .18s;
  z-index: 2
}

.lb-close:hover {
  color: var(--ac)
}

#lbImg {
  max-width: 100%;
  max-height: 72vh;
  border-radius: var(--r);
  object-fit: contain;
  background: var(--bg4)
}

.lb-cap {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--tm);
  text-align: center
}

/* ═══ PROGRAMS ═══════════════════════════════════════════ */
#programs {
  background: var(--bg2)
}

.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto
}

.prog-card {
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r3);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s
}

.prog-card:hover {
  border-color: var(--br2)
}

.prog-featured {
  border-color: rgba(59, 158, 255, .25);
  background: linear-gradient(150deg, var(--bg4) 0%, var(--bg3) 100%)
}

.prog-pop {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ac);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 0 var(--r3) 0 var(--r);
}

.prog-tier {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tm);
  margin-bottom: 8px
}

.prog-name {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tx);
  margin-bottom: 4px
}

.prog-price {
  font-family: var(--fh);
  font-size: 52px;
  font-weight: 800;
  color: var(--tx);
  line-height: 1;
  margin: 18px 0 6px
}

.prog-price sup {
  font-size: 22px;
  font-weight: 400;
  vertical-align: super
}

.prog-desc {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: 20px
}

.prog-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px
}

.prog-list li {
  display: flex;
  gap: 9px;
  font-size: 13px;
  color: var(--ts)
}

.prog-list li::before {
  content: '→';
  color: var(--ac);
  font-family: var(--fm);
  flex-shrink: 0;
  margin-top: 1px
}

.prog-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
  border-radius: var(--r);
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.prog-primary {
  background: var(--ac);
  color: #000
}

.prog-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px)
}

.prog-outline {
  background: transparent;
  color: var(--tx);
  border: 1px solid var(--br2)
}

.prog-outline:hover {
  border-color: var(--ac-border);
  color: var(--ac);
  transform: translateY(-2px)
}

/* ═══ REVIEWS ════════════════════════════════════════════ */
#reviews {
  background: var(--bg3);
  overflow: hidden
}

#reviews .sw {
  padding-bottom: 0
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 32px 0 72px;
  position: relative
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg3), transparent)
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg3), transparent)
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeGo 40s linear infinite
}

.marquee-track:hover {
  animation-play-state: paused
}

.rv {
  background: var(--bg2);
  border: 1px solid var(--br);
  border-radius: var(--r2);
  padding: 24px;
  width: 320px;
  flex-shrink: 0;
  transition: border-color .2s;
}

.rv:hover {
  border-color: var(--br2)
}

.rv-stars {
  color: #F59E0B;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px
}

.rv p {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px
}

.rv-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--br);
  padding-top: 14px
}

.rv-foot div {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.rv-foot strong {
  font-family: var(--fh);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tx)
}

.rv-foot span {
  font-family: var(--fh);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tm)
}

.rv-num {
  font-family: var(--fm);
  font-size: 18px;
  font-weight: 700;
  color: var(--profit)
}

@keyframes marqueeGo {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══ FAQ ════════════════════════════════════════════════ */
#faq {
  background: var(--bg)
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start
}

.faq-list {
  display: flex;
  flex-direction: column
}

.fi {
  border-bottom: 1px solid var(--br)
}

.fi:first-child {
  border-top: 1px solid var(--br)
}

.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tx);
  transition: color .18s;
}

.fq:hover {
  color: var(--ac)
}

.fi-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--tm);
  transition: all .28s;
  font-family: var(--fm);
}

.fi.is-open .fi-icon {
  border-color: var(--ac-border);
  color: var(--ac);
  transform: rotate(45deg)
}

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-bottom .22s
}

.fi.is-open .fa {
  max-height: 260px;
  padding-bottom: 18px
}

.fa[hidden] {
  display: block !important
}

/* override hidden for animation */
.fa p {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.8
}

.fa strong {
  color: var(--tx)
}

/* ═══ CTA ════════════════════════════════════════════════ */
#contact {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  text-align: center
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(59, 158, 255, .04), transparent 70%);
  pointer-events: none
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center
}

.cta-h {
  font-family: var(--fh);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  color: var(--tx);
  margin: 12px 0 18px;
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase
}

.cta-h em {
  color: var(--ac);
  font-style: normal;
  font-family: var(--fh);
  font-weight: 400
}

.cta-sub {
  font-size: 18px;
  color: var(--ts);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px
}

.cta-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.sc {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ts);
  padding: 10px 20px;
  border-radius: var(--r);
  border: 1px solid var(--br);
  transition: all .2s
}

.sc:hover {
  color: var(--tx);
  border-color: var(--br2);
  background: var(--bg3)
}

/* ═══ FOOTER ═════════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--br)
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px var(--gx);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ac)
}

.footer-logo em {
  color: var(--tx);
  font-style: normal;
  font-family: var(--fh);
  font-weight: 400
}

.footer-tag {
  font-size: 12px;
  color: var(--tm);
  margin-top: 4px
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.footer-nav a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tm);
  transition: color .18s
}

.footer-nav a:hover {
  color: var(--ts)
}

.footer-copy {
  font-size: 12px;
  color: var(--tm)
}

.footer-disc {
  border-top: 1px solid var(--br);
  padding: 18px var(--gx);
  text-align: center
}

.footer-disc p {
  font-size: 11px;
  color: var(--tm);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6
}