/* =========================================================
   SACHI FINANCIAL — Landing Page
   Futuristic dark theme · glassmorphism · neon gradients
   ========================================================= */

:root {
  /* Core palette */
  --bg: #05070f;
  --bg-2: #080b17;
  --bg-3: #0b0f1e;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-str: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #eaf0ff;
  --muted: #9aa6c4;
  --muted-2: #6b7799;

  /* Accents */
  --cyan: #22d3ee;
  --blue: #4f7bff;
  --violet: #8b5cf6;
  --pink: #ff4d8d;
  --green: #22e0a1;
  --red: #ff5c7a;
  --gold: #ffcb57;

  /* Gradients */
  --grad-main: linear-gradient(120deg, #22d3ee 0%, #4f7bff 45%, #8b5cf6 100%);
  --grad-gold: linear-gradient(120deg, #ffe08a 0%, #ffcb57 45%, #ff9b3d 100%);
  --grad-pink: linear-gradient(120deg, #8b5cf6, #ff4d8d);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.7);
  --glow-cyan: 0 0 0 1px rgba(34,211,238,.25), 0 12px 40px -10px rgba(34,211,238,.45);

  --nav-h: 74px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 600px at 80% -5%, rgba(79,123,255,.20), transparent 60%),
    radial-gradient(900px 700px at 0% 20%, rgba(139,92,246,.16), transparent 55%),
    radial-gradient(1000px 800px at 100% 100%, rgba(34,211,238,.10), transparent 60%),
    var(--bg);
}

h1, h2, h3, h4, .brand-text { font-family: "Sora", sans-serif; letter-spacing: -0.02em; }

.container { max-width: var(--maxw); }

a { text-decoration: none; color: inherit; transition: color .2s ease; }

::selection { background: rgba(79,123,255,.4); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #23304f; border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #33436b; }

/* ---------- Utility text ---------- */
.grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.up { color: var(--green) !important; }
.down { color: var(--red) !important; }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(79,123,255,.13), transparent 62%);
  transition: opacity .3s ease; opacity: 0;
  mix-blend-mode: screen;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-main); z-index: 2000;
  box-shadow: 0 0 14px rgba(34,211,238,.7);
}

/* ---------- Buttons ---------- */
.btn { font-family: "Sora", sans-serif; font-weight: 600; border-radius: 12px; padding: .62rem 1.15rem; transition: all .25s ease; border: 1px solid transparent; display: inline-flex; align-items: center; gap: .25rem; }
.btn-lg { padding: .85rem 1.5rem; font-size: 1.02rem; }
.btn-sm { padding: .45rem .85rem; font-size: .85rem; }

.btn-glow {
  background: var(--grad-main); color: #05070f; font-weight: 700;
  box-shadow: 0 10px 30px -8px rgba(79,123,255,.6);
  position: relative;
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(79,123,255,.8); color: #05070f; }
.btn-glow:active { transform: translateY(0); }

.btn-outline-soft { background: var(--surface); color: var(--text); border: 1px solid var(--border-str); backdrop-filter: blur(8px); }
.btn-outline-soft:hover { background: var(--surface-2); color: #fff; border-color: rgba(255,255,255,.32); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: #fff; }

/* ---------- Shared bits ---------- */
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(34,224,161,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,224,161,.6);} 70% { box-shadow: 0 0 0 9px rgba(34,224,161,0);} 100% { box-shadow: 0 0 0 0 rgba(34,224,161,0);} }

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem; border-radius: 100px; font-size: .82rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border-str); color: var(--muted);
  backdrop-filter: blur(8px); margin-bottom: 1.4rem;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--cyan); font-weight: 700; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: .9rem;
}
.eyebrow-gold { color: var(--gold); }

.live-badge { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 700; color: var(--green); letter-spacing: .05em; }

.stars { color: var(--gold); display: inline-flex; gap: 2px; font-size: .85rem; }

/* =========================================================
   OFFER STRIP
   ========================================================= */
