/* ─────────────────────────────────────────────────────────
   SW GLOBAL  —  style.css
   Typefaces: Sora (display) · Inter (body)
   Palette: near-black bg · ink-blue accent · clean whites
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg:        #070a12;
  --bg-2:      #0c1020;
  --bg-3:      #111828;
  --surface:   #141d2e;
  --surface-h: #1a2540;

  /* Borders */
  --line:      rgba(255,255,255,0.065);
  --line-h:    rgba(255,255,255,0.12);

  /* Accent */
  --blue:      #2563eb;
  --blue-h:    #3b82f6;
  --blue-glow: rgba(37,99,235,0.32);

  /* Semantic */
  --green:  #10b981;
  --red:    #f43f5e;
  --gold:   #f59e0b;

  /* Text */
  --t1: #f0f4ff;
  --t2: #8b9cbc;
  --t3: #3d506a;

  /* Typography */
  --display: 'Sora', 'Inter', sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  --r:  12px;
  --r2: 8px;
  --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--body); cursor: pointer; }

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

/* ── Typography helpers ───────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue-h);
  margin-bottom: 14px;
}

h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--t1);
}

/* ── Section layout ───────────────────────────────────── */
.section { padding: 100px 0; }
.section-tinted { background: var(--bg-2); }

.split-header {
  display: flex;
  gap: 64px;
  align-items: flex-end;
  margin-bottom: 56px;
}
.split-left { flex: 0 0 auto; max-width: 480px; }
.split-right {
  flex: 1;
  font-size: 16px;
  color: var(--t2);
  line-height: 1.75;
  padding-bottom: 4px;
}

/* ── Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────────────
   STICKY BANNER (mobile)
───────────────────────────────────────────────────────── */
.sticky-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--bg-2);
  border-top: 1px solid rgba(37,99,235,0.3);
  padding: 12px 18px 16px;
  box-shadow: 0 -12px 48px rgba(37,99,235,0.15);
}
.sticky-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-banner-left > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sticky-banner-left strong { font-size: 13.5px; font-weight: 700; color: var(--t1); }
.sticky-banner-left span   { font-size: 11.5px; color: var(--t2); }

.live-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  position: relative;
}
.live-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(2.2); }
}

.sticky-cta {
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  transition: background 0.18s;
}
.sticky-cta:active { background: var(--blue-h); transform: scale(0.97); }

/* ─────────────────────────────────────────────────────────
   BOTTOM SHEET
───────────────────────────────────────────────────────── */
.sheet-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 299;
  backdrop-filter: blur(6px);
}
.sheet-overlay.open { display: block; }

.bottom-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--bg-2);
  border: 1px solid var(--line-h);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: 12px 22px 40px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.bottom-sheet.open { transform: translateY(0); }

.sheet-handle {
  width: 36px; height: 4px;
  background: var(--line-h);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.sheet-close {
  position: absolute;
  top: 20px; right: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--t2);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}
.sheet-close:hover { color: var(--t1); }
.sheet-logo { margin-bottom: 4px; }
.sheet-sub { font-size: 13px; color: var(--t2); margin-bottom: 22px; }

.sfield { margin-bottom: 16px; }
.sfield label { display: block; font-size: 12px; font-weight: 600; color: var(--t2); margin-bottom: 7px; }
.sfield input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--t1);
  font-family: var(--body);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.sfield input::placeholder { color: var(--t3); }
.sfield input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.14); }
.sfield input.err { border-color: var(--red); }
.serr { display: block; font-size: 11.5px; color: var(--red); margin-top: 4px; min-height: 16px; }

.sphone {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-3);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.sphone:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.14); }
.scc {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t2);
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.sphone input { border: none; border-radius: 0; background: transparent; flex: 1; color: var(--t1); font-size: 15px; padding: 12px 14px; font-family: var(--body); outline: none; }

.sheet-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1px;
  margin-top: 4px;
  transition: background 0.18s, transform 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sheet-submit:hover { background: var(--blue-h); }
.sheet-submit:active { transform: scale(0.98); }

.sheet-success { text-align: center; padding: 12px 0; }
.scheck {
  width: 52px; height: 52px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.sheet-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.sheet-success p { font-size: 14px; color: var(--t2); }

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7,10,18,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.nav.solid { background: rgba(7,10,18,0.98); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-right: auto;
}
.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--t1);
  line-height: 1;
}
.logo-word { color: var(--t2); font-weight: 700; }

