/* ==========================================================================
   BTreX Landing Page — Premium Minimalist Stylesheet
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
  --bg-dark: #000000;
  --bg-card: rgba(13, 15, 23, 0.45);
  --bg-card-hover: rgba(20, 24, 35, 0.65);
  --border-color: rgba(255, 255, 255, 0.05);
  --border-color-hover: rgba(255, 255, 255, 0.1);
  
  /* Color Accents (Matching Logo elements) */
  --blue-electric: #2563eb;
  --blue-bright: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.15);
  
  --gold-primary: #e2b714;
  --gold-bright: #fbbf24;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  
  /* Typography & Layout */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Outfit', var(--font-sans);
  --font-code: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --max-width: 1200px;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--bg-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.highlight-blue { color: var(--blue-bright); }
.highlight-gold { color: var(--gold-primary); }
.font-bold { font-weight: 700; }
.font-code { font-family: var(--font-code); }
.text-white { color: #ffffff !important; }
.text-green { color: #10b981 !important; }
.text-red { color: #ef4444 !important; }
.text-gold { color: var(--gold-primary) !important; }
.text-blue { color: var(--blue-bright) !important; }

/* Extremely Subtle Ambient Light */
.ambient-light {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 800px;
  background: 
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(226, 183, 20, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Live Market Ticker */
.market-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  z-index: 105;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-wrapper {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 35px;
  font-family: var(--font-code);
  font-size: 11px;
}

.ticker-item .pair {
  color: var(--text-secondary);
  font-weight: 500;
}

.ticker-item .price {
  color: #ffffff;
}

.ticker-item .change {
  font-size: 10px;
  font-weight: 600;
}

.ticker-item .change.positive { color: #10b981; }
.ticker-item .change.negative { color: #ef4444; }

@keyframes tickerScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Clean Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Premium Minimalist Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.2px;
  white-space: nowrap; /* Prevent internal wrapping of button text */
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12.5px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 14px;
}

/* S-Tier Solid Primary Button */
.btn-primary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.btn-primary:hover {
  background: #f1f5f9;
  border-color: #f1f5f9;
  transform: translateY(-1px);
}

/* S-Tier Minimalist Outline Button */
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.icon-arrow, .icon-tg {
  transition: transform 0.2s ease;
}

.btn:hover .icon-arrow {
  transform: translateX(3px);
}

.btn:hover .icon-tg {
  transform: scale(1.05);
}

/* Navbar Brand & Header */
.main-header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
  padding: 8px 0;
}

.main-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 4px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: var(--transition);
}

.main-header.scrolled .header-container {
  height: 56px;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.25));
  transition: var(--transition);
}

.main-header.scrolled .nav-logo-img {
  height: 32px;
}

.logo-area:hover .nav-logo-img {
  transform: scale(1.04);
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 13.5px;
  font-family: var(--font-title);
  transition: var(--transition);
}

.nav-link:hover {
  color: #ffffff;
}

.header-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 1.5px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100dvh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-color);
  z-index: 99;
  padding: 100px 24px 24px 24px;
  transition: var(--transition);
}

.mobile-nav.open {
  right: 0;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.mobile-nav-link:hover {
  color: #ffffff;
}

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* Asymmetric 2-Column Hero Section */
.hero-section {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 60px;
  align-items: center;
}

.hero-content-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 18px;
}

.hero-badge .badge-dot {
  width: 4px;
  height: 4px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

.hero-badge .badge-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-title {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  margin-bottom: 0;
}

/* Shining CTA Button */
.btn-shine-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #2563eb 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow:
    0 0 20px rgba(59, 130, 246, 0.3),
    0 0 60px rgba(59, 130, 246, 0.1);
}

/* Animated shine sweep */
.btn-shine-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%,
    transparent 100%
  );
  animation: shine-sweep 3s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

.btn-shine-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 30px rgba(59, 130, 246, 0.5),
    0 0 80px rgba(59, 130, 246, 0.2);
}

.btn-shine-cta:active {
  transform: translateY(0) scale(0.98);
}

.btn-shine-cta svg {
  transition: transform 0.3s ease;
}

.btn-shine-cta:hover svg {
  transform: translateX(4px);
}

