/* ==========================================================================
   FX ARENA — Landing Page Styles (Forex Theme)
   ========================================================================== */

/* Header / Nav Styling — Fixed, non-overlapping */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--header-bg, #0b0e14);
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(10px);
  gap: 12px;
  flex-wrap: nowrap;
  min-height: 60px;
  box-sizing: border-box;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--highlight-color, #00e6a8), var(--primary-blue, #007bff));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 16px;
  box-shadow: 0 0 12px rgba(0, 230, 168, 0.3);
  flex-shrink: 0;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-text .name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-color, #ffffff);
  line-height: 1.1;
  white-space: nowrap;
}

.nav-logo .logo-text .tagline {
  font-size: 9px;
  font-weight: 600;
  color: var(--highlight-color, #00e6a8);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav-links a {
  color: var(--text-dim, #9CA3AF);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--highlight-color, #00e6a8);
  background: rgba(0, 230, 168, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-right .btn,
.nav-right .btn-outline {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-right > div {
  flex-shrink: 0;
}

.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color, #ffffff);
  cursor: pointer;
}

.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* Hero Section */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 230, 168, 0.12), rgba(0, 123, 255, 0.12));
  border: 1px solid var(--border-highlight, rgba(0, 230, 168, 0.3));
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--highlight-color, #00e6a8);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 230, 168, 0.1);
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-color, #ffffff);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-title .highlight-accent {
  color: var(--highlight-color, #00e6a8);
  background: linear-gradient(135deg, #00e6a8, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-dim, #9CA3AF);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--highlight-color, #00e6a8), var(--highlight-dark, #00b377));
  color: #050b14;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 230, 168, 0.35);
  transition: all 0.2s ease;
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 230, 168, 0.5);
  color: #000000;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-color, #ffffff);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.2));
  transition: all 0.2s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-color, #ffffff);
  color: #ffffff;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim, #9CA3AF);
}

.trust-check i {
  color: var(--highlight-color, #00e6a8);
}

/* Hero Visual / Forex Terminal Visual */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
}

.terminal-card {
  background: var(--bg-card, #171d2b);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.terminal-pair {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pair-flags {
  font-size: 18px;
}

.pair-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color, #ffffff);
}

.pair-timeframes {
  display: flex;
  gap: 4px;
}

.tf-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-dim, #9CA3AF);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.tf-btn.active {
  background: var(--highlight-color, #00e6a8);
  color: #000000;
}

.terminal-chart-area {
  height: 240px;
  width: 100%;
  position: relative;
}

.floating-rates-card {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-highlight, rgba(0, 230, 168, 0.3));
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 220px;
  z-index: 10;
}

.floating-rates-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--highlight-color, #00e6a8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.rate-item:last-child {
  margin-bottom: 0;
}