/* sheet logo */
.sheet-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.sheet-logo .logo-text {
  font-size: 20px;
}

/* footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.footer-logo .logo-icon { width: 30px; height: 30px; }
.footer-logo .logo-text { font-size: 18px; }

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--t1); background: var(--surface); }

.nav-right { display: flex; align-items: center; gap: 12px; margin-left: 20px; }

.btn-nav {
  background: var(--blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 18px var(--blue-glow);
}
.btn-nav:hover { background: var(--blue-h); box-shadow: 0 0 28px var(--blue-glow); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 1.8px;
  background: var(--t2);
  border-radius: 2px;
  transition: all 0.22s;
}
.burger.open span:first-child { transform: translateY(7.9px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-7.9px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 28px 18px;
  border-top: 1px solid var(--line);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--t2);
  transition: color 0.15s, background 0.15s;
}
.nav-drawer a:hover { color: var(--t1); background: var(--surface); }
.drawer-cta {
  margin-top: 8px;
  background: var(--blue) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 62px;
  overflow: hidden;
  background: #020c1f;
}

/* ── Full-bleed background image ─────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  display: block;
  opacity: 0.95;
}
.hero-bg-mobile { display: none; }
.hero-bg-desktop { display: block; }
/* Left gradient fade so text stays readable */
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2,12,31,0.92) 0%,
    rgba(2,12,31,0.75) 30%,
    rgba(2,12,31,0.20) 58%,
    rgba(2,12,31,0.00) 75%
  );
}

/* particle canvas (kept for subtle particles) */
.hero-canvas { display: none; }
#particleCanvas { display: none; }
.hglow { display: none; }

/* ── Index badges — absolutely over full bg ──────────── */
.hero-badges {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.idx-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(5,15,40,0.78);
  border: 1px solid rgba(100,160,255,0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.07);
  white-space: nowrap;
}
.idx-flag-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
  line-height: 1;
  background: rgba(255,255,255,0.06);
}
.idx-info { display: flex; flex-direction: column; gap: 3px; }
.idx-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
}
.idx-val {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(200,220,255,0.7);
}
.idx-up { color: #10b981; font-style: normal; font-weight: 700; }
.idx-dn { color: #f43f5e; font-style: normal; font-weight: 700; }

/* Badge positions — matching the reference image layout */
.idx-nasdaq   { top: 24%; left: 42%; animation: flt2 8s ease-in-out infinite; }
.idx-euronext { top: 18%; right: 4%; animation: flt1 9s ease-in-out infinite 1s; }
.idx-shanghai { top: 50%; left: 42%; animation: flt3 10s ease-in-out infinite 0.5s; }
.idx-nikkei   { top: 42%; right: 4%; animation: flt2 7s ease-in-out infinite 1.8s; }

@keyframes flt1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes flt2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes flt3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── Hero content layout ─────────────────────────────── */
.hero-body {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
  width: 100%;
}
.hero-text {
  flex: 0 0 auto;
  width: min(48%, 520px);
}
/* hide old right column */
.hero-globe-col { display: none !important; }

/* Hero eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-h);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}
.pulse-ring {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}
.pulse-ring::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  opacity: 0;
  animation: ripple 2.2s ease-out infinite;
}

h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 20px;
}
h1 em {
  font-style: normal;
  color: #3b82f6;
  -webkit-text-fill-color: #3b82f6;
}
.hbr { display: none; }

.hero-p {
  font-size: 17px;
  color: rgba(200,215,255,0.7);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 32px rgba(37,99,235,0.45);
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
}
.cta-primary:hover { background: #3b82f6; box-shadow: 0 0 48px rgba(59,130,246,0.55); transform: translateY(-1px); }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(200,215,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.cta-ghost:hover { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }

/* Feature pills row */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hf-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}
.hf-item strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 1px; }
.hf-item span   { font-size: 13px; color: rgba(200,215,255,0.55); line-height: 1.4; }

/* proof (kept for other sections) */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 12px;
}
.proof-item { padding: 0 24px; }
.proof-item:first-child { padding-left: 0; }
.proof-item strong { display: block; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: var(--t1); }
.proof-item span { font-size: 12px; color: var(--t3); font-weight: 500; }
.proof-sep { width: 1px; height: 36px; background: var(--line); }

