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

:root {
  --bg:        #06080f;
  --bg2:       #0d1424;
  --bg3:       #09101d;
  --border:    #1a2640;
  --border2:   #222f45;
  --cyan:      #00d4ff;
  --purple:    #6d28d9;
  --green:     #00e676;
  --red:       #ff4d6d;
  --text:      #e2e8f0;
  --text2:     #94a3b8;
  --text3:     #4a5568;
  --text4:     #3d526b;
  --font:      'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.grad {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--sm  { padding: 8px 18px; font-size: 13px; border-radius: 10px; }
.btn--lg  { padding: 14px 28px; font-size: 15px; }
.btn--xl  { padding: 18px 40px; font-size: 17px; border-radius: 14px; }

.btn--glow {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 212, 255, .25);
}
.btn--glow:hover {
  box-shadow: 0 6px 40px rgba(0, 212, 255, .45);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  color: var(--text2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border-color: var(--border2);
}

/* ── HEADER ──────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background .3s, border-color .3s;
}
.header.scrolled {
  background: rgba(6, 8, 15, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 16px rgba(0, 212, 255, .3);
  flex-shrink: 0;
}
.logo__name {
  font-size: 16px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -.3px;
}
.logo__name span { color: var(--cyan); }
.logo__ver { font-size: 10px; color: #6b8aaa; }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text3);
  transition: color .2s;
}
.nav a:hover { color: var(--text); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: .3s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: var(--cyan);
  top: -200px; right: -200px;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: var(--purple);
  bottom: -100px; left: -100px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 0%, transparent 70%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 24px;
}
.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero__title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hstat__val {
  font-size: 26px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.hstat__lbl {
  font-size: 11px;
  color: var(--text4);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}
.hstat__sep {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ── BOT CARD PREVIEW ────────────────────────────────────────── */
.hero__preview {
  position: relative;
  display: flex;
  justify-content: center;
}
.bot-card {
  width: 340px;
  background: linear-gradient(180deg, #0d1424, #09101d);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(0,212,255,.06), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
  font-size: 12px;
}
.bot-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 10px;
  background: linear-gradient(135deg, #0d1832, #0a1525);
  border-bottom: 1px solid var(--border);
}
.bot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bot-logo__icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.bot-logo__name { font-size: 13px; font-weight: 700; color: #f1f5f9; }
.bot-logo__name span { color: var(--cyan); }
.bot-logo__sub { font-size: 9px; color: var(--text4); }
.bot-pill {
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,230,118,.08);
  border: 1px solid rgba(0,230,118,.3);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 9px; font-weight: 700;
  color: var(--green);
  letter-spacing: .5px;
}
.bot-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
  animation: pulse 1.2s ease-in-out infinite;
}
.bot-sig {
  margin: 10px;
  background: rgba(255,255,255,.025);
  border: 1px solid #1e3a2a;
  border-radius: 12px;
  padding: 10px;
}
.bot-sig.up { border-color: #1e3a2a; }
.bot-sig__top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.bot-arrow {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, rgba(0,230,118,.2), rgba(0,230,118,.1));
  border: 1px solid rgba(0,230,118,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--green);
  flex-shrink: 0;
}
.bot-asset { font-size: 13px; font-weight: 700; color: #f1f5f9; }
.bot-dir { font-size: 9px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .5px; }
.bot-badge { margin-left: auto; background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.2); border-radius: 6px; padding: 2px 7px; font-size: 9px; font-weight: 700; color: var(--cyan); }
.bot-bet { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.bot-bet__lbl { font-size: 10px; color: var(--text4); }
.bot-bet__val { font-size: 15px; font-weight: 800; color: #f1f5f9; }
.bot-timer { margin-left: auto; background: rgba(255,77,109,.1); border: 1px solid rgba(255,77,109,.2); border-radius: 6px; padding: 2px 7px; font-size: 10px; font-weight: 700; color: var(--red); }
.bot-mm-row { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; padding: 4px 7px; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 6px; font-size: 10px; font-weight: 600; color: var(--cyan); }
.bot-btns { display: flex; gap: 5px; }
.bot-btn { flex: 1; border: 1px solid var(--border); background: rgba(255,255,255,.04); border-radius: 7px; padding: 6px 4px; font-size: 9px; font-weight: 700; color: var(--text2); cursor: default; font-family: var(--font); }
.bot-btn.win { border-color: rgba(0,230,118,.3); color: var(--green); background: rgba(0,230,118,.06); }
.bot-btn.lose { border-color: rgba(255,77,109,.3); color: var(--red); background: rgba(255,77,109,.06); }
.bot-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
  padding: 10px;
  border-top: 1px solid var(--border);
}
.bst { background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: 8px; padding: 7px 4px; text-align: center; }
.bst__v { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.bst__v.g { color: var(--green); }
.bst__v.r { color: var(--red); }
.bst__v.c { color: var(--cyan); }
.bst__l { font-size: 8px; color: var(--text4); text-transform: uppercase; letter-spacing: .4px; margin-top: 2px; }

.hero__float {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  animation: float 3s ease-in-out infinite;
}
.hero__float--1 { top: 10px; right: -30px; color: var(--green); border-color: rgba(0,230,118,.3); animation-delay: 0s; }
.hero__float--2 { bottom: 80px; right: -40px; color: var(--cyan); border-color: rgba(0,212,255,.3); animation-delay: 1s; }
.hero__float--3 { bottom: 20px; left: -20px; color: var(--text2); animation-delay: 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--dark { background: var(--bg2); }
.section--cta { padding: 80px 0; }

.section__head {
  text-align: center;
  margin-bottom: 60px;
}
.section__tag {
  display: inline-block;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.section__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section__sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 540px;
  margin: 0 auto;
}

/* ── FEATURES ────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .3s, transform .3s;
}
.feat-card:hover {
  border-color: rgba(0,212,255,.25);
  transform: translateY(-4px);
}
.feat-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}
.feat-card p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
}

/* ── STEPS ───────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.step {
  flex: 1;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}
.step__num {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}
.step__body p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
}
.step__arrow {
  font-size: 24px;
  color: var(--text4);
  padding-top: 40px;
  flex-shrink: 0;
}

/* ── INDICATORS ──────────────────────────────────────────────── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.ind-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
  transition: border-color .3s, transform .3s;
}
.ind-card:hover {
  border-color: rgba(0,212,255,.25);
  transform: translateY(-3px);
}
.ind-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ind-icon { font-size: 20px; }
.ind-name { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.ind-card p { font-size: 12.5px; color: var(--text2); line-height: 1.6; }

.combo-banner {
  background: rgba(0,212,255,.05);
  border: 1px solid rgba(0,212,255,.15);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.combo-banner__icon { font-size: 24px; flex-shrink: 0; }
.combo-banner__title { font-size: 15px; font-weight: 700; color: #f1f5f9; margin-bottom: 4px; }
.combo-banner__sub { font-size: 13px; color: var(--text2); }
.combo-badge {
  margin-left: auto;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* ── MM GRID ─────────────────────────────────────────────────── */
.mm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mm-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.mm-card:hover {
  border-color: rgba(109,40,217,.35);
  transform: translateY(-4px);
}
.mm-card--hero {
  border-color: rgba(0,212,255,.2);
}
.mm-card--hero:hover { border-color: rgba(0,212,255,.4); }
.mm-card__icon { font-size: 28px; margin-bottom: 14px; }
.mm-card h3 { font-size: 16px; font-weight: 700; color: #f1f5f9; margin-bottom: 10px; }
.mm-card p { font-size: 13.5px; color: var(--text2); line-height: 1.65; }
.mm-card__tag {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,212,255,.12);
  border: 1px solid rgba(0,212,255,.25);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
}

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-box {
  position: relative;
  background: linear-gradient(135deg, #0d1832, #0a1525);
  border: 1px solid rgba(0,212,255,.15);
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  overflow: hidden;
}
.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .12;
  pointer-events: none;
}
.cta__orb--1 {
  width: 400px; height: 400px;
  background: var(--cyan);
  top: -150px; right: -100px;
}
.cta__orb--2 {
  width: 350px; height: 350px;
  background: var(--purple);
  bottom: -120px; left: -80px;
}
.cta-content { position: relative; z-index: 1; }
.cta__badge {
  display: inline-block;
  background: rgba(0,230,118,.1);
  border: 1px solid rgba(0,230,118,.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
}
.cta__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta__sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta__step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
}
.cta__step-n {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.cta__step-arr { color: var(--text4); }
.cta__unzip {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(226,232,240,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 16px;
  max-width: 480px;
  line-height: 1.5;
}
.cta__unzip strong { color: #f1f5f9; }
.cta__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text4);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 60px;
  padding: 60px 24px;
}
.footer__brand .logo { margin-bottom: 16px; }
.footer__desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 380px;
}
.footer__links { display: flex; gap: 60px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 13.5px;
  color: #7a94b0;
  transition: color .2s;
}
.footer__col a:hover { color: var(--cyan); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b8aaa;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── AOS ANIMATIONS ──────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-in {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__preview { justify-content: center; }
  .hero__float--1,
  .hero__float--2,
  .hero__float--3 { display: none; }
  .steps { flex-direction: column; }
  .step__arrow { display: none; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(6, 8, 15, .97);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
  .nav.open a { font-size: 16px; }
  .header .btn--sm { display: none; }
  .burger { display: flex; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { gap: 40px; }
  .cta-box { padding: 40px 24px; }
  .cta__steps { flex-direction: column; }
  .cta__step-arr { display: none; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .mm-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 110px 0 70px; }
  .combo-banner { flex-wrap: wrap; }
  .combo-badge { margin: 0; }
}

/* ── HERO ALLOWED HIGHLIGHT ──────────────────────────────────── */
.hero__allowed {
  display: inline;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  background: rgba(0, 230, 118, .04);
  border-top: 1px solid rgba(0, 230, 118, .12);
  border-bottom: 1px solid rgba(0, 230, 118, .12);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 28px;
  font-size: 13px;
  color: var(--text2);
}
.trust-item strong { color: var(--text); }
.trust-item__icon { font-size: 18px; flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(0, 230, 118, .15);
  flex-shrink: 0;
}

/* ── ALLOWED SECTION ─────────────────────────────────────────── */
.section--allowed {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  padding: 80px 0;
}
.allowed-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}
.allowed-badge {
  font-size: 80px;
  line-height: 1;
  filter: drop-shadow(0 0 30px rgba(0, 230, 118, .4));
  animation: float 3.5s ease-in-out infinite;
  padding-top: 16px;
}
.allowed-body .section__tag { display: inline-block; margin-bottom: 16px; }
.allowed-body .section__title { margin-bottom: 20px; }
.allowed-text {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 620px;
}
.allowed-text strong { color: var(--text); }

.allowed-compare {
  display: flex;
  gap: 16px;
  align-items: center;
}
.compare-col {
  flex: 1;
  border-radius: 14px;
  padding: 22px 24px;
}
.compare-col--bad {
  background: rgba(255, 77, 109, .05);
  border: 1px solid rgba(255, 77, 109, .2);
}
.compare-col--good {
  background: rgba(0, 230, 118, .05);
  border: 1px solid rgba(0, 230, 118, .2);
}
.compare-col__head {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.compare-col--bad .compare-col__head  { color: var(--red); }
.compare-col--good .compare-col__head { color: var(--green); }
.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.compare-col ul li {
  font-size: 13.5px;
  color: var(--text2);
  padding-left: 18px;
  position: relative;
}
.compare-col--bad ul li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.compare-col--good ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.compare-vs {
  font-size: 13px;
  font-weight: 800;
  color: var(--text4);
  flex-shrink: 0;
  letter-spacing: .5px;
}

/* ── RESPONSIVE additions ─────────────────────────────────────── */
@media (max-width: 860px) {
  .allowed-inner { grid-template-columns: 1fr; gap: 24px; }
  .allowed-badge { font-size: 48px; padding-top: 0; }
  .allowed-compare { flex-direction: column; }
  .compare-vs { display: none; }
  .trust-sep { display: none; }
  .trust-strip__inner { flex-direction: column; gap: 4px; }
  .trust-item { padding: 6px 16px; }
}

/* ── LIVE CHART ───────────────────────────────────────────────── */
.section--chart { background: var(--bg2, #09101d); }

.chart-wrap {
  background: #06080f;
  border: 1px solid #1a2640;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.65), 0 0 0 1px rgba(0,212,255,.04);
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #1a2640;
  gap: 12px;
  flex-wrap: wrap;
}
.chart-left  { display: flex; align-items: center; gap: 10px; }
.chart-center{ display: flex; align-items: center; gap: 12px; }
.chart-right { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-wrap: wrap; }

.chart-pair {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .3px;
}
.chart-tf {
  font-size: 11px;
  font-weight: 700;
  color: #00d4ff;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 5px;
  padding: 2px 7px;
}
.chart-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: .5px;
}
.chart-change {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.chart-change.up   { color: #00e676; }
.chart-change.down { color: #ff4d6d; }

.chart-ind { font-size: 12px; color: rgba(255,255,255,.35); }
.chart-ind b { color: rgba(255,255,255,.7); font-weight: 600; }

.chart-signal {
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 6px;
  letter-spacing: .5px;
  min-width: 82px;
  text-align: center;
  transition: opacity .3s;
  display: inline-block;
}
.chart-signal.up   { background: rgba(0,230,118,.12); color: #00e676; border: 1px solid rgba(0,230,118,.3); }
.chart-signal.down { background: rgba(255,77,109,.12); color: #ff4d6d; border: 1px solid rgba(255,77,109,.3); }

#trading-chart {
  display: block;
  width: 100%;
  height: 340px;
  cursor: crosshair;
}

.chart-legend {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid #1a2640;
  flex-wrap: wrap;
}
.cl-item   { font-size: 11px; color: rgba(255,255,255,.25); letter-spacing: .2px; }
.cl-green  { color: #00e676; }
.cl-red    { color: #ff4d6d; }
.cl-purple { color: #a855f7; }
.cl-cyan   { color: #00d4ff; }

@media (max-width: 640px) {
  .chart-header  { flex-direction: column; align-items: flex-start; gap: 8px; }
  .chart-right   { margin-left: 0; }
  .chart-center  { gap: 8px; }
  .chart-price   { font-size: 16px; }
  #trading-chart { height: 220px; }
}
