* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-brown: #f5c518;
  --dark-brown: #e0b000;
  --light-brown: #fff4b3;
  --light-beige: #161616;
  --accent-gold: #f5c518;
  --teal: #00c076;
  --loss-red: #ff4d4f;
  --dark-text: #ffffff;
  --light-text: #8b8b8b;
  --border-color: #2a2a2a;
  --bg-dark: #000000;
  --bg-card: #161616;
  --bg-section: #0a0a0a;
  --bg-panel: #111111;
  --on-gold-text: #111111;
  --pill-radius: 28px;
  --btn-solid-bg: #ffffff;
  --btn-solid-text: #111111;
  --btn-solid-hover: #f0f0f0;
  --btn-glass-bg: rgba(255, 255, 255, 0.07);
  --btn-glass-border: rgba(255, 255, 255, 0.16);
  --btn-glass-hover: rgba(255, 255, 255, 0.12);
  --btn-glass-text: rgba(255, 255, 255, 0.92);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-text);
  background: var(--bg-dark);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

/* Add OTF files under public/weex/font/Tomato_Grotesk/ and uncomment @font-face rules from WEEX/styles.css if you have the Tomato Grotesk license files. */

h1,
h2,
h3 {
  font-family: "TomatoGrotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

/* Utilities */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight {
  color: var(--primary-brown);
}

.highlight-italic {
  color: var(--primary-brown);
  font-style: italic;
  font-weight: 600;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.page-home .site-header--transparent,
.page-markets .site-header--transparent,
.page-copy-trading .site-header--transparent,
.page-staking .site-header--transparent,
.page-about .site-header--transparent {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.page-home .site-header--transparent.scrolled,
.page-markets .site-header--transparent.scrolled,
.page-copy-trading .site-header--transparent.scrolled,
.page-staking .site-header--transparent.scrolled,
.page-about .site-header--transparent.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.btn-pill {
  border-radius: var(--pill-radius) !important;
}

.nav-wrapper {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-brown);
  text-decoration: none;
}

.nav-logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-brown);
}

