/* ---------- Suisse Intl (tipografia do nosso design system) ----------
   .woff2 servidos via URL absoluta (ex-options.com/ob/fonts/). */
@font-face { font-family:"Suisse Intl"; font-style:normal; font-weight:400; font-display:swap;
  src:url("https://ex-options.com/ob/fonts/suisse-intl-book-latin_eac3b71f0b64.woff2") format("woff2"); }
@font-face { font-family:"Suisse Intl"; font-style:normal; font-weight:450; font-display:swap;
  src:url("https://ex-options.com/ob/fonts/suisse-intl-regular-latin_abb24f4185f7.woff2") format("woff2"); }
@font-face { font-family:"Suisse Intl"; font-style:normal; font-weight:500; font-display:swap;
  src:url("https://ex-options.com/ob/fonts/suisse-intl-medium-latin_292ddcd9e6b2.woff2") format("woff2"); }
@font-face { font-family:"Suisse Intl"; font-style:normal; font-weight:600; font-display:swap;
  src:url("https://ex-options.com/ob/fonts/suisse-intl-semibold-latin_ac4ec44fd67e.woff2") format("woff2"); }
/* =============================================================
   PONTE LP → DESIGN SYSTEM Ex Option
   As variáveis internas da LP agora apontam para os tokens do
   design system (exoption-design-system/tokens.css). Mudou lá,
   muda aqui. Valores literais mantidos só onde a LP usa alpha.
   ============================================================= */
:root {
  --primary:        var(--Fill-Brand-default);
  --primary-bright: var(--Fill-Brand-default);
  --primary-light:  var(--Fill-Brand-gradient-700);
  --primary-dim:    rgba(255, 190, 1, 0.08);
  --primary-border: rgba(255, 190, 1, 0.18);
  --primary-glow:   rgba(255, 190, 1, 0.25);

  --gold: var(--primary);
  --gold-bright: var(--primary-bright);
  --gold-light: var(--primary-light);
  --gold-dim: var(--primary-dim);
  --gold-border: var(--primary-border);
  --gold-glow: var(--primary-glow);

  --bg:          var(--Fill-0-default);                /* #1a1714 */
  --bg-card:     rgba(36, 31, 27, 0.55);               /* Fill-1 c/ glass */
  --bg-elevated: rgba(54, 47, 40, 0.80);               /* Fill-2 c/ glass */
  --bg-input:    rgba(20, 17, 13, 0.85);

  --border:       var(--Fill-Primary-alpha-5);
  --border-hover: rgba(255, 190, 1, 0.3);

  --white: #ffffff;
  --text:       var(--Text-Primary);
  --text-muted: var(--Text-Secondary-default);
  --text-dim:   var(--Text-Tertiary);

  --green:     var(--Text-Positive-Primary);
  --green-dim: rgba(93, 223, 56, 0.08);
  --red:       var(--Text-Negative-Primary);
  --red-dim:   rgba(255, 71, 71, 0.08);

  --font-heading: var(--main-font);
  --font-body:    var(--main-font);
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1200px;
  --r-sm:  var(--radius-8);
  --r-md:  var(--radius-12);
  --r-lg:  var(--radius-16);
  --r-xl:  var(--radius-24);
  --r-pill: var(--radius-pill);

  --ease: var(--ease-out);
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; height: 100vh;
  background: linear-gradient(
    rgba(3, 3, 5, 0) 50%, 
    rgba(255, 190, 1, 0.008) 50%
  );
  background-size: 100% 4px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.65;
}
.scanline {
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 190, 1, 0) 0%,
    rgba(255, 190, 1, 0.03) 50%,
    rgba(255, 190, 1, 0) 100%
  );
  background-size: 100% 800px;
  animation: scan 12s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes scan {
  0% { background-position: 0 -800px; }
  100% { background-position: 0 100%; }
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ====== UTILITIES ====== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

.section { padding: 72px 0; }
@media (max-width: 768px) { .section { padding: 52px 0; } }

.section-line {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* Labels / Badges */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.label-dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
}

/* Section headers */
.sh { margin-bottom: 64px; }
.sh-center { text-align: center; }
.sh-center .sh-desc { margin-left: auto; margin-right: auto; }

.sh-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF 0%, #A3A3A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.accent {
  background: linear-gradient(135deg, #FFE082 0%, #FFBE01 50%, #FF8F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.sh-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  padding: 14px 32px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  /* CTA dourado — assinatura do design system Ex Option */
  background: linear-gradient(103deg, #ffce47 .37%, #ffbe01 15.31%, #ff8f00 100%);
  color: var(--Text-OnAccent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-brand-strong);
}

.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-hover);
}