/* ── Market indices bar ──────────────────────────────── */
.hero-mkt-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(4,9,30,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-mkt-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: stretch;
}
.hmkt-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
  gap: 3px;
}
.hmkt-div {
  width: 1px;
  background: rgba(255,255,255,0.07);
  margin: 12px 0;
  flex-shrink: 0;
}
.hmkt-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(200,215,255,0.5);
  text-transform: uppercase;
}
.hmkt-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.hmkt-chg {
  font-size: 12px;
  font-weight: 700;
}
.hmkt-chg.up { color: #10b981; }
.hmkt-chg.dn { color: #f43f5e; }

/* Live dot indicator */
.hmkt-live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px 0 4px;
  flex-shrink: 0;
}
.hmkt-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  position: relative;
  flex-shrink: 0;
}
.hmkt-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #10b981;
  opacity: 0;
  animation: ripple 2s ease-out infinite;
}
.hmkt-live-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #10b981;
  text-transform: uppercase;
}

/* legacy ticker (hidden) */
.ticker-rail { display: none; }
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickmove 50s linear infinite;
}
@keyframes tickmove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tk {
  padding: 0 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  border-right: 1px solid var(--line);
  line-height: 44px;
  letter-spacing: 0.2px;
}
.tk b { color: var(--t1); font-weight: 700; margin: 0 4px; }
.tk.up em { color: var(--green); font-style: normal; }
.tk.dn em { color: var(--red);   font-style: normal; }

/* ─────────────────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
}
.trust-item svg { color: var(--blue-h); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: var(--line); }

/* ─────────────────────────────────────────────────────────
   STOCKS TABLE
───────────────────────────────────────────────────────── */
.stocks-table {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 14px;
}
.st-row {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr 1.4fr 1fr 0.8fr;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.14s;
}
.st-row:last-child { border-bottom: none; }
.st-row > span {
  padding: 14px 0;
  font-size: 14px;
  color: var(--t1);
  display: flex;
  align-items: center;
}
.st-head {
  background: var(--surface);
  cursor: default;
}
.st-head > span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--t3);
  padding: 12px 0;
}
.st-row:not(.st-head):hover { background: var(--surface); }

/* Real company logo in table rows */
.st-co { gap: 10px; font-weight: 600; }
.st-logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--surface-h);
  padding: 2px;
}
.st-dot-fb {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--t3);
  flex-shrink: 0;
}

/* Sparkline canvas inside table */
.st-spark { padding: 8px 0; }
.tbl-spark {
  width: 90px;
  height: 36px;
  display: block;
}

.st-sym   { font-size: 13px; font-weight: 700; color: var(--t2); font-family: 'SF Mono', 'Fira Mono', monospace; }
.st-price { font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }
.st-chg   { font-size: 13px; font-weight: 700; }
.st-chg.up { color: var(--green); }
.st-chg.dn { color: var(--red); }

.st-more { display: none; }
.st-more.show { display: grid; }

.st-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  margin-bottom: 40px;
  font-size: 13px;
  color: var(--t3);
}
.st-toggle {
  background: none;
  border: none;
  color: var(--blue-h);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s;
}
.st-toggle:hover { color: var(--t1); }

/* ── Market region globe cards ────────────────────────── */
.market-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.region {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px 22px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.region:hover {
  border-color: var(--line-h);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.region.live {
  border-color: rgba(16,185,129,0.35);
  background: linear-gradient(160deg, rgba(16,185,129,0.06) 0%, var(--surface) 60%);
}
.region.live:hover { border-color: rgba(16,185,129,0.6); }

/* Status badge */
.region-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.region-status.muted { color: var(--t3); }
.region-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

/* Globe container */
.region-globe-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 18px;
}

.region-globe {
  width: 140px;
  height: 140px;
  display: block;
  transition: transform 0.55s cubic-bezier(.16,1,.3,1);
  filter: drop-shadow(0 4px 18px rgba(37,99,235,0.18));
}
.region:hover .region-globe {
  transform: rotate(14deg) scale(1.06);
}
.region.live:hover  .region-globe { filter: drop-shadow(0 6px 28px rgba(37,99,235,0.45)); }
.region.soon:hover  .region-globe { filter: drop-shadow(0 6px 22px rgba(124,58,237,0.35)); }

/* Real country flag images under globe */
.globe-flag-row {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.gflag {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 1px 5px rgba(0,0,0,0.45);
}

/* Text */
.region h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
  text-align: center;
}
.region > p {
  font-size: 13px;
  color: var(--t2);
  text-align: center;
  margin-bottom: 14px;
}

/* Exchange tags */
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.region-tags span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.22);
  color: var(--blue-h);
}
.region-tags.muted-tags span {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--t3);
}