.nav-link.active {
  color: var(--primary-brown);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-nav-outline {
  padding: 10px 18px;
  border: 1px solid var(--btn-glass-border);
  color: var(--btn-glass-text);
  background: var(--btn-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-nav-outline:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--btn-glass-hover);
  color: #fff;
}

.btn-nav-primary {
  padding: 10px 22px;
  background: var(--btn-solid-bg);
  color: var(--btn-solid-text);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-nav-primary:hover {
  background: var(--btn-solid-hover);
  color: var(--btn-solid-text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Buttons — white primary + glass secondary */
.btn-primary {
  background: var(--btn-solid-bg);
  color: var(--btn-solid-text);
  border: 1px solid transparent;
  padding: 12px 30px;
  border-radius: var(--pill-radius);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--btn-solid-hover);
  color: var(--btn-solid-text);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.btn-secondary {
  background: var(--btn-glass-bg);
  color: var(--btn-glass-text);
  border: 1px solid var(--btn-glass-border);
  padding: 12px 30px;
  border-radius: var(--pill-radius);
  cursor: pointer;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: var(--btn-glass-hover);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

a.btn-primary,
a.btn-secondary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-footer {
  background: var(--btn-glass-bg);
  color: var(--btn-glass-text);
  border: 1px solid var(--btn-glass-border);
  padding: 8px 18px;
  border-radius: var(--pill-radius);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-footer:hover {
  background: var(--btn-glass-hover);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-sponsors {
  margin-top: 45px;
}

.hero-sponsors-label {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sponsor-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0.9;
  justify-content: space-between;
}

.sponsor-logos img,
.sponsor-marquee img {
  height: 32px;
  display: block;
  filter: grayscale(100%) brightness(2.5) contrast(0.8);
}

.sponsor-marquee {
  display: none;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: sponsorMarquee 18s linear infinite;
  opacity: 0.9;
}

@keyframes sponsorMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.phone-mockup {
  perspective: 1000px;
}

.phone-frame {
  border-radius: 40px;
  padding: 12px;
  transform: rotateY(-15deg);
  transition: transform 0.3s ease;
}

.phone-frame:hover {
  transform: rotateY(-10deg);
}

.phone-frame img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--light-text);
  line-height: 1.6;
}

/* Journey Section */
.journey {
  padding: 80px 0;
  background: var(--bg-dark);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.journey-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.journey-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.journey-card p {
  color: var(--light-text);
  font-size: 14px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: var(--bg-section);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.benefit-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefit-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.stat {
  background: var(--bg-card);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid var(--border-color);
}

/* Invest Goals Section */
.invest-goals {
  padding: 80px 0;
  background: var(--bg-section);
}

.goals-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.goals-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.goals-text p {
  color: var(--light-text);
  margin-bottom: 25px;
  line-height: 1.6;
}

.goals-list {
  list-style: none;
  margin-bottom: 25px;
}

.goals-list li {
  padding: 10px 0;
  color: var(--dark-text);
  font-weight: 500;
}

.link-arrow {
  color: var(--primary-brown);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-arrow:hover {
  transform: translateX(5px);
}

.goals-image img {
  width: 100%;
  max-width: 400px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Smart Earn Section */
.smart-earn {
  padding: 80px 0;
  background: var(--bg-dark);
  text-align: center;
}

.smart-earn h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.smart-earn > p {
  color: var(--light-text);
  margin-bottom: 50px;
}

.earn-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.earn-item {
  display: flex;
  gap: 15px;
  text-align: left;
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.check {
  color: var(--teal);
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.earn-item h4 {
  margin-bottom: 5px;
}

.earn-item p {
  color: var(--light-text);
  font-size: 14px;
}

.earn-image img {
  max-width: 300px;
  margin: 0 auto;
}

/* Copy Overview Section */
.copy-overview {
  padding: 90px 0;
  background: var(--bg-section);
}

.copy-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.copy-overview-intro h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.copy-overview-intro p {
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.copy-overview-subtext {
  margin-top: -5px;
}

.copy-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-brown);
  font-weight: 600;
  margin-bottom: 15px;
}

.copy-overview-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}


.copy-overview-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.copy-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.copy-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.copy-feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.copy-feature-card p {
  color: var(--light-text);
  line-height: 1.6;
}

/* Statistics Section */
.statistics {
  padding: 90px 0;
  background: var(--bg-dark);
}

.stats-container {
  max-width: 900px;
}

.stats-heading {
  text-align: center;
  margin-bottom: 60px;
}

.stats-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-emphasis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stat-figure {
  font-size: 56px;
  font-weight: 700;
  font-family: "TomatoGrotesk", sans-serif;
  color: var(--dark-text);
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: 48px;
  font-weight: 700;
  font-family: "TomatoGrotesk", sans-serif;
  color: var(--primary-brown);
}

.stat-flag-img {
  width: 36px;
  height: 24px;
  object-fit: contain;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-text);
  font-family: "Segoe UI", sans-serif;
}

/* Copy Steps Section */
.copy-steps {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-brown);
  color: var(--on-gold-text);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--light-text);
  line-height: 1.6;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
  position: relative;
}

.faq-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.faq-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.02em;
}

.faq-accordion {
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: transparent;
  color: var(--dark-text);
  font-size: 16px;
  font-weight: 500;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-toggle:focus-visible {
  outline: 2px solid var(--primary-brown);
  outline-offset: 4px;
}

.faq-item.open .faq-toggle {
  color: var(--dark-text);
}

.faq-question {
  flex: 1;
}

.faq-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(225deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--light-text);
  line-height: 1.7;
  text-align: left;
}

.faq-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--pill-radius);
  border: 1px solid var(--btn-glass-border);
  color: var(--btn-glass-text);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
  background: var(--btn-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-view-all:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: var(--btn-glass-hover);
}

/* Build Future Section */
.build-future {
  padding: 80px 0;
  background: var(--bg-dark);
}

.build-future h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.build-form {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.build-form label {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
}

.range-slider {
  width: 100%;
  margin-bottom: 20px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #333 0%, #333 100%);
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-brown);
  cursor: pointer;
  transition: background 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  background: var(--dark-brown);
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-brown);
  cursor: pointer;
  border: none;
}

.range-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

#rangeValue {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-brown);
}

.timeline {
  margin-top: 30px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-brown);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.timeline-item strong {
  display: block;
}

.timeline-item p {
  color: var(--light-text);
  font-size: 14px;
}

.build-chart {
  position: relative;
}

.chart-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.chart-info {
  text-align: center;
  margin-top: 20px;
}

.chart-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-brown);
}

.chart-info p {
  color: var(--light-text);
}

