/* ========================================
   SPLIT-SCREEN FEATURE SHOWCASE
   ======================================== */

.features-split-section {
  padding: 120px 40px;
  background: var(--bg-primary);
}

.features-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 700px;
}

/* Left Column - Sticky */
.features-split-left {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.features-split-header {
  margin-bottom: 60px;
}

.features-intro-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-green);
  margin-bottom: 16px;
}

.features-split-main-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.features-split-main-title .highlight-green {
  color: var(--color-primary-green);
  font-weight: 700;
}

/* Navigation */
.features-split-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.feature-split-nav-item {
  background: transparent;
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  font-weight: 600;
}

.feature-split-nav-item:hover {
  border-color: var(--color-primary-green);
  color: var(--color-primary-green);
}

.feature-split-nav-item.active {
  background: var(--color-primary-green);
  border-color: var(--color-primary-green);
  color: var(--bg-primary);
}

.nav-number {
  font-size: 14px;
}

/* Feature Content */
.features-split-content {
  position: relative;
  min-height: 200px;
}

.feature-split-item {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.feature-split-item.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}

.feature-split-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.feature-split-title .highlight-green {
  color: var(--color-primary-green);
  font-weight: 700;
}

.feature-split-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 500px;
}

/* Right Column - Visual Patterns */
.features-split-right {
  position: relative;
  min-height: 420px;
  background: var(--bg-primary);
  border-radius: 24px;
  border: none;
  overflow: hidden;
}

.feature-split-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-split-visual.active {
  opacity: 1;
}

/* Subtle Background Patterns for Each Feature */
.feature-split-visual[data-visual-split="0"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at center,
    rgba(0, 212, 170, 0.25) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
  animation: pulseOpacity 4s ease-in-out infinite;
  z-index: 0;
}

.feature-split-visual[data-visual-split="1"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600" preserveAspectRatio="none"><path d="M 0,60 Q 200,20 400,60 T 800,60" stroke="rgba(0,212,170,0.06)" stroke-width="1.5" fill="none"/><path d="M 0,120 Q 200,160 400,120 T 800,120" stroke="rgba(0,212,170,0.05)" stroke-width="1.5" fill="none"/><path d="M 0,180 Q 200,140 400,180 T 800,180" stroke="rgba(0,212,170,0.07)" stroke-width="1.5" fill="none"/><path d="M 0,240 Q 200,280 400,240 T 800,240" stroke="rgba(0,212,170,0.04)" stroke-width="1.5" fill="none"/><path d="M 0,300 Q 200,260 400,300 T 800,300" stroke="rgba(0,212,170,0.06)" stroke-width="1.5" fill="none"/><path d="M 0,360 Q 200,400 400,360 T 800,360" stroke="rgba(0,212,170,0.05)" stroke-width="1.5" fill="none"/><path d="M 0,420 Q 200,380 400,420 T 800,420" stroke="rgba(0,212,170,0.07)" stroke-width="1.5" fill="none"/><path d="M 0,480 Q 200,520 400,480 T 800,480" stroke="rgba(0,212,170,0.05)" stroke-width="1.5" fill="none"/><path d="M 0,540 Q 200,500 400,540 T 800,540" stroke="rgba(0,212,170,0.06)" stroke-width="1.5" fill="none"/></svg>');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  animation: curvedLinesDrift 10s ease-in-out infinite, linesPulse 4s ease-in-out infinite;
  z-index: 0;
}

.feature-split-visual[data-visual-split="2"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0px, transparent 100px, rgba(0, 212, 170, 0.06) 100px, rgba(0, 212, 170, 0.06) 102px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 120px, rgba(0, 212, 170, 0.06) 120px, rgba(0, 212, 170, 0.06) 122px);
  z-index: 0;
}

.feature-split-visual[data-visual-split="3"]::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 600px 400px at 50% 20%, rgba(0, 212, 170, 0.08), transparent 60%),
    radial-gradient(ellipse 500px 300px at 50% 80%, rgba(0, 212, 170, 0.06), transparent 50%),
    radial-gradient(ellipse 400px 250px at 20% 50%, rgba(0, 212, 170, 0.05), transparent 40%);
  animation: floatMove 10s ease-in-out infinite;
  z-index: 0;
}

/* ========================================
   DISCOVERY DEMONSTRATION STYLES
   ======================================== */

.demo-discovery-list {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 60px;
  gap: 10px;
  z-index: 1;
  overflow: hidden;
}

