
/* ═══════════════════════════════════════
   STB PROVIDER — DESIGN SYSTEM v2
   Brand: #C8102E red, #080A0D bg
   Fonts: IBM Plex Sans / Bebas Neue
═══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --red:       #C8102E;
  --red-d:     #a00d24;
  --red-glow:  rgba(200,16,46,.28);
  --bg:        #080A0D;
  --bg2:       #0d0f14;
  --bg3:       #12151b;
  --bg4:       #161a22;
  --text:      #ffffff;
  --muted:     rgba(255,255,255,.62);
  --soft:      rgba(255,255,255,.38);
  --border:    rgba(255,255,255,.08);
  --border2:   rgba(255,255,255,.14);
  --green:     #14e0a3;
  --r:         10px;
  --r-lg:      16px;
  --r-xl:      24px;
  --font:      'IBM Plex Sans', sans-serif;
  --font-fa:   'Vazirmatn', 'IBM Plex Sans', sans-serif;
  --font-ar:   'Cairo', 'IBM Plex Sans', sans-serif;
  --disp:      'Bebas Neue', sans-serif;
  --max:       1280px;
  --hh:        68px;
  --ease:      cubic-bezier(.16,1,.3,1);
}

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{background:var(--bg);color:var(--text);font-family:var(--font);font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased}
body.lang-fa{font-family:var(--font-fa)}
body.lang-ar{font-family:var(--font-ar)}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul,ol{list-style:none}

/* ── LAYOUT ── */
.stb-wrap{width:100%;max-width:var(--max);margin:0 auto;padding:0 40px}
@media(max-width:768px){.stb-wrap{padding:0 20px}}

/* ── BUTTONS ── */
.stb-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 24px;border-radius:var(--r);font-size:14px;font-weight:600;letter-spacing:.01em;white-space:nowrap;transition:all .2s var(--ease);cursor:pointer;text-decoration:none}
.stb-btn-red{background:linear-gradient(135deg,var(--red),var(--red-d));color:#fff;box-shadow:0 4px 24px var(--red-glow)}
.stb-btn-red:hover{filter:brightness(1.1);transform:translateY(-1px);box-shadow:0 8px 32px var(--red-glow);color:#fff}
.stb-btn-ghost{background:rgba(255,255,255,.06);color:var(--text);border:1px solid var(--border2)}
.stb-btn-ghost:hover{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.24);color:#fff}
.stb-btn-outline{background:transparent;color:var(--text);border:1px solid var(--border2)}
.stb-btn-outline:hover{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.3);color:#fff}

/* ── SECTION COMMON ── */
.stb-section{padding:96px 0}
.stb-section-sm{padding:64px 0}
@media(max-width:768px){.stb-section{padding:64px 0}.stb-section-sm{padding:48px 0}}
.stb-kicker{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--red);margin-bottom:16px}
.stb-h1{font-family:var(--disp);font-size:clamp(48px,6vw,88px);line-height:1;letter-spacing:.01em;color:var(--text)}
.stb-h2{font-size:clamp(28px,3.5vw,42px);font-weight:700;line-height:1.15;color:var(--text)}
.stb-h3{font-size:clamp(18px,2vw,22px);font-weight:600;line-height:1.3;color:var(--text)}
.stb-body{font-size:16px;line-height:1.7;color:var(--muted)}
.stb-body-sm{font-size:14px;line-height:1.6;color:var(--muted)}
.stb-label{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--soft)}
.stb-red{color:var(--red)}
.stb-green{color:var(--green)}
body.lang-fa .stb-h1,body.lang-ar .stb-h1{font-family:inherit;font-size:clamp(36px,5vw,72px);letter-spacing:0}
body.lang-fa .stb-h2,body.lang-ar .stb-h2{letter-spacing:0}

/* ── HEADER ── */
.stb-header{position:sticky;top:0;z-index:9999;height:var(--hh);background:rgba(8,10,13,.92);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid var(--border)}
.stb-header-inner{display:flex;align-items:center;gap:24px;height:100%;max-width:var(--max);margin:0 auto;padding:0 40px}
@media(max-width:768px){.stb-header-inner{padding:0 20px}}
.stb-logo img{height:36px;width:auto}
.stb-nav{flex:1;display:flex;justify-content:center}
.stb-nav-list{display:flex;align-items:center;gap:2px}
.stb-nav-item{position:relative}
.stb-nav-link{display:flex;align-items:center;gap:5px;padding:8px 14px;border-radius:8px;font-size:13.5px;font-weight:500;color:var(--muted);transition:color .15s,background .15s;cursor:pointer;white-space:nowrap}
.stb-nav-link:hover,.stb-nav-item:hover>.stb-nav-link{color:var(--text);background:rgba(255,255,255,.06)}
.stb-nav-link svg{width:10px;height:10px;flex-shrink:0;transition:transform .2s;stroke:currentColor;fill:none}
.stb-nav-item:hover>.stb-nav-link svg{transform:rotate(180deg)}
.stb-dropdown{display:none;position:absolute;top:calc(100% + 6px);left:50%;transform:translateX(-50%);min-width:200px;background:var(--bg3);border:1px solid var(--border2);border-radius:var(--r-lg);padding:8px;box-shadow:0 24px 60px rgba(0,0,0,.7)}
.stb-nav-item:hover .stb-dropdown{display:block}
.stb-dropdown a{display:block;padding:9px 14px;border-radius:8px;font-size:13.5px;color:var(--muted);transition:color .12s,background .12s}
.stb-dropdown a:hover{color:var(--text);background:rgba(255,255,255,.07)}
.stb-header-right{display:flex;align-items:center;gap:10px;flex-shrink:0}
.stb-lang-btn{display:flex;align-items:center;gap:6px;padding:7px 12px;border-radius:8px;font-size:13px;font-weight:500;color:var(--muted);background:rgba(255,255,255,.05);border:1px solid var(--border);cursor:pointer;transition:all .15s}
.stb-lang-btn:hover{color:var(--text);background:rgba(255,255,255,.09)}
.stb-lang-btn img{width:16px;height:11px;border-radius:2px}
.stb-burger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer}
.stb-burger span{display:block;width:22px;height:2px;background:var(--muted);border-radius:2px;transition:all .2s}
@media(max-width:960px){.stb-nav{display:none}.stb-burger{display:flex}}

/* RTL nav flip */
body.rtl .stb-header-inner{flex-direction:row-reverse}
body.rtl .stb-dropdown{left:auto;right:50%;transform:translateX(50%)}