/* Explore Section */
.explore {
  padding: 80px 0;
  background: var(--bg-section);
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.explore-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.explore-content p {
  color: var(--light-text);
  margin-bottom: 30px;
  line-height: 1.6;
}

.explore-image img,
.explore-video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--bg-dark);
}

.testimonials h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-card p {
  color: var(--light-text);
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-size: 16px;
  color: var(--primary-brown);
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-dark) 100%);
  text-align: center;
}

.newsletter h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.newsletter > p {
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: var(--bg-card);
  color: var(--dark-text);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-brown);
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #999;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
  padding: 140px 0 100px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.about-hero-content p {
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 540px;
}

.about-hero-actions {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}

.about-hero-actions .btn-primary,
.about-hero-actions .btn-secondary {
  width: 100%;
}

.about-hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.about-metric-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.about-metric-card span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 8px;
}

.about-metric-card p {
  color: var(--light-text);
}

.about-story {
  padding: 100px 0;
  background: var(--bg-dark);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-story-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-story-text p {
  color: var(--light-text);
  margin-bottom: 25px;
  line-height: 1.7;
}

.about-story-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.about-story-highlight {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.about-story-highlight h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.about-story-highlight p {
  color: var(--light-text);
  font-size: 14px;
}

.about-story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-pillars {
  padding: 100px 0;
  background: var(--bg-section);
}

.about-pillars .section-header {
  margin-bottom: 40px;
  text-align: left;
  max-width: 720px;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.about-pillar-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-pillar-card h3 {
  font-size: 22px;
}

.about-pillar-card p {
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.6;
}

.about-values {
  padding: 90px 0;
  background: var(--bg-dark);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-value-card {
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 212, 172, 0.15), transparent);
  opacity: 0.7;
}

.about-value-card h4 {
  position: relative;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.about-value-card p {
  position: relative;
  color: var(--light-text);
  line-height: 1.6;
}

.about-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-dark) 100%);
  text-align: center;
}

.about-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-cta p {
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .cta-actions {
  display: grid;
  gap: 16px;
  max-width: 360px;
  margin: 0 auto;
}

.about-cta .cta-actions .btn-primary,
.about-cta .cta-actions .btn-secondary {
  width: 100%;
}

/* WEEX-style hero */
.page-home {
  padding-top: 0;
}

.page-markets {
  padding-top: 0;
}

.page-copy-trading {
  padding-top: 0;
}

.wx-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 0 56px;
  overflow: hidden;
}

.wx-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000000;
}

.wx-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.wx-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.02) 45%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.wx-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.wx-hero-main {
  min-width: 0;
  max-width: 720px;
}

.wx-hero-title {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 28px;
  max-width: 720px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.wx-signup-bar {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 440px;
  background: rgba(22, 22, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pill-radius);
  padding: 6px 6px 6px 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.wx-signup-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--dark-text);
  font-size: 15px;
  outline: none;
  min-width: 0;
}

.wx-signup-input::placeholder {
  color: var(--light-text);
}

.wx-signup-btn {
  display: inline-block;
  background: var(--btn-solid-bg);
  color: var(--btn-solid-text);
  border: none;
  padding: 12px 28px;
  border-radius: var(--pill-radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.wx-signup-btn:hover {
  background: var(--btn-solid-hover);
  transform: translateY(-1px);
}

.wx-hero-partners {
  margin-top: 32px;
}

.wx-hero-partners-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wx-hero-partners-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.wx-hero-partners-logos img,
.wx-hero-partners-marquee img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.85;
  filter: grayscale(100%) brightness(2.2) contrast(0.85);
}

.wx-hero-partners-marquee {
  display: none;
  overflow: hidden;
  max-width: 100%;
}

.wx-hero-partners-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: wxPartnerMarquee 22s linear infinite;
}

@keyframes wxPartnerMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.wx-hero-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(22, 22, 22, 0.75);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 12px 18px;
  text-decoration: none;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}

.wx-hero-promo:hover {
  border-color: rgba(245, 197, 24, 0.4);
}

.wx-hero-promo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.wx-hero-promo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* WEEX-style market widgets */
.wx-markets {
  padding: 0 0 60px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.wx-markets-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
}

.wx-market-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
}

.wx-market-panel--main {
  padding-bottom: 12px;
}

.wx-market-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wx-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.wx-tab {
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.wx-tab.active {
  color: var(--dark-text);
}

.wx-tab.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-brown);
}

.wx-subtabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.wx-subtab {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--light-text);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--pill-radius);
  cursor: pointer;
}