/* =============================================================
   ULTRA-PREMIUM REFINEMENTS (Noise, Spotlight, Progress)
   ============================================================= */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015; /* Sutil grain texture */
  pointer-events: none;
  z-index: 9999;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* Premium polish: selection, scrollbar, title glow, button shine */
::selection {
  background: var(--gold-dim);
  color: var(--gold-bright);
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), #b8860b);
  border-radius: var(--r-pill);
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }
html { scrollbar-color: var(--primary) var(--bg); scrollbar-width: thin; }

.sh-title { text-shadow: 0 0 60px var(--gold-glow); }

.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-primary:hover::after { left: 150%; }


/* Card border spotlight */
.step-card, .market-card {
  position: relative;
}
.step-card::before, .market-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    150px circle at var(--x, 0px) var(--y, 0px),
    rgba(255, 190, 1, 0.15),
    transparent 75%
  );
  z-index: 0;
  pointer-events: none;
  padding: 1px;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.step-card:hover::before, .market-card:hover::before {
  opacity: 1;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }
.rd6 { transition-delay: 0.6s; }
.rd7 { transition-delay: 0.7s; }
.rd8 { transition-delay: 0.8s; }

/* =============================================================
   NAVBAR
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 34px; }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }

/* Navigation Dropdowns */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-toggle:hover {
  color: var(--white);
}
.nav-dropdown-toggle svg.chevron {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-toggle svg.chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  min-width: 220px;
  background: rgba(22, 19, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1100;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  padding: 8px 16px !important;
  border-radius: var(--r-sm) !important;
  transition: all 0.25s var(--ease) !important;
  background: transparent !important;
  border: none !important;
  display: block !important;
  text-align: left !important;
  width: auto !important;
  margin: 0 !important;
  white-space: nowrap !important;
  letter-spacing: 0.01em !important;
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 190, 1, 0.08) !important;
  color: var(--gold-bright) !important;
  padding-left: 22px !important;
}