/* ── FOOTER ── */
.stb-footer{background:var(--bg2);border-top:1px solid var(--border);padding:64px 0 32px}
.stb-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px}
@media(max-width:900px){.stb-footer-grid{grid-template-columns:1fr 1fr;gap:32px}}
@media(max-width:600px){.stb-footer-grid{grid-template-columns:1fr}}
.stb-footer-brand .stb-logo img{height:32px;margin-bottom:20px}
.stb-footer-tagline{font-size:14px;color:var(--muted);max-width:260px;line-height:1.6}
.stb-footer-col-title{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--soft);margin-bottom:16px}
.stb-footer-links{display:flex;flex-direction:column;gap:10px}
.stb-footer-links a{font-size:14px;color:var(--muted);transition:color .15s}
.stb-footer-links a:hover{color:var(--text)}
.stb-footer-bottom{border-top:1px solid var(--border);padding-top:28px;display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.stb-footer-copy{font-size:13px;color:var(--soft)}
.stb-footer-legal{font-size:12px;color:var(--soft);max-width:600px;line-height:1.5}

/* ── TICKER ── */
.stb-ticker{background:var(--bg2);border-bottom:1px solid var(--border);overflow:hidden;height:38px;display:flex;align-items:center;direction:ltr}
.stb-ticker-track{display:flex;gap:0;animation:ticker-scroll 40s linear infinite;white-space:nowrap}
.stb-ticker-track:hover{animation-play-state:paused}
.stb-ticker-item{display:flex;align-items:center;gap:8px;padding:0 28px;border-right:1px solid var(--border);font-size:12.5px;white-space:nowrap}
.stb-ticker-name{color:var(--muted);font-weight:500}
.stb-ticker-price{color:var(--text);font-weight:600;font-variant-numeric:tabular-nums}
.stb-ticker-change{font-size:12px;font-weight:500}
.stb-ticker-change.up{color:var(--green)}
.stb-ticker-change.dn{color:#ff5a72}
.stb-ticker-icon{width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;flex-shrink:0}
@keyframes ticker-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── HERO ── */
.stb-hero{padding:80px 0 96px;background:var(--bg);position:relative;overflow:hidden}
.stb-hero::before{content:'';position:absolute;top:-200px;left:-200px;width:700px;height:700px;background:radial-gradient(circle,rgba(200,16,46,.12) 0%,transparent 65%);pointer-events:none}
.stb-hero::after{content:'';position:absolute;bottom:-100px;right:10%;width:400px;height:400px;background:radial-gradient(circle,rgba(200,16,46,.07) 0%,transparent 65%);pointer-events:none}
.stb-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
@media(max-width:900px){.stb-hero-grid{grid-template-columns:1fr;gap:48px}}
.stb-hero-badges{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px}
.stb-hero-badge{display:inline-flex;align-items:center;gap:7px;padding:6px 12px;border-radius:20px;background:rgba(255,255,255,.05);border:1px solid var(--border2);font-size:11.5px;font-weight:600;letter-spacing:.04em;color:var(--muted);text-transform:uppercase}
.stb-hero-badge svg{width:12px;height:12px;flex-shrink:0;stroke:var(--green);fill:none}
.stb-hero-kicker{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--red);margin-bottom:20px}
.stb-hero-title{font-family:var(--disp);font-size:clamp(52px,6.5vw,92px);line-height:.95;letter-spacing:.02em;margin-bottom:24px}
.stb-hero-title .line-red{color:var(--red)}
.stb-hero-desc{font-size:16.5px;line-height:1.75;color:var(--muted);max-width:520px;margin-bottom:32px}
.stb-hero-tabs{display:flex;gap:4px;margin-bottom:28px;background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:10px;padding:4px;width:fit-content}
.stb-hero-tab{padding:8px 16px;border-radius:7px;font-size:13px;font-weight:500;color:var(--muted);cursor:pointer;transition:all .18s;white-space:nowrap}
.stb-hero-tab.active{background:var(--red);color:#fff;box-shadow:0 2px 12px var(--red-glow)}
.stb-hero-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-bottom:28px}
.stb-hero-note{display:flex;align-items:flex-start;gap:10px;padding:14px 16px;background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:var(--r);max-width:460px}
.stb-hero-note svg{width:16px;height:16px;flex-shrink:0;stroke:var(--green);fill:none;margin-top:2px}
.stb-hero-note-title{font-size:13px;font-weight:600;color:var(--text);margin-bottom:2px}
.stb-hero-note-text{font-size:12.5px;color:var(--muted);line-height:1.5}
/* Right panel — live prices */
.stb-hero-panel{background:var(--bg3);border:1px solid var(--border2);border-radius:var(--r-xl);padding:20px;box-shadow:0 32px 80px rgba(0,0,0,.5)}
.stb-panel-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;padding-bottom:14px;border-bottom:1px solid var(--border)}
.stb-panel-title{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--soft)}
.stb-panel-live{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:600;color:var(--green)}
.stb-panel-live::before{content:'';display:block;width:6px;height:6px;background:var(--green);border-radius:50%;animation:pulse 2s infinite}
.stb-panel-featured{margin-bottom:16px;padding:16px;background:var(--bg4);border-radius:var(--r-lg);border:1px solid var(--border)}
.stb-panel-featured-pair{font-size:13px;font-weight:600;color:var(--muted);margin-bottom:4px}
.stb-panel-featured-price{font-size:32px;font-weight:700;font-variant-numeric:tabular-nums;letter-spacing:-.02em;margin-bottom:6px}
.stb-panel-featured-change{font-size:12.5px;font-weight:600;color:var(--green)}
.stb-panel-row{display:flex;align-items:center;justify-content:space-between;padding:11px 0;border-bottom:1px solid var(--border)}
.stb-panel-row:last-child{border-bottom:none}
.stb-panel-row-left{display:flex;flex-direction:column;gap:2px}
.stb-panel-row-pair{font-size:13.5px;font-weight:600;color:var(--text)}
.stb-panel-row-type{font-size:11px;color:var(--soft);text-transform:uppercase;letter-spacing:.06em}
.stb-panel-row-right{display:flex;flex-direction:column;align-items:flex-end;gap:2px}
.stb-panel-row-price{font-size:14px;font-weight:600;font-variant-numeric:tabular-nums}
.stb-panel-row-change{font-size:12px;font-weight:500}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
body.lang-fa .stb-hero-title,body.lang-ar .stb-hero-title{font-family:inherit;font-size:clamp(36px,5vw,68px);letter-spacing:0;line-height:1.1}

/* ── STATS BAR ── */
.stb-stats{background:var(--bg2);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:32px 0}
.stb-stats-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:0}
@media(max-width:768px){.stb-stats-grid{grid-template-columns:repeat(2,1fr);gap:1px;background:var(--border)}
.stb-stats-grid .stb-stat{background:var(--bg2)}}
.stb-stat{display:flex;flex-direction:column;align-items:center;padding:20px 16px;border-right:1px solid var(--border);text-align:center}
.stb-stat:last-child{border-right:none}
.stb-stat-value{font-size:26px;font-weight:700;font-variant-numeric:tabular-nums;color:var(--text);letter-spacing:-.01em;margin-bottom:4px}
.stb-stat-label{font-size:11.5px;font-weight:500;color:var(--muted);letter-spacing:.02em}

/* ── MARKETS ── */
.stb-markets{background:var(--bg)}
.stb-markets-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:48px;flex-wrap:wrap}
.stb-markets-link{font-size:13.5px;font-weight:500;color:var(--red);display:flex;align-items:center;gap:6px;white-space:nowrap;transition:gap .15s}
.stb-markets-link:hover{gap:10px}

/* 3-col grid — all 6 cards */
.stb-markets-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media(max-width:900px){.stb-markets-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.stb-markets-grid{grid-template-columns:1fr}}

/* Card — flex column so footer always sticks to bottom */
.stb-market-card{
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:24px 20px;
  display:flex;
  flex-direction:column;
  gap:0;
  transition:border-color .2s,background .2s,transform .2s;
}
.stb-market-card:hover{border-color:var(--border2);background:var(--bg4);transform:translateY(-3px)}

/* Spot accent */
.stb-market-card--spot{
  border-color:rgba(200,16,46,.22);
  background:linear-gradient(160deg,rgba(200,16,46,.045) 0%,var(--bg3) 55%);
}
.stb-market-card--spot:hover{border-color:rgba(200,16,46,.46)}

/* Icon — identical on all cards */
.stb-market-icon{
  width:44px;height:44px;border-radius:12px;
  background:rgba(200,16,46,.1);
  border:1px solid rgba(200,16,46,.2);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;flex-shrink:0;
}
.stb-market-icon svg{stroke:var(--red);fill:none}

