/* ==========================================================
   KryptoEkspert — Scandinavian SaaS style
   ========================================================== */
:root {
  --navy:    #0A1628;
  --navy-2:  #122440;
  --blue:    #1E6FD9;
  --blue-d:  #1558B0;
  --gold:    #F0A500;
  --bg:      #F5F7FA;
  --white:   #FFFFFF;
  --text:    #1A2332;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --green:   #16A34A;
  --green-bg:#EAF7EF;
  --red:     #DC2626;
  --red-bg:  #FDECEC;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --sh-sm: 0 1px 4px rgba(10,22,40,.06);
  --sh-md: 0 6px 24px rgba(10,22,40,.10);
  --sh-lg: 0 16px 48px rgba(10,22,40,.16);
  --max: 1160px;
  --tr: .2s ease;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { font-family: inherit; background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.25; color: var(--navy); font-weight: 800; letter-spacing: -0.01em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ============ TICKER ============ */
.ticker { background: var(--navy); color: #fff; overflow: hidden; font-size: .8rem; padding: 8px 0; }
.ticker__track { display: flex; white-space: nowrap; width: max-content; animation: tick 40s linear infinite; }
.ticker__track:hover { animation-play-state: paused; }
.ticker__item { display: inline-flex; gap: 7px; align-items: center; padding: 0 26px; border-right: 1px solid rgba(255,255,255,.12); }
.ticker__item b { color: var(--gold); font-weight: 800; }
.ticker__up { color: #4ADE80; }
.ticker__down { color: #F87171; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ============ ANNOUNCEMENT ============ */
.announce { background: linear-gradient(90deg, var(--gold) 0%, #ffc233 100%); color: var(--navy); }
.announce__inner { display: flex; align-items: center; gap: 14px; padding: 10px 24px; flex-wrap: wrap; justify-content: center; text-align: center; }
.announce__badge { background: var(--navy); color: #fff; font-size: .68rem; font-weight: 900; letter-spacing: 1px; padding: 3px 9px; border-radius: 5px; flex-shrink: 0; }
.announce__text { font-size: .88rem; font-weight: 500; }
.announce__text b { font-weight: 800; }
.announce__link { font-size: .85rem; font-weight: 800; white-space: nowrap; text-decoration: underline; }
.announce__link:hover { color: var(--navy); opacity: .75; }

/* ============ HEADER ============ */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__text { font-size: 1.15rem; font-weight: 700; color: var(--navy); letter-spacing: -.5px; }
.logo__text b { color: var(--blue); font-weight: 800; }
.logo--light .logo__text { color: #fff; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 9px 14px; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; color: var(--text); transition: var(--tr); }
.nav a:hover { background: var(--bg); color: var(--blue); }
.nav__cta { background: var(--blue); color: #fff !important; margin-left: 8px; }
.nav__cta:hover { background: var(--navy) !important; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 22px; height: 2.5px; background: var(--navy); margin: 4.5px 0; border-radius: 2px; transition: var(--tr); }

/* ============ HERO ============ */
.hero { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); border-bottom: 1px solid var(--border); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 72px 24px 84px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-bg); color: var(--green); font-size: .8rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.6s ease infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-bottom: 18px; }
.accent { color: var(--blue); }
.hero__sub { font-size: 1.08rem; color: var(--muted); max-width: 520px; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__points { display: grid; gap: 9px; font-size: .92rem; color: var(--text); }
.hero__points li { display: flex; align-items: center; gap: 9px; }
.check { color: var(--green); flex-shrink: 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: .95rem; padding: 13px 24px; border-radius: 10px; border: 2px solid transparent; cursor: pointer; transition: var(--tr); font-family: inherit; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(30,111,217,.3); }
.btn--primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--block { width: 100%; }

/* ============ PHONE MOCKUP ============ */
.hero__phone-wrap { position: relative; display: flex; justify-content: center; }
.phone { position: relative; width: 300px; height: 600px; background: #0d0d12; border-radius: 42px; padding: 10px; box-shadow: var(--sh-lg), inset 0 0 0 2px #2a2a33; cursor: pointer; transition: transform .25s ease; z-index: 2; }
.phone:hover { transform: translateY(-6px) rotate(-.5deg); }
.phone:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 110px; height: 24px; background: #0d0d12; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen { width: 100%; height: 100%; background: #17212B; border-radius: 33px; overflow: hidden; display: flex; flex-direction: column; }
.phone__glow { position: absolute; inset: auto; width: 360px; height: 360px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(30,111,217,.25) 0%, transparent 65%); z-index: 1; pointer-events: none; }
.phone__hint { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; background: rgba(30,111,217,.95); color: #fff; font-size: .78rem; font-weight: 700; }

/* Telegram UI */
.tg-header { display: flex; align-items: center; gap: 10px; background: #242F3D; padding: 30px 14px 12px; flex-shrink: 0; }
.tg-header__avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tg-header__name { color: #fff; font-size: .85rem; font-weight: 700; line-height: 1.2; }
.tg-header__sub { color: #7D8B99; font-size: .7rem; }
.tg-chat { flex: 1; overflow: hidden; padding: 12px 10px; display: flex; flex-direction: column; gap: 9px; background: linear-gradient(160deg, #0E1621 0%, #17212B 100%); }

.tg-msg { background: #182533; border-radius: 12px 12px 12px 3px; padding: 9px 11px; max-width: 95%; color: #E4ECF2; font-size: .72rem; line-height: 1.5; animation: msgIn .4s ease both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } }
.tg-msg__head { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.tg-msg__pair { font-weight: 800; color: #fff; font-size: .78rem; }
.tg-msg__side { font-size: .62rem; font-weight: 800; padding: 2px 7px; border-radius: 4px; letter-spacing: .5px; }
.tg-msg__side--long { background: rgba(22,163,74,.2); color: #4ADE80; }
.tg-msg__side--short { background: rgba(220,38,38,.2); color: #F87171; }
.tg-msg__row { display: flex; justify-content: space-between; gap: 10px; }
.tg-msg__row b { color: #fff; font-weight: 600; }
.tg-msg__label { color: #7D8B99; }
.tg-msg__result { margin-top: 6px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,.07); font-weight: 800; display: flex; align-items: center; gap: 5px; }
.tg-msg__result--win { color: #4ADE80; }
.tg-msg__result--loss { color: #F87171; }
.tg-msg__result--open { color: #FBBF24; }
.tg-msg__time { text-align: right; color: #5C6B7A; font-size: .6rem; margin-top: 4px; }

/* ============ TRUST BAR ============ */
.trustbar { background: #fff; border-bottom: 1px solid var(--border); }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding: 28px 24px; gap: 16px; }
.trustbar__num { font-size: 1.9rem; font-weight: 900; color: var(--navy); }
.trustbar__label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.trustbar__note { text-align: center; font-size: .72rem; color: var(--muted); padding-bottom: 18px; margin: 0; }

/* ============ SECTIONS ============ */
.section { padding: 88px 0; }
.section--alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; }
.section__head p { color: var(--muted); font-size: 1.02rem; }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: rgba(255,255,255,.65); }
.eyebrow { display: inline-block; font-size: .76rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.eyebrow--gold { color: var(--gold); }

/* ============ TRADES ============ */
.trades-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.trades-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { background: #fff; border: 1.5px solid var(--border); color: var(--muted); font-weight: 700; font-size: .85rem; padding: 8px 18px; border-radius: 100px; cursor: pointer; transition: var(--tr); font-family: inherit; }
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.trades-legend { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); flex-wrap: wrap; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-left: 10px; }
.dot--open { background: var(--gold); }
.dot--win { background: var(--green); }
.dot--loss { background: var(--red); }

.trades-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trade { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px; box-shadow: var(--sh-sm); transition: var(--tr); }
.trade:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.trade__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.trade__pair { font-weight: 800; font-size: 1.02rem; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.trade__side { font-size: .66rem; font-weight: 800; padding: 3px 8px; border-radius: 5px; letter-spacing: .5px; }
.trade__side--long { background: var(--green-bg); color: var(--green); }
.trade__side--short { background: var(--red-bg); color: var(--red); }
.trade__strategy { font-size: .72rem; font-weight: 700; color: var(--muted); background: var(--bg); padding: 3px 10px; border-radius: 100px; }
.trade__rows { display: grid; gap: 6px; font-size: .85rem; margin-bottom: 12px; }
.trade__row { display: flex; justify-content: space-between; }
.trade__row span:first-child { color: var(--muted); }
.trade__row b { font-weight: 700; color: var(--navy); }
.trade__result { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); font-weight: 800; font-size: .95rem; }
.trade__result--win { color: var(--green); }
.trade__result--loss { color: var(--red); }
.trade__result--open { color: #B45309; }
.trade__status { font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: 100px; }
.trade__status--win { background: var(--green-bg); color: var(--green); }
.trade__status--loss { background: var(--red-bg); color: var(--red); }
.trade__status--open { background: #FEF3C7; color: #B45309; }
.disclaimer-note { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 28px; }

/* ============ STRATEGY CARDS ============ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.strat-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 26px; transition: var(--tr); }
.strat-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); background: #fff; }
.strat-card__icon { width: 52px; height: 52px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.strat-card__icon--blue { background: rgba(30,111,217,.1); color: var(--blue); }
.strat-card__icon--gold { background: rgba(240,165,0,.12); color: #C78800; }
.strat-card__icon--green { background: var(--green-bg); color: var(--green); }
.strat-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.strat-card > p { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.strat-card__meta { display: grid; gap: 6px; font-size: .82rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 14px; }
.strat-card__meta b { color: var(--navy); font-weight: 700; }

/* ============ STEPS ============ */
.steps { display: flex; align-items: stretch; gap: 14px; }
.step { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 24px; text-align: center; box-shadow: var(--sh-sm); }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 900; font-size: 1.15rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 12px rgba(30,111,217,.35); }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .88rem; }
.step__arrow { display: flex; align-items: center; color: var(--border); flex-shrink: 0; }

/* ============ PRICING ============ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card { background: #fff; border-radius: var(--r-lg); padding: 34px 28px; position: relative; border: 2px solid transparent; }
.price-card--featured { border-color: var(--gold); transform: translateY(-10px); box-shadow: var(--sh-lg); }
.price-card__flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 900; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.price-card__icon { width: 50px; height: 50px; border-radius: var(--r-md); background: var(--bg); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.price-card__icon--blue { background: rgba(30,111,217,.1); color: var(--blue); }
.price-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.price-card__price { font-size: 1.9rem; font-weight: 900; color: var(--navy); margin: 10px 0 2px; }
.price-card__price--sm { font-size: 1.3rem; }
.price-card__price span { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card__desc { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.price-card__features { display: grid; gap: 0; margin-bottom: 24px; }
.price-card__features li { padding: 9px 0 9px 26px; font-size: .88rem; border-bottom: 1px solid var(--border); position: relative; }
.price-card__features li:last-child { border-bottom: 0; }
.price-card__features li::before { content: ''; position: absolute; left: 0; top: 13px; width: 16px; height: 16px; background: var(--green-bg); border-radius: 50%; }
.price-card__features li::after { content: ''; position: absolute; left: 4px; top: 18px; width: 8px; height: 4px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }

/* ============ FAQ ============ */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq__item summary { padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 48px; transition: var(--tr); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--blue); transition: transform var(--tr); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item[open] summary { color: var(--blue); }
.faq__item p { padding: 0 22px 18px; color: var(--muted); font-size: .92rem; }

/* ============ CONTACT ============ */
.contact { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-sm); display: grid; gap: 18px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field span { font-size: .84rem; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea { font-family: inherit; font-size: .95rem; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--text); transition: var(--tr); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(30,111,217,.12); }
.contact__note { text-align: center; font-size: .78rem; color: var(--muted); }
.contact__email { text-align: center; margin-top: 18px; font-size: .9rem; color: var(--muted); }
.contact__email a { color: var(--blue); font-weight: 700; }

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer__brand p { font-size: .88rem; margin-top: 14px; max-width: 280px; }
.footer__col { display: grid; gap: 9px; align-content: start; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.footer__col a { font-size: .88rem; transition: var(--tr); }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; font-size: .78rem; flex-wrap: wrap; }
.footer__risk { color: rgba(255,255,255,.4); }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10,22,40,.6); backdrop-filter: blur(4px); }
.modal__panel { position: relative; max-width: 880px; margin: 5vh auto; max-height: 90vh; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); display: flex; flex-direction: column; overflow: hidden; animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px); } }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--border); }
.modal__head h3 { font-size: 1.2rem; }
.modal__close { background: var(--bg); border: 0; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--navy); transition: var(--tr); }
.modal__close:hover { background: var(--red-bg); color: var(--red); }
.modal__body { overflow-y: auto; padding: 20px 28px 28px; }

.ttable { width: 100%; border-collapse: collapse; font-size: .86rem; }
.ttable th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); padding: 10px 12px; border-bottom: 2px solid var(--border); }
.ttable td { padding: 12px; border-bottom: 1px solid var(--border); }
.ttable tr:hover td { background: var(--bg); }
.ttable .pos { color: var(--green); font-weight: 800; }
.ttable .neg { color: var(--red); font-weight: 800; }
.ttable .open { color: #B45309; font-weight: 800; }

/* ============ STRATEGY INTRO ============ */
.strat-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: center; }
.strat-intro__text > p { color: var(--muted); font-size: 1.02rem; margin: 4px 0 24px; }
.strat-intro__text b { color: var(--navy); }
.strat-intro__list { display: grid; gap: 16px; }
.strat-intro__list li { display: flex; gap: 14px; align-items: flex-start; }
.strat-intro__icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strat-intro__icon--blue { background: rgba(30,111,217,.1); color: var(--blue); }
.strat-intro__icon--gold { background: rgba(240,165,0,.12); color: #C78800; }
.strat-intro__icon--green { background: var(--green-bg); color: var(--green); }
.strat-intro__list div { display: flex; flex-direction: column; }
.strat-intro__list div b { color: var(--navy); font-size: .98rem; }
.strat-intro__list div span { color: var(--muted); font-size: .88rem; }

.strat-intro__card { background: var(--navy); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-md); }
.strat-intro__card-head { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 18px; }
.strat-intro__card-badge { background: var(--green); color: #fff; font-size: .68rem; font-weight: 800; padding: 3px 10px; border-radius: 100px; letter-spacing: .5px; }
.signal-demo { background: #182533; border-radius: 14px; padding: 18px; }
.signal-demo__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.signal-demo__pair { color: #fff; font-weight: 800; font-size: 1.05rem; }
.signal-demo__side { font-size: .66rem; font-weight: 800; padding: 3px 9px; border-radius: 5px; letter-spacing: .5px; }
.signal-demo__side--long { background: rgba(22,163,74,.2); color: #4ADE80; }
.signal-demo__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: .88rem; color: #9FB0C0; border-bottom: 1px solid rgba(255,255,255,.06); }
.signal-demo__row b { color: #fff; font-weight: 600; }
.signal-demo__result { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); color: #4ADE80; font-weight: 800; font-size: .92rem; }
.signal-demo__note { color: rgba(255,255,255,.45); font-size: .76rem; text-align: center; margin-top: 12px; }

/* ============ TECHNOLOGY ============ */
.section--tech { background: linear-gradient(160deg, var(--navy) 0%, #0d1d38 100%); position: relative; overflow: hidden; }
.section--tech::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(30,111,217,.18) 0%, transparent 70%); pointer-events: none; }

.ml-specialist { display: grid; grid-template-columns: auto 1fr; gap: 18px 20px; align-items: start; max-width: 880px; margin: 0 auto 40px; background: rgba(255,255,255,.05); border: 1px solid rgba(91,155,240,.3); border-radius: var(--r-lg); padding: 26px 30px; }
.ml-specialist__icon { width: 50px; height: 50px; border-radius: 13px; background: rgba(30,111,217,.2); color: #5B9BF0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ml-specialist__text h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.ml-specialist__text p { color: rgba(255,255,255,.7); font-size: .92rem; margin: 0; }
.ml-specialist__text b { color: #fff; font-weight: 700; }
.ml-specialist__tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; }
.ml-specialist__tags span { font-size: .76rem; font-weight: 700; color: var(--gold); background: rgba(240,165,0,.12); border: 1px solid rgba(240,165,0,.3); padding: 5px 12px; border-radius: 100px; }

.tech-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; max-width: 880px; margin: 0 auto 56px; position: relative; }
.tech-compare__col { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px 28px; }
.tech-compare__col--yes { border-color: rgba(240,165,0,.4); background: rgba(240,165,0,.06); }
.tech-compare__title { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 16px; }
.tech-compare__col--no .tech-compare__title svg { color: #F87171; }
.tech-compare__col--yes .tech-compare__title svg { color: #4ADE80; }
.tech-compare__title b { font-weight: 800; }
.tech-compare__col ul { display: grid; gap: 10px; }
.tech-compare__col li { color: rgba(255,255,255,.75); font-size: .9rem; padding-left: 18px; position: relative; }
.tech-compare__col li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); }
.tech-compare__col--yes li::before { background: var(--gold); }
.tech-compare__arrow { color: rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; }

.tech-pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; position: relative; }
.tech-step { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 28px 24px; position: relative; transition: var(--tr); }
.tech-step:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.tech-step__num { font-size: .8rem; font-weight: 800; color: var(--gold); letter-spacing: 1px; margin-bottom: 14px; }
.tech-step__icon { width: 50px; height: 50px; border-radius: 13px; background: rgba(30,111,217,.18); color: #5B9BF0; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tech-step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.tech-step p { color: rgba(255,255,255,.62); font-size: .87rem; }

.tech-proprietary { display: flex; align-items: center; gap: 24px; background: rgba(240,165,0,.08); border: 1px solid rgba(240,165,0,.35); border-radius: var(--r-lg); padding: 28px 32px; flex-wrap: wrap; }
.tech-proprietary__icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(240,165,0,.15); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tech-proprietary__text { flex: 1; min-width: 240px; }
.tech-proprietary__text h3 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.tech-proprietary__text p { color: rgba(255,255,255,.68); font-size: .9rem; margin: 0; }

/* ============ COMPLIANCE / TRADING PAIRS ============ */
.compliance { display: flex; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: var(--r-md); padding: 24px 28px; box-shadow: var(--sh-sm); flex-wrap: wrap; }
.compliance__icon { width: 52px; height: 52px; border-radius: 13px; background: rgba(30,111,217,.1); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.compliance__text { flex: 1; min-width: 260px; }
.compliance__text h3 { font-size: 1.1rem; margin-bottom: 4px; }
.compliance__text p { color: var(--muted); font-size: .9rem; margin: 0; }
.compliance__text b { color: var(--navy); }
.compliance__pills { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.compliance__pill { font-size: .8rem; font-weight: 700; padding: 7px 14px; border-radius: 100px; background: var(--bg); color: var(--muted); white-space: nowrap; text-align: center; border: 1px solid var(--border); }
.compliance__pill--active { background: rgba(30,111,217,.1); color: var(--blue); border-color: rgba(30,111,217,.3); }

/* ============ LIVE PANEL ============ */
.live-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 30px; box-shadow: var(--sh-sm); max-width: 880px; margin: 0 auto; }
.live-panel__head { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: 22px; }
.live-panel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-bg); animation: pulse 1.6s ease infinite; flex-shrink: 0; }
.live-panel__asof { margin-left: auto; font-weight: 500; color: var(--muted); font-size: .82rem; }
.live-since { display: flex; align-items: center; justify-content: center; gap: 22px; background: linear-gradient(90deg, rgba(240,165,0,.12), rgba(240,165,0,.05)); border: 1px solid rgba(240,165,0,.35); border-radius: var(--r-md); padding: 16px 24px; margin-bottom: 20px; flex-wrap: wrap; }
.live-since__item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.live-since__label { font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); }
.live-since__val { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.live-since__val--day { color: #C78800; }
.live-since__val--day b { font-size: 1.3rem; }
.live-since__sep { width: 1px; height: 34px; background: rgba(240,165,0,.4); }

.live-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.live-stat { background: var(--bg); border-radius: var(--r-md); padding: 18px; text-align: center; }
.live-stat--hero { background: var(--green-bg); }
.live-stat__num { font-size: 1.8rem; font-weight: 900; color: var(--navy); line-height: 1.1; }
.live-stat--hero .live-stat__num { color: var(--green); }
.live-stat__num--sm { font-size: 1rem; }
.live-stat__label { font-size: .78rem; color: var(--muted); font-weight: 600; margin-top: 6px; }
.live-panel__note { font-size: .84rem; color: var(--muted); margin: 20px 0 0; line-height: 1.6; }
.live-panel__note b { color: var(--navy); }

/* ============ TRADES CTA / LEGEND ============ */
.trades-legend--left { margin-right: auto; }
.trades-legend--left .dot { margin-left: 0; }
.trades-cta { text-align: center; margin-top: 32px; }

/* ============ PATHS (how it works) ============ */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px 30px; position: relative; box-shadow: var(--sh-sm); }
.path--gold { border-color: rgba(240,165,0,.5); background: linear-gradient(180deg, #FFFDF7 0%, #fff 100%); }
.path__tag { display: inline-block; background: rgba(30,111,217,.1); color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; }
.path__tag--gold { background: rgba(240,165,0,.15); color: #B07700; }
.path__icon { width: 56px; height: 56px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.path__icon--blue { background: rgba(30,111,217,.1); color: var(--blue); }
.path__icon--gold { background: rgba(240,165,0,.14); color: #C78800; }
.path h3 { font-size: 1.25rem; margin-bottom: 8px; }
.path > p { color: var(--muted); font-size: .94rem; margin-bottom: 20px; }
.path__steps { display: grid; gap: 10px; }
.path__step { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text); }
.path__step span { width: 26px; height: 26px; border-radius: 50%; background: var(--bg); color: var(--navy); font-weight: 800; font-size: .82rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.path__step b { color: var(--navy); }
.path--gold .path__step span { background: rgba(240,165,0,.15); color: #B07700; }
.path__safe { display: flex; align-items: center; gap: 9px; margin-top: 20px; padding: 12px 14px; background: var(--green-bg); color: var(--green); border-radius: 10px; font-size: .82rem; font-weight: 600; }
.path__warn { margin-top: 12px; padding: 12px 14px; background: #FEF3C7; color: #92400E; border-radius: 10px; font-size: .8rem; font-weight: 600; line-height: 1.5; }
.path__pilot { display: inline-block; vertical-align: middle; font-size: .62rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; background: rgba(240,165,0,.2); color: #B07700; padding: 3px 9px; border-radius: 100px; margin-left: 6px; }

/* ============ PRICING (2-col) ============ */
.pricing--2 { grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; }
.price-card__per { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card__sub { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 12px; }
.price-card__crypto { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 8px; }
.price-card__crypto a { color: var(--blue); font-weight: 700; }
.price-card--gold { border-color: rgba(240,165,0,.5); }
.price-card__icon--goldbg { background: rgba(240,165,0,.14); color: #C78800; }

/* ============ GOLDEN STRATEGY ============ */
.golden { padding-top: 0; }
.golden__card { display: grid; grid-template-columns: 1.4fr .6fr; gap: 32px; align-items: center; background: linear-gradient(135deg, var(--navy) 0%, #2a2008 130%); border-radius: var(--r-lg); padding: 52px 48px; position: relative; overflow: hidden; border: 1px solid rgba(240,165,0,.35); }
.golden__card::before { content: ''; position: absolute; top: -120px; right: -80px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(240,165,0,.22) 0%, transparent 65%); pointer-events: none; }
.golden__badge { display: inline-flex; align-items: center; gap: 7px; background: var(--gold); color: var(--navy); font-size: .74rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.golden__card h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 12px; }
.golden__sub { color: rgba(255,255,255,.72); font-size: .98rem; max-width: 520px; margin-bottom: 20px; }
.golden__points { display: grid; gap: 9px; margin-bottom: 26px; }
.golden__points li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.9); font-size: .92rem; }
.golden__points .check { color: var(--gold); }
.golden__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.golden__secure { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.55); font-size: .78rem; }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 18px rgba(240,165,0,.35); }
.btn--gold:hover { background: #FFC233; transform: translateY(-1px); box-shadow: 0 8px 26px rgba(240,165,0,.45); color: var(--navy); }
.btn--lg { font-size: 1.05rem; padding: 16px 32px; }
.golden__visual { display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; z-index: 1; }
.golden__lock { width: 110px; height: 110px; border-radius: 50%; background: rgba(240,165,0,.12); border: 2px dashed rgba(240,165,0,.5); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.golden__tg { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 700; padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.12); }
.golden__tg svg { color: #2AABEE; }

/* ============ SUCCESS PAGE ============ */
.success { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 56px 40px; text-align: center; box-shadow: var(--sh-md); }
.success__icon { width: 76px; height: 76px; border-radius: 50%; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.success h1 { font-size: 1.9rem; margin-bottom: 12px; }
.success__sub { color: var(--muted); max-width: 460px; margin: 0 auto 28px; }
.success__steps { background: var(--bg); border-radius: var(--r-md); padding: 22px 26px; margin: 30px auto 0; max-width: 420px; text-align: left; }
.success__steps h3 { font-size: .95rem; margin-bottom: 10px; }
.success__steps ol { padding-left: 20px; display: grid; gap: 7px; font-size: .9rem; color: var(--text); }
.success__note { margin-top: 24px; font-size: .85rem; color: var(--muted); }
.success__note a { color: var(--blue); font-weight: 700; }

/* ============ LEGAL PAGES ============ */
.legal h1 { font-size: 2.1rem; margin-bottom: 6px; }
.legal__updated { color: var(--muted); font-size: .85rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.15rem; margin: 28px 0 8px; }
.legal p { color: var(--text); font-size: .95rem; margin-bottom: 10px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 56px 24px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__points { justify-items: center; }
  .hero__phone-wrap { margin-top: 12px; }
  .trades-grid, .cards-3, .pricing { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .strat-intro { grid-template-columns: 1fr; gap: 32px; }
  .paths { grid-template-columns: 1fr; }
  .tech-pipe { grid-template-columns: repeat(2, 1fr); }
  .tech-compare { grid-template-columns: 1fr; }
  .tech-compare__arrow { transform: rotate(90deg); }
  .ml-specialist { grid-template-columns: 1fr; text-align: center; }
  .ml-specialist__icon { margin: 0 auto; }
  .ml-specialist__tags { justify-content: center; }
  .tech-proprietary { flex-direction: column; text-align: center; }
  .tech-proprietary__text { min-width: 0; }
  .compliance { flex-direction: column; text-align: center; }
  .compliance__text { min-width: 0; }
  .compliance__pills { flex-direction: row; }
  .pricing--2 { grid-template-columns: minmax(0, 420px); }
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); justify-content: center; margin: -4px auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 14px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--sh-md); }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 16px; }
  .nav__cta { margin-left: 0; text-align: center; }
  .burger { display: block; }
  .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .trades-grid, .cards-3, .pricing { grid-template-columns: 1fr; }
  .tech-pipe { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .live-since__sep { display: none; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
  .contact__row { grid-template-columns: 1fr; }
  .contact { padding: 24px 18px; }
  .section { padding: 60px 0; }
  .phone { width: 270px; height: 545px; }
  .footer__grid { grid-template-columns: 1fr; }
  .modal__panel { margin: 0; max-height: 100vh; height: 100%; border-radius: 0; }
  .ttable { font-size: .78rem; }
  .ttable th, .ttable td { padding: 8px 6px; }
}