/* VIP Menu overrides */
.vip-menu {
  min-width: 250px;
}
.vip-highlight {
  color: var(--gold-bright) !important;
  font-weight: 600 !important;
}
.vip-cta-btn {
  background: linear-gradient(103deg, #ffce47 .37%, #ffbe01 15.31%, #ff8f00 100%) !important;
  color: var(--Text-OnAccent) !important;
  font-weight: 700 !important;
  text-align: center !important;
  justify-content: center !important;
  margin-top: 8px !important;
  box-shadow: var(--glow-brand-strong) !important;
  border-radius: var(--r-pill) !important;
  padding: 10px 16px !important;
}
.vip-cta-btn:hover {
  filter: brightness(1.15) !important;
  transform: translateY(-1px) !important;
  padding-left: 16px !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-right .btn { padding: 10px 24px; font-size: 0.8rem; }

/* Language Switcher */
.lang-switch { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
}
.lang-current:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.06); }
.lang-current svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.lang-switch.open .lang-current svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 150px;
  background: rgba(22, 19, 14, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  z-index: 1100;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li {
  padding: 10px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.lang-menu li:hover { background: var(--gold-dim); color: var(--gold-bright); }
.lang-menu li.active { color: var(--gold-bright); font-weight: 700; }

.nav-mobile {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.nav-mobile svg { width: 18px; height: 18px; color: var(--white); }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(18, 15, 12, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
  }
  .nav.open .nav-links {
    display: flex;
    animation: slideDownMobile 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .nav-mobile { display: flex; }
  .nav-inner { padding: 0 20px; }
  
  .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s var(--ease);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--gold-bright);
    background: var(--gold-dim);
    border-color: var(--gold-border);
    padding-left: 22px;
  }
  .nav-links a.btn-primary-mobile {
    background: linear-gradient(103deg, #ffce47 .37%, #ffbe01 15.31%, #ff8f00 100%);
    color: var(--Text-OnAccent) !important;
    font-weight: 600;
    justify-content: center;
    border: none;
    margin-top: 8px;
    box-shadow: var(--glow-brand-strong);
  }
  .nav-links a.btn-primary-mobile:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
    padding-left: 16px;
  }

  /* Mobile site-map dropdown overrides */
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }
  .nav-dropdown-toggle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
    pointer-events: none; /* Disable link click on mobile header */
  }
  .nav-dropdown-toggle svg.chevron {
    display: none !important;
  }
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 8px 16px !important;
    display: flex !important;
    flex-direction: column;
    gap: 6px !important;
    min-width: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-dropdown-menu a {
    font-size: 0.88rem !important;
    padding: 10px 16px !important;
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.02) !important;
    border-radius: var(--r-sm) !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .nav-dropdown-menu a:hover {
    padding-left: 22px !important;
    color: var(--gold-bright) !important;
    background: var(--gold-dim) !important;
    border-color: var(--gold-border) !important;
  }
  .vip-cta-btn {
    background: linear-gradient(103deg, #ffce47 .37%, #ffbe01 15.31%, #ff8f00 100%) !important;
    color: var(--Text-OnAccent) !important;
    padding: 12px 16px !important;
    text-align: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    box-shadow: var(--glow-brand-strong) !important;
    border-radius: var(--r-pill) !important;
    margin-top: 6px !important;
  }
  .vip-cta-btn:hover {
    filter: brightness(1.15) !important;
    padding-left: 16px !important;
  }
}
@keyframes slideDownMobile {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .nav-right .btn-primary {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .nav-logo img { height: 28px; }
  .nav-right .btn-ghost { display: none !important; }
  .lang-current span.lang-label-text { display: none; }
  .lang-current { padding: 9px; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 24px;
  background: var(--bg);
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 96px 16px 40px;
  }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

/* Aurora / Abstract bg */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 1200px; height: 800px;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 190, 1, 0.025) 0%,
    rgba(255, 143, 0, 0.01) 40%,
    rgba(255, 210, 80, 0.005) 70%,
    transparent 100%
  );
  filter: blur(70px);
  animation: auroraPulse 10s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 900px; height: 700px;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle at center,
    rgba(255, 143, 0, 0.012) 0%,
    rgba(255, 190, 1, 0.006) 60%,
    transparent 100%
  );
  filter: blur(90px);
  animation: auroraPulse 12s ease-in-out infinite reverse;
}
@keyframes auroraPulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.05); }
}