/* Count — "70+ PAIRS" */
.stb-market-count{
  font-size:11px;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;color:var(--red);margin-bottom:6px;
}

/* Name */
.stb-market-name{font-size:17px;font-weight:600;color:var(--text);margin-bottom:10px}

/* Description — 3-line clamp so all cards same height */
.stb-market-desc{
  font-size:13px;line-height:1.6;color:var(--muted);
  flex:1;margin-bottom:18px;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical;overflow:hidden;
}


/* ── WHY STB ── */
.stb-why{background:var(--bg2)}

/* Top split */
.why-top{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;
  align-items:start;margin-bottom:64px;
  padding-bottom:48px;border-bottom:1px solid var(--border);
}
@media(max-width:768px){.why-top{grid-template-columns:1fr;gap:32px;margin-bottom:40px;padding-bottom:32px}}
.why-top-left .stb-kicker{margin-bottom:14px}
.why-top-left .stb-h2{line-height:1.2}
.why-top-right{display:flex;flex-direction:column;justify-content:space-between;gap:24px}

/* Proof strip */
.why-proof-strip{
  display:flex;gap:0;
  background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-lg);
  overflow:hidden;
}
.why-proof-item{
  flex:1;padding:18px 16px;text-align:center;
  border-right:1px solid var(--border);
}
.why-proof-item:last-child{border-right:none}
.why-proof-val{display:block;font-size:22px;font-weight:700;color:var(--text);letter-spacing:-.02em;margin-bottom:4px}
.why-proof-label{font-size:11px;font-weight:500;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}

/* Feature rows — 3 columns, number + content */
.why-rows{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  overflow:hidden;
}
@media(max-width:900px){.why-rows{grid-template-columns:repeat(2,1fr)}}
@media(max-width:540px){.why-rows{grid-template-columns:1fr}}

.why-row{
  background:var(--bg2);
  padding:32px 28px;
  display:flex;flex-direction:column;gap:0;
  position:relative;
  transition:background .2s;
}
.why-row:hover{background:var(--bg3)}

/* Large ghost number — top right corner */
.why-row-num{
  position:absolute;top:20px;right:20px;
  font-family:var(--disp);font-size:52px;line-height:1;
  color:rgba(200,16,46,.08);
  font-weight:400;letter-spacing:.02em;
  pointer-events:none;user-select:none;
}
body.rtl .why-row-num{right:auto;left:20px}

.why-row-body{position:relative;z-index:1}

.why-row-icon{
  width:40px;height:40px;border-radius:10px;
  background:rgba(200,16,46,.08);border:1px solid rgba(200,16,46,.15);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.why-row-icon svg{stroke:var(--red);fill:none}

.why-row-title{
  font-size:15px;font-weight:600;color:var(--text);
  margin-bottom:10px;line-height:1.35;
}
.why-row-desc{
  font-size:13px;line-height:1.65;color:var(--muted);
  margin-bottom:16px;flex:1;
}

/* Proof tag — bottom of each row */
.why-row-proof{
  display:inline-flex;align-items:center;gap:5px;
  font-size:11px;font-weight:600;letter-spacing:.04em;
  color:var(--green);
  background:rgba(20,224,163,.07);
  border:1px solid rgba(20,224,163,.15);
  padding:4px 10px;border-radius:20px;
  width:fit-content;margin-top:auto;
}
.why-row-proof svg{stroke:var(--green);flex-shrink:0}

/* ── ACCOUNTS ── */
.stb-accounts{background:var(--bg)}
.stb-accounts-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
@media(max-width:900px){.stb-accounts-grid{grid-template-columns:1fr;gap:40px}}
.stb-accounts-head{margin-bottom:32px}
.stb-account-cards{display:flex;flex-direction:column;gap:10px}
.stb-account-card{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-lg);padding:20px 24px;display:flex;align-items:center;justify-content:space-between;gap:16px;transition:border-color .2s,background .2s,transform .15s;cursor:pointer}
.stb-account-card:hover{border-color:var(--border2);background:var(--bg4);transform:translateX(4px)}
.stb-account-card.featured{border-color:rgba(200,16,46,.35);background:rgba(200,16,46,.04)}
.stb-account-card.featured:hover{border-color:rgba(200,16,46,.6)}
.stb-account-name{font-size:15px;font-weight:600;color:var(--text);margin-bottom:4px}
.stb-account-meta{font-size:12.5px;color:var(--muted)}
.stb-account-tag{font-size:11px;font-weight:600;padding:3px 9px;border-radius:20px;background:rgba(200,16,46,.15);color:var(--red);white-space:nowrap;flex-shrink:0}
.stb-accounts-institutional{margin-top:48px}
.stb-inst-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:24px}
@media(max-width:600px){.stb-inst-grid{grid-template-columns:1fr}}
.stb-inst-card{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-lg);padding:20px;transition:border-color .2s}
.stb-inst-card:hover{border-color:var(--border2)}
.stb-inst-name{font-size:15px;font-weight:600;color:var(--text);margin-bottom:6px}
.stb-inst-meta{font-size:12.5px;color:var(--muted);line-height:1.5}

/* ── PAMM ── */
.stb-pamm{background:var(--bg2)}
.stb-pamm-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
@media(max-width:900px){.stb-pamm-grid{grid-template-columns:1fr;gap:40px}}
.stb-pamm-features{display:flex;flex-direction:column;gap:12px;margin:28px 0 32px}
.stb-pamm-feature{display:flex;align-items:center;gap:12px;font-size:14px;color:var(--muted)}
.stb-pamm-feature svg{width:16px;height:16px;stroke:var(--green);fill:none;flex-shrink:0}
.stb-pamm-btns{display:flex;flex-wrap:wrap;gap:12px}
.stb-pamm-table{background:var(--bg3);border:1px solid var(--border2);border-radius:var(--r-lg);overflow:hidden}
.stb-pamm-table-head{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;padding:12px 20px;background:rgba(255,255,255,.03);border-bottom:1px solid var(--border)}
.stb-pamm-table-head span{font-size:11px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--soft)}
.stb-pamm-row{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;padding:14px 20px;border-bottom:1px solid var(--border);align-items:center;transition:background .15s}
.stb-pamm-row:last-child{border-bottom:none}
.stb-pamm-row:hover{background:rgba(255,255,255,.03)}
.stb-pamm-manager{font-size:13.5px;font-weight:500;color:var(--text)}
.stb-pamm-id{font-size:11px;color:var(--soft)}
.stb-pamm-return{font-size:13.5px;font-weight:600;color:var(--green)}
.stb-pamm-dd{font-size:13.5px;color:var(--muted)}
.stb-pamm-invest{font-size:12px;font-weight:600;padding:5px 12px;border-radius:6px;background:rgba(200,16,46,.12);color:var(--red);border:1px solid rgba(200,16,46,.2);cursor:pointer;transition:background .15s}
.stb-pamm-invest:hover{background:rgba(200,16,46,.22)}