.wx-subtab.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--dark-text);
  border-color: rgba(255, 255, 255, 0.15);
}

.wx-market-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wx-market-row:last-child {
  border-bottom: none;
}

.wx-market-pair {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wx-market-pair strong {
  display: block;
  font-size: 14px;
}

.wx-coin-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.wx-coin-img.sm {
  width: 24px;
  height: 24px;
}

.wx-market-empty {
  padding: 24px 0;
  text-align: center;
  color: var(--light-text);
  font-size: 14px;
}

.wx-coin-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.15);
  color: var(--primary-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.wx-coin-icon.sm {
  width: 24px;
  height: 24px;
  font-size: 11px;
}

.wx-leverage {
  font-size: 11px;
  color: var(--light-text);
  margin-left: 6px;
}

.wx-hot-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--on-gold-text);
  background: var(--primary-brown);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.wx-market-price {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  min-width: 90px;
}

.wx-market-change {
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  min-width: 72px;
}

.wx-market-change.up {
  color: var(--teal);
}

.wx-market-change.down {
  color: var(--loss-red);
}

.wx-view-more {
  display: block;
  text-align: center;
  padding: 16px 0 4px;
  color: var(--light-text);
  text-decoration: none;
  font-size: 14px;
  border-top: 1px solid var(--border-color);
  margin-top: 8px;
}

.wx-view-more:hover {
  color: var(--dark-text);
}

.wx-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.wx-panel-head h3 {
  font-size: 16px;
}

.wx-mini-tabs {
  display: flex;
  gap: 4px;
}

.wx-mini-tab {
  background: transparent;
  border: none;
  color: var(--light-text);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
}

.wx-mini-tab.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--dark-text);
}

.wx-trending-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wx-trending-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.wx-trending-item .wx-market-change {
  margin-left: auto;
}

.wx-listing-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wx-listing-info span {
  font-size: 12px;
  color: var(--light-text);
}

.hero-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-brown);
  font-weight: 600;
  margin-bottom: 12px;
}

/* Market ticker */
.market-ticker {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  padding: 14px 0;
}

.market-ticker-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marketTicker 40s linear infinite;
}

.market-ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 14px;
}

.market-pair {
  font-weight: 600;
  color: var(--dark-text);
}

.market-price {
  color: var(--light-text);
}

.market-change {
  font-weight: 600;
  font-size: 13px;
}

.market-change.up {
  color: var(--teal);
}

.market-change.down {
  color: #ef4444;
}

