/* =============================================================================
   vQuant Landing Page Redesign - Production CSS

   This CSS provides complete, polished styling for landing page versions.
   It's designed to work WITH the existing Webflow styles, not fight them.
   ============================================================================= */

/* Import design tokens */
@import url('./tokens.css');

/* =============================================================================
   BASE RESET FOR NEW SECTIONS
   ============================================================================= */

/* All new landing sections get consistent base styling */
.l-section,
.l-section * {
  box-sizing: border-box;
}

.l-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background-color: #030303;
  color: #e0e0e0;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.l-section--dark {
  background-color: #030303;
}

.l-section--alt {
  background-color: #0d0d0d;
}

/* =============================================================================
   ANIMATED WORDS SECTION - Override Webflow spacing
   ============================================================================= */

.section.animated-words-section {
  margin-bottom: 8%;
}

/* =============================================================================
   FINAL CTA SECTION - Animated Background
   ============================================================================= */

.l-section--cta-final {
  position: relative;
  background-color: #030303;
  overflow: hidden;
}

/* Animated forecast lines */
.cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-final-svg {
  position: absolute;
  width: 200%;
  height: 100%;
  opacity: 0.6;
  animation: cta-drift 30s linear infinite;
}

@keyframes cta-drift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cta-path--1 {
  animation: cta-wave-1 6s ease-in-out infinite;
}

.cta-path--2 {
  animation: cta-wave-2 8s ease-in-out infinite;
}

@keyframes cta-wave-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes cta-wave-2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* Floating particles */
.cta-particles {
  position: absolute;
  inset: 0;
}

.cta-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #756fff;
  border-radius: 50%;
  opacity: 0;
  animation: cta-particle-float 10s ease-in-out infinite;
}

.cta-particle--1 {
  left: 10%;
  top: 30%;
  animation-delay: 0s;
}

.cta-particle--2 {
  left: 25%;
  top: 60%;
  animation-delay: 2s;
}

.cta-particle--3 {
  left: 50%;
  top: 20%;
  animation-delay: 4s;
}

.cta-particle--4 {
  left: 75%;
  top: 70%;
  animation-delay: 6s;
}

.cta-particle--5 {
  left: 90%;
  top: 40%;
  animation-delay: 8s;
}

@keyframes cta-particle-float {

  0%,
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.5);
  }

  20% {
    opacity: 0.6;
    transform: translateY(0) scale(1);
  }

  80% {
    opacity: 0.6;
    transform: translateY(-15px) scale(1);
  }
}

/* Radial gradient glow */
.cta-radial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(117, 111, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* CTA button glow effect */
.cta-btn-glow {
  position: relative;
}

.cta-btn-glow::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(117, 111, 255, 0.4), rgba(139, 125, 255, 0.2));
  border-radius: 18px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.cta-btn-glow:hover::before {
  opacity: 1;
  animation: btn-glow-pulse 2s ease-in-out infinite;
}

@keyframes btn-glow-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* CTA Section Responsive */
@media (max-width: 768px) {
  .cta-radial-glow {
    width: 300px;
    height: 200px;
  }

  .cta-final-svg {
    opacity: 0.4;
  }
}

/* =============================================================================
   ANIMATED HERO BACKGROUNDS - Page-Specific Themes
   ============================================================================= */

/* Base hero animation setup */
.page-hero--animated {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-hero--animated .l-container {
  position: relative;
  z-index: 1;
}

.hero-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Hero Glow Effects */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(117, 111, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-glow--top-right {
  top: 10%;
  right: 10%;
  transform: translate(20%, -20%);
}

/* -----------------------------------------------------------------------------
   ABOUT PAGE - Ascending Growth Theme
   ----------------------------------------------------------------------------- */

.hero-bg--ascending .hero-lines--ascending {
  animation: hero-drift-slow 40s linear infinite;
}

@keyframes hero-drift-slow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-10%);
  }
}

.hero-path--1 {
  animation: hero-ascend-1 8s ease-in-out infinite;
  transform-origin: center;
}

.hero-path--2 {
  animation: hero-ascend-2 10s ease-in-out infinite;
  transform-origin: center;
}

.hero-path--3 {
  animation: hero-ascend-3 12s ease-in-out infinite;
  transform-origin: center;
}

@keyframes hero-ascend-1 {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes hero-ascend-2 {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-8px);
    opacity: 0.9;
  }
}

@keyframes hero-ascend-3 {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-6px);
    opacity: 0.7;
  }
}

/* Milestone dots - positioned along the ascending path */
.hero-milestones {
  position: absolute;
  inset: 0;
}

.hero-milestone {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #756fff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(117, 111, 255, 0.6);
  animation: milestone-pulse 3s ease-in-out infinite;
}

.hero-milestone--1 {
  left: 25%;
  top: 65%;
  animation-delay: 0s;
}

.hero-milestone--2 {
  left: 55%;
  top: 45%;
  animation-delay: 1s;
}

.hero-milestone--3 {
  left: 85%;
  top: 25%;
  animation-delay: 2s;
}

@keyframes milestone-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 12px rgba(117, 111, 255, 0.4);
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 20px rgba(117, 111, 255, 0.8);
  }
}

/* -----------------------------------------------------------------------------
   WHAT'S NEW PAGE - Interlacing Paths Theme
   ----------------------------------------------------------------------------- */

.hero-bg--pathlines {
  opacity: 1;
}

.hero-lines--pathlines {
  opacity: 1;
}

/* Fixed node points - positioned to intersect with paths */
.pathline-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pathline-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(117, 111, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(117, 111, 255, 0.5);
  transform: translate(-50%, -50%);
  animation: node-glow 3s ease-in-out infinite;
}

/* Position nodes where paths intersect */
.pathline-node--1 {
  left: 10%;
  top: 50%;
  animation-delay: 0s;
}

.pathline-node--2 {
  left: 20%;
  top: 40%;
  animation-delay: 0.4s;
}

.pathline-node--3 {
  left: 35%;
  top: 55%;
  animation-delay: 0.8s;
}

.pathline-node--4 {
  left: 50%;
  top: 50%;
  animation-delay: 1.2s;
}

.pathline-node--5 {
  left: 65%;
  top: 45%;
  animation-delay: 1.6s;
}

.pathline-node--6 {
  left: 80%;
  top: 55%;
  animation-delay: 2s;
}

.pathline-node--7 {
  left: 92%;
  top: 48%;
  animation-delay: 2.4s;
}