/* ── PLATFORM ── */
.stb-platform{background:var(--bg)}
.stb-platform-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
@media(max-width:900px){.stb-platform-grid{grid-template-columns:1fr;gap:40px}}
.stb-platform-features{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:32px 0}
.stb-platform-feat{padding:18px;background:var(--bg3);border:1px solid var(--border);border-radius:var(--r);transition:border-color .2s}
.stb-platform-feat:hover{border-color:var(--border2)}
.stb-platform-feat-title{font-size:14px;font-weight:600;color:var(--text);margin-bottom:5px}
.stb-platform-feat-text{font-size:12.5px;color:var(--muted);line-height:1.5}
.stb-platform-dl{display:flex;flex-wrap:wrap;gap:10px}
.stb-platform-dl a{display:flex;align-items:center;gap:8px;padding:9px 16px;border-radius:var(--r);background:rgba(255,255,255,.06);border:1px solid var(--border2);font-size:13px;font-weight:500;color:var(--muted);transition:all .15s}
.stb-platform-dl a:hover{color:var(--text);border-color:rgba(255,255,255,.25)}
.stb-platform-preview{background:var(--bg3);border:1px solid var(--border2);border-radius:var(--r-xl);padding:24px;box-shadow:0 40px 80px rgba(0,0,0,.5)}
.stb-mt-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;padding-bottom:14px;border-bottom:1px solid var(--border)}
.stb-mt-title{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--soft)}
.stb-mt-pair{font-size:12px;color:var(--muted)}
.stb-mt-rows{display:flex;flex-direction:column;gap:0}
.stb-mt-row{display:grid;grid-template-columns:3fr 1fr 1fr 1.5fr;padding:12px 0;border-bottom:1px solid var(--border);align-items:center;gap:8px}
.stb-mt-row:last-child{border-bottom:none}
.stb-mt-sym{font-size:13px;font-weight:600;color:var(--text)}
.stb-mt-tf{font-size:11px;color:var(--soft);background:rgba(255,255,255,.05);padding:2px 6px;border-radius:4px;width:fit-content}
.stb-mt-price{font-size:13px;font-weight:600;font-variant-numeric:tabular-nums}
.stb-mt-btns{display:flex;gap:4px}
.stb-mt-buy{padding:5px 12px;border-radius:5px;font-size:12px;font-weight:600;background:rgba(20,224,163,.12);color:var(--green);border:1px solid rgba(20,224,163,.2);cursor:pointer}
.stb-mt-sell{padding:5px 12px;border-radius:5px;font-size:12px;font-weight:600;background:rgba(255,90,114,.1);color:#ff5a72;border:1px solid rgba(255,90,114,.18);cursor:pointer}

/* ── PROMOTIONS ── */
.stb-promo{background:var(--bg2)}
.stb-promo-head{text-align:center;max-width:540px;margin:0 auto 56px}
.stb-promo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:768px){.stb-promo-grid{grid-template-columns:1fr}}
.stb-promo-card{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-xl);padding:32px;display:flex;flex-direction:column;transition:border-color .2s,transform .2s}
.stb-promo-card:hover{border-color:var(--border2);transform:translateY(-3px)}
.stb-promo-card.featured{border-color:rgba(200,16,46,.3);background:linear-gradient(160deg,rgba(200,16,46,.06),var(--bg3))}
.stb-promo-icon{width:52px;height:52px;border-radius:16px;background:rgba(200,16,46,.1);border:1px solid rgba(200,16,46,.2);display:flex;align-items:center;justify-content:center;margin-bottom:24px}
.stb-promo-icon svg{width:24px;height:24px;stroke:var(--red);fill:none;stroke-width:1.5}
.stb-promo-title{font-size:19px;font-weight:700;color:var(--text);margin-bottom:12px}
.stb-promo-desc{font-size:14px;line-height:1.65;color:var(--muted);flex:1;margin-bottom:24px}
.stb-promo-action{margin-top:auto}

/* ── PARTNERSHIP ── */
.stb-partner{background:var(--bg)}
.stb-partner-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
@media(max-width:900px){.stb-partner-grid{grid-template-columns:1fr;gap:40px}}
.stb-partner-btns{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
.stb-partner-cards{display:flex;flex-direction:column;gap:12px}
.stb-partner-card{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-lg);padding:24px;transition:border-color .2s,transform .15s}
.stb-partner-card:hover{border-color:var(--border2);transform:translateX(4px)}
.stb-partner-card-title{font-size:15px;font-weight:600;color:var(--text);margin-bottom:8px}
.stb-partner-card-text{font-size:13.5px;line-height:1.55;color:var(--muted)}

/* ── HOW TO START ── */
.stb-steps{background:var(--bg2)}
.stb-steps-head{text-align:center;max-width:480px;margin:0 auto 56px}
.stb-steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;position:relative}
.stb-steps-grid::before{content:'';position:absolute;top:40px;left:calc(33.33% + 16px);right:calc(33.33% + 16px);height:1px;background:linear-gradient(90deg,var(--red),rgba(200,16,46,.2));z-index:0}
@media(max-width:768px){.stb-steps-grid{grid-template-columns:1fr}.stb-steps-grid::before{display:none}}
.stb-step-card{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-xl);padding:32px 28px;text-align:center;position:relative;z-index:1;transition:border-color .2s,transform .2s}
.stb-step-card:hover{border-color:var(--border2);transform:translateY(-3px)}
.stb-step-num{font-family:var(--disp);font-size:48px;color:rgba(200,16,46,.25);line-height:1;margin-bottom:16px}
.stb-step-title{font-size:16px;font-weight:600;color:var(--text);margin-bottom:10px}
.stb-step-text{font-size:13.5px;color:var(--muted);line-height:1.6}

/* ── ACADEMY ── */
.stb-academy{background:var(--bg)}
.stb-academy-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
@media(max-width:900px){.stb-academy-grid{grid-template-columns:1fr;gap:40px}}
.stb-academy-tabs{display:flex;flex-wrap:wrap;gap:8px;margin:28px 0}
.stb-academy-tab{padding:10px 18px;border-radius:var(--r);background:var(--bg3);border:1px solid var(--border);font-size:13.5px;font-weight:500;color:var(--muted);cursor:pointer;transition:all .15s;display:flex;flex-direction:column;gap:2px}
.stb-academy-tab:hover{border-color:var(--border2);color:var(--text)}
.stb-academy-tab.active{border-color:rgba(200,16,46,.4);background:rgba(200,16,46,.06);color:var(--text)}
.stb-academy-tab-title{font-size:13.5px;font-weight:600}
.stb-academy-tab-sub{font-size:11.5px;color:var(--soft)}
.stb-academy-cards{display:flex;flex-direction:column;gap:10px}
.stb-academy-card{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-lg);padding:18px 20px;display:flex;align-items:center;gap:16px;cursor:pointer;transition:border-color .15s,background .15s}
.stb-academy-card:hover{border-color:var(--border2);background:var(--bg4)}
.stb-academy-card-badge{font-size:10px;font-weight:700;padding:3px 8px;border-radius:4px;text-transform:uppercase;letter-spacing:.05em;flex-shrink:0}
.stb-academy-card-badge.course{background:rgba(200,16,46,.12);color:var(--red);border:1px solid rgba(200,16,46,.2)}
.stb-academy-card-badge.webinar{background:rgba(20,224,163,.08);color:var(--green);border:1px solid rgba(20,224,163,.2)}
.stb-academy-card-badge.article{background:rgba(255,255,255,.06);color:var(--muted);border:1px solid var(--border)}
.stb-academy-card-title{font-size:13.5px;font-weight:500;color:var(--text);flex:1;line-height:1.4}
.stb-academy-card-meta{font-size:11.5px;color:var(--soft);margin-top:3px}