/* Discovery Cards - Simplified Horizontal Layout */
.discovery-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: rgba(12, 16, 20, 0.75);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 8px;
  padding: 10px 18px;
  min-height: 44px;
  opacity: 1;
  transform: scale(0.98);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.discovery-card.active {
  transform: scale(1.05);
  z-index: 10;
}

/* Pool Icon */
.pool-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
}

/* Pair Name */
.card-pair {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  min-width: 120px;
  flex-shrink: 0;
}

/* Pool Size Metric */
.metric-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: center;
}

.metric-label {
  font-size: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metric-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* APR - Right Side */
.card-apr {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-green);
  letter-spacing: -0.01em;
  min-width: 95px;
  text-align: right;
  flex-shrink: 0;
}

/* ========================================
   STRATEGIES DEMONSTRATION STYLES
   ======================================== */

.demo-strategies-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 1;
}

/* Single Strategy Card - Vertical/Portrait Format */
.strategy-card-single {
  position: relative;
  width: 280px;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: rgba(20, 25, 30, 0.95);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 20px;
  padding: 0 36px 44px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Shape Carousel Container - Top 1/3 */
.strategy-shapes-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  width: 100%;
  height: 240px;
  padding: 30px 0 30px 0;
}

/* Radar Focus Rings */
.shape-focus-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.focus-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

.focus-ring:nth-child(1) {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  border: none;
  opacity: 1;
}