@keyframes marketTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Products grid */
.products {
  padding: 90px 0;
  background: var(--bg-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 185, 10, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.product-icon-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin-bottom: 4px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.product-card:hover .product-icon-img {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 12px 20px rgba(245, 197, 24, 0.15));
}

.product-card h3 {
  font-size: 20px;
}

.product-card p {
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.product-link {
  color: var(--primary-brown);
  font-weight: 600;
  font-size: 14px;
}

/* Why choose */
.why-choose {
  padding: 90px 0;
  background: var(--bg-section);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-choose-content > p {
  color: var(--light-text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.why-choose-list {
  list-style: none;
  margin-bottom: 30px;
}

.why-choose-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
}

.why-choose-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.why-choose-video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Traders showcase */
.traders-showcase {
  padding: 60px 0 40px;
  background: var(--bg-dark);
  overflow: hidden;
}

.traders-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.traders-showcase-header h2 {
  font-size: 28px;
}

.traders-marquee {
  overflow: hidden;
  width: 100%;
}

.traders-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tradersMarquee 30s linear infinite;
}

.traders-marquee-track:hover {
  animation-play-state: paused;
}

.trader-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trader-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-brown);
  color: var(--on-gold-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.trader-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trader-roi {
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
}

.trader-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--light-text);
}

.trader-risk {
  background: rgba(240, 185, 10, 0.15);
  color: var(--primary-brown);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

@keyframes tradersMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Earn section */
.earn-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.earn-spotlight {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.earn-spotlight-alt {
  border-color: rgba(77, 212, 172, 0.25);
}

.earn-spotlight-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-brown);
  background: rgba(240, 185, 10, 0.12);
  padding: 6px 12px;
  border-radius: 6px;
}

.earn-spotlight-alt .earn-spotlight-badge {
  color: var(--teal);
  background: rgba(77, 212, 172, 0.12);
}

.earn-spotlight h3 {
  font-size: 24px;
}

.earn-spotlight p {
  color: var(--light-text);
  line-height: 1.6;
}

.earn-spotlight-list {
  list-style: none;
  margin: 8px 0;
}

.earn-spotlight-list li {
  padding: 6px 0;
  color: var(--dark-text);
  font-size: 14px;
}

.earn-spotlight-list li::before {
  content: "✓ ";
  color: var(--teal);
  font-weight: bold;
}

.earn-image-row {
  text-align: center;
}

.earn-image-row img {
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
}

/* CTA banner */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-banner-text p {
  color: var(--light-text);
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-sponsors {
    margin-top: 30px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .hero-sponsors-label {
    margin-bottom: 12px;
  }

  .sponsor-logos {
    display: none;
  }

  .sponsor-marquee {
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }

  .sponsor-marquee img {
    height: 28px;
  }

  .marquee-track {
    gap: 20px;
  }

  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .nav-brand {
    font-size: 20px;
  }

  .nav-logo {
    height: 32px;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 110;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 24px;
    padding: 24px 24px 32px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-links {
    margin-top: 8px;
  }

  .mobile-nav-cta .btn-nav-outline:hover {
    background: rgba(204, 170, 0, 0.08);
  }

  .wx-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 0 32px;
  }

  .wx-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wx-markets-grid {
    grid-template-columns: 1fr;
  }

  .wx-signup-bar {
    max-width: 100%;
    width: 100%;
  }

  .wx-hero-partners {
    margin-top: 24px;
    width: 100%;
  }

  .wx-hero-partners-logos {
    display: none;
  }

  .wx-hero-partners-marquee {
    display: block;
  }

  .why-choose-grid,
  .earn-grid,
  .cta-banner-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .why-choose-list li {
    justify-content: center;
  }

  .cta-banner-actions {
    justify-content: center;
    width: 100%;
  }

  .traders-showcase-header {
    flex-direction: column;
    text-align: center;
  }

  .benefits-grid,
  .goals-content,
  .build-grid,
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .copy-overview-grid {
    grid-template-columns: 1fr;
  }

  .copy-overview-intro h2 {
    font-size: 32px;
  }

  .copy-overview-features {
    grid-template-columns: 1fr;
  }

  .copy-overview-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .steps-grid,
  .faq-accordion {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    font-size: 32px;
  }

  .faq-toggle {
    padding: 20px 22px;
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-bottom {
    justify-content: center;
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .stats-grid {
    gap: 24px;
    max-width: 600px;
  }

  .stats-heading h2 {
    font-size: 32px;
  }

  .stat-figure {
    font-size: 48px;
  }

  .stat-suffix {
    font-size: 40px;
  }

  .about-hero {
    padding: 180px 0 90px;
  }

  .about-hero-content h1 {
    font-size: 32px;
  }

  .about-hero-grid,
  .about-story-grid {
    gap: 40px;
  }

  .about-hero-metrics,
  .about-story-highlights,
  .about-pillars-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-actions,
  .about-cta .cta-actions {
    max-width: 100%;
  }
}

@media (min-width: 620px) {
  .wx-hero-title {
    white-space: nowrap;
  }
}

@media (max-width: 540px) {
  .wx-hero-main {
    width: 100%;
    max-width: 100%;
  }

  .wx-hero-title {
    white-space: normal;
    font-size: clamp(26px, 6.2vw, 34px);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .sponsor-marquee img {
    height: 24px;
  }

  .marquee-track {
    gap: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .nav-wrapper {
    padding-right: 44px;
  }

  .nav-brand {
    font-size: 19px;
  }

  .nav-toggle {
    right: 0;
  }

  .nav-logo {
    height: 30px;
  }

  .mobile-menu {
    padding: 20px 20px 28px;
  }

  .mobile-nav-links .nav-link {
    font-size: 16px;
  }

  .about-hero {
    padding: 190px 0 80px;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

  .about-story-text h2,
  .about-cta h2 {
    font-size: 26px;
  }

  .stats-heading h2 {
    font-size: 28px;
  }

  .stat-figure {
    font-size: 40px;
  }

  .stat-suffix {
    font-size: 32px;
  }

  .stat-flag-img {
    width: 28px;
    height: 18px;
  }

  .copy-overview-intro h2 {
    font-size: 28px;
  }

  .copy-overview-actions {
    gap: 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    font-size: 28px;
  }

  .faq-toggle {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