@keyframes node-glow {

  0%,
  100% {
    opacity: 0.5;
    box-shadow: 0 0 8px rgba(117, 111, 255, 0.4);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.9;
    box-shadow: 0 0 16px rgba(117, 111, 255, 0.7);
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* =============================================================================
   BASE PATHLINES - Always visible, dimmed version
   ============================================================================= */

.pathlines-base {
  opacity: 1;
}

.pathline-base {
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* =============================================================================
   ANIMATED PATHLINES - Draw and glow effect
   ============================================================================= */

.pathlines-animated {
  opacity: 1;
}

.pathline {
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  /* Each path ~1600px length, use dasharray to hide initially */
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  filter: drop-shadow(0 0 8px rgba(117, 111, 255, 0.7));
}

/* Sequential draw animation - 24s total cycle (6s per line)
   Each line: draws in 4s, stays bright 1s, fades 1s
   This creates a slower, more elegant drawing effect */

.pathline--1 {
  animation: pathline-draw-1 24s ease-in-out infinite;
}

.pathline--2 {
  animation: pathline-draw-2 24s ease-in-out infinite;
}

.pathline--3 {
  animation: pathline-draw-3 24s ease-in-out infinite;
}

.pathline--4 {
  animation: pathline-draw-4 24s ease-in-out infinite;
}

/* Line 1: draws 0-4s, visible 4-5s, fades 5-6s (0%-25% of cycle) */
@keyframes pathline-draw-1 {
  0% {
    stroke-dashoffset: 1600;
    opacity: 0;
  }

  0.5% {
    opacity: 1;
  }

  16.67% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  /* 4s mark - fully drawn */
  20.83% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  /* 5s mark - stay bright */
  25% {
    stroke-dashoffset: 0;
    opacity: 0;
  }

  /* 6s mark - faded */
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

/* Line 2: draws 6-10s, visible 10-11s, fades 11-12s (25%-50% of cycle) */
@keyframes pathline-draw-2 {

  0%,
  25% {
    stroke-dashoffset: 1600;
    opacity: 0;
  }

  25.5% {
    opacity: 1;
  }

  41.67% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  /* 10s mark */
  45.83% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  /* 11s mark */
  50% {
    stroke-dashoffset: 0;
    opacity: 0;
  }

  /* 12s mark */
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

/* Line 3: draws 12-16s, visible 16-17s, fades 17-18s (50%-75% of cycle) */
@keyframes pathline-draw-3 {

  0%,
  50% {
    stroke-dashoffset: 1600;
    opacity: 0;
  }

  50.5% {
    opacity: 1;
  }

  66.67% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  /* 16s mark */
  70.83% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  /* 17s mark */
  75% {
    stroke-dashoffset: 0;
    opacity: 0;
  }

  /* 18s mark */
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

/* Line 4: draws 18-22s, visible 22-23s, fades 23-24s (75%-100% of cycle) */
@keyframes pathline-draw-4 {

  0%,
  75% {
    stroke-dashoffset: 1600;
    opacity: 0;
  }

  75.5% {
    opacity: 1;
  }

  91.67% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  /* 22s mark */
  95.83% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  /* 23s mark */
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }

  /* 24s mark - faded, cycle restarts */
}

/* -----------------------------------------------------------------------------
   CONTACT PAGE - Connection Waves Theme
   ----------------------------------------------------------------------------- */

.hero-bg--waves .hero-lines--waves {
  opacity: 0.8;
}

.hero-wave--1 {
  animation: wave-motion-1 4s ease-in-out infinite;
  transform-origin: center;
}

.hero-wave--2 {
  animation: wave-motion-2 5s ease-in-out infinite;
  transform-origin: center;
}

.hero-wave--3 {
  animation: wave-motion-3 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes wave-motion-1 {

  0%,
  100% {
    d: path("M0,200 Q150,160 300,200 T600,200 T900,200 T1200,200");
  }

  50% {
    d: path("M0,200 Q150,240 300,200 T600,200 T900,200 T1200,200");
  }
}

@keyframes wave-motion-2 {

  0%,
  100% {
    d: path("M0,200 Q150,240 300,200 T600,200 T900,200 T1200,200");
  }

  50% {
    d: path("M0,200 Q150,160 300,200 T600,200 T900,200 T1200,200");
  }
}

@keyframes wave-motion-3 {

  0%,
  100% {
    d: path("M0,200 Q150,180 300,200 T600,200 T900,200 T1200,200");
  }

  50% {
    d: path("M0,200 Q150,220 300,200 T600,200 T900,200 T1200,200");
  }
}

/* Radiating ripple circles */
.hero-ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(117, 111, 255, 0.3);
  border-radius: 50%;
  animation: ripple-expand 4s ease-out infinite;
}

.hero-ripple--1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.hero-ripple--2 {
  width: 200px;
  height: 200px;
  animation-delay: 1s;
}

.hero-ripple--3 {
  width: 300px;
  height: 300px;
  animation-delay: 2s;
}

@keyframes ripple-expand {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Central connection point */
.hero-connection-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #756fff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(117, 111, 255, 0.6);
  animation: connection-breathe 2s ease-in-out infinite;
}

@keyframes connection-breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 20px rgba(117, 111, 255, 0.4);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 30px rgba(117, 111, 255, 0.8);
  }
}

/* -----------------------------------------------------------------------------
   Hero Animations - Responsive
   ----------------------------------------------------------------------------- */

@media (max-width: 768px) {
  .hero-bg {
    opacity: 0.6;
  }

  .hero-glow {
    width: 300px;
    height: 200px;
  }

  .hero-milestone {
    width: 6px;
    height: 6px;
  }

  .hero-node {
    width: 8px;
    height: 8px;
  }

  .hero-connection-point {
    width: 12px;
    height: 12px;
  }

  .hero-ripple--1 {
    width: 60px;
    height: 60px;
  }

  .hero-ripple--2 {
    width: 120px;
    height: 120px;
  }

  .hero-ripple--3 {
    width: 180px;
    height: 180px;
  }
}

/* =============================================================================
   END HERO ANIMATIONS
   ============================================================================= */

/* =============================================================================
   SECTION DIVIDERS
   Reusable animated separators between content sections
   ============================================================================= */

.section-divider {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: visible;
  pointer-events: none;
  z-index: 10;
}

/* Divider container for SVG and elements */
.section-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------------------------
   DIVIDER: Interlacing Pathlines
   ----------------------------------------------------------------------------- */

.section-divider--pathlines {
  height: 200px;
}

.section-divider--pathlines .divider-lines--pathlines {
  opacity: 0.9;
}

.section-divider--pathlines .pathline-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-divider--pathlines .pathline-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(117, 111, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(117, 111, 255, 0.4);
  transform: translate(-50%, -50%);
  animation: node-glow 3s ease-in-out infinite;
}

/* -----------------------------------------------------------------------------
   DIVIDER: Connection Waves
   ----------------------------------------------------------------------------- */

.section-divider--waves {
  height: 180px;
}

.section-divider--waves .divider-lines--waves {
  opacity: 0.8;
}

.section-divider--waves .hero-ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-divider--waves .hero-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(117, 111, 255, 0.25);
  border-radius: 50%;
  animation: ripple-expand 4s ease-out infinite;
}

.section-divider--waves .hero-ripple--1 {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.section-divider--waves .hero-ripple--2 {
  width: 160px;
  height: 160px;
  animation-delay: 1s;
}

.section-divider--waves .hero-ripple--3 {
  width: 240px;
  height: 240px;
  animation-delay: 2s;
}

.section-divider--waves .hero-connection-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #756fff;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(117, 111, 255, 0.5);
  animation: connection-breathe 2s ease-in-out infinite;
}

/* -----------------------------------------------------------------------------
   DIVIDER: Floating Orbs (ethereal drifting spheres)
   ----------------------------------------------------------------------------- */

.section-divider--orbs {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbs-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 100%;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: orb-float 8s ease-in-out infinite;
}

/* Large central orb */
.floating-orb--1 {
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%,
      rgba(139, 125, 255, 0.6),
      rgba(117, 111, 255, 0.3) 50%,
      transparent 70%);
  animation: orb-pulse-main 6s ease-in-out infinite;
}

/* Medium orbs */
.floating-orb--2 {
  width: 24px;
  height: 24px;
  left: 25%;
  top: 40%;
  background: radial-gradient(circle at 30% 30%,
      rgba(168, 159, 255, 0.5),
      rgba(117, 111, 255, 0.2) 60%,
      transparent 70%);
  animation: orb-drift-left 10s ease-in-out infinite;
}

.floating-orb--3 {
  width: 28px;
  height: 28px;
  left: 72%;
  top: 35%;
  background: radial-gradient(circle at 30% 30%,
      rgba(139, 125, 255, 0.5),
      rgba(117, 111, 255, 0.25) 50%,
      transparent 70%);
  animation: orb-drift-right 9s ease-in-out infinite;
}

/* Small accent orbs */
.floating-orb--4 {
  width: 14px;
  height: 14px;
  left: 35%;
  top: 65%;
  background: radial-gradient(circle at 30% 30%,
      rgba(200, 195, 255, 0.6),
      rgba(168, 159, 255, 0.2) 60%,
      transparent 70%);
  animation: orb-wander 12s ease-in-out infinite;
}

.floating-orb--5 {
  width: 16px;
  height: 16px;
  left: 62%;
  top: 60%;
  background: radial-gradient(circle at 30% 30%,
      rgba(168, 159, 255, 0.5),
      rgba(139, 125, 255, 0.2) 60%,
      transparent 70%);
  animation: orb-wander 11s ease-in-out infinite reverse;
}

/* Tiny sparkle orbs */
.floating-orb--6 {
  width: 8px;
  height: 8px;
  left: 18%;
  top: 55%;
  background: radial-gradient(circle, rgba(200, 195, 255, 0.7), transparent 60%);
  animation: orb-twinkle 4s ease-in-out infinite;
}

.floating-orb--7 {
  width: 6px;
  height: 6px;
  left: 82%;
  top: 50%;
  background: radial-gradient(circle, rgba(200, 195, 255, 0.6), transparent 60%);
  animation: orb-twinkle 5s ease-in-out infinite 1s;
}

@keyframes orb-pulse-main {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

@keyframes orb-drift-left {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }

  25% {
    transform: translate(-15px, -8px);
  }

  50% {
    transform: translate(-5px, 10px);
    opacity: 0.9;
  }

  75% {
    transform: translate(10px, -5px);
  }
}

@keyframes orb-drift-right {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }

  25% {
    transform: translate(12px, 8px);
  }

  50% {
    transform: translate(-8px, -10px);
    opacity: 0.9;
  }

  75% {
    transform: translate(5px, 12px);
  }
}

@keyframes orb-wander {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  33% {
    transform: translate(8px, -12px) scale(1.1);
    opacity: 0.8;
  }

  66% {
    transform: translate(-10px, 8px) scale(0.9);
    opacity: 0.5;
  }
}

@keyframes orb-twinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.2);
  }
}

/* Divider Responsive */
@media (max-width: 768px) {
  .section-divider {
    height: 120px;
  }

  .section-divider--pathlines {
    height: 120px;
  }

  .section-divider--waves {
    height: 100px;
  }

  .section-divider--orbs {
    height: 100px;
  }

  .section-divider--pathlines .pathline-node {
    width: 6px;
    height: 6px;
  }

  .section-divider--waves .hero-ripple--1 {
    width: 50px;
    height: 50px;
  }

  .section-divider--waves .hero-ripple--2 {
    width: 100px;
    height: 100px;
  }

  .section-divider--waves .hero-ripple--3 {
    width: 150px;
    height: 150px;
  }

  .section-divider--waves .hero-connection-point {
    width: 10px;
    height: 10px;
  }

  .floating-orb--1 {
    width: 30px;
    height: 30px;
  }

  .floating-orb--2,
  .floating-orb--3 {
    width: 18px;
    height: 18px;
  }

  .floating-orb--4,
  .floating-orb--5 {
    width: 10px;
    height: 10px;
  }

  .floating-orb--6,
  .floating-orb--7 {
    width: 5px;
    height: 5px;
  }
}

/* =============================================================================
   END SECTION DIVIDERS
   ============================================================================= */

.l-section--lg {
  padding: 120px 0;
}

/* Container */
.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.l-container--narrow {
  max-width: 800px;
}

.l-container--wide {
  max-width: 1400px;
}

/* =============================================================================
   TYPOGRAPHY - Polished & Consistent
   ============================================================================= */

.l-heading {
  font-family: 'Ivyjournal', 'Times New Roman', serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}

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

.section-header__overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #756fff;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(117, 111, 255, 0.1);
  border-radius: 20px;
}

.section-header__title {
  font-family: 'Ivyjournal', 'Times New Roman', serif;
  font-size: 44px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}