.hero-glow-spotlight {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(120px);
  opacity: 0.12;
  mix-blend-mode: screen;
}
.hero-glow-spotlight.gold {
  background: radial-gradient(circle, rgba(255, 190, 1, 0.04) 0%, transparent 70%);
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-glow-spotlight.blue {
  background: radial-gradient(circle, rgba(255, 143, 0, 0.02) 0%, transparent 70%);
  top: 60%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 90%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .opex-wrap {
    min-height: 240px !important;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.hero-label-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #FFFFFF 0%, #E6E6E6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.08em 0;
  margin-bottom: 24px;
}
.hero-title .accent {
  color: inherit;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 24px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(24, 21, 16, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hero-stat {
  flex: 1;
  padding: 16px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; max-width: 300px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 16px 24px; }
  .hero-stat:last-child { border-bottom: none; }
}

/* =============================================================
   PLATFORM PREVIEW
   ============================================================= */
.preview {
  position: relative;
  padding: 0 24px 72px;
  margin-top: 0;
}
.preview-mock {
  max-width: 1000px;
  margin: 0 auto;
  background: #1a1714;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03);
}
/* v2 — somente a imagem do dashboard, sem container */
.preview-dash-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  line-height: 0;
}
/* Linha de luz brilhante no topo da dash */
.preview-dash-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  box-shadow: 0 0 12px 2px var(--primary-glow), 0 0 32px 6px rgba(255, 190, 1, 0.25);
  z-index: 2;
  pointer-events: none;
  animation: dashGlow 3.5s ease-in-out infinite;
}
@keyframes dashGlow {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
/* Glow dourado estilo aurora vindo de tras do topo do dashboard (ref #FFBF02) */
.preview-dash-wrap::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%; top: 6%;
  transform: translate(-50%, -50%);
  width: 120%; height: 100%;
  background:
    radial-gradient(ellipse 58% 50% at 50% 40%,
      rgba(255, 191, 2, 0.60) 0%,
      rgba(255, 191, 2, 0.34) 20%,
      rgba(255, 191, 2, 0.14) 40%,
      rgba(255, 191, 2, 0.05) 58%,
      transparent 72%);
  filter: blur(75px);
  pointer-events: none;
  animation: dashAura 6.5s ease-in-out infinite;
}
@keyframes dashAura {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}
.preview-dash {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.preview-bar {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.preview-dots { display: flex; gap: 6px; }
.preview-dots span { width: 10px; height: 10px; border-radius: 50%; }
.preview-dots span:nth-child(1) { background: #FF5F57; }
.preview-dots span:nth-child(2) { background: #FEBC2E; }
.preview-dots span:nth-child(3) { background: #28C840; }
.preview-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: var(--r-sm);
}
.preview-chips {
  display: flex;
  gap: 6px;
}
.preview-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px 3px 3px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}
.preview-chip img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }
.preview-chip span { font-size: 0.6rem; color: var(--text-dim); }

.preview-body {
  position: relative;
  min-height: 320px;
  padding: 24px;
}
.preview-body-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, #2a2118 0%, #15110d 60%, #0e0b08 100%) center/cover;
  filter: blur(12px) brightness(0.12);
  transform: scale(1.15);
}
.preview-body-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}
.preview-chart-svg {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 280px;
}
.preview-line {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawL 3s ease-in-out forwards;
}
@keyframes drawL { to { stroke-dashoffset: 0; } }

/* Floating cards on preview */
.preview-card {
  position: absolute;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}
.preview-card:nth-child(1) { animation-delay: 2s; }
.preview-card:nth-child(2) { animation-delay: 3s; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.preview-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-glow);
  overflow: hidden;
}
.preview-avatar img { width: 100%; height: 100%; object-fit: cover; }
.preview-name { font-size: 0.65rem; font-weight: 600; color: #fff; }
.preview-profit {
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  width: fit-content;
}

@media (max-width: 768px) {
  .preview-chips { display: none; }
  .preview-body { min-height: 200px; }
}

/* =============================================================
   LIVE TRADING WIDGET
   ============================================================= */
.trade-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.tw {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.tw-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.tw-asset-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--primary), #FF8F00);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; font-family: var(--font-heading);
}
.tw-asset-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }
.tw-asset-type { font-size: 0.68rem; color: var(--text-dim); }
.tw-payout {
  background: var(--gold-dim);
  color: var(--gold-bright);
  padding: 3px 10px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.72rem;
  font-family: var(--font-heading);
}
.tw-prices { display: flex; gap: 20px; text-align: right; }
.tw-plabel { font-size: 0.6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.tw-pval { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }

/* Chart */
.tw-chart {
  background: #14110e;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding: 12px 0 0;
}
.tw-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,0.015);
  letter-spacing: 6px;
  text-transform: uppercase;
}
.tw-chart svg { width: 100%; height: 240px; display: block; }
.tw-chart .candle {
  transform-box: fill-box;
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0;
  animation: candleGrow 0.5s var(--ease) forwards;
  animation-play-state: paused;
}
.reveal.active .tw-chart .candle { animation-play-state: running; }
@keyframes candleGrow {
  to { transform: scaleY(1); opacity: 1; }
}
#currentCandleWick, #currentCandleBody, #priceLine, #pricePill {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.tw-chart .candle.candle-live {
  animation-name: candleGrow, candlePulse;
  animation-duration: 0.5s, 1.4s;
  animation-timing-function: var(--ease), ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards, none;
  animation-delay: 0.6s, 1.1s;
}
@keyframes candlePulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(239,68,68,0)); }
  50% { filter: drop-shadow(0 0 6px rgba(239,68,68,0.7)); }
}
.tw-times {
  display: flex; justify-content: space-between;
  padding: 6px 40px 6px 16px;
  font-size: 0.6rem; color: var(--text-dim);
  border-top: 1px solid rgba(255,255,255,0.02);
}