/* ── TESTIMONIALS ── */
.stb-testimonials{background:var(--bg2)}
.stb-testimonials-head{text-align:center;max-width:480px;margin:0 auto 56px}
.stb-testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:900px){.stb-testimonials-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.stb-testimonials-grid{grid-template-columns:1fr}}
.stb-testimonial-card{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-xl);padding:28px;display:flex;flex-direction:column;gap:16px;transition:border-color .2s,transform .2s}
.stb-testimonial-card:hover{border-color:var(--border2);transform:translateY(-2px)}
.stb-testimonial-stars{display:flex;gap:3px}
.stb-testimonial-stars svg{width:14px;height:14px;fill:var(--red);stroke:none}
.stb-testimonial-quote{font-size:14.5px;line-height:1.7;color:var(--muted);flex:1;font-style:italic}
.stb-testimonial-user{display:flex;align-items:center;gap:12px;padding-top:16px;border-top:1px solid var(--border)}
.stb-testimonial-avatar{width:40px;height:40px;border-radius:50%;background:rgba(200,16,46,.15);border:1px solid rgba(200,16,46,.25);display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:700;color:var(--red);flex-shrink:0}
.stb-testimonial-name{font-size:13.5px;font-weight:600;color:var(--text)}
.stb-testimonial-role{font-size:12px;color:var(--soft)}

/* ── CTA ── */
.stb-cta{background:var(--bg);padding:96px 0}
.stb-cta-inner{background:linear-gradient(135deg,var(--bg3),var(--bg4));border:1px solid var(--border2);border-radius:var(--r-xl);padding:64px;text-align:center;position:relative;overflow:hidden}
.stb-cta-inner::before{content:'';position:absolute;top:-60%;left:50%;transform:translateX(-50%);width:600px;height:600px;background:radial-gradient(circle,rgba(200,16,46,.1) 0%,transparent 65%);pointer-events:none}
.stb-cta-label{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--red);margin-bottom:16px;position:relative}
.stb-cta-title{font-size:clamp(28px,3.5vw,44px);font-weight:700;color:var(--text);max-width:560px;margin:0 auto 16px;line-height:1.2;position:relative}
.stb-cta-desc{font-size:16px;color:var(--muted);max-width:460px;margin:0 auto 36px;line-height:1.7;position:relative}
.stb-cta-btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-bottom:20px;position:relative}
.stb-cta-help{font-size:13px;color:var(--soft);position:relative}
.stb-cta-help a{color:var(--muted);text-decoration:underline;text-decoration-color:rgba(255,255,255,.2)}
.stb-cta-help a:hover{color:var(--text)}
.stb-cta-risk{font-size:12px;color:var(--soft);max-width:640px;margin:32px auto 0;line-height:1.6;padding-top:28px;border-top:1px solid var(--border);position:relative}

/* ── MOBILE DRAWER ── */
.stb-mob{display:none;position:fixed;inset:0;background:var(--bg2);z-index:9998;flex-direction:column;padding:20px;overflow-y:auto}
.stb-mob.open{display:flex}
.stb-mob-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:32px}
.stb-mob-close{padding:8px;cursor:pointer;color:var(--muted)}
.stb-mob-close svg{width:22px;height:22px;stroke:currentColor;fill:none}
.stb-mob-nav{display:flex;flex-direction:column;gap:2px;flex:1}
.stb-mob-group-title{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--soft);padding:16px 12px 8px}
.stb-mob-link{display:block;padding:12px 16px;border-radius:var(--r);font-size:15px;color:var(--muted);transition:color .12s,background .12s}
.stb-mob-link:hover{color:var(--text);background:rgba(255,255,255,.06)}
.stb-mob-cta{display:flex;flex-direction:column;gap:10px;margin-top:24px}