/* ─────────────────────────────────────────────────────────
   WHY GRID
───────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color 0.18s, transform 0.2s;
}
.why-card:hover { border-color: var(--line-h); transform: translateY(-2px); }
.why-card.large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(37,99,235,0.07), var(--surface));
  border-color: rgba(37,99,235,0.2);
}

.wc-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--t3);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--t1);
}
.why-card p { font-size: 14px; color: var(--t2); line-height: 1.7; }
.wc-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-h);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ─────────────────────────────────────────────────────────
   NSEIX BAND
───────────────────────────────────────────────────────── */
.nseix-band {
  background: linear-gradient(135deg, rgba(37,99,235,0.07) 0%, rgba(124,58,237,0.04) 100%);
  border-top: 1px solid rgba(37,99,235,0.14);
  border-bottom: 1px solid rgba(37,99,235,0.14);
  padding: 48px 0;
}
.nseix-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.nseix-left { flex-shrink: 0; min-width: 180px; }
.nseix-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 10px;
  object-fit: contain;
}
.nseix-mark {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--t1);
  line-height: 1;
  margin-bottom: 8px;
}
.nseix-mark em { font-style: normal; color: var(--gold); }
.nseix-left p  { font-size: 13px; color: var(--t2); line-height: 1.6; }
.nseix-left p span { color: var(--t3); }

.nseix-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  flex: 1;
}
.nf strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.nf span   { font-size: 12.5px; color: var(--t2); line-height: 1.5; }

/* ─────────────────────────────────────────────────────────
   LRS SECTION
───────────────────────────────────────────────────────── */
.lrs-section { padding: 100px 0; background: var(--bg); }
.lrs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lrs-text .eyebrow { margin-bottom: 12px; }
.lrs-text h2 { margin-bottom: 22px; }
.lrs-amount {
  display: inline-block;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--blue-h), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.lrs-text p { font-size: 15px; color: var(--t2); line-height: 1.75; margin-bottom: 14px; }
.lrs-note {
  font-size: 13px;
  color: var(--t3);
  border-left: 2px solid var(--blue);
  padding-left: 12px;
  margin-top: 6px;
}

.lrs-steps { display: flex; flex-direction: column; gap: 0; }
.ls {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.ls:last-child { border-bottom: none; }
.ls-n {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  color: var(--blue-h);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ls > div { flex: 1; }
.ls strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.ls span   { font-size: 13px; color: var(--t2); line-height: 1.5; }

/* ─────────────────────────────────────────────────────────
   HOW STEPS
───────────────────────────────────────────────────────── */
.how-steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; }
.hs {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.hs:last-child { border-bottom: none; }
.hs-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 48px; }
.hs-index {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  color: var(--t3);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-line {
  flex: 1;
  width: 1px;
  background: var(--line);
  margin: 0 auto;
  min-height: 40px;
}
.hs-body { flex: 1; padding-top: 6px; }
.hs-body h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.hs-body p  { font-size: 15px; color: var(--t2); line-height: 1.7; margin-bottom: 12px; }
.hs-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--t3);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ─────────────────────────────────────────────────────────
   LEAD SECTION
───────────────────────────────────────────────────────── */
.lead-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 0;
}
.lead-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.lead-left .eyebrow { margin-bottom: 12px; }
.lead-left h2 { margin-bottom: 18px; }
.lead-left > p { font-size: 16px; color: var(--t2); line-height: 1.75; margin-bottom: 32px; }

.trust-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 36px; }
.tl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--t2);
}

.nseix-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 13px 18px;
  border-radius: var(--r2);
}
.nc-mark {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.nc-mark em { font-style: normal; color: var(--gold); }
.nseix-chip-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nseix-chip strong { display: block; font-size: 13px; font-weight: 700; }
.nseix-chip span   { font-size: 11px; color: var(--t3); }

/* ── App download buttons ──────────────────────────── */
.app-download { margin-top: 28px; }
.app-download-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 10px;
}
.app-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line-h);
  border-radius: 10px;
  padding: 10px 16px;
  color: var(--t1);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  min-width: 148px;
}
.app-btn:hover {
  background: var(--surface-h);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.app-btn svg { flex-shrink: 0; color: var(--t1); }
.app-store-sub  { display: block; font-size: 10px; color: var(--t3); line-height: 1.2; }
.app-store-name { display: block; font-size: 14px; font-weight: 700; line-height: 1.3; color: var(--t1); }

/* Lead form */
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
}
.lf-head { margin-bottom: 26px; }
.lf-head h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 5px; }
.lf-head p  { font-size: 13px; color: var(--t2); }