.rate-pair {
  font-weight: 600;
  color: var(--text-color, #ffffff);
}

.rate-val {
  font-family: var(--font-mono, monospace);
  color: var(--text-color, #ffffff);
  font-weight: 500;
}

.rate-badge-up {
  color: var(--up-color, #00cc44);
  font-weight: 700;
  font-size: 11px;
}

.rate-badge-down {
  color: var(--down-color, #ff3333);
  font-weight: 700;
  font-size: 11px;
}

/* Stats Bar */
.stats-section {
  max-width: 1200px;
  margin: 20px auto 60px;
  padding: 0 24px;
}

.stats-card-row {
  background: var(--bg-card, #171d2b);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 18px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  padding-right: 15px;
}

.stat-item:nth-child(4) {
  border-right: none;
}

.stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--highlight-color, #00e6a8);
  font-family: var(--font-mono, monospace);
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim, #9CA3AF);
  margin-top: 4px;
  font-weight: 500;
}

.regulated-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 168, 0.1);
  border: 1px solid var(--border-highlight, rgba(0, 230, 168, 0.3));
  padding: 10px 16px;
  border-radius: 30px;
  color: var(--highlight-color, #00e6a8);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* Section Header Commons */
.section-container {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 24px;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.eyebrow-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--highlight-color, #00e6a8);
  margin-bottom: 8px;
  display: block;
}

.section-main-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-color, #ffffff);
  margin-bottom: 10px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-dim, #9CA3AF);
  line-height: 1.6;
}

/* Features Grid (Why Choose Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card, #171d2b);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight, rgba(0, 230, 168, 0.3));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 230, 168, 0.12);
  color: var(--highlight-color, #00e6a8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card:nth-child(2) .feature-icon-circle {
  background: rgba(0, 123, 255, 0.15);
  color: #38bdf8;
}

.feature-card:nth-child(3) .feature-icon-circle {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color, #ffffff);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-dim, #9CA3AF);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--highlight-color, #00e6a8);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.feature-link:hover {
  gap: 10px;
}

/* Account Banner Card */
.account-banner-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(23, 29, 43, 0.95));
  border: 1px solid var(--border-highlight, rgba(0, 230, 168, 0.25));
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.account-banner-content {
  max-width: 620px;
  z-index: 2;
}

.account-banner-graphic {
  position: relative;
  z-index: 2;
}

/* Markets Grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.market-pair-card {
  background: var(--bg-card, #171d2b);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 14px;
  padding: 20px;
  transition: all 0.25s ease;
}

.market-pair-card:hover {
  border-color: var(--border-highlight, rgba(0, 230, 168, 0.3));
  transform: translateY(-2px);
}

.market-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.market-pair-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color, #ffffff);
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-rate-val {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-mono, monospace);
  color: var(--text-color, #ffffff);
}

.market-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.06));
}

.market-spread {
  font-size: 12px;
  color: var(--text-dim, #9CA3AF);
}

/* Packages Grid Override for Forex */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.package-card {
  background: var(--bg-card, #171d2b);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.package-card:hover {
  border-color: var(--highlight-color, #00e6a8);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 230, 168, 0.15);
}

.pkg-icon-bg {
  position: absolute;
  right: -15px;
  bottom: -15px;
  font-size: 110px;
  opacity: 0.04;
  color: #ffffff;
  pointer-events: none;
}

.pkg-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pkg-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 230, 168, 0.15);
  color: var(--highlight-color, #00e6a8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pkg-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-color, #ffffff);
}

.pkg-symbol {
  font-size: 12px;
  color: var(--text-dim, #9CA3AF);
  font-weight: 500;
}

.pkg-tagline {
  font-size: 12px;
  color: var(--text-dim, #9CA3AF);
  font-style: italic;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border-left: 2px solid var(--highlight-color, #00e6a8);
  line-height: 1.4;
}

.start-here .min-usd {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim, #9CA3AF);
}

.start-here {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-color, rgba(255, 255, 255, 0.12));
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  margin-bottom: 16px;
}

.min-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--highlight-color, #00e6a8);
  font-family: var(--font-mono, monospace);
}

.min-label {
  font-size: 11px;
  color: var(--text-dim, #9CA3AF);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.earn-line {
  font-size: 13px;
  font-weight: 700;
  color: var(--up-color, #00cc44);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 12px;
}

.pkg-stat-label {
  color: var(--text-dim, #9CA3AF);
}

.pkg-stat-value {
  font-weight: 700;
  color: var(--text-color, #ffffff);
  margin-top: 2px;
}

.pkg-stat-value.green {
  color: var(--highlight-color, #00e6a8);
}

.start-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--primary-blue, #007bff), var(--primary-blue-dark, #0056b3));
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.start-btn:hover {
  opacity: 0.95;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Final CTA Section */
.final-cta-card {
  background: linear-gradient(135deg, rgba(0, 230, 168, 0.15), rgba(0, 123, 255, 0.2));
  border: 1px solid var(--border-highlight, rgba(0, 230, 168, 0.35));
  border-radius: 22px;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.final-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--highlight-color, #00e6a8);
  color: #050b14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  box-shadow: 0 0 25px rgba(0, 230, 168, 0.5);
}

/* Footer Trust Strip & Footer */
.trust-strip {
  border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  background: rgba(11, 14, 20, 0.6);
  padding: 18px 24px;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim, #9CA3AF);
}

.trust-strip-item i {
  color: var(--highlight-color, #00e6a8);
  font-size: 16px;
}

/* Light Mode Overrides */
body.light-mode {
  background-color: #f0f2f5;
  color: #111827;
}

body.light-mode .top-nav {
  background: #ffffff;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .nav-logo .logo-text .name {
  color: #111827;
}

body.light-mode .nav-links a {
  color: #4b5563;
}

body.light-mode .country-pill, body.light-mode .theme-toggle-btn {
  background: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.1);
  color: #111827;
}

body.light-mode .hero-title {
  color: #111827;
}

body.light-mode .hero-subtitle {
  color: #4b5563;
}

body.light-mode .btn-hero-outline {
  color: #111827;
  border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .btn-hero-outline:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.light-mode .terminal-card,
body.light-mode .stats-card-row,
body.light-mode .feature-card,
body.light-mode .market-pair-card,
body.light-mode .package-card,
body.light-mode .testimonial-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.light-mode .feature-title,
body.light-mode .section-main-title,
body.light-mode .pair-title,
body.light-mode .market-pair-name,
body.light-mode .pkg-name,
body.light-mode .stat-num {
  color: #111827;
}

body.light-mode .feature-text,
body.light-mode .section-desc,
body.light-mode .stat-label,
body.light-mode .trust-check,
body.light-mode .market-spread,
body.light-mode .pkg-stat-label {
  color: #4b5563;
}

body.light-mode .floating-rates-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 168, 84, 0.3);
}

body.light-mode .rate-pair, body.light-mode .rate-val {
  color: #111827;
}

body.light-mode .account-banner-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-color: rgba(0, 168, 84, 0.25);
}

body.light-mode .final-cta-card {
  background: linear-gradient(135deg, rgba(0, 168, 84, 0.08), rgba(0, 123, 255, 0.12));
  border-color: rgba(0, 168, 84, 0.3);
}

body.light-mode .trust-strip {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode site-footer, body.light-mode footer {
  background: #ffffff;
  border-top-color: rgba(0, 0, 0, 0.08);
  color: #4b5563;
}


/* ===== Homepage Nav Redesign ===== */
.nav-left-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-color, #fff);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Sliding Side Menu */
.landing-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.landing-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.landing-slide-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: var(--header-bg, #0b0e14);
  border-right: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.landing-slide-menu.open {
  left: 0;
}

.landing-menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}
.landing-menu-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  color: var(--text-color, #fff);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.landing-menu-close:hover {
  background: rgba(255, 60, 60, 0.2);
  color: #ff6b6b;
}
.landing-menu-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color, #fff);
}

.landing-menu-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
.landing-menu-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text-dim, #9CA3AF);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.landing-menu-list li a:hover {
  background: rgba(0, 230, 168, 0.08);
  color: var(--highlight-color, #00e6a8);
  border-left-color: var(--highlight-color, #00e6a8);
}
.landing-menu-list li a i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

/* Light mode adjustments for slide menu */
body.light-mode .landing-slide-menu {
  background: #ffffff;
  border-right-color: rgba(0, 0, 0, 0.08);
}
body.light-mode .landing-menu-close {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}
body.light-mode .nav-hamburger {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}
body.light-mode .nav-hamburger span {
  background: #1a1a1a;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group, .hero-trust-row {
    justify-content: center;
  }

  .stats-card-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    padding-bottom: 15px;
    padding-right: 0;
  }

  .stat-item:nth-child(3), .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .regulated-badge {
    grid-column: span 2;
    justify-content: center;
  }

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

  .account-banner-card {
    flex-direction: column;
    text-align: center;
  }

  .floating-rates-card {
    position: static;
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-left-area {
    gap: 8px;
  }
  
  .nav-logo .logo-text .tagline {
    display: none;
  }

  .nav-right .balance-pill {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .top-nav {
    padding: 8px 14px;
  }
  
  .nav-logo .logo-text .name {
    font-size: 14px;
  }
  
  .nav-right {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .top-nav {
    padding: 10px 16px;
  }

  .nav-links {
    display: none;
  }

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

  .btn-hero-primary, .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

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

  .regulated-badge {
    grid-column: span 1;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REFERENCE-IMAGE GRADIENT LAYER (v3.3)
   Palette extracted from the supplied gradient UI/UX landing design:
   near-black charcoal surfaces (#12141a / #1a1d20), soft sage-green accent
   (#97ca98), muted olive (#65756a), neutral gray (#9ca3ad).
   Appended last so it overrides the older neon-mint defaults above.
   ═══════════════════════════════════════════════════════════════════════════ */

body {
  background:
    radial-gradient(1100px 520px at 12% -8%, rgba(151, 202, 152, 0.10), transparent 60%),
    radial-gradient(900px 600px at 95% 4%, rgba(101, 117, 106, 0.10), transparent 55%),
    linear-gradient(180deg, #12141a 0%, #101216 55%, #0d0f13 100%);
}

/* Hero: soft sage glow behind the headline + terminal */
.hero-container {
  position: relative;
}
.hero-container::before {
  content: "";
  position: absolute;
  inset: -40px -20px auto -20px;
  height: 75%;
  background:
    radial-gradient(620px 300px at 22% 40%, rgba(151, 202, 152, 0.13), transparent 70%),
    radial-gradient(520px 320px at 88% 30%, rgba(101, 117, 106, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-container > * { position: relative; z-index: 1; }

/* Pill badge: sage wash instead of neon */
.hero-pill-badge {
  background: linear-gradient(135deg, rgba(151, 202, 152, 0.14), rgba(101, 117, 106, 0.10));
  border-color: rgba(151, 202, 152, 0.32);
  color: #b9d8ba;
  box-shadow: 0 0 18px rgba(151, 202, 152, 0.12);
}

/* Headline accent: sage→mint gradient text */
.hero-title .highlight-accent {
  background: linear-gradient(120deg, #97ca98 10%, #6fcf9f 60%, #38b98a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Primary CTA: muted sage gradient, calm glow */
.btn-hero-primary {
  background: linear-gradient(135deg, #9ed3a0 0%, #5fbb85 55%, #3f9e6f 100%);
  color: #0b1a12;
  box-shadow: 0 6px 24px rgba(122, 186, 132, 0.28);
}
.btn-hero-primary:hover {
  box-shadow: 0 8px 30px rgba(122, 186, 132, 0.42);
  transform: translateY(-1px);
}

/* Outline CTA: sage border wash */
.btn-hero-outline {
  border: 1px solid rgba(151, 202, 152, 0.35);
  background: linear-gradient(135deg, rgba(151, 202, 152, 0.06), rgba(101, 117, 106, 0.05));
  color: #c9d8c9;
}

/* Trust ticks + eyebrow labels: sage tone */
.trust-check, .eyebrow-label { color: #9dbf9e; }
.eyebrow-label { letter-spacing: 1.5px; }

/* Feature icon circles: olive-sage gradient */
.feature-icon-circle {
  background: linear-gradient(135deg, rgba(151, 202, 152, 0.16), rgba(101, 117, 106, 0.12));
  border: 1px solid rgba(151, 202, 152, 0.28);
  color: #b9d8ba;
}

/* Terminal card: charcoal panel with sage edge glow */
.terminal-card {
  border: 1px solid rgba(151, 202, 152, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(151, 202, 152, 0.07);
}

/* Market cards + package cards: charcoal, sage hover halo */
.market-pair-card, .package-card, .feature-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.market-pair-card:hover, .package-card:hover, .feature-card:hover {
  border-color: rgba(151, 202, 152, 0.35);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(151, 202, 152, 0.08);
  transform: translateY(-2px);
}

/* Account banner: deep charcoal with sage sweep */
.account-banner-card {
  background:
    radial-gradient(600px 260px at 85% 20%, rgba(151, 202, 152, 0.14), transparent 65%),
    linear-gradient(135deg, #171b21 0%, #12161b 60%, #10141a 100%);
  border: 1px solid rgba(151, 202, 152, 0.14);
}

/* Stats bar */
.stats-section {
  background: linear-gradient(180deg, rgba(151, 202, 152, 0.05), transparent 70%);
}
.stat-num { color: #ffffff; }
.regulated-badge {
  border: 1px solid rgba(151, 202, 152, 0.3);
  color: #b9d8ba;
  background: rgba(151, 202, 152, 0.08);
}

/* Light mode: keep the sage language but on cream */
body.light-mode,
[data-theme="light"] body {
  background:
    radial-gradient(1100px 520px at 12% -8%, rgba(151, 202, 152, 0.18), transparent 60%),
    linear-gradient(180deg, #f7f8f5 0%, #f2f4ef 60%, #eef1ea 100%);
}
[data-theme="light"] .hero-title .highlight-accent,
body.light-mode .hero-title .highlight-accent {
  background: linear-gradient(120deg, #4e8c53 0%, #3f9e6f 60%, #2f7d58 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .hero-pill-badge,
body.light-mode .hero-pill-badge {
  background: rgba(151, 202, 152, 0.22);
  border-color: rgba(78, 140, 83, 0.35);
  color: #2f7d58;
}
[data-theme="light"] .btn-hero-outline,
body.light-mode .btn-hero-outline {
  border-color: rgba(78, 140, 83, 0.4);
  background: rgba(151, 202, 152, 0.12);
  color: #2f7d58;
}