/* Right Column: Spline 3D Scene */
.hero-content-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero-spline-wrapper {
  width: 100%;
  max-width: 580px;
  height: 500px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  background: #000000;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-spline-wrapper iframe {
  display: block;
  position: absolute;
  top: -70px;
  left: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 140px);
  border: none;
  outline: none;
  color-scheme: dark;
  will-change: transform;
  backface-visibility: hidden;
}


/* General Section Rules */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-bright);
  margin-bottom: 12px;
  background: rgba(59, 130, 246, 0.04);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14.5px;
}

.feature-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--blue-bright);
  border-radius: 50%;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

.metric-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-num {
  font-family: var(--font-code);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.metric-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.metric-info {
  font-size: 12px;
  color: var(--text-muted);
}

/* Trading Dashboard */
.dashboard-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.dashboard-sidebar {
  border-right: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trader-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trader-tab {
  background: transparent;
  border: 1px solid transparent;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  color: var(--text-secondary);
}

.trader-tab:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.trader-tab.active {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-color);
  color: #ffffff;
}

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

.trader-name {
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 600;
}

.trader-roi {
  font-family: var(--font-code);
  font-size: 11.5px;
  font-weight: 700;
}

.trader-tab.active .trader-roi {
  color: var(--blue-bright);
}

.trader-tab[data-trader="delta"].active .trader-roi {
  color: var(--gold-primary);
}

.trader-stats-box {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.2s ease;
}

.trader-stat-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.trader-stat-label {
  color: var(--text-muted);
}

.trader-stat-val {
  font-family: var(--font-code);
  font-weight: 600;
  color: #ffffff;
}

/* Dashboard Chart Area */
.dashboard-chart-area {
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-box-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-badge {
  font-family: var(--font-code);
  font-size: 9px;
  color: var(--blue-bright);
  background: rgba(59, 130, 246, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  font-weight: 700;
}

.chart-box-title h4 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
}

.chart-box-pair {
  font-size: 12.5px;
  color: var(--text-secondary);
}

.chart-wrapper {
  position: relative;
  height: 250px;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  overflow: hidden;
  cursor: crosshair;
}

.dashboard-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dashboard-svg.active {
  opacity: 0.95;
  pointer-events: auto;
}

.chart-glow-dot {
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { r: 5px; opacity: 1; }
  50% { r: 8px; opacity: 0.5; }
  100% { r: 5px; opacity: 1; }
}

.chart-notice {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 15px;
}

/* Chart Scrubbing Elements */
.chart-crosshair-x {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  display: none;
  z-index: 5;
}

.chart-crosshair-y {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  display: none;
  z-index: 5;
}

.chart-scrub-tooltip {
  position: absolute;
  background: rgba(10, 12, 18, 0.85);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  pointer-events: none;
  display: none;
  z-index: 10;
  transform: translate(-50%, -120%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.tooltip-val {
  font-family: var(--font-code);
  font-weight: 700;
  color: #ffffff;
}

.tooltip-day {
  color: var(--text-muted);
  margin-top: 2px;
}

/* Profit Simulator */
.simulator-container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.simulator-controls {
  padding: 35px;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sim-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-secondary);
  font-weight: 600;
}

.control-value {
  color: #ffffff;
  font-family: var(--font-code);
  font-weight: 700;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sim-adjust-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.sim-adjust-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #1e293b;
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.sim-trader-select {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.sim-radio {
  cursor: pointer;
  position: relative;
}

.sim-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-button {
  display: block;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,0.01);
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--text-secondary);
  transition: var(--transition);
  font-family: var(--font-title);
  font-weight: 600;
}

.sim-radio input:checked ~ .radio-button {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.simulator-display {
  padding: 35px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.sim-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sim-metric-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.sim-metric-value {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-code);
}

.sim-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 14px;
  line-height: 1.5;
}

/* Bento Grid Services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.bento-card {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
}

.bento-w1 {
  grid-column: span 1;
}

.bento-w2 {
  grid-column: span 2;
  flex-direction: row;
}

.bento-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.bento-visual {
  width: 320px;
  background: rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.service-icon-wrapper {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.bento-card:hover .service-icon-wrapper {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.bento-card[class*="bento-gold-card"]:hover .service-icon-wrapper {
  border-color: rgba(226, 183, 20, 0.2);
  color: var(--gold-primary);
  background: rgba(226, 183, 20, 0.05);
}

.service-title {
  font-family: var(--font-title);
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.service-desc-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  flex: 1;
}

.service-btn {
  margin-top: auto;
}

/* Copy Trading Active Positions Table widget */
.mini-positions-table {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px;
}

.mini-positions-table .table-header {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 4px;
}

.mini-positions-table .table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.mini-positions-table .table-row:last-child {
  border-bottom: none;
}

.mini-positions-table .pair {
  font-family: var(--font-code);
  color: var(--text-secondary);
}

.mini-positions-table .direction {
  font-weight: 600;
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 3px;
}

.mini-positions-table .direction.long {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.mini-positions-table .direction.short {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.mini-positions-table .profit {
  font-family: var(--font-code);
  font-weight: 700;
  color: #10b981;
}

/* Gold card Visual sparkline */
.gold-chart-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.gold-chart-preview svg {
  opacity: 0.5;
  width: 140px;
  height: 60px;
}

.gold-chart-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  padding: 0 4px;
}

.gold-chart-info .label {
  font-family: var(--font-code);
  color: var(--text-secondary);
}

.gold-chart-info .value {
  font-family: var(--font-code);
  font-weight: 600;
}

/* Live Signals Feed Cards */
.signals-feed-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.signal-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signal-badge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pair-badge {
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.status-badge {
  font-family: var(--font-title);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.status-badge.green {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-badge.pulse-white {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.03);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
  padding: 10px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
}

.detail-label {
  color: var(--text-muted);
}

.detail-val {
  font-family: var(--font-code);
}

.signal-performance {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
}

.signal-performance span:first-child {
  color: var(--text-muted);
}

.perf-val {
  font-family: var(--font-code);
  font-weight: 700;
}

/* Transparency Access Banner */
.access-banner {
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.access-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.access-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.access-text-secondary {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.access-action {
  display: flex;
  justify-content: flex-end;
}

/* News Section Cards */
.news-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-link-card {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.news-link-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-category {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-link-title {
  font-family: var(--font-title);
  font-size: 15.5px;
  font-weight: 600;
  color: #ffffff;
}

.news-link-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: none;
}

.news-arrow-wrapper {
  color: var(--text-muted);
  transition: var(--transition);
}

.news-link-card:hover .news-arrow-wrapper {
  color: #ffffff;
  transform: translate(2px, -2px);
}

/* Minimalist borderless FAQ */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.faq-item:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-title);
  font-size: 15.5px;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--blue-bright);
}

.faq-icon {
  width: 12px;
  height: 12px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-secondary);
  transition: var(--transition);
}

/* Horizontal line */
.faq-icon::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 1.5px;
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 5px;
  width: 1.5px;
  height: 12px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background-color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Telegram Community section */
.telegram-banner {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.telegram-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
}

.telegram-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.telegram-stream-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  height: 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tg-stream-msg {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11.5px;
  animation: messageFadeIn 0.3s ease forwards;
}

.tg-msg-author {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--blue-bright);
}

.tg-msg-text {
  color: #ffffff;
}

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

.telegram-action {
  display: flex;
  justify-content: flex-end;
}

/* Support section */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.support-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-icon {
  color: var(--blue-bright);
}

.support-username {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.support-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.support-btn {
  margin-top: 8px;
  align-self: flex-start;
}

.work-banner {
  margin-top: 40px;
  padding: 35px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
}

.work-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.work-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.work-contact-handle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.work-action {
  display: flex;
  justify-content: flex-end;
}

/* Footer Section */
.main-footer {
  background: #000000;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.02);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer-text {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: center;
    justify-items: center;
  }
  
  .hero-content-left {
    display: contents;
  }

  .hero-content-right {
    display: contents;
  }

  .hero-badge {
    order: 1;
    margin: 0 auto 15px auto;
  }

  .hero-title {
    order: 2;
    margin: 0 auto 15px auto;
  }

  .hero-subtitle {
    order: 3;
    max-width: 100%;
    margin: 0 auto 10px auto;
  }

  .hero-spline-wrapper {
    order: 4;
    width: 380px;
    max-width: 100%;
    height: 300px;
    margin: 0 auto;
  }

  .hero-spline-wrapper iframe {
    position: absolute;
    top: -125px;
    left: -30px;
    width: 800px;
    height: 1000px;
    transform: scale(0.55) translateZ(0);
    transform-origin: top left;
    pointer-events: none;
  }

  .hero-ctas {
    order: 5;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin: 15px auto 30px auto;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bento-w2 {
    grid-column: span 2;
  }

  .bento-w1 {
    grid-column: span 1;
  }

  .bento-visual {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 24px;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .hero-section {
    padding-top: 100px;
    padding-bottom: 15px;
  }

  .hero-badge {
    margin: 0 auto 15px auto;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 15px;
    margin: 0 auto 10px auto;
  }

  .hero-spline-wrapper {
    width: 340px;
    max-width: 100%;
    height: 280px;
    margin: 0 auto;
  }

  .hero-spline-wrapper iframe {
    position: absolute;
    top: -110px;
    left: -30px;
    width: 800px;
    height: 1000px;
    transform: scale(0.5) translateZ(0);
    transform-origin: top left;
    pointer-events: none;
  }

  .hero-ctas {
    position: relative;
    z-index: 5;
    margin: 15px auto 20px auto;
  }

  .btn-shine-cta {
    padding: 14px 32px;
    font-size: 14px;
  }

  /* Navigation */
  .main-header .nav-menu {
    display: none;
  }

  .main-header .header-ctas .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
    padding: 12px;
    margin-right: -12px;
    box-sizing: content-box;
  }

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

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

  .section-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text {
    font-size: 14.5px;
  }

  /* Dashboard */
  .dashboard-container {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
  }

  .dashboard-chart-area {
    padding: 20px;
  }

  /* Horizontal strategy selector for mobile */
  .trader-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .trader-tab {
    text-align: center;
    padding: 10px 8px;
  }

  .trader-name {
    font-size: 11px;
  }

  .trader-roi {
    font-size: 11px;
  }

  /* Horizontal stats status bar for mobile */
  .trader-stats-box {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 16px;
  }

  .trader-stat-item {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
  }

  .trader-stat-item:last-child {
    border-right: none;
  }

  /* Services Grid */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-w2 {
    grid-column: span 1;
    flex-direction: column;
  }

  .bento-visual {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 24px;
  }

  /* Simulator */
  .simulator-container {
    grid-template-columns: 1fr;
  }

  .simulator-controls {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
  }

  .simulator-display {
    padding: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
  }

  .sim-metric {
    flex: 1 1 40%;
  }

  .sim-disclaimer {
    flex: 1 1 100%;
    margin-top: 5px;
  }

  /* Support Grid */
  .support-grid {
    grid-template-columns: 1fr;
  }

  /* Banners */
  .access-banner,
  .telegram-banner,
  .work-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .access-action,
  .telegram-action,
  .work-action {
    justify-content: center;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px;
    padding: 16px 20px;
  }

  .faq-answer p {
    font-size: 13.5px;
    padding: 0 20px 16px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Ticker */
  .market-ticker {
    font-size: 11px;
  }

  .ticker-item {
    padding: 0 16px;
  }

  /* Container padding */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 90px;
    padding-bottom: 10px;
  }

  .section {
    padding: 24px 0;
  }

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

  .hero-subtitle {
    font-size: 14px;
    margin: 0 auto 10px auto;
  }

  .hero-spline-wrapper {
    width: 100%;
    max-width: 340px;
    height: 280px;
    margin: 0 auto;
  }

  .hero-spline-wrapper iframe {
    position: absolute;
    top: -110px;
    left: -30px;
    width: 800px;
    height: 1000px;
    transform: scale(0.5) translateZ(0);
    transform-origin: top left;
    pointer-events: none;
  }

  .hero-ctas {
    position: relative;
    z-index: 5;
    margin: 15px auto 20px auto;
  }

  .hero-badge .badge-text {
    font-size: 9px;
  }

  .btn-shine-cta {
    padding: 12px 28px;
    font-size: 13px;
    border-radius: 10px;
  }

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

  .glass-card {
    padding: 16px;
  }

  .bento-content {
    padding: 16px;
  }

  .bento-visual {
    padding: 16px;
  }

  .access-banner,
  .telegram-banner,
  .work-banner {
    padding: 20px 16px;
  }

  .dashboard-chart-area {
    padding: 16px;
  }

  .dashboard-sidebar {
    padding: 16px;
  }

  .chart-box-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .chart-wrapper {
    height: 200px;
  }

  .sim-adjust-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* JavaScript Fallback for Scroll Animations */
.js-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