.offer-strip {
  background: linear-gradient(90deg, rgba(139,92,246,.18), rgba(34,211,238,.12));
  border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative; z-index: 60;
}
.offer-track {
  display: flex; gap: 3rem; white-space: nowrap; width: max-content;
  padding: .5rem 0; animation: marquee 32s linear infinite;
}
.offer-track span { font-size: .8rem; color: var(--muted); font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; }
.offer-track b { color: var(--gold); }
.offer-track i { color: var(--cyan); }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* =========================================================
   NAVBAR
   ========================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(5,7,15,.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-nav.scrolled { background: rgba(5,7,15,.82); border-color: var(--border); box-shadow: 0 10px 30px -18px rgba(0,0,0,.8); }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-main); color: #05070f; font-size: 1.15rem;
  box-shadow: 0 8px 22px -6px rgba(79,123,255,.7);
}
.brand-text { font-size: 1.22rem; color: #fff; }
.brand-accent { color: var(--cyan); }

.site-nav .nav-link {
  color: var(--muted); font-weight: 500; font-size: .95rem; padding: .5rem .9rem !important;
  border-radius: 9px; position: relative;
}
.site-nav .nav-link:hover { color: #fff; background: var(--surface); }

.navbar-toggler { border: 1px solid var(--border-str); color: var(--text); font-size: 1.4rem; padding: .2rem .55rem; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(8,11,23,.97); backdrop-filter: blur(20px);
    margin-top: .8rem; padding: 1rem; border-radius: var(--radius); border: 1px solid var(--border);
  }
  .nav-cta { margin-top: .8rem; }
  .nav-cta .btn { flex: 1; justify-content: center; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 5.5rem 0 0; overflow: hidden; }
.hero-inner { position: relative; z-index: 3; padding-bottom: 4rem; }

.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(79,123,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,123,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 40%, transparent 100%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; opacity: .55; }
.orb-1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(79,123,255,.6), transparent 70%); top: -120px; right: -80px; animation: float 12s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,92,246,.5), transparent 70%); bottom: -120px; left: -100px; animation: float 15s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) translateX(0);} 50% { transform: translateY(-30px) translateX(20px);} }

.hero-title { font-size: clamp(2.35rem, 5.4vw, 4.1rem); font-weight: 800; line-height: 1.04; margin: .3rem 0 1.1rem; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--muted); max-width: 560px; margin-bottom: 2rem; }
.hero-sub b { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }

.hero-trust { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -12px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.hero-trust-text { font-size: .88rem; color: var(--muted); }
.hero-trust-text b { color: #fff; }

/* Hero chart card */
.chart-card {
  position: relative;
  background: linear-gradient(160deg, rgba(20,26,46,.85), rgba(10,14,28,.9));
  border: 1px solid var(--border-str);
  border-radius: var(--radius-lg);
  padding: 1.3rem; box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.chart-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(160deg, rgba(34,211,238,.5), transparent 40%, rgba(139,92,246,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.chart-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .6rem; }
.sym-icon { font-family: "Sora"; font-weight: 700; font-size: 1.25rem; color: #fff; }
.sym-icon span { color: var(--muted); font-weight: 500; }
.sym-meta { display: block; font-size: .74rem; color: var(--muted-2); margin-top: 2px; }
.chart-price { text-align: right; }
.price-now { font-family: "JetBrains Mono", monospace; font-size: 1.35rem; font-weight: 700; color: #fff; display: block; }
.price-chg { font-size: .82rem; font-weight: 700; font-family: "JetBrains Mono", monospace; }

.hero-candles { width: 100%; height: 200px; display: block; }

.chart-card-foot { display: flex; align-items: center; gap: 1.1rem; margin-top: .8rem; padding-top: .9rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.foot-stat { display: flex; flex-direction: column; line-height: 1.2; }
.foot-stat span { font-size: .68rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }
.foot-stat b { font-family: "JetBrains Mono", monospace; font-size: .95rem; color: #fff; }
.chart-card-foot .btn { margin-left: auto; }

.float-chip {
  position: absolute; background: rgba(10,14,28,.9); border: 1px solid var(--border-str);
  border-radius: 12px; padding: .5rem .75rem; font-size: .78rem; font-weight: 600;
  display: flex; align-items: center; gap: .4rem; backdrop-filter: blur(10px);
  box-shadow: var(--shadow); color: var(--muted);
}
.float-chip i { color: var(--green); }
.float-chip b { font-family: "JetBrains Mono", monospace; }
.chip-1 { top: 18%; left: -28px; animation: floatChip 5s ease-in-out infinite; }
.chip-2 { bottom: 22%; right: -22px; animation: floatChip 6s ease-in-out infinite reverse; }
@keyframes floatChip { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }

/* Ticker */
.ticker {
  position: relative; z-index: 3;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(8,11,23,.7); backdrop-filter: blur(10px); overflow: hidden;
}
.ticker-track { display: flex; gap: 2.6rem; width: max-content; padding: .7rem 0; animation: marquee 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.tick { display: inline-flex; align-items: center; gap: .55rem; font-family: "JetBrains Mono", monospace; font-size: .84rem; }
.tick-sym { color: var(--muted); font-weight: 700; }
.tick-price { color: #fff; }
.tick-chg { font-weight: 700; }
.tick-arrow { font-size: .7rem; }

/* =========================================================
   LOGOS BAND
   ========================================================= */
.logos-band { padding: 2.4rem 0; border-bottom: 1px solid var(--border); }
.logos-label { text-align: center; color: var(--muted-2); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; }
.logo-item { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); font-family: "Sora"; font-weight: 600; font-size: 1rem; opacity: .8; transition: opacity .2s, color .2s; }
.logo-item:hover { opacity: 1; color: #fff; }
.logo-item i { color: var(--cyan); font-size: 1.2rem; }

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats-strip { padding: 3.4rem 0; }
.stat-num { font-family: "Sora"; font-weight: 800; font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: #fff; line-height: 1; }
.stat-num .count { background: var(--grad-main); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--muted); font-size: .9rem; margin-top: .5rem; }

/* =========================================================
   SECTIONS (generic)
   ========================================================= */
.section { padding: 5.5rem 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(11,15,30,.6), transparent); }
.section-head { max-width: 720px; margin: 0 auto 3rem; }
.section-title { font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 800; line-height: 1.1; margin-bottom: .8rem; }
.section-lead { color: var(--muted); font-size: 1.05rem; }
.section-lead.mx-auto { max-width: 640px; }

/* ---------- Feature cards ---------- */
.feature-card {
  height: 100%; padding: 1.7rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-main); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-str); background: var(--surface-2); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.1rem; }
.ico-cyan { background: rgba(34,211,238,.14); color: var(--cyan); }
.ico-green { background: rgba(34,224,161,.14); color: var(--green); }
.ico-violet { background: rgba(139,92,246,.16); color: var(--violet); }
.ico-pink { background: rgba(255,77,141,.14); color: var(--pink); }
.ico-gold { background: rgba(255,203,87,.15); color: var(--gold); }
.ico-blue { background: rgba(79,123,255,.16); color: var(--blue); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: .5rem; color: #fff; }
.feature-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.feature-tag { font-size: .72rem; font-weight: 700; color: var(--cyan); background: rgba(34,211,238,.1); padding: .25rem .6rem; border-radius: 100px; letter-spacing: .04em; }

/* ---------- Check list ---------- */
.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; color: var(--muted); margin-bottom: .7rem; font-size: .98rem; }
.check-list i { color: var(--green); margin-top: .2rem; }

/* =========================================================
   DASHBOARD PREVIEW
   ========================================================= */
.dash {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, rgba(17,22,42,.9), rgba(8,11,23,.95));
  border: 1px solid var(--border-str); box-shadow: var(--shadow);
}
.dash-topbar { display: flex; align-items: center; gap: .8rem; padding: .75rem 1.1rem; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.dash-dots { display: flex; gap: .4rem; }
.dash-dots span { width: 11px; height: 11px; border-radius: 50%; background: #2a3552; }
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-title { font-size: .82rem; color: var(--muted); font-family: "JetBrains Mono", monospace; }
.dash-topbar .live-badge { margin-left: auto; }

.dash-body { padding: 1.2rem; }
.dash-summary { display: grid; grid-template-columns: repeat(3, auto) 1fr; gap: 1.2rem; align-items: center; margin-bottom: 1.2rem; }
.dash-kpi { display: flex; flex-direction: column; }
.kpi-label { font-size: .72rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }
.kpi-val { font-family: "JetBrains Mono", monospace; font-size: 1.15rem; font-weight: 700; color: #fff; }
.dash-mini { height: 54px; }
.dash-mini canvas { width: 100%; height: 100%; }

.dash-table { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.dash-row { display: grid; grid-template-columns: 1.4fr .8fr .7fr 1fr 1.1fr; gap: .5rem; padding: .7rem .9rem; align-items: center; font-size: .86rem; }
.dash-row:not(.dash-row-head) { border-top: 1px solid var(--border); }
.dash-row-head { background: rgba(255,255,255,.03); font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); font-weight: 700; }
.dash-row .ta-r, .dash-row-head .ta-r { text-align: right; }
.trade-sym { font-weight: 700; color: #fff; font-family: "JetBrains Mono", monospace; }
.trade-type { font-size: .72rem; font-weight: 700; padding: .15rem .5rem; border-radius: 6px; display: inline-block; }
.type-buy { background: rgba(34,224,161,.15); color: var(--green); }
.type-sell { background: rgba(255,92,122,.15); color: var(--red); }
.trade-num { font-family: "JetBrains Mono", monospace; color: var(--muted); }
.trade-pnl { font-family: "JetBrains Mono", monospace; font-weight: 700; text-align: right; transition: color .2s; }
.flash-up { animation: flashUp .5s ease; }
.flash-down { animation: flashDown .5s ease; }
@keyframes flashUp { 0% { background: rgba(34,224,161,.18);} 100% { background: transparent;} }
@keyframes flashDown { 0% { background: rgba(255,92,122,.18);} 100% { background: transparent;} }

/* =========================================================
   TOP TRADERS
   ========================================================= */
.trader-card {
  height: 100%; padding: 1.4rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease;
}
.trader-card:hover { transform: translateY(-6px); border-color: var(--border-str); box-shadow: var(--glow-cyan); }
.trader-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.trader-avatar { position: relative; }
.trader-avatar img { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; border: 1px solid var(--border-str); }
.trader-verified { position: absolute; bottom: -4px; right: -4px; width: 20px; height: 20px; background: var(--blue); border-radius: 50%; display: grid; place-items: center; font-size: .65rem; color: #fff; border: 2px solid var(--bg-2); }
.trader-name { font-weight: 700; color: #fff; font-family: "Sora"; line-height: 1.2; }
.trader-meta { font-size: .78rem; color: var(--muted-2); }
.trader-flag { margin-left: auto; font-family: "JetBrains Mono", monospace; font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); background: var(--surface-2); border: 1px solid var(--border); padding: .25rem .55rem; border-radius: 8px; }

.trader-spark { height: 60px; margin: .4rem 0 1rem; }
.trader-spark canvas { width: 100%; height: 100%; }

.trader-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem; margin-bottom: 1rem; }
.tstat { text-align: center; padding: .5rem .2rem; background: rgba(255,255,255,.03); border-radius: 10px; }
.tstat-val { font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 1rem; }
.tstat-label { font-size: .66rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .04em; }

.trader-foot { display: flex; align-items: center; gap: .8rem; }
.copiers-live { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.trader-foot .btn { margin-left: auto; }

/* =========================================================
   VIDEO BAND
   ========================================================= */
.video-band { position: relative; padding: 6.5rem 0; overflow: hidden; text-align: center; }
.video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,7,15,.86), rgba(5,7,15,.72), rgba(5,7,15,.92)); }
.video-content { position: relative; z-index: 2; }
.video-content .section-lead { margin: 1rem auto 1.8rem; }

/* =========================================================
   OFFERS
   ========================================================= */
.offer-card {
  height: 100%; padding: 1.8rem; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border); position: relative;
  transition: transform .3s ease, border-color .3s ease; overflow: hidden;
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--border-str); }
.offer-badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); padding: .3rem .7rem; border-radius: 100px; margin-bottom: 1rem; }
.offer-mult { font-family: "Sora"; font-weight: 800; font-size: 3.2rem; line-height: 1; color: #fff; margin-bottom: .6rem; }
.offer-mult span { font-size: 1rem; color: var(--muted); font-weight: 600; }
.offer-desc { color: var(--muted); font-size: .95rem; margin-bottom: 1.1rem; }
.offer-desc b { color: #fff; }
.offer-list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.offer-list li { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .9rem; margin-bottom: .55rem; }
.offer-list i { color: var(--green); }

.offer-featured {
  background: linear-gradient(165deg, rgba(139,92,246,.18), rgba(255,77,141,.1), rgba(11,15,30,.6));
  border-color: rgba(255,203,87,.4);
  box-shadow: 0 24px 60px -20px rgba(139,92,246,.5);
  transform: translateY(-10px);
}
.offer-featured:hover { transform: translateY(-16px); }
.offer-featured .offer-mult { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.offer-flame { position: absolute; top: 1rem; right: 1rem; font-size: .72rem; font-weight: 700; color: var(--gold); background: rgba(255,203,87,.12); padding: .3rem .6rem; border-radius: 100px; }
.offer-timer { text-align: center; margin-top: 1rem; font-size: .82rem; color: var(--muted); }
.offer-timer b { font-family: "JetBrains Mono", monospace; color: var(--gold); }

.offer-disclaimer { text-align: center; color: var(--muted-2); font-size: .82rem; margin-top: 2rem; }

/* =========================================================
   IB PROGRAM
   ========================================================= */
.ib-tiers { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.6rem; }
.ib-tier { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.ib-tier-num { width: 42px; height: 42px; border-radius: 11px; background: var(--grad-main); color: #05070f; font-family: "Sora"; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; }
.ib-tier b { color: #fff; display: block; font-size: .98rem; }
.ib-tier span { color: var(--muted); font-size: .85rem; }

.ib-visual {
  padding: 2rem; border-radius: var(--radius-lg); text-align: center;
  background: linear-gradient(160deg, rgba(20,26,46,.7), rgba(8,11,23,.9));
  border: 1px solid var(--border-str); box-shadow: var(--shadow);
}
.ib-node { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.1rem; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border-str); font-weight: 600; font-size: .9rem; color: var(--text); }
.ib-node i { color: var(--cyan); }
.ib-root { background: var(--grad-main); color: #05070f; border: none; font-weight: 700; margin-bottom: 1.6rem; position: relative; }
.ib-root i { color: #05070f; }
.ib-branch { display: flex; justify-content: center; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.8rem; position: relative; }
.ib-branch::before { content: ""; position: absolute; top: -1.6rem; left: 50%; width: 1px; height: 1.6rem; background: var(--border-str); }
.ib-earn { padding-top: 1.4rem; border-top: 1px solid var(--border); }
.ib-earn span { display: block; font-size: .78rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; }
.ib-earn b { font-family: "Sora"; font-size: 2rem; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.step-card { height: 100%; padding: 1.8rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); position: relative; transition: transform .3s ease, border-color .3s; }
.step-card:hover { transform: translateY(-6px); border-color: var(--border-str); }
.step-num { position: absolute; top: 1.2rem; right: 1.4rem; font-family: "Sora"; font-weight: 800; font-size: 2.4rem; color: rgba(255,255,255,.06); }
.step-ico { width: 56px; height: 56px; border-radius: 15px; background: var(--grad-main); color: #05070f; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.2rem; box-shadow: 0 12px 30px -10px rgba(79,123,255,.6); }
.step-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: .5rem; }
.step-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.review-card { height: 100%; padding: 1.7rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); margin: 0; transition: transform .3s ease, border-color .3s; }
.review-card:hover { transform: translateY(-5px); border-color: var(--border-str); }
.review-card blockquote { color: var(--text); font-size: .98rem; margin: 1rem 0 1.3rem; line-height: 1.6; }
.review-card figcaption { display: flex; align-items: center; gap: .7rem; }
.review-card figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-card figcaption b { color: #fff; display: block; font-size: .92rem; }
.review-card figcaption span { color: var(--muted-2); font-size: .8rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-accordion .accordion-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: .8rem; overflow: hidden; }
.faq-accordion .accordion-button { background: transparent; color: #fff; font-family: "Sora"; font-weight: 600; font-size: 1.02rem; padding: 1.1rem 1.3rem; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--cyan); background: var(--surface); }
.faq-accordion .accordion-button::after { filter: invert(1) brightness(1.5); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body { color: var(--muted); padding: 0 1.3rem 1.2rem; }

/* =========================================================
   CTA
   ========================================================= */
.cta-section { padding: 6rem 0; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 500px; background: radial-gradient(circle, rgba(79,123,255,.28), transparent 65%); filter: blur(50px); z-index: 0; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.cta-sub { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-form { display: flex; gap: .7rem; max-width: 520px; margin: 0 auto 1rem; flex-wrap: wrap; }
.cta-field { flex: 1; min-width: 220px; position: relative; display: flex; align-items: center; }
.cta-field i { position: absolute; left: 1rem; color: var(--muted-2); }
.cta-field input { width: 100%; padding: .85rem 1rem .85rem 2.6rem; border-radius: 12px; background: var(--surface); border: 1px solid var(--border-str); color: #fff; font-size: 1rem; }
.cta-field input::placeholder { color: var(--muted-2); }
.cta-field input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,.15); }
.cta-form .btn { flex-shrink: 0; }
.cta-fineprint { color: var(--muted-2); font-size: .82rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); background: rgba(6,9,18,.6); }
.footer-about { color: var(--muted); font-size: .92rem; margin: 1rem 0 1.2rem; max-width: 340px; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); font-size: 1.1rem; transition: all .25s ease; }
.footer-social a:hover { color: #fff; background: var(--grad-main); border-color: transparent; transform: translateY(-3px); }
.footer-h { font-family: "Sora"; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: var(--muted); font-size: .92rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact a { color: var(--text); font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; }
.footer-contact a:hover { color: var(--cyan); }
.footer-contact-note { color: var(--muted-2); font-size: .82rem; margin: .4rem 0 1.2rem; }

.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.risk-note { color: var(--muted-2); font-size: .78rem; line-height: 1.6; margin-bottom: 1rem; }
.risk-note b { color: var(--muted); }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; color: var(--muted-2); font-size: .82rem; }
.footer-legal a:hover { color: var(--cyan); }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.to-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--border-str); background: rgba(10,14,28,.9); color: #fff; font-size: 1.2rem; display: grid; place-items: center; cursor: pointer; z-index: 900; opacity: 0; transform: translateY(20px); transition: all .3s ease; backdrop-filter: blur(10px); }
.to-top.show { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--grad-main); color: #05070f; border-color: transparent; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .chart-card { margin-top: 1rem; }
  .float-chip { display: none; }
  .dash-summary { grid-template-columns: repeat(3, 1fr); }
  .dash-mini { grid-column: 1 / -1; }
}
@media (max-width: 767.98px) {
  .hero { padding-top: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 4rem 0; }
  .offer-featured { transform: none; }
  .offer-featured:hover { transform: translateY(-6px); }
  .dash-row { grid-template-columns: 1.2fr .7fr .9fr; font-size: .8rem; }
  .dash-row span:nth-child(3), .dash-row span:nth-child(4) { display: none; }
  .cta-form { flex-direction: column; }
  .cta-form .btn { width: 100%; justify-content: center; }
  .footer-legal { justify-content: center; text-align: center; }
}
@media (max-width: 575.98px) {
  .dash-summary { grid-template-columns: 1fr 1fr; }
  .trader-stats { gap: .35rem; }
}