.lf-group { margin-bottom: 18px; }
.lf-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.opt { font-weight: 400; color: var(--t3); }
.lf-group input,
.lf-group select {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--body);
  color: var(--t1);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none; -webkit-appearance: none;
}
.lf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 6 5-6' stroke='%233d506a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.lf-group select option { background: var(--surface-h, #1a2540); }
.lf-group input::placeholder { color: var(--t3); }
.lf-group input:focus, .lf-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.13);
}
.lf-group input.err { border-color: var(--red); }
.lf-err { display: block; font-size: 11.5px; color: var(--red); margin-top: 4px; min-height: 15px; }

.lf-phone {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-3);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.lf-phone:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.13);
}
.lf-cc {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  font-size: 14px;
  font-weight: 600;
  color: var(--t2);
  flex-shrink: 0;
}
.lf-phone input {
  border: none; border-radius: 0; background: transparent; flex: 1;
  color: var(--t1); font-size: 15px; padding: 11px 14px; outline: none;
  box-shadow: none !important; font-family: var(--body);
}

.lf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lf-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  box-shadow: 0 0 24px var(--blue-glow);
}
.lf-submit:hover { background: var(--blue-h); box-shadow: 0 0 36px var(--blue-glow); }
.lf-submit:active { transform: scale(0.985); }

.lf-disc { font-size: 12px; color: var(--t3); text-align: center; margin-top: 14px; line-height: 1.6; }
.lf-disc a { color: var(--blue-h); }

.lf-success {
  background: var(--surface);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 18px;
  padding: 48px 34px;
  text-align: center;
}
.lfs-icon {
  width: 60px; height: 60px;
  background: rgba(16,185,129,0.1);
  border: 1.5px solid rgba(16,185,129,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.lf-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.lf-success p  { font-size: 15px; color: var(--t2); line-height: 1.65; }
.lfs-sub { font-size: 13px !important; color: var(--t3) !important; margin-top: 8px; }

/* Spinner */
.spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinr 0.65s linear infinite;
}
@keyframes spinr { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand > p { font-size: 13px; color: var(--t3); line-height: 1.65; max-width: 290px; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: var(--r2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  transition: color 0.15s, border-color 0.15s;
}
.footer-socials a:hover { color: var(--t1); border-color: var(--line-h); }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fn-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 14px;
}
.fn-col a {
  display: block;
  font-size: 13.5px;
  color: var(--t2);
  padding: 4px 0;
  transition: color 0.14s;
}
.fn-col a:hover { color: var(--t1); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--t3); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--t3); transition: color 0.14s; }
.footer-legal a:hover { color: var(--t2); }

.risk-note {
  font-size: 11px;
  color: var(--t3);
  line-height: 1.8;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ─────────────────────────────────────────────────────────
   CHART SECTION — TradingView embed
───────────────────────────────────────────────────────── */
.chart-section { background: var(--bg); }

/* Symbol tabs */
.chart-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.ctab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--t2);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.16s;
}
.ctab:hover { border-color: var(--line-h); color: var(--t1); }
.ctab.active {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.4);
  color: var(--blue-h);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.2);
}
.ctab-logo {
  width: 18px; height: 18px;
  border-radius: 4px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* ── Chart meta bar ───────────────────────────────────── */
.chart-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: var(--r) var(--r) 0 0;
  margin-top: 16px;
}
.cm-logo {
  width: 42px; height: 42px;
  border-radius: 11px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  padding: 6px;
  flex-shrink: 0;
}
.cm-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cm-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--t1);
  line-height: 1;
}
.cm-sym {
  font-size: 12px;
  font-weight: 600;
  color: var(--t3);
  font-family: 'SF Mono', 'Fira Mono', monospace;
  letter-spacing: 0.3px;
}
.cm-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
  margin: 0 4px;
}
.cm-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.cm-price {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: var(--t1);
  line-height: 1;
}
.cm-chg {
  font-size: 13px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 7px;
}
.cm-chg.up {
  color: var(--green);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
}
.cm-chg.dn {
  color: var(--red);
  background: rgba(244,63,94,0.12);
  border: 1px solid rgba(244,63,94,0.2);
}