/* "Coming soon" indicator for growing asset list */
.coming-soon {
  color: var(--color-accent, #756fff);
  font-size: 0.55em;
  font-weight: 400;
  opacity: 0.85;
  margin-left: 0.4em;
  letter-spacing: 0;
}

.section-header__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.section-header--left {
  text-align: left;
  margin-bottom: 0;
}

.section-header--left .section-header__subtitle {
  margin: 0;
}

/* Typography Utilities */
.t-display {
  font-family: 'Ivyjournal', 'Times New Roman', serif;
  font-size: 44px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.t-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.t-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.t-body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

.t-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

.t-caption {
  font-size: 14px;
  font-weight: 400;
  color: #71717a;
  line-height: 1.5;
  margin: 0;
}

.t-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #756fff;
  margin: 0;
}

/* Text Color Utilities */
.t-white {
  color: #ffffff;
}

.t-primary {
  color: #e0e0e0;
}

.t-secondary {
  color: #a1a1aa;
}

.t-muted {
  color: #71717a;
}

.t-accent,
.accent {
  color: #756fff;
}

.t-positive {
  color: #4ade80;
}

.t-negative {
  color: #f87171;
}

/* Spacing Utilities */
.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mt-0 {
  margin-top: 0;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

/* Text Alignment */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Width Utilities */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-sm {
  max-width: 480px;
}

.max-w-md {
  max-width: 640px;
}

.max-w-lg {
  max-width: 800px;
}

/* Responsive Typography */
@media (max-width: 1024px) {
  .t-display {
    font-size: 38px;
  }

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

@media (max-width: 768px) {
  .t-display {
    font-size: 32px;
  }

  .t-heading {
    font-size: 24px;
  }

  .t-body-lg {
    font-size: 17px;
  }
}

/* =============================================================================
   BUTTONS - Premium Look
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #756fff 0%, #6b63ff 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(117, 111, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #8b7dff 0%, #756fff 100%);
  box-shadow:
    0 8px 32px rgba(117, 111, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 4px rgba(117, 111, 255, 0.1);
  transform: translateY(-2px) scale(1.02);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.btn--secondary {
  background: transparent;
  color: #756fff;
  border: 1.5px solid rgba(117, 111, 255, 0.5);
}

.btn--secondary:hover {
  background: rgba(117, 111, 255, 0.1);
  border-color: #756fff;
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 14px;
}

.btn--full {
  width: 100%;
}

.btn--ghost {
  background: transparent;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

/* =============================================================================
   CARDS - Glass & Elevated
   ============================================================================= */

.card {
  background: linear-gradient(145deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* Subtle top highlight for depth */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.card:hover {
  border-color: rgba(117, 111, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(117, 111, 255, 0.1);
}

/* Feature Card */
.card-feature {
  background: linear-gradient(145deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
}

.card-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.card-feature:hover {
  border-color: rgba(117, 111, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(117, 111, 255, 0.1);
}

.card-feature__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(117, 111, 255, 0.2), rgba(117, 111, 255, 0.05));
  border: 1px solid rgba(117, 111, 255, 0.25);
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 26px;
}

.card-feature__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.card-feature__desc {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
}

/* Testimonial Card */
.card-testimonial {
  background: linear-gradient(145deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.card-testimonial__stars {
  color: #facc15;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.card-testimonial__quote {
  font-size: 17px;
  font-style: italic;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.card-testimonial__author {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.card-testimonial__role {
  font-size: 13px;
  color: #71717a;
  margin: 4px 0 0 0;
}

.card-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-testimonial__avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(117, 111, 255, 0.2), rgba(117, 111, 255, 0.1));
  border: 1px solid rgba(117, 111, 255, 0.3);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: #756fff;
}

.card-testimonial__name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* Pricing Card */
.card-pricing {
  background: linear-gradient(145deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.card-pricing__name {
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.card-pricing__price {
  font-family: 'Satoshi', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}

.card-pricing__period {
  font-size: 16px;
  font-weight: 400;
  color: #71717a;
}

.card-pricing__features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  text-align: left;
}

.card-pricing__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #a1a1aa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.card-pricing__features li:last-child {
  border-bottom: none;
}

.card-pricing__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #756fff;
  background: rgba(117, 111, 255, 0.15);
  padding: 6px 12px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.card-pricing__title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.card-pricing__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: #a1a1aa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-pricing__feature:last-child {
  border-bottom: none;
}

.card-pricing__feature::before {
  content: '✓';
  color: #4ade80;
  font-weight: 600;
}

.card--accent-border {
  border-color: rgba(117, 111, 255, 0.4);
  box-shadow: 0 0 40px rgba(117, 111, 255, 0.15);
}

/* Feature Check List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: #e0e0e0;
}

/* Tab Panel Feature Text */
.tab-feature-title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.tab-feature-desc {
  font-size: 17px;
  color: #a1a1aa;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

/* Timeline Content */
.timeline-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.timeline-desc {
  font-size: 16px;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
}

/* Security Badge */
.security-badge {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.security-badge__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 12px;
  font-size: 24px;
  flex-shrink: 0;
}

.security-badge__title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.security-badge__desc {
  font-size: 14px;
  color: #71717a;
  margin: 0;
}

/* Pricing Card Modifiers */
.card-pricing--featured {
  border-color: rgba(117, 111, 255, 0.45);
}

.card-pricing--disabled {
  opacity: 0.6;
}

/* =============================================================================
   GRIDS
   ============================================================================= */

.l-grid {
  display: grid;
  gap: 24px;
}

.l-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.l-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.l-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.l-grid--6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1024px) {

  .l-grid--3,
  .l-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .l-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .l-grid--2,
  .l-grid--3,
  .l-grid--4 {
    grid-template-columns: 1fr;
  }

  .l-grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================================================
   SOCIAL PROOF BAR
   ============================================================================= */

.social-proof-bar {
  background: rgba(10, 10, 14, 0.8);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px 0;
}

.social-proof-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-proof-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-proof-bar__icon {
  font-size: 20px;
}

.social-proof-bar__value {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.social-proof-bar__label {
  font-size: 14px;
  color: #71717a;
}

/* =============================================================================
   STATS
   ============================================================================= */

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: 'Satoshi', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__value--accent {
  color: #756fff;
}

.stat-item__label {
  font-size: 16px;
  color: #a1a1aa;
}

@media (max-width: 768px) {
  .stats-grid {
    gap: 40px;
  }

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

/* =============================================================================
   TIMELINE / HOW IT WORKS
   ============================================================================= */

.timeline {
  display: flex;
  justify-content: center;
  gap: 48px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 240px);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #756fff 20%, #756fff 80%, transparent 100%);
  opacity: 0.5;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

.timeline-step__number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a, #030303);
  border: 2px solid #756fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: #756fff;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(117, 111, 255, 0.2);
}

.timeline-step__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.timeline-step__desc {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    max-width: 100%;
  }
}

/* =============================================================================
   TRUST BADGES
   ============================================================================= */

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
}

.trust-badge__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 16px;
}

.trust-badge__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.trust-badge__desc {
  font-size: 13px;
  color: #71717a;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 32px;
  }
}

/* =============================================================================
   FAQ ACCORDION
   ============================================================================= */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-item__question:hover {
  color: #756fff;
}

.faq-item__icon {
  font-size: 24px;
  font-weight: 300;
  color: #71717a;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  color: #756fff;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer p {
  padding: 0 0 24px 0;
  margin: 0;
  font-size: 16px;
  color: #a1a1aa;
  line-height: 1.7;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
  color: #e0e0e0;
  font-family: 'Satoshi', sans-serif;
}

.footer__cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, #030303 0%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 64px;
}

.footer__cta-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.footer__cta-subtitle {
  font-size: 18px;
  color: #a1a1aa;
  margin: 0 0 32px 0;
}

.footer__main {
  padding-bottom: 40px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 18px;
  color: #71717a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  background: rgba(117, 111, 255, 0.15);
  color: #756fff;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 32px;
}

.footer__grid--simple {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer__brand {
  max-width: 260px;
}

.footer__logo {
  height: 28px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  color: #71717a;
  line-height: 1.6;
  margin: 0;
}

.footer__column-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: #71717a;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #756fff;
}

/* Coming Soon disabled links */
.footer__link--disabled {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  cursor: default;
}

.footer__link--disabled:hover {
  color: #71717a;
}

.footer__coming-soon {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #52525b;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__copyright {
  font-size: 13px;
  color: #52525b;
  margin: 0;
}

@media (max-width: 1024px) {

  .footer__grid,
  .footer__grid--simple {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {

  .footer__grid,
  .footer__grid--simple {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* =============================================================================
   FEATURE TABS (Tabbed Feature Showcase)
   ============================================================================= */

.feature-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: 'Satoshi', sans-serif;
}

.tab-btn__icon {
  font-size: 20px;
}

.tab-btn__label {
  font-size: 15px;
  font-weight: 600;
  color: #71717a;
  transition: color 0.2s ease;
}

.tab-btn:hover .tab-btn__label {
  color: #a1a1aa;
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(117, 111, 255, 0.2), rgba(117, 111, 255, 0.08));
  border: 1px solid rgba(117, 111, 255, 0.3);
}

.tab-btn.active .tab-btn__label {
  color: #ffffff;
}

.feature-tabs__content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tab-panel__info {
  padding-right: 24px;
}

.tab-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Feature list with custom icons */
.feature-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: #e0e0e0;
}

.feature-list__icon {
  color: #4ade80;
  font-weight: 600;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .feature-tabs__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 32px;
  }

  .tab-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 8px;
    gap: 6px;
    border-radius: 8px;
  }

  .tab-btn__icon {
    font-size: 16px;
  }

  .tab-btn__label {
    font-size: 12px;
    white-space: nowrap;
  }

  .tab-panel__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tab-panel__info {
    padding-right: 0;
  }
}

/* =============================================================================
   ASSET GALLERY (Supported Assets Grid)
   ============================================================================= */

.asset-gallery {
  max-width: 900px;
  margin: 0 auto;
}

.asset-gallery__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.asset-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(145deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.asset-chip:hover {
  border-color: rgba(117, 111, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.asset-chip__icon {
  font-size: 20px;
}

.asset-chip__name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.asset-chip__ticker {
  font-size: 13px;
  font-weight: 500;
  color: #756fff;
  background: rgba(117, 111, 255, 0.15);
  padding: 4px 8px;
  border-radius: 6px;
}

.asset-chip--more {
  background: rgba(117, 111, 255, 0.1);
  border-color: rgba(117, 111, 255, 0.25);
}

.asset-chip--more .asset-chip__name {
  color: #756fff;
  font-weight: 600;
}

/* =============================================================================
   VERTICAL TIMELINE (How It Works)
   ============================================================================= */

.timeline-vertical {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line */
.timeline-vertical::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, #756fff 0%, rgba(117, 111, 255, 0.2) 100%);
}

.timeline-vertical__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 24px 0;
  position: relative;
}

.timeline-vertical__number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a, #030303);
  border: 2px solid #756fff;
  border-radius: 50%;
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #756fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(117, 111, 255, 0.25);
}

.timeline-vertical__content {
  padding-top: 12px;
  flex: 1;
}

.timeline-vertical__content h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.timeline-vertical__content p {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
}

/* Typography helper */
.t-heading-sm {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* =============================================================================
   COMPARISON TABLE
   ============================================================================= */

.comparison-table {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Satoshi', sans-serif;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  font-size: 14px;
  font-weight: 600;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(10, 10, 14, 0.5);
}

.comparison-table td {
  font-size: 15px;
  color: #a1a1aa;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table__highlight {
  background: rgba(117, 111, 255, 0.08) !important;
  color: #ffffff !important;
  font-weight: 500;
}

.comparison-table th.comparison-table__highlight {
  color: #756fff !important;
  border-bottom: 2px solid rgba(117, 111, 255, 0.4);
}

@media (max-width: 768px) {
  .comparison-table {
    margin: 0 -16px;
    padding: 0 16px;
  }

  .comparison-table table {
    min-width: 500px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 6px;
    font-size: 9px;
  }

  .comparison-table th {
    font-size: 7px;
    letter-spacing: 0.03em;
  }

  .comparison-table td {
    font-size: 8px;
  }

  .comparison-table th.comparison-table__highlight {
    border-bottom-width: 1px;
  }
}

/* =============================================================================
   FAQ GRID (Two-Column Layout)
   ============================================================================= */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

/* Override for .active instead of .is-open */
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  color: #756fff;
}

.faq-item.active .faq-item__answer {
  max-height: 400px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =============================================================================
   MEGA FOOTER (with Newsletter)
   ============================================================================= */

.footer--mega {
  padding-top: 0;
}

.footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer__newsletter-content h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.footer__newsletter-content p {
  font-size: 15px;
  color: #71717a;
  margin: 0;
}

.footer__newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.footer__newsletter-input {
  width: 280px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  color: #e0e0e0;
  transition: all 0.2s ease;
}

.footer__newsletter-input::placeholder {
  color: #71717a;
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: #756fff;
  background: rgba(117, 111, 255, 0.05);
}

/* Disabled newsletter state */
.footer__newsletter-form--disabled {
  position: relative;
}

.footer__newsletter-form--disabled .footer__newsletter-input {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.footer__newsletter-form--disabled .btn {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.footer__newsletter-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: #52525b;
}

.footer__newsletter-soon .footer__coming-soon {
  font-size: 10px;
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 32px 0;
}

/* Supporters/Partners Section */
.footer__supporters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__supporters-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #52525b;
}

.footer__supporters-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__supporter-logo {
  height: 24px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}

.footer__supporter-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .footer__supporters-logos {
    gap: 24px;
  }

  .footer__supporter-logo {
    height: 20px;
  }
}

.footer__disclaimer {
  font-size: 12px;
  color: #52525b;
  margin: 8px 0 0 0;
  max-width: 500px;
}

@media (max-width: 768px) {
  .footer__newsletter {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 48px 0;
  }

  .footer__newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .footer__newsletter-input {
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__disclaimer {
    max-width: 100%;
  }
}

/* =============================================================================
   DEMO / MOCKUP CONTAINERS
   ============================================================================= */

.demo-mockup {
  background: linear-gradient(145deg, rgba(20, 20, 24, 0.95), rgba(10, 10, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.demo-mockup__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.demo-mockup__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-mockup__dot--red {
  background: #f87171;
}

.demo-mockup__dot--yellow {
  background: #facc15;
}

.demo-mockup__dot--green {
  background: #4ade80;
}

.demo-mockup__content {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a24 100%);
  border-radius: 8px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #71717a;
  font-size: 14px;
}

/* =============================================================================
   VISUALIZATION PLACEHOLDERS
   ============================================================================= */

.visual-placeholder {
  background: linear-gradient(135deg, rgba(117, 111, 255, 0.1), rgba(117, 111, 255, 0.02));
  border: 1px dashed rgba(117, 111, 255, 0.3);
  border-radius: 16px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.visual-placeholder__icon {
  font-size: 48px;
  opacity: 0.7;
}

.visual-placeholder__text {
  font-size: 14px;
  color: #71717a;
}

/* =============================================================================
   VERSION BADGE
   ============================================================================= */

.version-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #756fff, #6b63ff);
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 24px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(117, 111, 255, 0.4);
}

/* =============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================= */

@media (max-width: 1024px) {
  .l-section {
    padding: 80px 0;
  }

  .l-section--lg {
    padding: 100px 0;
  }

  .section-header__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .l-section {
    padding: 64px 0;
  }

  .l-section--lg {
    padding: 80px 0;
  }

  .l-container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-header__title {
    font-size: 30px;
  }

  .section-header__subtitle {
    font-size: 16px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .card,
  .card-feature,
  .card-testimonial {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .l-section {
    padding: 48px 0;
  }

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

  .l-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */

/* =============================================================================
   MAC WINDOW FRAME (Dashboard Preview)
   ============================================================================= */

.action-preview-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #030303 0%, #0a0a0a 100%);
}

.mac-window-frame {
  max-width: 1000px;
  margin: 0 auto;
  background: #1a1a1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mac-window-titlebar {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: #2a2a2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mac-window-buttons {
  display: flex;
  gap: 8px;
}

.mac-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mac-btn.close {
  background: #ff5f57;
}

.mac-btn.minimize {
  background: #febc2e;
}

.mac-btn.maximize {
  background: #28c840;
}

.mac-window-title {
  flex: 1;
  text-align: center;
  color: #888;
  font-size: 13px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
}

.mac-window-content {
  padding: 0;
  background: #0a0a0a;
}

.mac-window-content img {
  width: 100%;
  display: block;
}

/* Dashboard placeholder mockup */
.dashboard-mockup {
  padding: 32px;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f14 100%);
  min-height: 400px;
}

.dashboard-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-mockup__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.dashboard-mockup__subtitle {
  font-size: 14px;
  color: #71717a;
  margin: 4px 0 0 0;
}

.dashboard-mockup__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.dashboard-mockup__chart {
  background: rgba(117, 111, 255, 0.05);
  border: 1px solid rgba(117, 111, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.dashboard-mockup__chart-title {
  font-size: 14px;
  color: #a1a1aa;
  margin: 0 0 16px 0;
}

.dashboard-mockup__chart-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.dashboard-mockup__chart-change {
  font-size: 14px;
  color: #4ade80;
  font-weight: 500;
}

.dashboard-mockup__chart-visual {
  flex: 1;
  margin-top: 16px;
  background: linear-gradient(180deg, rgba(117, 111, 255, 0.2) 0%, transparent 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.dashboard-mockup__chart-line {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #756fff 20%, #756fff 80%, transparent);
}

.dashboard-mockup__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-mockup__stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
}

.dashboard-mockup__stat-label {
  font-size: 12px;
  color: #71717a;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-mockup__stat-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 768px) {
  .mac-window-frame {
    border-radius: 8px;
    margin: 0 16px;
  }

  .dashboard-mockup {
    padding: 20px;
    min-height: 300px;
  }

  .dashboard-mockup__grid {
    grid-template-columns: 1fr;
  }

  .dashboard-mockup__title {
    font-size: 18px;
  }

  .dashboard-mockup__chart-value {
    font-size: 28px;
  }
}

/* =============================================================================
   FAITHFUL APP MOCKUP - Portfolio Dashboard
   ============================================================================= */

.app-mockup {
  display: flex;
  background: #030303;
  min-height: 480px;
}

/* Sidebar Navigation */
.app-mockup__sidebar {
  width: 56px;
  background: #0a0a0a;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.app-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.app-nav-item.active {
  background: rgba(117, 111, 255, 0.12);
}

.app-nav-item.active::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: #756fff;
  border-radius: 0 2px 2px 0;
}

.app-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #71717a;
  transition: all 0.2s ease;
}

.app-nav-item.active .app-nav-icon {
  background: rgba(117, 111, 255, 0.2);
  color: #756fff;
}

.app-nav-item:hover .app-nav-icon {
  color: #e0e0e0;
}

/* Main Content Area */
.app-mockup__main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

/* Header Bar */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px 16px;
}

.app-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-header__icon {
  width: 36px;
  height: 36px;
  background: rgba(117, 111, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #756fff;
}

.app-header__text {
  display: flex;
  flex-direction: column;
}

.app-header__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.app-header__subtitle {
  font-size: 11px;
  color: #71717a;
}

.app-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-header__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.app-header__btn {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  color: #a1a1aa;
  font-size: 11px;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.app-header__btn:hover {
  border-color: rgba(117, 111, 255, 0.4);
  color: #e0e0e0;
}

.app-header__btn--primary {
  background: #756fff;
  border-color: #756fff;
  color: #ffffff;
}

.app-header__btn--primary:hover {
  background: #6355ee;
}

/* Metrics Cards Grid */
.app-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.app-metric-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-metric-card__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.app-metric-card__icon--accent {
  background: rgba(117, 111, 255, 0.15);
  color: #756fff;
}

.app-metric-card__icon--positive {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.app-metric-card__icon--warning {
  background: rgba(250, 204, 21, 0.15);
  color: #facc15;
}

.app-metric-card__icon--info {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.app-metric-card__label {
  font-size: 9px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-metric-card__value {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.app-metric-card__value.positive {
  color: #4ade80;
}

.app-metric-card__value.negative {
  color: #f87171;
}

.app-metric-card__unit {
  font-size: 11px;
  color: #71717a;
  font-weight: 400;
}

.app-metric-card__sub {
  font-size: 9px;
  color: #71717a;
}

.app-metric-card__sub.positive {
  color: #4ade80;
}

.app-metric-card__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-top: 4px;
  overflow: hidden;
}

.app-metric-card__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Chart + Allocation Row */
.app-content-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

/* Chart Panel */
.app-chart-panel {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #e0e0e0;
}

.app-panel-title svg {
  color: #756fff;
}

.app-panel-pills {
  display: flex;
  background: #121212;
  border-radius: 6px;
  padding: 2px;
}

.app-pill {
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #71717a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.app-pill:hover {
  color: #e0e0e0;
}

.app-pill.active {
  background: #756fff;
  color: #ffffff;
}

.app-chart {
  flex: 1;
  padding: 8px;
}

.app-chart svg {
  width: 100%;
  height: 100%;
}

/* Allocation Panel */
.app-allocation-panel {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-treemap {
  display: flex;
  height: 60px;
  padding: 8px;
  gap: 3px;
}

.treemap-cell {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.app-assets {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-asset-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-asset-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.app-asset-ticker {
  font-size: 11px;
  font-weight: 600;
  color: #e0e0e0;
  width: 32px;
}

.app-asset-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.app-asset-bar div {
  height: 100%;
  border-radius: 2px;
}

.app-asset-pct {
  font-size: 10px;
  color: #71717a;
  width: 28px;
  text-align: right;
}

/* Responsive for app mockup - tablet only (768px+ handled in main mobile block) */
@media (min-width: 769px) and (max-width: 900px) {
  .app-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .app-content-row {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   FEATURE TAB MOCKUPS (Mac Windows for Features Section)
   ============================================================================= */

/* Feature Mac Window (Smaller) */
.feature-mac-window {
  background: #0a0a0a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

.feature-mac-window__titlebar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(40, 40, 44, 0.95) 0%, rgba(30, 30, 34, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-mac-window__controls {
  display: flex;
  gap: 8px;
  margin-right: 16px;
}

.feature-mac-window__controls .control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.feature-mac-window__controls .control--close {
  background: #ff5f57;
}

.feature-mac-window__controls .control--minimize {
  background: #ffbd2e;
}

.feature-mac-window__controls .control--maximize {
  background: #28ca41;
}

.feature-mac-window__title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.feature-mac-window__content {
  padding: 16px;
  background: #030303;
}

/* ========================================
   FORECAST MOCKUP
   ======================================== */

.forecast-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Forecast Header */
.forecast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #0a0a0a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.forecast-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.forecast-header__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f7931a 0%, #e88a17 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.forecast-header__info {
  display: flex;
  flex-direction: column;
}

.forecast-header__name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.forecast-header__ticker {
  font-size: 12px;
  color: #71717a;
}

.forecast-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.forecast-header__price {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'SF Mono', ui-monospace, monospace;
}

.forecast-header__change {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.forecast-header__change--positive {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.forecast-header__change--negative {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
}

/* Forecast Stats */
.forecast-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.forecast-stat {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.forecast-stat__value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.forecast-stat__value--positive {
  color: #4ade80;
}

.forecast-stat__label {
  font-size: 11px;
  color: #71717a;
}

/* Forecast Chart */
.forecast-chart {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}

.forecast-chart__svg {
  width: 100%;
  height: 140px;
}

.forecast-chart__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 4px;
}

.forecast-chart__label {
  font-size: 10px;
  color: #71717a;
}

.forecast-chart__label--now {
  color: rgba(255, 255, 255, 0.5);
}

/* Forecast Legend */
.forecast-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.forecast-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #a1a1aa;
}

.forecast-legend__line {
  width: 24px;
  height: 2px;
  border-radius: 1px;
}

.forecast-legend__line--conservative {
  background: #8b7dff;
  background: repeating-linear-gradient(to right,
      #8b7dff 0px,
      #8b7dff 4px,
      transparent 4px,
      transparent 8px);
}

.forecast-legend__line--base {
  background: #756fff;
}

.forecast-legend__line--aggressive {
  background: #60a5fa;
  background: repeating-linear-gradient(to right,
      #60a5fa 0px,
      #60a5fa 4px,
      transparent 4px,
      transparent 8px);
}

/* ========================================
   PORTFOLIO MOCKUP (Compact)
   ======================================== */

.portfolio-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-mockup__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.portfolio-mockup__icon {
  width: 28px;
  height: 28px;
  background: rgba(117, 111, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #756fff;
}

.portfolio-mockup__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4ade80;
}

/* Portfolio Metrics */
.portfolio-mockup__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.portfolio-mini-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.portfolio-mini-card__value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'SF Mono', ui-monospace, monospace;
  margin-bottom: 4px;
}

.portfolio-mini-card__value--positive {
  color: #4ade80;
}

.portfolio-mini-card__label {
  font-size: 10px;
  color: #71717a;
}

/* Portfolio Content (Chart + Allocation) */
.portfolio-mockup__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.portfolio-mockup__chart {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  overflow: hidden;
}

.portfolio-chart-svg {
  width: 100%;
  height: 70px;
}

.portfolio-mockup__allocation {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.portfolio-alloc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.portfolio-alloc-item__color {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.portfolio-alloc-item__name {
  color: #e0e0e0;
  flex: 1;
}

.portfolio-alloc-item__pct {
  color: #a1a1aa;
  font-family: 'SF Mono', ui-monospace, monospace;
}

/* ========================================
   CHAT MOCKUP
   ======================================== */

.chat-mockup {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
}

.chat-mockup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #0a0a0a;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
}

.chat-mockup__bot-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #756fff 0%, #6355ee 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.chat-mockup__title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
}

.chat-mockup__status {
  font-size: 11px;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-mockup__status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Chat Messages */
.chat-mockup__messages {
  flex: 1;
  background: #0a0a0a;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.chat-message {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.chat-message--user {
  align-self: flex-end;
  align-items: flex-end;
}

.chat-message--ai {
  align-self: flex-start;
  align-items: flex-start;
}

.chat-message__bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #e0e0e0;
}

.chat-message--user .chat-message__bubble {
  background: linear-gradient(135deg, #756fff 0%, #6355ee 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.chat-message--ai .chat-message__bubble {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
}

.chat-message__time {
  font-size: 10px;
  color: #71717a;
  margin-top: 6px;
  padding: 0 4px;
}

/* Chat Input */
.chat-mockup__input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 12px 12px;
}

.chat-input {
  flex: 1;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: #a1a1aa;
  outline: none;
}

.chat-input::placeholder {
  color: #52525b;
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  background: #756fff;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0.7;
}

/* Text helpers for chat */
.t-positive {
  color: #4ade80;
}

/* ========================================
   FEATURE MOCKUP RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .feature-mac-window__content {
    padding: 12px;
  }

  .forecast-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .forecast-header {
    flex-direction: row;
    padding: 10px 12px;
    gap: 8px;
  }

  .forecast-header__left {
    gap: 8px;
  }

  .forecast-header__icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 8px;
  }

  .forecast-header__name {
    font-size: 14px;
  }

  .forecast-header__ticker {
    font-size: 10px;
  }

  .forecast-header__right {
    flex-direction: row;
    gap: 8px;
  }

  .forecast-header__price {
    font-size: 16px;
  }

  .forecast-header__change {
    padding: 3px 8px;
    font-size: 11px;
  }

  .forecast-legend {
    flex-wrap: wrap;
    gap: 12px;
  }

  .portfolio-mockup {
    gap: 8px;
  }

  .portfolio-mockup__header {
    margin-bottom: 4px;
  }

  .portfolio-mockup__title {
    font-size: 12px;
    gap: 6px;
  }

  .portfolio-mockup__icon {
    width: 22px;
    height: 22px;
  }

  .portfolio-mockup__icon svg {
    width: 12px;
    height: 12px;
  }

  .portfolio-mockup__live {
    font-size: 10px;
  }

  .portfolio-mockup__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .portfolio-mini-card {
    padding: 8px 6px;
    border-radius: 8px;
  }

  .portfolio-mini-card__value {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .portfolio-mini-card__label {
    font-size: 9px;
  }

  .portfolio-mockup__content {
    grid-template-columns: 1.2fr 1fr;
    gap: 6px;
  }

  .portfolio-mockup__chart,
  .portfolio-mockup__allocation {
    padding: 8px;
    border-radius: 8px;
  }

  .portfolio-alloc-item {
    font-size: 10px;
    gap: 6px;
  }

  .portfolio-alloc-item__color {
    width: 6px;
    height: 6px;
  }

  .chat-mockup {
    min-height: 260px;
  }

  .chat-message {
    max-width: 95%;
  }
}

/* =============================================================================
   TWO-TIER PRICING (Beta + Pro)
   ============================================================================= */

.pricing-section-tier {
  padding: 100px 0;
  background: #030303;
}

.pricing-grid-tier {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card-tier {
  background: linear-gradient(145deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 14, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

/* Featured card (Beta) */
.pricing-card-tier--featured {
  border: 2px solid rgba(117, 111, 255, 0.4);
  box-shadow: 0 0 60px rgba(117, 111, 255, 0.12);
}

.pricing-card-tier--featured::before {
  background: linear-gradient(90deg, transparent, rgba(117, 111, 255, 0.4), transparent);
}

/* Locked card (Pro) */
.pricing-card-tier--locked {
  opacity: 0.75;
}

.pricing-card-tier--locked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  border-radius: 24px;
}

/* Badge */
.pricing-badge-tier {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #756fff;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0 0 12px 12px;
  font-family: 'Satoshi', sans-serif;
}

.pricing-badge-tier--coming {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: none;
  color: #a1a1aa;
}

.pricing-label-tier {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #756fff;
  margin: 24px 0 16px 0;
}

.pricing-price-tier {
  font-family: 'Satoshi', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}

.pricing-period-tier {
  font-size: 15px;
  color: #71717a;
  margin: 8px 0 32px 0;
  font-family: 'Satoshi', sans-serif;
}

.pricing-features-tier {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}

.pricing-features-tier li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-family: 'Satoshi', sans-serif;
}

.pricing-features-tier li:last-child {
  border-bottom: none;
}

/* Pricing check icons (explicit in HTML) */
.pricing-check {
  color: #4ade80;
  font-weight: 600;
  flex-shrink: 0;
}

.pricing-check.locked {
  color: #52525b;
}

/* Locked features text */
.pricing-features-tier--locked li {
  color: #666;
}

/* CTA button */
.pricing-cta-tier {
  display: inline-block;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #756fff, #6355ee);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 16px rgba(117, 111, 255, 0.25);
}

.pricing-cta-tier:hover {
  background: linear-gradient(135deg, #8b7dff, #756fff);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 32px rgba(117, 111, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-cta-tier:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.pricing-cta-tier--locked {
  background: rgba(255, 255, 255, 0.08);
  color: #888;
  cursor: not-allowed;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cta-tier--locked:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: none;
  box-shadow: none;
}

.lock-icon {
  margin-right: 8px;
}

.waitlist-note {
  margin-top: 16px;
  font-size: 13px;
  color: #52525b;
  text-align: center;
  font-family: 'Satoshi', sans-serif;
}

@media (max-width: 768px) {
  .pricing-grid-tier {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }

  .pricing-card-tier {
    padding: 40px 28px;
  }

  .pricing-price-tier {
    font-size: 48px;
  }
}

/* =============================================================================
   ASSET CONSTELLATION - "Night Sky Observatory" Premium Design
   ============================================================================= */

/* Category colors */
:root {
  --color-crypto: #f7931a;
  --color-stocks: #3b82f6;
  --color-indices: #756fff;
  --color-commodities: #fbbf24;
  --color-forex: #22c55e;
  --color-bonds: #6b7280;
}

/* Main wrapper */
.constellation-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 480px;
  margin: 60px auto 120px;
  overflow: visible;
}

/* Layer 1: Background Effects */
.constellation-backdrop {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.constellation-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.constellation-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(117, 111, 255, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(3, 3, 3, 0.85) 100%);
}

/* Layer 2: SVG Connection Lines */
.constellation-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.constellation-line-group {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.constellation-line-group path {
  stroke-dasharray: 8 4;
  animation: line-flow 20s linear infinite paused;
}

@keyframes line-flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -48;
  }
}

/* Show lines on category hover */
.constellation-wrapper:has([data-category="crypto"]:hover) .constellation-line-group[data-category="crypto"],
.constellation-wrapper:has([data-category="stocks"]:hover) .constellation-line-group[data-category="stocks"],
.constellation-wrapper:has([data-category="indices"]:hover) .constellation-line-group[data-category="indices"],
.constellation-wrapper:has([data-category="commodities"]:hover) .constellation-line-group[data-category="commodities"],
.constellation-wrapper:has([data-category="forex"]:hover) .constellation-line-group[data-category="forex"] {
  opacity: 1;
}

.constellation-wrapper:has([data-category="crypto"]:hover) .constellation-line-group[data-category="crypto"] path,
.constellation-wrapper:has([data-category="stocks"]:hover) .constellation-line-group[data-category="stocks"] path,
.constellation-wrapper:has([data-category="indices"]:hover) .constellation-line-group[data-category="indices"] path,
.constellation-wrapper:has([data-category="commodities"]:hover) .constellation-line-group[data-category="commodities"] path,
.constellation-wrapper:has([data-category="forex"]:hover) .constellation-line-group[data-category="forex"] path {
  animation-play-state: running;
}

/* Layer 3: Star Field */
.constellation-field {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Individual star (asset) */
.constellation-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.star-core {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Multi-layer glow effect */
.star-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--star-color, rgba(117, 111, 255, 0.3)) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Glass ring containing icon */
.star-ring {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.star-ring svg {
  width: 28px;
  height: 28px;
  opacity: 0.75;
  filter: grayscale(0.3);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Star label - hidden by default, shown on hover */
.star-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* Show label on individual star hover */
.constellation-star:hover .star-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Category-specific colors */
.constellation-star[data-category="crypto"] {
  --star-color: rgba(247, 147, 26, 0.4);
  --star-color-bright: #f7931a;
}

.constellation-star[data-category="stocks"] {
  --star-color: rgba(59, 130, 246, 0.4);
  --star-color-bright: #3b82f6;
}

.constellation-star[data-category="indices"] {
  --star-color: rgba(117, 111, 255, 0.4);
  --star-color-bright: #756fff;
}

.constellation-star[data-category="commodities"] {
  --star-color: rgba(251, 191, 36, 0.4);
  --star-color-bright: #fbbf24;
}

.constellation-star[data-category="forex"] {
  --star-color: rgba(34, 197, 94, 0.4);
  --star-color-bright: #22c55e;
}

.constellation-star[data-category="bonds"] {
  --star-color: rgba(107, 114, 128, 0.4);
  --star-color-bright: #6b7280;
}

/* Category-specific icon colors */
.constellation-star[data-category="crypto"] .star-ring svg {
  color: var(--color-crypto);
}

.constellation-star[data-category="stocks"] .star-ring svg {
  color: var(--color-stocks);
}

.constellation-star[data-category="indices"] .star-ring svg {
  color: var(--color-indices);
}

.constellation-star[data-category="commodities"] .star-ring svg {
  color: var(--color-commodities);
}

.constellation-star[data-category="forex"] .star-ring svg {
  color: var(--color-forex);
}

.constellation-star[data-category="bonds"] .star-ring svg {
  color: var(--color-bonds);
}

/* Glow breathe animation */
@keyframes star-breathe {

  0%,
  100% {
    box-shadow:
      0 0 0 2px var(--glow-20),
      0 0 20px var(--glow-35),
      0 0 45px var(--glow-20);
  }

  50% {
    box-shadow:
      0 0 0 3px var(--glow-25),
      0 0 30px var(--glow-45),
      0 0 60px var(--glow-25);
  }
}

/* ===== HOVER STATES using :has() ===== */

/* Dim ALL stars when any is hovered */
.constellation-wrapper:has(.constellation-star:hover) .constellation-star {
  opacity: 0.15;
  transform: translate(-50%, -50%) scale(0.92);
}

.constellation-wrapper:has(.constellation-star:hover) .constellation-star .star-ring {
  background: transparent;
  border-color: transparent;
}

.constellation-wrapper:has(.constellation-star:hover) .constellation-star .star-glow {
  opacity: 0.1;
}

/* Highlight stars in SAME category */
.constellation-wrapper:has(.constellation-star[data-category="crypto"]:hover) .constellation-star[data-category="crypto"],
.constellation-wrapper:has(.constellation-star[data-category="stocks"]:hover) .constellation-star[data-category="stocks"],
.constellation-wrapper:has(.constellation-star[data-category="indices"]:hover) .constellation-star[data-category="indices"],
.constellation-wrapper:has(.constellation-star[data-category="commodities"]:hover) .constellation-star[data-category="commodities"],
.constellation-wrapper:has(.constellation-star[data-category="forex"]:hover) .constellation-star[data-category="forex"],
.constellation-wrapper:has(.constellation-star[data-category="bonds"]:hover) .constellation-star[data-category="bonds"] {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

/* Premium glow for highlighted crypto */
.constellation-wrapper:has(.constellation-star[data-category="crypto"]:hover) .constellation-star[data-category="crypto"] .star-ring {
  --glow-20: rgba(247, 147, 26, 0.2);
  --glow-25: rgba(247, 147, 26, 0.25);
  --glow-35: rgba(247, 147, 26, 0.35);
  --glow-45: rgba(247, 147, 26, 0.45);
  background: rgba(247, 147, 26, 0.12);
  border-color: rgba(247, 147, 26, 0.5);
  box-shadow:
    0 0 0 1px rgba(247, 147, 26, 0.2),
    0 0 20px rgba(247, 147, 26, 0.35),
    0 0 40px rgba(247, 147, 26, 0.18),
    0 0 60px rgba(247, 147, 26, 0.1);
  animation: star-breathe 2.5s ease-in-out infinite;
}

.constellation-wrapper:has(.constellation-star[data-category="crypto"]:hover) .constellation-star[data-category="crypto"] .star-ring svg {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 8px rgba(247, 147, 26, 0.6));
}

.constellation-wrapper:has(.constellation-star[data-category="crypto"]:hover) .constellation-star[data-category="crypto"] .star-glow {
  opacity: 0.7;
  filter: blur(16px);
}

.constellation-wrapper:has(.constellation-star[data-category="crypto"]:hover) .constellation-star[data-category="crypto"] .star-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  color: var(--color-crypto);
  text-shadow: 0 0 12px rgba(247, 147, 26, 0.5);
}

/* Premium glow for highlighted stocks */
.constellation-wrapper:has(.constellation-star[data-category="stocks"]:hover) .constellation-star[data-category="stocks"] .star-ring {
  --glow-20: rgba(59, 130, 246, 0.2);
  --glow-25: rgba(59, 130, 246, 0.25);
  --glow-35: rgba(59, 130, 246, 0.35);
  --glow-45: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.2),
    0 0 20px rgba(59, 130, 246, 0.35),
    0 0 40px rgba(59, 130, 246, 0.18),
    0 0 60px rgba(59, 130, 246, 0.1);
  animation: star-breathe 2.5s ease-in-out infinite;
}

.constellation-wrapper:has(.constellation-star[data-category="stocks"]:hover) .constellation-star[data-category="stocks"] .star-ring svg {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}

.constellation-wrapper:has(.constellation-star[data-category="stocks"]:hover) .constellation-star[data-category="stocks"] .star-glow {
  opacity: 0.7;
  filter: blur(16px);
}

.constellation-wrapper:has(.constellation-star[data-category="stocks"]:hover) .constellation-star[data-category="stocks"] .star-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  color: var(--color-stocks);
  text-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

/* Premium glow for highlighted indices */
.constellation-wrapper:has(.constellation-star[data-category="indices"]:hover) .constellation-star[data-category="indices"] .star-ring {
  --glow-20: rgba(117, 111, 255, 0.2);
  --glow-25: rgba(117, 111, 255, 0.25);
  --glow-35: rgba(117, 111, 255, 0.35);
  --glow-45: rgba(117, 111, 255, 0.45);
  background: rgba(117, 111, 255, 0.12);
  border-color: rgba(117, 111, 255, 0.5);
  box-shadow:
    0 0 0 1px rgba(117, 111, 255, 0.2),
    0 0 20px rgba(117, 111, 255, 0.35),
    0 0 40px rgba(117, 111, 255, 0.18),
    0 0 60px rgba(117, 111, 255, 0.1);
  animation: star-breathe 2.5s ease-in-out infinite;
}

.constellation-wrapper:has(.constellation-star[data-category="indices"]:hover) .constellation-star[data-category="indices"] .star-ring svg {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 8px rgba(117, 111, 255, 0.6));
}

.constellation-wrapper:has(.constellation-star[data-category="indices"]:hover) .constellation-star[data-category="indices"] .star-glow {
  opacity: 0.7;
  filter: blur(16px);
}

.constellation-wrapper:has(.constellation-star[data-category="indices"]:hover) .constellation-star[data-category="indices"] .star-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  color: var(--color-indices);
  text-shadow: 0 0 12px rgba(117, 111, 255, 0.5);
}

/* Premium glow for highlighted commodities */
.constellation-wrapper:has(.constellation-star[data-category="commodities"]:hover) .constellation-star[data-category="commodities"] .star-ring {
  --glow-20: rgba(251, 191, 36, 0.2);
  --glow-25: rgba(251, 191, 36, 0.25);
  --glow-35: rgba(251, 191, 36, 0.35);
  --glow-45: rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.2),
    0 0 20px rgba(251, 191, 36, 0.35),
    0 0 40px rgba(251, 191, 36, 0.18),
    0 0 60px rgba(251, 191, 36, 0.1);
  animation: star-breathe 2.5s ease-in-out infinite;
}

.constellation-wrapper:has(.constellation-star[data-category="commodities"]:hover) .constellation-star[data-category="commodities"] .star-ring svg {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.constellation-wrapper:has(.constellation-star[data-category="commodities"]:hover) .constellation-star[data-category="commodities"] .star-glow {
  opacity: 0.7;
  filter: blur(16px);
}

.constellation-wrapper:has(.constellation-star[data-category="commodities"]:hover) .constellation-star[data-category="commodities"] .star-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  color: var(--color-commodities);
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

/* Premium glow for highlighted forex */
.constellation-wrapper:has(.constellation-star[data-category="forex"]:hover) .constellation-star[data-category="forex"] .star-ring {
  --glow-20: rgba(34, 197, 94, 0.2);
  --glow-25: rgba(34, 197, 94, 0.25);
  --glow-35: rgba(34, 197, 94, 0.35);
  --glow-45: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.2),
    0 0 20px rgba(34, 197, 94, 0.35),
    0 0 40px rgba(34, 197, 94, 0.18),
    0 0 60px rgba(34, 197, 94, 0.1);
  animation: star-breathe 2.5s ease-in-out infinite;
}

.constellation-wrapper:has(.constellation-star[data-category="forex"]:hover) .constellation-star[data-category="forex"] .star-ring svg {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 8px rgba(34, 197, 94, 0.6));
}

.constellation-wrapper:has(.constellation-star[data-category="forex"]:hover) .constellation-star[data-category="forex"] .star-glow {
  opacity: 0.7;
  filter: blur(16px);
}

.constellation-wrapper:has(.constellation-star[data-category="forex"]:hover) .constellation-star[data-category="forex"] .star-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  color: var(--color-forex);
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

/* Premium glow for highlighted bonds */
.constellation-wrapper:has(.constellation-star[data-category="bonds"]:hover) .constellation-star[data-category="bonds"] .star-ring {
  --glow-20: rgba(107, 114, 128, 0.2);
  --glow-25: rgba(107, 114, 128, 0.25);
  --glow-35: rgba(107, 114, 128, 0.35);
  --glow-45: rgba(107, 114, 128, 0.45);
  background: rgba(107, 114, 128, 0.12);
  border-color: rgba(107, 114, 128, 0.5);
  box-shadow:
    0 0 0 1px rgba(107, 114, 128, 0.2),
    0 0 20px rgba(107, 114, 128, 0.35),
    0 0 40px rgba(107, 114, 128, 0.18),
    0 0 60px rgba(107, 114, 128, 0.1);
  animation: star-breathe 2.5s ease-in-out infinite;
}

.constellation-wrapper:has(.constellation-star[data-category="bonds"]:hover) .constellation-star[data-category="bonds"] .star-ring svg {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 8px rgba(107, 114, 128, 0.6));
}

.constellation-wrapper:has(.constellation-star[data-category="bonds"]:hover) .constellation-star[data-category="bonds"] .star-glow {
  opacity: 0.7;
  filter: blur(16px);
}

.constellation-wrapper:has(.constellation-star[data-category="bonds"]:hover) .constellation-star[data-category="bonds"] .star-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  color: var(--color-bonds);
  text-shadow: 0 0 12px rgba(107, 114, 128, 0.5);
}

/* ===== Layer 4: Info Panel (Glassmorphic Bottom Bar) ===== */
.constellation-panel {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 680px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10;
  pointer-events: none;
}

/* Show panel when hovering any star */
.constellation-wrapper:has(.constellation-star:hover) .constellation-panel {
  bottom: -85px;
  opacity: 1;
}

.panel-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(28px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(117, 111, 255, 0.12), transparent 30%, transparent 70%, rgba(117, 111, 255, 0.08));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.constellation-wrapper:has(.constellation-star:hover) .panel-glow {
  opacity: 1;
}

/* Panel header */
.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.panel-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(117, 111, 255, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(117, 111, 255, 0.25);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.panel-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-indices);
  transition: color 0.4s ease;
}

.panel-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.panel-count {
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.panel-description {
  flex: 1;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  margin: 0;
  min-width: 0;
}

.panel-assets {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  flex-shrink: 0;
}

.panel-asset-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.3px;
}

/* Panel color changes based on hovered category */
.constellation-wrapper:has(.constellation-star[data-category="crypto"]:hover) .panel-icon {
  background: rgba(247, 147, 26, 0.12);
  border-color: rgba(247, 147, 26, 0.25);
}

.constellation-wrapper:has(.constellation-star[data-category="crypto"]:hover) .panel-icon svg {
  color: var(--color-crypto);
}

.constellation-wrapper:has(.constellation-star[data-category="crypto"]:hover) .panel-title {
  color: var(--color-crypto);
}

.constellation-wrapper:has(.constellation-star[data-category="stocks"]:hover) .panel-icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

.constellation-wrapper:has(.constellation-star[data-category="stocks"]:hover) .panel-icon svg {
  color: var(--color-stocks);
}

.constellation-wrapper:has(.constellation-star[data-category="stocks"]:hover) .panel-title {
  color: var(--color-stocks);
}

.constellation-wrapper:has(.constellation-star[data-category="indices"]:hover) .panel-icon {
  background: rgba(117, 111, 255, 0.12);
  border-color: rgba(117, 111, 255, 0.25);
}

.constellation-wrapper:has(.constellation-star[data-category="indices"]:hover) .panel-icon svg {
  color: var(--color-indices);
}

.constellation-wrapper:has(.constellation-star[data-category="indices"]:hover) .panel-title {
  color: var(--color-indices);
}

.constellation-wrapper:has(.constellation-star[data-category="commodities"]:hover) .panel-icon {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.25);
}

.constellation-wrapper:has(.constellation-star[data-category="commodities"]:hover) .panel-icon svg {
  color: var(--color-commodities);
}

.constellation-wrapper:has(.constellation-star[data-category="commodities"]:hover) .panel-title {
  color: var(--color-commodities);
}

.constellation-wrapper:has(.constellation-star[data-category="forex"]:hover) .panel-icon {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.constellation-wrapper:has(.constellation-star[data-category="forex"]:hover) .panel-icon svg {
  color: var(--color-forex);
}

.constellation-wrapper:has(.constellation-star[data-category="forex"]:hover) .panel-title {
  color: var(--color-forex);
}

.constellation-wrapper:has(.constellation-star[data-category="bonds"]:hover) .panel-icon {
  background: rgba(107, 114, 128, 0.12);
  border-color: rgba(107, 114, 128, 0.25);
}

.constellation-wrapper:has(.constellation-star[data-category="bonds"]:hover) .panel-icon svg {
  color: var(--color-bonds);
}

.constellation-wrapper:has(.constellation-star[data-category="bonds"]:hover) .panel-title {
  color: var(--color-bonds);
}

/* ===== Hint ===== */
.constellation-hint {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.constellation-wrapper:has(.constellation-star:hover) .constellation-hint {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}

.hint-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-indices);
  animation: hint-pulse 2s ease-in-out infinite;
}

@keyframes hint-pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.constellation-hint span {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* ===== Mobile Fallback Grid ===== */
.asset-grid-mobile-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .constellation-wrapper {
    display: none;
  }

  /* Horizontal scrollable asset grid - edge to edge */
  .asset-grid-mobile-wrapper {
    display: block;
    position: relative;
    margin-top: 32px;
  }

  /* Fade hints on sides to show more content */
  .asset-grid-mobile-wrapper::before,
  .asset-grid-mobile-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 16px;
    width: 40px;
    pointer-events: none;
    z-index: 2;
  }

  .asset-grid-mobile-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #030303 0%, transparent 100%);
  }

  .asset-grid-mobile-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #030303 0%, transparent 100%);
  }

  .asset-grid-mobile {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .asset-grid-mobile::-webkit-scrollbar {
    display: none;
  }

  .asset-category-mobile {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 100px;
  }

  .asset-category-mobile h4 {
    font-family: 'Satoshi', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    white-space: nowrap;
  }

  .asset-category-mobile[data-category="crypto"] h4 {
    color: var(--color-crypto);
  }

  .asset-category-mobile[data-category="stocks"] h4 {
    color: var(--color-stocks);
  }

  .asset-category-mobile[data-category="indices"] h4 {
    color: var(--color-indices);
  }

  .asset-category-mobile[data-category="commodities"] h4 {
    color: var(--color-commodities);
  }

  .asset-category-mobile[data-category="forex"] h4 {
    color: var(--color-forex);
  }

  .asset-category-mobile[data-category="bonds"] h4 {
    color: var(--color-bonds);
  }

  .asset-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .asset-pill {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
}

/* =============================================================================
   HOW IT WORKS - INTERACTIVE TIMELINE
   ============================================================================= */

.how-it-works-section {
  position: relative;
  background: #030303;
  overflow: hidden;
}

/* Forecast lines background */
.forecast-lines-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.forecast-lines-svg {
  width: 200%;
  height: 100%;
  animation: forecast-drift 40s linear infinite;
}

@keyframes forecast-drift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.forecast-path {
  opacity: 0.6;
}

.forecast-path--1 {
  animation: path-wave-1 8s ease-in-out infinite;
}

.forecast-path--2 {
  animation: path-wave-2 10s ease-in-out infinite;
}

.forecast-path--3 {
  animation: path-wave-3 12s ease-in-out infinite;
}

@keyframes path-wave-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes path-wave-2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }
}

@keyframes path-wave-3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Interactive timeline */
.timeline-interactive .timeline-vertical__item {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover states */
.timeline-interactive .timeline-vertical__item:hover {
  transform: translateX(8px);
}

.timeline-interactive .timeline-vertical__item:hover .timeline-vertical__number {
  background: linear-gradient(135deg, #756fff, #8b7dff);
  box-shadow: 0 0 24px rgba(117, 111, 255, 0.5);
  transform: scale(1.15);
  color: #030303;
}

.timeline-interactive .timeline-vertical__item:hover .timeline-vertical__title {
  color: #fff;
}

/* Dim siblings when one is hovered */
.timeline-interactive:has(.timeline-vertical__item:hover) .timeline-vertical__item:not(:hover) {
  opacity: 0.4;
}

/* Expandable details */
.timeline-vertical__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 0;
}

.timeline-vertical__item:hover .timeline-vertical__details {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}

.timeline-vertical__details ul {
  list-style: none;
  padding: 16px;
  margin: 0;
  background: rgba(117, 111, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(117, 111, 255, 0.15);
}

.timeline-vertical__details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
}

.timeline-vertical__details li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-check {
  color: #756fff;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .forecast-lines-bg {
    opacity: 0.04;
  }

  .timeline-interactive .timeline-vertical__item:hover {
    transform: none;
  }

  /* On mobile, tap to expand */
  .timeline-interactive .timeline-vertical__details {
    transition: all 0.3s ease;
  }
}

/* =============================================================================
   TRUST SECTION - MINIMAL REDESIGN
   ============================================================================= */

.trust-section {
  padding: 60px 0;
}

.trust-statement {
  font-family: 'Satoshi', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: -0.02em;
}

.trust-pillars {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-pillar__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(117, 111, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(117, 111, 255, 0.2);
  color: #756fff;
}

.trust-pillar__icon svg {
  width: 22px;
  height: 22px;
}

.trust-pillar__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-pillar__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.trust-pillar__desc {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .trust-section {
    padding: 48px 0;
  }

  .trust-statement {
    font-size: 20px;
    margin-bottom: 36px;
    padding: 0 16px;
  }

  .trust-pillars {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .trust-pillar {
    width: 100%;
    max-width: 280px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* =============================================================================
   PAGE LOAD ANIMATIONS
   ============================================================================= */

/* Base animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation utility classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.5s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* Delay utilities for staggered animations */
.animate-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.animate-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

.animate-delay-5 {
  animation-delay: 0.5s;
  opacity: 0;
}

.animate-delay-6 {
  animation-delay: 0.6s;
  opacity: 0;
}

/* Page hero animation - applies to page-level hero sections */
.page-hero {
  animation: fadeInUp 0.8s ease-out forwards;
}

.page-hero__overline {
  animation: fadeInDown 0.5s ease-out 0.1s forwards;
  opacity: 0;
}

.page-hero__title {
  animation: fadeInUp 0.7s ease-out 0.2s forwards;
  opacity: 0;
}

.page-hero__subtitle {
  animation: fadeInUp 0.7s ease-out 0.3s forwards;
  opacity: 0;
}

/* Nav link stagger animation on page load */
.nav__list .nav__link:nth-child(1) {
  animation: fadeInDown 0.4s ease-out 0.1s forwards;
  opacity: 0;
}

.nav__list .nav__link:nth-child(2) {
  animation: fadeInDown 0.4s ease-out 0.15s forwards;
  opacity: 0;
}

.nav__list .nav__link:nth-child(3) {
  animation: fadeInDown 0.4s ease-out 0.2s forwards;
  opacity: 0;
}

.nav__list .nav__link:nth-child(4) {
  animation: fadeInDown 0.4s ease-out 0.25s forwards;
  opacity: 0;
}

/* Section content animations (scroll-triggered via JS) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children when parent becomes visible */
.stagger-children.is-visible>* {
  animation: fadeInUp 0.5s ease-out forwards;
}

.stagger-children.is-visible>*:nth-child(1) {
  animation-delay: 0.05s;
}

.stagger-children.is-visible>*:nth-child(2) {
  animation-delay: 0.1s;
}

.stagger-children.is-visible>*:nth-child(3) {
  animation-delay: 0.15s;
}

.stagger-children.is-visible>*:nth-child(4) {
  animation-delay: 0.2s;
}

.stagger-children.is-visible>*:nth-child(5) {
  animation-delay: 0.25s;
}

.stagger-children.is-visible>*:nth-child(6) {
  animation-delay: 0.3s;
}

/* =============================================================================
   NAVBAR SCROLL ANIMATION - Floating Island Effect

   Two-phase animation:
   1. DEFAULT (top): Original Webflow layout - full width, transparent
   2. FLOATING (scrolled): Compact island with background
   ============================================================================= */

/* Spacer for fixed navbar */
.page-w {
  padding-top: 100px;
}

/* Base navbar wrapper - fixed positioning */
.navbar-logo-left {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

/* =============================================================================
   DEFAULT STATE - Original Webflow layout (full width, transparent)
   ============================================================================= */

/* Container - FULL WIDTH like .shadow-three in original Webflow */
.navbar-logo-left .navbar-logo-left-container,
.navbar-logo-left .navbar-logo-left-container.shadow-three {
  background: transparent !important;
  box-shadow: none !important;
  width: 100%;
  max-width: 1600px;
  /* Full width for 16" MacBook Pro viewport */
  padding: 16px 0;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nav text - slightly smaller, color-only hover */
.navbar-logo-left .nav__link {
  font-size: 0.875em;
  border: none !important;
  transition: color 0.15s ease !important;
}

.navbar-logo-left .nav__link:hover {
  color: var(--color--lavender, #756fff) !important;
}

.navbar-logo-left .nav__end-link {
  font-size: 0.8em;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

/* Override nav button to match premium btn--primary style */
.navbar-logo-left .nav__end-link.is--active {
  background: linear-gradient(135deg, #756fff 0%, #6b63ff 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-family: 'Satoshi', sans-serif !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(117, 111, 255, 0.25);
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.navbar-logo-left .nav__end-link.is--active:hover {
  background: linear-gradient(135deg, #8b7dff 0%, #756fff 100%) !important;
  box-shadow: 0 6px 24px rgba(117, 111, 255, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.navbar-logo-left .nav__end-link.is--active:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

/* Nav element - transparent */
.navbar-logo-left .nav {
  margin: 0;
  border-radius: 50px;

  /* Transparent - no island visible */
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  /* Transition for visual properties only */
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease;
}

/* Container inside nav - original page padding, full width */
.navbar-logo-left .nav .container {
  width: 100%;
  max-width: none;
  padding-left: 3em;
  /* Original --page-padding */
  padding-right: 3em;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inner layout - original space-between */
.navbar-logo-left .nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =============================================================================
   FLOATING STATE (scrolled) - Compact island
   ============================================================================= */

.navbar-logo-left.is-floating .navbar-logo-left-container,
.navbar-logo-left.is-floating .navbar-logo-left-container.shadow-three {
  max-width: 900px;
  /* Compact island width */
}

.navbar-logo-left.is-floating .nav {
  /* Island visual appearance */
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar-logo-left.is-floating .nav .container {
  padding-left: 1.25em;
  padding-right: 1.25em;
}

/* Get Started button → text link in floating state */
.navbar-logo-left.is-floating .nav__end {
  background-color: transparent !important;
  background: transparent !important;
  padding: 0 !important;
}

.navbar-logo-left.is-floating .nav__end-link,
.navbar-logo-left.is-floating .nav__end-link.is--active {
  background: transparent !important;
  border: none !important;
  color: var(--color--lavender, #756fff) !important;
  box-shadow: none !important;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.navbar-logo-left.is-floating .nav__end-link:hover,
.navbar-logo-left.is-floating .nav__end-link.is--active:hover {
  color: #8b7dff !important;
  transform: translateY(-1px);
}

/* =============================================================================
   MOBILE RESPONSIVE
   ============================================================================= */
@media (max-width: 768px) {
  .navbar-logo-left .navbar-logo-left-container {
    max-width: 100%;
    padding: 12px 16px;
  }

  .navbar-logo-left .nav .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-logo-left.is-floating .navbar-logo-left-container {
    max-width: calc(100% - 32px);
  }

  .navbar-logo-left.is-floating .nav .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* =============================================================================
   MOBILE NAVIGATION - Hamburger Menu & Overlay
   ============================================================================= */

/* Hamburger toggle button - hidden by default on desktop */
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--color--light-grey, #e0e0e0);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger to X animation when active */
.nav__mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay - hidden by default */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 3, 3, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu__content {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__link {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #a1a1aa;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
  color: #ffffff;
}

.mobile-menu__cta {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #756fff 0%, #6b63ff 100%);
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(117, 111, 255, 0.3);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu__cta:hover,
.mobile-menu__cta:active {
  background: linear-gradient(135deg, #8b7dff 0%, #756fff 100%);
  box-shadow: 0 6px 28px rgba(117, 111, 255, 0.5);
  transform: translateY(-2px);
}

/* Hero mobile CTA - hidden by default on desktop */
.hero-cta-mobile {
  display: none;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-cta-mobile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #756fff 0%, #6b63ff 100%);
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(117, 111, 255, 0.3);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.hero-cta-mobile__btn:hover,
.hero-cta-mobile__btn:active {
  background: linear-gradient(135deg, #8b7dff 0%, #756fff 100%);
  box-shadow: 0 6px 28px rgba(117, 111, 255, 0.5);
  transform: translateY(-2px);
}

/* Mobile-specific visibility */
@media (max-width: 768px) {
  /* =========================================================================
     MOBILE NAVBAR - Remove floating island, solid background with gradient
     ========================================================================= */

  /* Solid background on the outermost navbar wrapper - no gaps */
  .navbar-logo-left {
    z-index: 1002;
    background: #030303;
  }

  /* Remove all padding/gaps from intermediate containers */
  .navbar-logo-left .navbar-logo-left-container,
  .navbar-logo-left .navbar-logo-left-container.shadow-three,
  .navbar-logo-left.is-floating .navbar-logo-left-container,
  .navbar-logo-left.is-floating .navbar-logo-left-container.shadow-three {
    max-width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
  }

  /* Nav element - no island styling, transparent to show parent background */
  .navbar-logo-left .nav,
  .navbar-logo-left.is-floating .nav {
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Container inside nav - padding for content */
  .navbar-logo-left .nav .container,
  .navbar-logo-left.is-floating .nav .container {
    padding: 16px 20px !important;
  }

  /* Gradient fade at bottom of navbar */
  .navbar-logo-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, #030303, transparent);
    pointer-events: none;
    transform: translateY(100%);
  }

  /* Show hamburger menu */
  .nav__mobile-toggle {
    display: flex;
  }

  /* Hide desktop navigation elements */
  .navbar-logo-left .nav__list,
  .navbar-logo-left .nav__end {
    display: none;
  }

  /* =========================================================================
     MOBILE HERO - Content UP, circles shifted down slightly
     ========================================================================= */

  /* Top-aligned content but maintain full height for background circles */
  .home-hero {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-top: 100px;
    /* Space for navbar */
    min-height: 100vh;
    /* Keep full height so circles have room */
  }

  /* Reset any previous margin adjustments */
  .home-hero__inner {
    margin-top: 0;
  }

  /* Simple vertical shift for circles - move up to headline level (mobile only) */
  .home-hero__bg {
    margin-top: -30vh;
  }

  /* =========================================================================
     MOBILE HERO CTA - Synced with trust-elements animation
     ========================================================================= */

  /* Show mobile hero CTA - appears with trust-elements */
  .hero-cta-mobile {
    display: flex;
    margin-top: 4rem; /* Shifted down from headline */
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: mobileCtaFadeIn 0.5s ease forwards;
    animation-delay: 2.4s;
  }

  /* Smaller button on mobile */
  .hero-cta-mobile__btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .trust-elements {
    margin-top: 0.5rem;
  }

  /* Fade-in animation matching trust-elements style */
  @keyframes mobileCtaFadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Prevent body scroll when menu is open */
  body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* =========================================================================
     SOCIAL PROOF BAR - Keep on single line
     ========================================================================= */
  .social-proof-bar {
    padding: 12px 0;
  }

  .social-proof-bar__content {
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: space-between;
  }

  .social-proof-bar__item {
    gap: 6px;
  }

  .social-proof-bar__value {
    font-size: 13px;
  }

  .social-proof-bar__label {
    font-size: 11px;
    white-space: nowrap;
  }

  /* =========================================================================
     APP MOCKUP - Scaled down desktop layout (same structure, smaller size)
     ========================================================================= */

  /* Reduce overall mockup height */
  .app-mockup {
    min-height: auto;
  }

  /* Hide sidebar on mobile */
  .app-mockup__sidebar {
    display: none;
  }

  /* Scale down the entire mockup proportionally */
  .app-mockup__main {
    padding: 8px;
    gap: 6px;
  }

  /* Header - scaled down proportionally */
  .app-header {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .app-header__left {
    gap: 8px;
  }

  .app-header__icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .app-header__icon svg {
    width: 12px;
    height: 12px;
  }

  .app-header__title {
    font-size: 10px;
  }

  .app-header__subtitle {
    font-size: 8px;
  }

  .app-header__right {
    gap: 4px;
  }

  .app-header__live {
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    gap: 4px;
  }

  .live-dot {
    width: 4px;
    height: 4px;
  }

  .app-header__btn {
    font-size: 8px;
    padding: 3px 6px;
    border-radius: 5px;
    gap: 2px;
  }

  .app-header__btn svg {
    width: 9px;
    height: 9px;
  }

  /* Metrics - keep 5-column grid like desktop, just smaller */
  .app-metrics {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }

  .app-metric-card {
    padding: 6px;
    border-radius: 8px;
    gap: 1px;
  }

  .app-metric-card__icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-bottom: 2px;
  }

  .app-metric-card__icon svg {
    width: 8px;
    height: 8px;
  }

  .app-metric-card__label {
    font-size: 6px;
  }

  .app-metric-card__value {
    font-size: 10px;
  }

  .app-metric-card__unit {
    font-size: 7px;
  }

  .app-metric-card__sub {
    font-size: 6px;
  }

  .app-metric-card__progress {
    height: 2px;
    margin-top: 2px;
  }

  /* Content row - keep side-by-side like desktop, reduced height */
  .app-content-row {
    grid-template-columns: 1.6fr 1fr;
    gap: 6px;
    flex: none;
  }

  /* Chart panel - scaled down with fixed height */
  .app-chart-panel {
    border-radius: 8px;
  }

  .app-panel-header {
    padding: 5px 8px;
  }

  .app-panel-title {
    font-size: 8px;
    gap: 4px;
  }

  .app-panel-title svg {
    width: 9px;
    height: 9px;
  }

  .app-panel-pills {
    border-radius: 4px;
    padding: 1px;
  }

  .app-pill {
    font-size: 6px;
    padding: 2px 4px;
    border-radius: 2px;
  }

  .app-chart {
    padding: 4px;
    height: 70px;
  }

  .app-chart svg {
    height: 100%;
  }

  /* Allocation panel - scaled down */
  .app-allocation-panel {
    border-radius: 8px;
  }

  .app-treemap {
    height: 28px;
    padding: 3px;
    gap: 2px;
  }

  .treemap-cell {
    font-size: 6px;
    border-radius: 3px;
  }

  /* Asset list - compact */
  .app-assets {
    padding: 3px 5px;
    gap: 1px;
    display: flex;
    flex-direction: column;
  }

  .app-asset-row {
    gap: 3px;
    display: flex;
    align-items: center;
    font-size: 6px;
  }

  .app-asset-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .app-asset-ticker {
    font-size: 6px;
    font-weight: 600;
    color: #e0e0e0;
    width: 20px;
  }

  .app-asset-bar {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1px;
    overflow: hidden;
  }

  .app-asset-bar > div {
    height: 100%;
    border-radius: 1px;
  }

  .app-asset-pct {
    font-size: 6px;
    color: #71717a;
    width: 18px;
    text-align: right;
  }

  /* =========================================================================
     MAC WINDOW TITLEBAR - Scaled down for mobile
     ========================================================================= */
  .mac-window-titlebar {
    padding: 8px 10px;
  }

  .mac-window-buttons {
    gap: 5px;
  }

  .mac-btn {
    width: 8px;
    height: 8px;
  }

  .mac-window-title {
    font-size: 9px;
  }

  /* Mac window container */
  .mac-window {
    border-radius: 10px;
  }
}

/* =============================================================================
   ACCESSIBILITY - Reduced Motion
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {

  .navbar-logo-left .nav,
  .navbar-logo-left .nav .container,
  .navbar-logo-left .navbar-logo-left-container {
    transition: none !important;
  }

  .nav__mobile-toggle,
  .hamburger-line,
  .mobile-menu,
  .mobile-menu__content {
    transition: none !important;
  }
}

/* =============================================================================
   CHAOS TO ORDER ANIMATION (Problem Section Visualization)
   Dots converge from random positions into ordered signal paths
   ============================================================================= */

/* Container styling */
.viz-option {
  display: flex;
  justify-content: center;
  align-items: center;
}

.viz-option svg {
  max-width: 100%;
  height: auto;
}

.viz-option--animated {
  min-height: 250px;
}

/* Dots animate to target positions */
.chaos-dot {
  transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.viz-option--animated.is-animating .chaos-dot {
  fill: #756fff;
}

/* Lines fade in and glow - bidirectional transitions */
.order-lines {
  transition: opacity 0.8s ease;
}

.viz-option--animated.is-animating .order-lines {
  opacity: 1;
  transition-delay: 1.2s;
  /* Delay fade-in until dots settle */
}

.viz-option--animated:not(.is-animating) .order-lines {
  transition-delay: 0s;
  /* Fade out immediately when reversing */
}

.viz-option--animated.is-animating .order-line:not(.order-line--band) {
  filter: url(#glow);
  animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  0% {
    stroke-opacity: 0.8;
  }

  100% {
    stroke-opacity: 1;
  }
}

/* Label transitions - bidirectional for looping animation */
.viz-label-text--order {
  transition: opacity 0.5s ease;
}

.viz-option--animated.is-animating .viz-label-text--order {
  opacity: 1;
  transition-delay: 1.5s;
  /* Show after dots settle */
}

.viz-option--animated:not(.is-animating) .viz-label-text--order {
  transition-delay: 0s;
  /* Fade out immediately when reversing */
}

.viz-label-text--chaos {
  transition: opacity 0.5s ease;
}

.viz-option--animated.is-animating .viz-label-text--chaos {
  opacity: 0.3;
  transition-delay: 0.8s;
}

.viz-option--animated:not(.is-animating) .viz-label-text--chaos {
  transition-delay: 0.5s;
  /* Fade back in after a moment */
}

/* Reduced motion support */
.viz-option--animated.no-transition .chaos-dot,
.viz-option--animated.no-transition .order-lines,
.viz-option--animated.no-transition .viz-label-text--order,
.viz-option--animated.no-transition .viz-label-text--chaos {
  transition: none !important;
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================================================
   SUPPORT FLOATING BUTTON (Ko-fi)
   ============================================================================= */

.support-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #756fff 0%, #5e4fd4 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(117, 111, 255, 0.35);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Hidden initially - appears after hero animations */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.support-fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: support-pulse 3s ease-in-out infinite;
}

.support-fab.is-visible:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 32px rgba(117, 111, 255, 0.5);
}

.support-fab.is-visible:active {
  transform: translateY(-2px) scale(1.02);
}

.support-fab__icon {
  width: 24px;
  height: 24px;
  color: white;
}

@keyframes support-pulse {

  0%,
  100% {
    box-shadow: 0 4px 24px rgba(117, 111, 255, 0.35);
  }

  50% {
    box-shadow: 0 4px 32px rgba(117, 111, 255, 0.55);
  }
}

/* =============================================================================
   SUPPORT MODAL
   ============================================================================= */

.support-modal {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1000 !important;
  padding: 1.5rem !important;
}

.support-modal.active {
  display: flex !important;
}

.support-modal__card {
  background: rgba(20, 20, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-modal.active .support-modal__card {
  transform: translateY(0) scale(1);
}

.support-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.support-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.support-modal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.support-modal__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #756fff 0%, #5e4fd4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-modal__icon svg {
  width: 24px;
  height: 24px;
  color: white;
  stroke: currentColor;
}

.support-modal__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.support-modal__body {
  margin-bottom: 1.5rem;
}

.support-modal__intro {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.support-modal__text {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}

.support-modal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.support-modal__list li {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.support-modal__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #756fff;
  font-weight: 600;
}

.support-modal__tagline {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
}

.support-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.support-modal__actions .btn--primary {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

.support-modal__later {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Satoshi', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.support-modal__later:hover {
  color: rgba(255, 255, 255, 0.8);
}

.support-modal__note {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin: 0;
}

/* Mobile adjustments for support button */
@media (max-width: 640px) {
  .support-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .support-fab__icon {
    width: 22px;
    height: 22px;
  }

  .support-modal__card {
    padding: 1.5rem;
  }

  .support-modal__title {
    font-size: 1.25rem;
  }
}