/* ── Price flash animations ── */
.flash-up{animation:flash-green .6s ease-out}
.flash-dn{animation:flash-red   .6s ease-out}
@keyframes flash-green{0%{background:rgba(20,224,163,.25)}100%{background:transparent}}
@keyframes flash-red  {0%{background:rgba(255,90,114,.2)} 100%{background:transparent}}
.stb-panel-featured-change.up{color:var(--green)}
.stb-panel-featured-change.down{color:#ff5a72}
.stb-panel-row-change.up{color:var(--green)}
.stb-panel-row-change.down{color:#ff5a72}
.stb-ticker-change.up{color:var(--green)}
.stb-ticker-change.dn{color:#ff5a72}

/* ═══════════════════════════════════
   RTL / FA — Full Layout Overrides
═══════════════════════════════════ */

/* ── Header ── */
body.rtl .stb-header-inner{direction:rtl}
body.rtl .stb-nav{flex-direction:row-reverse}
body.rtl .stb-logo{margin-right:0;margin-left:32px}
body.rtl .stb-header-right{margin-left:0;margin-right:auto;flex-direction:row-reverse}
body.rtl .stb-lang-drop{right:auto;left:0}

/* Mobile drawer RTL */
body.rtl .stb-mob-header{flex-direction:row-reverse}
body.rtl .stb-mob-section-title{flex-direction:row-reverse}
body.rtl .stb-mob-section-arr{margin-left:0;margin-right:auto}
body.rtl .stb-mob-links{padding-left:0;padding-right:52px}
body.rtl .stb-mob-links a{text-align:right}

/* ── Ticker ── */
/* ticker: same scroll direction in RTL as EN */

/* ── Hero ── */
body.rtl .hero-inner{direction:rtl}
/* Desktop RTL */
body.rtl .hero-left{align-items:flex-end;text-align:right}
body.rtl .hero-headline{text-align:right}
body.rtl .hero-div-tag{flex-direction:row-reverse;margin-right:0;margin-left:auto}
body.rtl .hero-sub{text-align:right;margin-right:0;margin-left:auto}
body.rtl .hero-desc{text-align:right;margin-right:0;margin-left:auto}
body.rtl .hero-stats{flex-direction:row;justify-content:flex-end}
body.rtl .hero-stats>div{text-align:right}
body.rtl .hero-ctas{flex-direction:row-reverse;justify-content:flex-end}
body.rtl .hero-cta-primary{flex-direction:row-reverse}
body.rtl .hero-cta-primary svg{transform:scaleX(-1)}
body.rtl .hero-nav{left:50%;right:auto;transform:translateX(-50%)}
@media(max-width:960px){
  body.rtl .hero-left{align-items:center;text-align:center}
  body.rtl .hero-headline{text-align:center}
  body.rtl .hero-div-tag{margin:0 auto}
  body.rtl .hero-sub{text-align:center;margin:0 auto 28px}
  body.rtl .hero-desc{text-align:center;margin:0 auto 36px}
  body.rtl .hero-stats{justify-content:center;flex-direction:row}
  body.rtl .hero-ctas{justify-content:center;flex-direction:row-reverse}
}

/* ── Panel (hero right) ── */
body.rtl .hero-panel-bar{flex-direction:row-reverse}
body.rtl .broker-price-row{flex-direction:row-reverse}
body.rtl .inv-row{flex-direction:row-reverse}
body.rtl .inv-name{text-align:right}
body.rtl .soc-card{flex-direction:row-reverse}
body.rtl .soc-arrow svg{transform:rotate(180deg)}
body.rtl .acd-item{flex-direction:row-reverse}

/* ── Ecosystem ── */
body.rtl .eco-header{direction:rtl}
body.rtl .eco-card{direction:rtl;text-align:right}
body.rtl .eco-detail{direction:rtl}
body.rtl .eco-detail-feats .eco-detail-feat{flex-direction:row;text-align:right;}
body.rtl .eco-cta svg{transform:rotate(180deg)}

/* ── Broker ── */
body.rtl .brk-wrap{direction:rtl}
body.rtl .brk-left,.brk-top{direction:rtl;text-align:right}
body.rtl .brk-header{direction:rtl;text-align:right}
body.rtl .brk-kicker{flex-direction:row-reverse;justify-content:flex-end}
body.rtl .brk-metric{text-align:right}
body.rtl .brk-metric-val{text-align:right}
body.rtl .brk-reg-badge{flex-direction:row-reverse;text-align:right}
body.rtl .brk-exec{direction:rtl}
body.rtl .brk-exec-left{text-align:right;align-items:flex-end}
body.rtl .brk-exec-label{text-align:right}
body.rtl .brk-exec-items{direction:rtl}
body.rtl .brk-exec-item{text-align:right;direction:rtl}
body.rtl .brk-feature-bar{direction:rtl}
body.rtl .brk-feature{flex-direction:row-reverse;text-align:right;justify-content:flex-end}
body.rtl .brk-feature-icon{flex-shrink:0;margin-right:0;margin-left:12px}
body.rtl .brk-inst-grid{direction:rtl}
body.rtl .brk-inst-item{text-align:right;align-items:flex-end}
body.rtl .brk-inst-item::after{left:auto;right:0}
body.rtl .brk-cta{flex-direction:row-reverse;direction: ltr !important;}
body.rtl .brk-cta-text{text-align:right;direction:rtl}
body.rtl .brk-btn-red{flex-direction:row-reverse}
body.rtl .brk-btn-red svg{transform:scaleX(-1)}
@media(max-width:700px){body.rtl .brk-cta{flex-direction:row-reverse;align-items:flex-end}}

/* ── PAMM ── */
body.rtl .pamm-inner{direction:rtl}
body.rtl .pamm-grid{direction:rtl}
body.rtl .pamm-text{text-align:right}
body.rtl .pamm-kicker{flex-direction:row-reverse}
body.rtl .pamm-features{text-align:right}
body.rtl .pamm-feature{flex-direction:row-reverse;text-align:right}
body.rtl .pamm-btns{flex-direction:row-reverse}
body.rtl .pamm-trust{direction:rtl}
body.rtl .pamm-table-bar{flex-direction:row-reverse}
body.rtl .pamm-thead{direction:rtl}
body.rtl .pamm-th:not(:first-child){text-align:left}
body.rtl .pamm-row{direction:rtl}
body.rtl .pamm-manager-cell{flex-direction:row-reverse}
body.rtl .pamm-return,.pamm-dd{text-align:left}
body.rtl .pamm-invest-cell{justify-content:flex-start}
body.rtl .pamm-btn-primary svg{transform:rotate(180deg)}

/* ── Venture ── */
body.rtl .ven-inner{direction:rtl;text-align:right}
body.rtl .ven-feats .ven-feat{flex-direction:row-reverse;text-align:right}
body.rtl .ven-cta-btns{flex-direction:row-reverse}

/* ── Markets ── */
body.rtl .mkt-inner{direction:rtl}
body.rtl .mkt-header{direction:rtl;text-align:right}
body.rtl .mkt-row{direction:rtl}
body.rtl .mkt-row-pair{flex-direction:row-reverse}
body.rtl .mkt-cell-price,.mkt-cell-change,.mkt-cell-spread,.mkt-cell-vol{text-align:left}
body.rtl .mkt-class-card{flex-direction:row-reverse}

/* ── Why STB ── */
body.rtl .why-row{direction:rtl;text-align:right}

/* ── Accounts ── */
body.rtl .acct-inner{direction:rtl}
body.rtl .acct-tabs{flex-direction:row-reverse}
body.rtl .acct-feature{flex-direction:row-reverse;text-align:right}

/* ── Platform ── */
body.rtl .stb-platform{direction:rtl;text-align:right}
body.rtl .stb-platform-features{direction:rtl}

/* ── Partnership ── */
body.rtl .prt-inner{direction:rtl;text-align:right}
body.rtl .prt-channel{direction:rtl}

/* ── How to Start ── */
body.rtl .hts-inner{direction:rtl}
body.rtl .hts-step{text-align:right}
body.rtl .hts-kicker::before{background:linear-gradient(270deg,transparent,rgba(200,16,46,.5))}
body.rtl .hts-kicker::after{background:linear-gradient(90deg,transparent,rgba(200,16,46,.5))}
body.rtl .hts-connector-dot{animation-name:hts-travel-rtl}
@keyframes hts-travel-rtl{
  0%  {right:calc(16.66% + 16px);opacity:0;left:auto}
  5%  {opacity:1}
  95% {opacity:1}
  100%{right:calc(83.33% - 28px);opacity:0;left:auto}
}
body.rtl .hts-btn svg{transform:rotate(180deg)}

/* ── Academy ── */
body.rtl .acd-inner{direction:rtl;text-align:right}
body.rtl .acd-tabs{text-align:right}
body.rtl .acd-tab{flex-direction:row-reverse}
body.rtl .acd-tab-info{text-align:right}
body.rtl .acd-free-badge{flex-direction:row;text-align:right}
body.rtl .acd-featured{direction:rtl;text-align:right}
body.rtl .acd-featured-meta{flex-direction:row-reverse}
body.rtl .acd-featured-cta{margin-left:0;margin-right:auto}
body.rtl .acd-featured-cta svg{transform:rotate(180deg)}
body.rtl .acd-item{flex-direction:row-reverse;text-align:right}

/* ── Footer ── */
body.rtl .ftr-inner{direction:rtl}
body.rtl .ftr-top{direction:rtl}
body.rtl .ftr-social{flex-direction:row-reverse}
body.rtl .ftr-reg-badge{flex-direction:row!important;text-align:right}
body.rtl .ftr-cols{direction:rtl}
body.rtl .ftr-col-header{flex-direction:row-reverse}
body.rtl .ftr-links a{text-align:right;padding-left:0}
body.rtl .ftr-links a:hover{padding-right:4px;padding-left:0}
body.rtl .ftr-new{margin-left:0;margin-right:6px}
body.rtl .ftr-disclaimer{direction:rtl;text-align:right;padding-left:28px;padding-right:36px}
body.rtl .ftr-disclaimer::before{left:auto;right:0}
body.rtl .ftr-disclaimer-title{flex-direction:row-reverse}
body.rtl .ftr-bottom{flex-direction:row-reverse}
body.rtl .ftr-legal-links{flex-direction:row-reverse}

/* ── CTA section ── */
body.rtl .stb-cta-inner{direction:rtl;text-align:right}
body.rtl .stb-cta-btns{flex-direction:row-reverse}

/* ── Testimonials ── */
body.rtl .tst-inner{direction:rtl}
body.rtl .tst-card{direction:rtl;text-align:right}

/* ── Pulse ── */
body.rtl .pulse-inner{direction:rtl;text-align:right}

/* ── Sections global ── */
body.rtl h1,body.rtl h2,body.rtl h3,body.rtl p,body.rtl li{
  text-align:right;
}
body.rtl .stb-kicker{flex-direction:row-reverse}

/* ═══════════════════════════════════════════
   INNER PAGE — Shared styles
═══════════════════════════════════════════ */
.ip-hero{
  position:relative;padding:120px 0 80px;overflow:hidden;
  background:#04060a;
}
.ip-hero::before{
  content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(200,16,46,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(200,16,46,.04) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 0%,black,transparent);
  pointer-events:none;
}
.ip-hero-glow{
  position:absolute;top:-80px;left:50%;transform:translateX(-50%);
  width:800px;height:400px;
  background:radial-gradient(ellipse,rgba(200,16,46,.12),transparent 65%);
  filter:blur(40px);pointer-events:none;
}
.ip-container{max-width:1200px;margin:0 auto;padding:0 40px;position:relative;z-index:1}
@media(max-width:768px){.ip-container{padding:0 20px}}
.ip-breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-size:12px;color:rgba(255,255,255,.3);
  margin-bottom:20px;flex-wrap:wrap;
}
.ip-breadcrumb a{color:rgba(255,255,255,.3);text-decoration:none;transition:color .15s}
.ip-breadcrumb a:hover{color:rgba(255,255,255,.7)}
.ip-breadcrumb-sep{color:rgba(255,255,255,.2)}
.ip-kicker{
  display:inline-flex;align-items:center;gap:8px;
  font-size:10.5px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(200,16,46,.85);margin-bottom:16px;
}
.ip-kicker-dot{width:6px;height:6px;border-radius:50%;background:#C8102E;animation:ip-pulse 2s infinite}
@keyframes ip-pulse{0%,100%{box-shadow:0 0 0 0 rgba(200,16,46,.4)}50%{box-shadow:0 0 0 6px rgba(200,16,46,0)}}
.ip-h1{
  font-size:clamp(36px,5vw,68px);font-weight:700;
  color:#fff;line-height:1.1;margin-bottom:18px;
}
.ip-h1 em{font-style:normal;color:#C8102E}
.ip-hero-desc{
  font-size:17px;line-height:1.75;color:rgba(255,255,255,.5);
  max-width:600px;margin-bottom:32px;
}
.ip-hero-stats{display:flex;gap:40px;flex-wrap:wrap;margin-bottom:36px}
.ip-stat-val{font-size:28px;font-weight:700;color:#fff;margin-bottom:4px}
.ip-stat-val em{font-style:normal;color:#C8102E;font-size:20px}
.ip-stat-lbl{font-size:11px;color:rgba(255,255,255,.35);text-transform:uppercase;letter-spacing:.08em}
.ip-hero-ctas{display:flex;gap:12px;flex-wrap:wrap}
.ip-btn-red{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 30px;border-radius:10px;font-size:15px;font-weight:700;
  background:#C8102E;color:#fff;text-decoration:none;
  box-shadow:0 4px 24px rgba(200,16,46,.35);
  transition:filter .2s,transform .15s;
}
.ip-btn-red:hover{filter:brightness(1.1);transform:translateY(-2px);color:#fff}
.ip-btn-red svg{stroke:#fff;fill:none;width:16px;height:16px}
.ip-btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 24px;border-radius:10px;font-size:15px;font-weight:600;
  color:rgba(255,255,255,.6);background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);text-decoration:none;
  transition:all .2s;
}
.ip-btn-ghost:hover{color:#fff;border-color:rgba(255,255,255,.3)}
/* Content sections */
.ip-section{padding:80px 0;background:#06080c}
.ip-section.alt{background:#04060a}
.ip-section-title{
  font-size:clamp(26px,3vw,40px);font-weight:700;color:#fff;
  margin-bottom:12px;line-height:1.2;
}
.ip-section-title em{font-style:normal;color:#C8102E}
.ip-section-desc{font-size:15px;color:rgba(255,255,255,.45);line-height:1.75;margin-bottom:40px;max-width:560px}
/* Cards grid */
.ip-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;margin-bottom:40px}
.ip-card{
  background:#0a0c10;border:1px solid rgba(255,255,255,.07);
  border-radius:16px;padding:24px;
  transition:border-color .2s,transform .2s;
  position:relative;overflow:hidden;
}
.ip-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:var(--cc,#C8102E);transform:scaleX(0);transform-origin:left;
  transition:transform .3s cubic-bezier(.16,1,.3,1);
}
.ip-card:hover::before{transform:scaleX(1)}
.ip-card:hover{border-color:rgba(200,16,46,.25);transform:translateY(-3px)}
.ip-card-icon{
  width:44px;height:44px;border-radius:11px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.ip-card-icon svg{stroke:#C8102E;fill:none;width:20px;height:20px}
.ip-card-title{font-size:16px;font-weight:700;color:#fff;margin-bottom:8px}
.ip-card-desc{font-size:13.5px;color:rgba(255,255,255,.45);line-height:1.6}
/* Feature list */
.ip-features{display:flex;flex-direction:column;gap:12px;margin-bottom:40px}
.ip-feature{
  display:flex;align-items:flex-start;gap:12px;
  padding:16px 20px;border-radius:12px;
  background:#0a0c10;border:1px solid rgba(255,255,255,.06);
  transition:border-color .15s;
}
.ip-feature:hover{border-color:rgba(200,16,46,.2)}
.ip-feature-check{
  width:22px;height:22px;border-radius:6px;flex-shrink:0;margin-top:1px;
  background:rgba(200,16,46,.1);border:1px solid rgba(200,16,46,.2);
  display:flex;align-items:center;justify-content:center;
}
.ip-feature-check svg{stroke:#C8102E;fill:none;width:11px;height:11px}
.ip-feature-text{font-size:14px;color:rgba(255,255,255,.65);line-height:1.5}
.ip-feature-text strong{color:#fff}
/* PDF download card */
.ip-pdf{
  display:flex;align-items:center;gap:16px;
  padding:20px 24px;border-radius:14px;
  background:#0a0c10;border:1px solid rgba(200,16,46,.2);
  text-decoration:none;margin-bottom:12px;
  transition:background .15s,border-color .15s;
}
.ip-pdf:hover{background:rgba(200,16,46,.06);border-color:rgba(200,16,46,.4)}
.ip-pdf-icon{
  width:44px;height:44px;border-radius:10px;flex-shrink:0;
  background:rgba(200,16,46,.1);border:1px solid rgba(200,16,46,.2);
  display:flex;align-items:center;justify-content:center;
}
.ip-pdf-icon svg{stroke:#C8102E;fill:none;width:20px;height:20px}
.ip-pdf-info{flex:1}
.ip-pdf-name{font-size:14px;font-weight:600;color:#fff;margin-bottom:3px}
.ip-pdf-meta{font-size:12px;color:rgba(255,255,255,.35)}
.ip-pdf-download{display:flex;align-items:center;gap:5px;font-size:12.5px;font-weight:600;color:#C8102E;white-space:nowrap}
.ip-pdf-download svg{stroke:#C8102E;fill:none;width:14px;height:14px}
/* FAQ accordion */
.ip-faq-item{
  border-bottom:1px solid rgba(255,255,255,.07);
  overflow:hidden;
}
.ip-faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:20px 0;font-size:15px;font-weight:600;color:#fff;
  background:none;border:none;cursor:pointer;text-align:left;
  transition:color .15s;
}
.ip-faq-q:hover{color:rgba(200,16,46,.9)}
.ip-faq-q svg{stroke:currentColor;fill:none;width:18px;height:18px;flex-shrink:0;transition:transform .25s}
.ip-faq-item.open .ip-faq-q svg{transform:rotate(45deg)}
.ip-faq-a{
  max-height:0;overflow:hidden;transition:max-height .35s cubic-bezier(.16,1,.3,1);
}
.ip-faq-item.open .ip-faq-a{max-height:400px}
.ip-faq-a-inner{padding:0 0 20px;font-size:14.5px;color:rgba(255,255,255,.5);line-height:1.75}
/* Table */
.ip-table{
  width:100%;border-collapse:collapse;
  background:#0a0c10;border-radius:16px;overflow:hidden;
  border:1px solid rgba(255,255,255,.07);margin-bottom:40px;
}
.ip-table th{
  padding:14px 20px;font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:rgba(255,255,255,.35);background:rgba(255,255,255,.03);
  border-bottom:1px solid rgba(255,255,255,.07);text-align:left;
}
.ip-table td{
  padding:14px 20px;font-size:14px;color:rgba(255,255,255,.7);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.ip-table tr:last-child td{border-bottom:none}
.ip-table tr:hover td{background:rgba(255,255,255,.02)}
.ip-table td strong{color:#fff}
/* Green accent variant */
.ip-green{--cc:#14e0a3}
.ip-green .ip-kicker{color:rgba(20,224,163,.85)}
.ip-green .ip-kicker-dot{background:#14e0a3;animation:ip-pulse-g 2s infinite}
@keyframes ip-pulse-g{0%,100%{box-shadow:0 0 0 0 rgba(20,224,163,.4)}50%{box-shadow:0 0 0 6px rgba(20,224,163,0)}}
.ip-green .ip-h1 em{color:#14e0a3}
.ip-green .ip-btn-red{background:#14e0a3;color:#04120e;box-shadow:0 4px 24px rgba(20,224,163,.3)}
.ip-green .ip-btn-red:hover{color:#04120e}
.ip-green .ip-card-icon svg,.ip-green .ip-pdf-icon svg,.ip-green .ip-feature-check svg{stroke:#14e0a3}
.ip-green .ip-card::before,.ip-green .ip-feature-check,.ip-green .ip-pdf-icon{background:rgba(20,224,163,.1);border-color:rgba(20,224,163,.2)}
.ip-green .ip-card::before{background:#14e0a3}
.ip-green .ip-faq-q:hover{color:#14e0a3}
/* CTA strip */
.ip-cta-strip{
  background:linear-gradient(135deg,rgba(200,16,46,.08),transparent);
  border:1px solid rgba(200,16,46,.15);
  border-radius:20px;padding:48px;
  display:flex;align-items:center;justify-content:space-between;
  gap:32px;flex-wrap:wrap;
  position:relative;overflow:hidden;margin-top:60px;
}
.ip-cta-strip::before{
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,#C8102E,transparent);
}
.ip-cta-strip-text h3{font-size:26px;font-weight:700;color:#fff;margin-bottom:8px}
.ip-cta-strip-text p{font-size:15px;color:rgba(255,255,255,.45);max-width:500px}
.ip-cta-strip-btns{display:flex;gap:12px;flex-wrap:wrap;flex-shrink:0}
/* Steps */
.ip-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:0;position:relative;margin-bottom:40px}
.ip-step{padding:32px 24px;text-align:center;position:relative}
.ip-step::after{
  content:'';position:absolute;top:44px;right:-1px;
  width:1px;height:48px;background:rgba(255,255,255,.08);
}
.ip-step:last-child::after{display:none}
.ip-step-num{
  width:56px;height:56px;border-radius:50%;
  background:rgba(200,16,46,.1);border:2px solid rgba(200,16,46,.3);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:700;color:#C8102E;
  margin:0 auto 16px;
  position:relative;
}
.ip-step-num::before{
  content:'';position:absolute;inset:-4px;border-radius:50%;
  background:conic-gradient(from 0deg,rgba(200,16,46,.5) 0deg,transparent 220deg);
  -webkit-mask:radial-gradient(farthest-side,transparent calc(100% - 2px),#000 calc(100% - 2px));
  mask:radial-gradient(farthest-side,transparent calc(100% - 2px),#000 calc(100% - 2px));
  animation:ip-spin 6s linear infinite;
}
@keyframes ip-spin{to{transform:rotate(360deg)}}
.ip-step-title{font-size:15px;font-weight:700;color:#fff;margin-bottom:8px}
.ip-step-desc{font-size:13px;color:rgba(255,255,255,.4);line-height:1.6}
/* Animation on scroll */
@keyframes ip-fade-up{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
.ip-animate{animation:ip-fade-up .6s both}
.ip-animate:nth-child(2){animation-delay:.1s}
.ip-animate:nth-child(3){animation-delay:.2s}
.ip-animate:nth-child(4){animation-delay:.3s}

/* ── Venture RTL ── */
body.rtl .ven-inner{direction:rtl}
body.rtl .ven-header-right{text-align:right;align-items:flex-end}
body.rtl .ven-challenge{direction:rtl;text-align:right}
body.rtl .ven-challenge-bar{flex-direction:row-reverse}
body.rtl .ven-stats{direction:rtl}
body.rtl .ven-big-stat{text-align:right}
body.rtl .ven-cta{flex-direction:row-reverse;text-align:right}
body.rtl .ven-cta-btn svg{transform:scaleX(-1)}
body.rtl .ven-grid{direction:rtl}

/* ── Why STB RTL ── */
body.rtl .stb-why{direction:rtl}
body.rtl .why-top{direction:rtl}
body.rtl .why-top-left{text-align:right}
body.rtl .why-proof-strip{direction:rtl}
body.rtl .why-proof-item{text-align:right}
body.rtl .why-rows{direction:rtl}
body.rtl .why-row{flex-direction:row-reverse;text-align:right}
body.rtl .why-row-icon{margin-right:0;margin-left:24px}
body.rtl .why-row-body{text-align:right}
body.rtl .why-row-proof{flex-direction:row-reverse;justify-content:flex-end}

/* ── Partnership RTL ── */
body.rtl .stb-partner{direction:rtl}
body.rtl .stb-partner-card{text-align:right;align-items:flex-end}
body.rtl .stb-partner-btns{flex-direction:row-reverse;justify-content:flex-end}

/* ── Testimonials RTL ── */
body.rtl .stb-testimonials{direction:rtl}
body.rtl .stb-testimonials-head{text-align:right}
body.rtl .stb-testimonial-card{text-align:right;direction:rtl}
body.rtl .stb-testimonial-quote{text-align:right}
body.rtl .stb-testimonial-user{flex-direction:row;justify-content:flex-start}

/* ── How-to-Start RTL ── */
body.rtl .hts-wrap{direction:rtl}
body.rtl .hts-header{text-align:center}
body.rtl .hts-steps{direction:rtl}
body.rtl .hts-step{text-align:right}
body.rtl .hts-step-title{text-align:right}
body.rtl .hts-step-desc{text-align:right}
body.rtl .hts-tags{flex-direction:row-reverse;justify-content:center}
body.rtl .hts-ctas{flex-direction:row-reverse}
body.rtl .hts-cta-primary svg{transform:scaleX(-1)}

/* ── Accounts RTL ── */
body.rtl .acct-wrap{direction:rtl}
body.rtl .acct-card{text-align:right;align-items:flex-end}
body.rtl .acct-spec{flex-direction:row-reverse}
body.rtl .acct-feature{flex-direction:row-reverse;justify-content:flex-end}

/* ── Academy RTL ── */
body.rtl .acd-wrap{direction:rtl}
body.rtl .acd-item{flex-direction:row-reverse;text-align:right}
body.rtl .acd-item-icon{margin-right:0;margin-left:12px}

/* ── Pulse RTL ── */
body.rtl .pulse-wrap{direction:rtl}
body.rtl .pulse-header{text-align:right}
body.rtl .pulse-chips{flex-direction:row-reverse}
body.rtl .pulse-chip{flex-direction:row-reverse}

/* ── CTA RTL ── */
body.rtl .cta-wrap{direction:rtl}
body.rtl .cta-title{text-align:right}
body.rtl .cta-desc{text-align:right}
body.rtl .cta-btns{flex-direction:row-reverse}
body.rtl .cta-btn-primary svg{transform:scaleX(-1)}
body.rtl .cta-disclaimer{text-align:right;direction:rtl}




/* Fix by Dev */

/* @media(max-width:768px){
.hero-inner{
  margin-top: 280px!important;
}

} */