/* Controls */
.tw-controls { padding: 16px 20px; display: flex; flex-direction: column; gap: 16px; }

.tw-amount-row { display: flex; align-items: center; gap: 10px; }
.tw-stepper {
  display: flex;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  height: 42px;
  overflow: hidden;
}
.tw-stepper-btn {
  width: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.tw-stepper-btn:hover { background: rgba(255,255,255,0.05); color: #fff; }
.tw-stepper-btn svg { width: 16px; height: 16px; }
.tw-stepper-val {
  width: 85px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
}

.tw-chips { display: flex; gap: 6px; flex: 1; }
.tw-chip {
  flex: 1; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.tw-chip:hover, .tw-chip.active {
  background: var(--gold-dim);
  color: var(--gold-bright);
  border-color: var(--gold-border);
}

.tw-info-row {
  display: flex; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.tw-info-item { text-align: center; }
.tw-info-item .lbl { font-size: 0.58rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.tw-info-item .val { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; }
.tw-info-item .val.g { color: var(--green); }

.tw-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tw-btn-trade {
  padding: 14px;
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.tw-btn-trade svg { width: 20px; height: 20px; }
.tw-btn-buy { background: var(--green-dim); border: 1px solid rgba(34,197,94,0.25); color: #4ADE80; }
.tw-btn-sell { background: var(--red-dim); border: 1px solid rgba(239,68,68,0.25); color: #F87171; }
.tw-btn-trade:hover { filter: brightness(1.3); transform: translateY(-2px); }
.tw-btn-trade:disabled { opacity: 0.3; cursor: not-allowed; transform: none; filter: none; }

/* Active trade bar */
.tw-atb {
  display: none; align-items: center; justify-content: space-between;
  padding: 10px 14px; margin-top: 10px;
  border-radius: var(--r-md); position: relative; overflow: hidden;
}
.tw-atb.show { display: flex; }
.tw-atb-left { display: flex; align-items: center; gap: 8px; z-index: 2; }
.tw-atb-dot { width: 7px; height: 7px; border-radius: 50%; animation: blink 1.5s infinite; }
.tw-atb-text { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; }
.tw-atb-timer { font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; z-index: 2; }
.tw-atb-progress { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; border-radius: 0 0 var(--r-md) var(--r-md); transition: width 1s linear; }

/* Sidebar */
.trade-side { display: flex; flex-direction: column; gap: 16px; }
.ts-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px;
}
.ts-title {
  font-size: 0.65rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700; margin-bottom: 16px;
}
.ts-steps { display: flex; flex-direction: column; gap: 14px; }
.ts-step { display: flex; gap: 12px; align-items: center; }
.ts-step-n {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 800; color: #fff;
}
.ts-step-t { font-size: 0.85rem; color: var(--text-muted); }
	
.ts-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ts-stat {
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 12px;
  text-align: center;
}
.ts-stat-v { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--gold-bright); margin-bottom: 2px; }
.ts-stat-l { font-size: 0.65rem; color: var(--text-dim); }

.ts-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: #ffffff; color: #14110e;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  border-radius: var(--r-pill);
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ts-cta:hover { background: #f3f4f6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25); }

/* Toast */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: #111; border: 1px solid var(--border);
  padding: 12px 24px; border-radius: var(--r-pill);
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-ico { width: 18px; height: 18px; color: var(--green); }

@media (max-width: 992px) { .trade-layout { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .tw-btns { grid-template-columns: 1fr; }
  .tw-amount-row { flex-wrap: wrap; }
  .tw-chips { width: 100%; }
  .tw-prices { flex-direction: column; gap: 4px; }
}

/* =============================================================
   MERCADOS (Carousel Slider Edition)
   ============================================================= */
.market-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.market-carousel-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  display: flex;
  gap: 20px;
  padding: 10px 4px 24px;
}
.market-carousel-container::-webkit-scrollbar {
  display: none;
}

.market-carousel-track {
  display: flex;
  gap: 20px;
}

@keyframes marketFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.market-category-card {
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  animation: marketFloat 6s ease-in-out infinite;
}

.market-carousel-track > .market-category-card:nth-child(1) { animation-delay: 0s; }
.market-carousel-track > .market-category-card:nth-child(2) { animation-delay: 1.2s; }
.market-carousel-track > .market-category-card:nth-child(3) { animation-delay: 2.4s; }
.market-carousel-track > .market-category-card:nth-child(4) { animation-delay: 3.6s; }
.market-carousel-track > .market-category-card:nth-child(5) { animation-delay: 4.8s; }

.market-category-card:hover {
  animation: none !important;
  border-color: rgba(255, 190, 1, 0.3);
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(255, 190, 1, 0.06), 0 0 0 1px rgba(255, 190, 1, 0.12);
}

.mcc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mcc-category-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.mcc-date {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.mcc-chart-container {
  height: 110px;
  margin-bottom: 16px;
  position: relative;
}
.mcc-chart-container svg {
  width: 100%;
  height: 100%;
}

.mcc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(160, 176, 197, 0.06);
  background: rgba(255, 255, 255, 0.015);
  margin: 0 -24px 0;
  padding: 14px 24px;
}

.mcc-footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mcc-footer-col:last-child {
  text-align: right;
  align-items: flex-end;
}

.mcc-footer-sym-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mcc-footer-col:last-child .mcc-footer-sym-row {
  justify-content: flex-end;
}

.mcc-asset-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.mcc-asset-icon.fx { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.mcc-asset-icon.st { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.mcc-asset-icon.cr { background: linear-gradient(135deg, #d97706, #f59e0b); }
.mcc-asset-icon.in { background: linear-gradient(135deg, #059669, #34d399); }
.mcc-asset-icon.co { background: linear-gradient(135deg, #b45309, #f59e0b); }

.mcc-footer-sym {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 500;
}

.mcc-footer-vals {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mcc-footer-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.mcc-footer-pct {
  font-size: 0.72rem;
  font-weight: 600;
}
.mcc-footer-pct.up {
  color: var(--green);
}
.mcc-footer-pct.down {
  color: var(--red);
}

.mcc-footer-divider {
  width: 1px;
  height: 24px;
  background: rgba(160, 176, 197, 0.08);
  margin: 0 12px;
}

.market-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #14110e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.market-nav-btn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  background: #f3f4f6;
}
.market-nav-btn.prev {
  left: -22px;
}
.market-nav-btn.next {
  right: -22px;
}
.market-nav-btn svg {
  width: 18px;
  height: 18px;
}

.market-footer { text-align: center; margin-top: 28px; color: var(--text-dim); font-size: 0.85rem; }

@media (max-width: 991px) {
  .market-nav-btn {
    display: none;
  }
  .market-carousel-container {
    padding-bottom: 16px;
  }
}

/* =============================================================
   STEPS (Onboarding Bento Rows)
   ============================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.step-card:hover {
  border-color: rgba(255, 190, 1, 0.3);
  box-shadow: 0 20px 40px rgba(255, 190, 1, 0.06), 0 0 0 1px rgba(255, 190, 1, 0.12);
  transform: translateY(-6px);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 30%, rgba(255,255,255,0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.step-lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

/* =============================================================
   CTA
   ============================================================= */
.cta-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,190,1,0.12) 0%, rgba(251,146,60,0.03) 40%, transparent 60%);
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-bright), transparent);
  opacity: 0.4;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500; margin-bottom: 16px;
  position: relative; z-index: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, #A3A3A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-desc {
  color: var(--text-muted); font-size: 1rem;
  line-height: 1.7; max-width: 520px;
  margin: 0 auto 32px;
  position: relative; z-index: 1;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--gold-border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  font-size: 0.9rem; font-weight: 600; text-align: left;
  color: var(--text); transition: color 0.3s;
}
.faq-item.open .faq-q { color: var(--gold-bright); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold-bright); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-content { padding: 0 20px 18px; color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--bg);
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin: 16px 0; max-width: 300px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.2s;
}
.footer-social:hover { background: var(--gold-dim); color: var(--gold-bright); border-color: var(--gold-border); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col-title { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-bright); }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-disclaimer { font-size: 0.68rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 8px; }
.footer-copy { font-size: 0.72rem; color: var(--text-dim); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* VIP Crown Icon in Navbar */
.crown-icon {
  width: 14px;
  height: 14px;
  stroke: #ffbe01;
  fill: rgba(255, 190, 1, 0.15);
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  top: -1px;
}