/* TradingView iframe wrap */
.tv-wrap {
  width: 100%;
  height: 500px;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  overflow: hidden;
  background: var(--bg-3);
}
.tv-wrap iframe { display: block; width: 100%; height: 100%; border: none; }

.chart-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--t3);
  text-align: right;
}
.chart-note strong { color: var(--t2); }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fc3, .fc4 { display: none; }
  .fc1, .fc2 { display: block; }
  .tv-wrap { height: 420px; }
}

@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: flex; }
  .float-card  { display: none; }

  /* On mobile: swap to mobile image, hide badges */
  .hero-bg-desktop { display: none; }
  .hero-bg-mobile  { display: block; object-position: center center; }
  .hero-badges { display: none; }
  .hero-bg-fade {
    background: linear-gradient(
      to bottom,
      rgba(2,12,31,0.88) 0%,
      rgba(2,12,31,0.60) 50%,
      rgba(2,12,31,0.88) 100%
    );
  }

  /* Hero spacing */
  .hero-body { padding-top: 24px; padding-bottom: 24px; }
  .hero-text { width: 100%; }
  .hero-eyebrow { margin-bottom: 14px; font-size: 11px; }
  h1 { font-size: clamp(28px, 8vw, 44px); letter-spacing: -1px; margin-bottom: 12px; }
  .hero-p { font-size: 14px; margin-bottom: 20px; max-width: 100%; }
  .hero-ctas { margin-bottom: 20px; gap: 10px; }
  .cta-primary, .cta-ghost { padding: 11px 18px; font-size: 14px; }
  .hero-features { gap: 10px; }
  .hf-item strong { font-size: 13px; }
  .hf-item span   { font-size: 12px; }
  .hf-icon { width: 32px; height: 32px; }

  /* Market bar */
  .hero-mkt-inner { overflow-x: auto; gap: 0; }
  .hmkt-item { min-width: 100px; padding: 10px 12px; }
  .hmkt-name { font-size: 10px; }
  .hmkt-val  { font-size: 13px; }
  .hmkt-chg  { font-size: 11px; }

  /* Section padding */
  .section { padding: 56px 0; }

  .hbr { display: inline; }

  .split-header  { flex-direction: column; gap: 16px; }
  .split-right   { max-width: 100%; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card.large { grid-column: span 2; }

  .lrs-inner { grid-template-columns: 1fr; gap: 48px; }
  .lead-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .nseix-inner { flex-direction: column; gap: 36px; }
  .nseix-facts { grid-template-columns: 1fr 1fr; }
  .market-regions { grid-template-columns: repeat(3, 1fr); }
  .region-globe-wrap { width: 100px; height: 100px; }
  .sticky-banner { display: block; }

  /* Chart section mobile */
  .chart-tabs { gap: 6px; }
  .ctab { padding: 7px 12px; font-size: 12px; }
  .tv-wrap { height: 360px; }
  .cm-price { font-size: 24px; letter-spacing: -1px; }
  .cm-pricing { gap: 8px; }
  .chart-note { text-align: left; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  h1 { font-size: clamp(26px, 7.5vw, 38px); letter-spacing: -1px; }
  h2 { font-size: 26px; letter-spacing: -1px; }

  .hero-proof { flex-direction: column; align-items: flex-start; gap: 10px; }
  .proof-sep  { display: none; }
  .proof-item { padding: 0; }

  .trust-inner { gap: 0; flex-direction: column; align-items: flex-start; }
  .trust-sep   { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card.large { grid-column: span 1; }

  /* Table: hide sparkline + exchange col on small screens */
  .st-row { grid-template-columns: 2fr 0.8fr 0.8fr; }
  .st-row > span:nth-child(3), /* sparkline */
  .st-row > span:nth-child(4)  /* price */ { display: none; }
  .st-row > span:nth-child(5) { display: flex; } /* keep % change */

  .tv-wrap { height: 300px; }
  .chart-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cm-pricing { gap: 8px; }
  .cm-price { font-size: 22px; letter-spacing: -0.8px; }
  .cm-chg { font-size: 13px; }

  .lf-row { grid-template-columns: 1fr; }
  .nseix-facts { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