.focus-ring:nth-child(2) {
  width: 170px;
  height: 170px;
  background-image:
    radial-gradient(circle, rgba(0, 212, 170, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  background-size: 8px 8px, 100% 100%;
  background-position: 0 0, center center;
  border: none;
  opacity: 1;
}

.focus-ring:nth-child(3) {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border: none;
  opacity: 1;
}

/* Geometric Shapes */
.strategy-shape {
  width: 52px;
  height: 52px;
  background: transparent;
  opacity: 1;
  transform: scale(0.65);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  position: relative;
}

.strategy-shape.active {
  opacity: 1;
  transform: scale(1.15);
  box-shadow:
    0 0 20px rgba(0, 212, 170, 0.25),
    0 0 40px rgba(0, 212, 170, 0.12);
  background: rgba(0, 212, 170, 0.75) !important;
}

.shape-hexagon {
  background: rgba(0, 212, 170, 0.35);
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,8 Q56,5 62,15 L90,42 Q95,48 90,56 L70,85 Q65,92 55,90 L32,85 Q25,82 22,75 L8,45 Q5,38 12,32 L38,12 Q44,6 50,8 Z" fill="black"/></svg>');
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,8 Q56,5 62,15 L90,42 Q95,48 90,56 L70,85 Q65,92 55,90 L32,85 Q25,82 22,75 L8,45 Q5,38 12,32 L38,12 Q44,6 50,8 Z" fill="black"/></svg>');
  mask-size: cover;
  mask-position: center;
}

.shape-circle {
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.40);
}

.shape-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top left,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.shape-triangle {
  background: rgba(0, 212, 170, 0.50);
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,15 Q60,12 65,25 L88,80 Q90,88 82,90 L18,90 Q10,88 12,80 L35,25 Q40,12 50,15 Z" fill="black"/></svg>');
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,15 Q60,12 65,25 L88,80 Q90,88 82,90 L18,90 Q10,88 12,80 L35,25 Q40,12 50,15 Z" fill="black"/></svg>');
  mask-size: cover;
  mask-position: center;
}

/* Strategy Content Container */
.strategy-content {
  position: relative;
  width: 100%;
  text-align: left;
  height: 40px;
  margin-top: 32px;
  margin-bottom: 12px;
  padding: 0;
}

/* Strategy Name */
.strategy-name {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.strategy-name.active {
  opacity: 1;
}

/* Strategy Description Container */
.strategy-description-container {
  position: relative;
  width: 100%;
  text-align: left;
  height: 60px;
  margin-bottom: 24px;
  padding: 0;
}

/* Strategy Description */
.strategy-description {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.strategy-description.active {
  opacity: 1;
}

/* Risk Badge Container */
.strategy-risk-container {
  position: relative;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

/* Risk Badge Button */
.strategy-risk-badge {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s ease;
}

.strategy-risk-badge.active {
  opacity: 1;
}

.strategy-risk-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 212, 170, 0.3);
}

/* ========================================
   DASHBOARD DEMONSTRATION STYLES
   ======================================== */

.demo-dashboard-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 24px;
  z-index: 1;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 590px;
}

.dashboard-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(20, 25, 30, 0.95);
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 170, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.feature-split-visual.active .dashboard-stat-1 {
  animation: dashboardBreathe1 6s ease-in-out infinite;
}

.feature-split-visual.active .dashboard-stat-2 {
  animation: dashboardBreathe2 6s ease-in-out infinite;
}

.feature-split-visual.active .dashboard-stat-3 {
  animation: dashboardBreathe3 6s ease-in-out infinite;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.stat-cents {
  font-size: 16px;
  opacity: 0.6;
}

.stat-change {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary-green);
}

.dashboard-chart {
  width: 100%;
  max-width: 520px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 25, 30, 0.95);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(0, 212, 170, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.feature-split-visual.active .dashboard-chart {
  animation: dashboardBreathe4 6s ease-in-out infinite;
}

.pnl-chart {
  width: 100%;
  height: 100%;
}

.chart-fill {
  fill: url(#chartGradient);
  opacity: 0;
}

.feature-split-visual.active .chart-fill {
  animation: fadeInFill 1.5s ease-out 0.5s forwards;
}

@keyframes fadeInFill {
  to {
    opacity: 1;
  }
}

.chart-line {
  fill: none;
  stroke: var(--color-primary-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.feature-split-visual.active .chart-line {
  animation: drawChart 2s ease-out forwards;
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-dot {
  fill: var(--color-primary-green);
  filter: drop-shadow(0 0 4px rgba(0, 212, 170, 0.6));
  opacity: 0;
}

.feature-split-visual.active .chart-dot {
  animation: moveDot 3s ease-in-out 2s infinite;
}

@keyframes moveDot {
  0% {
    cx: 0;
    cy: 100;
    opacity: 1;
  }
  10% {
    cx: 30;
    cy: 95;
    opacity: 1;
  }
  20% {
    cx: 60;
    cy: 88;
    opacity: 1;
  }
  30% {
    cx: 90;
    cy: 82;
    opacity: 1;
  }
  40% {
    cx: 120;
    cy: 75;
    opacity: 1;
  }
  50% {
    cx: 150;
    cy: 70;
    opacity: 1;
  }
  60% {
    cx: 180;
    cy: 62;
    opacity: 1;
  }
  70% {
    cx: 210;
    cy: 55;
    opacity: 1;
  }
  80% {
    cx: 240;
    cy: 48;
    opacity: 1;
  }
  90% {
    cx: 270;
    cy: 40;
    opacity: 1;
  }
  100% {
    cx: 300;
    cy: 35;
    opacity: 0;
  }
}

.dashboard-best {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  width: 100%;
  max-width: 520px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.feature-split-visual.active .dashboard-best {
  animation: dashboardBreathe5 6s ease-in-out infinite;
}

.best-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.best-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-green);
}

/* ========================================
   DUAL-MODE DEMONSTRATION STYLES
   ======================================== */

/* ========================================
   TOGGLE DEMONSTRATION STYLES
   ======================================== */

.demo-toggle-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  z-index: 1;
}

.mode-toggle {
  position: relative;
  display: flex;
  background: rgba(20, 25, 30, 0.95);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 50px;
  padding: 6px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.toggle-slider {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  background: var(--color-primary-green);
  border-radius: 50px;
  transition: transform 0.3s ease;
  z-index: 0;
}

.toggle-option {
  position: relative;
  padding: 14px 40px;
  background: transparent;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1;
}

.toggle-option.active {
  color: var(--bg-primary);
}

.toggle-option:hover:not(.active) {
  color: rgba(255, 255, 255, 0.8);
}

/* Slider position when advanced is active */
.mode-toggle.advanced .toggle-slider {
  transform: translateX(calc(100% + 6px));
}

.advanced-detail {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .features-split-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-split-left {
    position: relative;
    top: 0;
  }

  .features-split-right {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .features-split-section {
    padding: 80px 20px;
  }

  .features-split-header {
    margin-bottom: 32px;
  }

  .features-split-main-title {
    font-size: 28px;
  }

  /* Reduce navigation spacing on mobile */
  .features-split-nav {
    margin-bottom: 24px;
  }

  /* Reduce content min-height for tighter layout */
  .features-split-content {
    min-height: 120px;
  }

  .feature-split-title {
    font-size: 24px;
  }

  .feature-split-description {
    font-size: 16px;
  }

  /* Reduce visual container height on mobile */
  .features-split-right {
    min-height: 380px;
  }

  /* Add subtle pulse animation when visual changes */
  .feature-split-visual.active {
    animation: visualPulse 0.4s ease-out;
  }

  /* Discovery Cards Mobile */
  .demo-discovery-list {
    padding: 10px 16px;
    gap: 5px;
  }

  .discovery-card {
    max-width: 280px;
    width: 85%;
    padding: 7px 10px;
    gap: 7px;
    min-height: 34px;
  }

  .pool-icon {
    width: 16px;
    height: 16px;
  }

  .card-pair {
    font-size: 12px;
    min-width: 65px;
  }

  .metric-item {
    min-width: 55px;
  }

  .metric-label {
    font-size: 8px;
  }

  .metric-value {
    font-size: 12px;
  }

  .card-apr {
    font-size: 12px;
    min-width: 70px;
  }

  /* Strategy Card Mobile - Smaller and more compact */
  .strategy-card-single {
    width: 75%;
    max-width: 200px;
    height: 320px;
    padding: 0 20px 24px 20px;
  }

  .strategy-shapes-carousel {
    height: 130px;
    gap: 15px;
    padding: 16px 0 8px 0;
  }

  .strategy-shape {
    width: 32px;
    height: 32px;
  }

  .strategy-shape.active {
    transform: scale(0.85);
  }

  .focus-ring:nth-child(1) {
    width: 65px;
    height: 65px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    border: none;
  }

  .focus-ring:nth-child(2) {
    width: 105px;
    height: 105px;
    background-image:
      radial-gradient(circle, rgba(0, 212, 170, 0.08) 1px, transparent 1px),
      radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    background-size: 6px 6px, 100% 100%;
    background-position: 0 0, center center;
    border: none;
  }

  .focus-ring:nth-child(3) {
    width: 145px;
    height: 145px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border: none;
  }

  .strategy-content {
    height: 32px;
    margin-top: 20px;
    margin-bottom: 8px;
    padding: 0;
  }

  .strategy-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    left: 0;
    right: 0;
  }

  .strategy-description-container {
    height: 50px;
    margin-bottom: 16px;
    padding: 0;
  }

  .strategy-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    left: 0;
    right: 0;
  }

  .strategy-risk-container {
    padding: 0;
  }

  .strategy-risk-badge {
    left: 0;
    padding: 7px 18px;
    font-size: 10px;
  }

  /* Dashboard Mobile */
  .demo-dashboard-container {
    padding: 20px 12px;
    gap: 12px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    max-width: 340px;
    width: 92%;
  }

  .dashboard-stat {
    padding: 10px 8px;
    gap: 3px;
    border-radius: 12px;
  }

  .stat-label {
    font-size: 7px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-change {
    font-size: 8px;
  }

  .stat-value-with-icon img {
    width: 14px;
    height: 14px;
  }

  .dashboard-chart {
    max-width: 320px;
    width: 90%;
    height: 120px;
    padding: 12px;
    border-radius: 14px;
  }

  .dashboard-best {
    max-width: 320px;
    width: 90%;
    padding: 12px 14px;
    gap: 4px;
    border-radius: 14px;
  }

  .best-label {
    font-size: 8px;
  }

  .best-value {
    font-size: 13px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes floatMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5%, 5%);
  }
  50% {
    transform: translate(5%, -5%);
  }
  75% {
    transform: translate(-3%, 3%);
  }
}

@keyframes curvedLinesDrift {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3%);
  }
}

@keyframes linesPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes dashboardBreathe1 {
  0%, 15%, 100% {
    transform: scale(1);
  }
  7.5% {
    transform: scale(1.03);
  }
}

@keyframes dashboardBreathe2 {
  0%, 20%, 35%, 100% {
    transform: scale(1);
  }
  27.5% {
    transform: scale(1.03);
  }
}

@keyframes dashboardBreathe3 {
  0%, 40%, 55%, 100% {
    transform: scale(1);
  }
  47.5% {
    transform: scale(1.03);
  }
}

@keyframes dashboardBreathe4 {
  0%, 60%, 75%, 100% {
    transform: scale(1);
  }
  67.5% {
    transform: scale(1.03);
  }
}

@keyframes dashboardBreathe5 {
  0%, 80%, 95%, 100% {
    transform: scale(1);
  }
  87.5% {
    transform: scale(1.03);
  }
}

/* Pulse animation for visual changes on mobile */
@keyframes visualPulse {
  0% {
    transform: scale(0.98);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
