@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=IBM+Plex+Mono:wght@400;500;700&family=Cormorant+Garamond:ital,wght@1,300;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
  /* DARK MODE - "Midnight Luxe" */
  --bg-primary: #0B0D17;
  --bg-secondary: #121628;
  --bg-tertiary: #1A1F36;
  --accent-primary: #7C5CFC; /* Soft Violet */
  --accent-primary-rgb: 124, 92, 252;
  --accent-success: #34D399; /* Emerald */
  --accent-success-rgb: 52, 211, 153;
  --accent-premium: #F472B6; /* Soft Pink */
  --accent-premium-rgb: 244, 114, 182;
  --accent-danger: #fb3640; /* Vibrant Red */
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --border-color: rgba(124, 92, 252, 0.2);
  --border-glow: rgba(124, 92, 252, 0.15);
  --shadow-glow: rgba(124, 92, 252, 0.08);
  
  --font-family: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --border-radius-card: 16px;
  --card-border-style: 1px solid var(--border-color);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --button-radius: 12px;
}

html[data-theme="light"] {
  /* LIGHT MODE - "Luxury Design Studio" */
  --bg-primary: #F7F4EF; /* Warm off-white */
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #EFECE6;
  --accent-primary: #2D1B69; /* Deep Indigo */
  --accent-primary-rgb: 45, 27, 105;
  --accent-success: #00C853;
  --accent-success-rgb: 0, 200, 83;
  --accent-premium: #C9956C; /* Dusty Rose Gold */
  --accent-premium-rgb: 201, 149, 108;
  --accent-danger: #D32F2F; /* Rich Red */
  --text-primary: #0D1B2A; /* Deep Navy */
  --text-secondary: #5A6270;
  --border-color: rgba(45, 27, 105, 0.08);
  --border-glow: rgba(201, 149, 108, 0.15);
  --shadow-glow: rgba(0, 0, 0, 0.04);
  
  --font-family: 'Inter', sans-serif;
  --font-heading: 'Cormorant Garamond', serif;
  --border-radius-card: 24px;
  --card-border-style: 1px solid var(--border-color);
  --button-radius: 50px;
}

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

html, body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: background-color 0.6s cubic-bezier(0.76, 0, 0.24, 1), color 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

html, body, header, .card, .product-card, .bazaar-card, .bounty-card, .auth-card, .panel, .stat-card, input, select, textarea, button, a {
  transition: background-color 0.6s cubic-bezier(0.76, 0, 0.24, 1), color 0.6s cubic-bezier(0.76, 0, 0.24, 1), border-color 0.6s cubic-bezier(0.76, 0, 0.24, 1), box-shadow 0.6s cubic-bezier(0.76, 0, 0.24, 1), border-radius 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Utility Layouts */
/* Logo typography and theme toggling */
.logo-text {
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  letter-spacing: -0.5px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  display: inline-block !important;
  color: var(--text-primary) !important;
}
html[data-theme="light"] .logo-badge { display: none !important; }

/* Toggling display based on theme */
[data-theme="dark"] .hero-light-theme { display: none !important; }
html[data-theme="light"] .hero-dark-theme { display: none !important; }

[data-theme="dark"] .vault-preview-light { display: none !important; }
html[data-theme="light"] .vault-preview-dark { display: none !important; }

[data-theme="dark"] .trust-light-theme { display: none !important; }
html[data-theme="light"] .trust-dark-theme { display: none !important; }

[data-theme="dark"] .plans-light-theme { display: none !important; }
html[data-theme="light"] .plans-dark-theme { display: none !important; }

[data-theme="dark"] .footer-light { display: none !important; }
html[data-theme="light"] .footer-dark { display: none !important; }

[data-theme="dark"] .features-light-theme { display: none !important; }
html[data-theme="light"] .features-dark-theme { display: none !important; }

/* Glitch classified card for dark mode */
.classified-card {
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.classified-card:hover {
  animation: card-glitch-shake 0.2s infinite linear;
  border-color: var(--accent-premium) !important;
  box-shadow: 0 0 20px var(--accent-premium) !important;
}
.classified-card:hover .card-glitch-overlay {
  display: flex !important;
}
@keyframes card-glitch-shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  75% { transform: translate(-1px, -1px); }
  100% { transform: translate(0, 0); }
}

/* Elegant light mode card hover */
.gallery-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(45, 27, 105, 0.08) !important;
}

/* Neon Social buttons footer dark */
.social-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent-primary);
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}
.social-btn-dark:hover {
  background: var(--accent-primary);
  color: var(--bg-primary) !important;
  box-shadow: 0 0 10px var(--accent-primary);
}

/* Light footer links and socials */
.footer-link-light {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 350;
  color: #5A6270;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link-light:hover {
  color: #C9956C !important;
}
.social-btn-light {
  color: #2D1B69;
  font-size: 16px;
  transition: color 0.2s ease;
}
.social-btn-light:hover {
  color: #C9956C;
}

/* Zigzag line on dark features */
@keyframes zigzag-move {
  from { background-position: 0 0; }
  to { background-position: 40px 0; }
}
.zigzag-line {
  animation: zigzag-move 10s linear infinite;
}

/* Light mode floating nav pill links separation */
html[data-theme="light"] .nav-links li::after {
  content: " ·";
  color: var(--accent-premium);
  margin-left: 12px;
  margin-right: 12px;
  font-weight: bold;
}
html[data-theme="light"] .nav-links li:last-child::after {
  content: "";
}

/* Dark mode links outline */
[data-theme="dark"] .nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  border: 1px solid var(--accent-primary);
  padding: 6px 12px;
  border-radius: 20px;
  background: transparent;
  color: var(--text-primary);
  text-transform: uppercase;
}
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
  box-shadow: 0 0 10px var(--accent-primary);
  text-shadow: 0 0 5px var(--accent-primary);
}
[data-theme="dark"] .nav-links li::after {
  content: " |";
  color: var(--accent-primary);
  margin-left: 12px;
  margin-right: 12px;
}
[data-theme="dark"] .nav-links li:last-child::after {
  content: "";
}

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

/* Glassmorphism Header */
@keyframes headerGlassPulse {
  0% {
    border-bottom-color: rgba(251, 54, 64, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  }
  50% {
    border-bottom-color: rgba(179, 136, 255, 0.35);
    box-shadow: 0 4px 30px rgba(179, 136, 255, 0.05);
  }
  100% {
    border-bottom-color: rgba(251, 54, 64, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  }
}
@keyframes headerShineSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 15, 8, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border-color);
  animation: headerGlassPulse 8s infinite ease-in-out;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-premium), transparent);
  opacity: 0.45;
  animation: headerShineSweep 6s infinite linear;
  pointer-events: none;
}
[data-theme="light"] header {
  background: rgba(248, 249, 250, 0.6);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.logo img {
  transition: filter 0.3s ease;
}

[data-theme="dark"] .logo img {
  filter: drop-shadow(0 0 8px #B388FF) drop-shadow(0 0 16px #7C4DFF);
}

[data-theme="light"] .logo img {
  filter: none;
}

.logo span {
  color: var(--accent-primary);
}

.logo-badge {
  font-size: 10px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-premium));
  color: white;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links li {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown:hover .dropdown-menu {
  display: flex !important;
}

.dropdown-menu {
  border-radius: var(--border-radius-card) !important;
  backdrop-filter: blur(16px) !important;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: var(--text-primary) !important;
  padding: 10px 16px !important;
}

.dropdown-menu a:hover {
  background: var(--bg-tertiary) !important;
  color: var(--accent-primary) !important;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition-smooth);
}

.nav-links a.active::after {
  width: 100%;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(251, 54, 64, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 54, 64, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--text-primary);
}

.btn-premium {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-premium));
  color: white;
  box-shadow: 0 4px 14px rgba(179, 136, 255, 0.3);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 136, 255, 0.5);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.theme-toggle:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Home / Hero Section */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(179, 136, 255, 0.1);
  border: 1px solid rgba(179, 136, 255, 0.2);
  color: var(--accent-premium);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-premium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Torus Centerpiece */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.torus-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
}

.torus-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(251, 54, 64, 0.2));
  animation: rotateTorus 12s linear infinite;
}

@keyframes rotateTorus {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.glowing-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179,136,255,0.4) 0%, rgba(251,54,64,0) 70%);
  top: 25%;
  left: 25%;
  filter: blur(20px);
  animation: pulseBlob 4s ease-in-out infinite alternate;
}

@keyframes pulseBlob {
  from {
    transform: scale(0.9) translate(-10px, -10px);
    opacity: 0.6;
  }
  to {
    transform: scale(1.2) translate(10px, 10px);
    opacity: 0.9;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  opacity: 0.6;
  animation: bounceScroll 2s infinite;
}

@keyframes bounceScroll {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-8px) translateX(-50%);
  }
  60% {
    transform: translateY(-4px) translateX(-50%);
  }
}

/* Live Stats */
.live-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border-color);
}

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

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 8px;
  font-family: var(--font-family);
  background: linear-gradient(135deg, var(--text-primary), var(--accent-premium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Trust Marquee */
.trust-marquee {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(90deg, var(--bg-secondary), var(--bg-tertiary));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  overflow: hidden;
  margin-bottom: 80px;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  gap: 40px;
}

.marquee-content span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marquee-content span::after {
  content: '•';
  color: var(--accent-primary);
  margin-left: 32px;
}

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

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

.section-tag {
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}

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

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-success);
  box-shadow: 0 10px 30px var(--shadow-glow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(251, 54, 64, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-primary);
  font-size: 20px;
}

.feature-card:nth-child(2) .feature-icon {
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent-success);
}

.feature-card:nth-child(3) .feature-icon {
  background: rgba(179, 136, 255, 0.1);
  color: var(--accent-premium);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

/* Comparison Table */
.comparison-section {
  margin-bottom: 100px;
}

.comparison-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: var(--bg-tertiary);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

td {
  font-size: 15px;
  color: var(--text-secondary);
}

tr:last-child td {
  border-bottom: none;
}

.studioz-col {
  color: var(--accent-success);
  font-weight: 700;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  border-color: var(--accent-premium);
  box-shadow: 0 10px 30px rgba(179, 136, 255, 0.15);
  transform: scale(1.03);
}

.pricing-card:hover:not(.featured) {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-premium);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.tier-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-price {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
}

.tier-price span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.tier-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.tier-features li {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features li i {
  color: var(--accent-success);
  font-size: 10px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  background: var(--bg-secondary);
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Views Management */
.view {
  display: none;
  animation: fadeIn 0.4s ease;
}

.view.active {
  display: block;
}

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

main {
  min-height: calc(100vh - 80px);
}

/* Form Pages (Login/Register) */
.auth-wrapper {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.auth-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

input, select, textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 14px;
  transition: var(--transition-smooth);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(251, 54, 64, 0.15);
}

/* Verification Cards selection */
.verify-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.verify-card {
  border: 1.5px solid var(--border-color);
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.verify-card i {
  font-size: 20px;
  color: var(--text-secondary);
}

.verify-card span {
  font-size: 11px;
  font-weight: 700;
}

.verify-card p {
  font-size: 9px;
  color: var(--text-secondary);
}

.verify-card.selected {
  border-color: var(--accent-success);
  background: rgba(0, 230, 118, 0.05);
}

.verify-card.selected i {
  color: var(--accent-success);
}

.verify-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.coming-soon-badge {
  position: absolute;
  top: -8px;
  background: var(--accent-primary);
  color: white;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
  text-transform: uppercase;
}

.auth-toggle-link {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-toggle-link span {
  color: var(--accent-primary);
  cursor: pointer;
  font-weight: 600;
}

/* Product Vault view */
.vault-header {
  padding-top: 120px;
  margin-bottom: 40px;
}

.search-filter-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.search-input-wrapper {
  flex-grow: 1;
  position: relative;
}

.search-input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.search-input-wrapper input {
  padding-left: 48px;
}

.filter-select {
  min-width: 160px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

/* Skeletons */
.skeleton-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.skeleton-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: loadingSkeleton 1.5s infinite;
}

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

/* Product Card */
.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Digital product card hover - cyber glow */
.product-card-digital:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--accent-primary) !important;
  box-shadow: 0 10px 30px rgba(124, 92, 252, 0.25) !important;
}

/* Physical product card hover - tactile depth */
.product-card-physical:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-premium) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

[data-theme="dark"] .product-card-physical:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5) !important;
}

.product-thumb {
  height: 180px;
  background: var(--bg-tertiary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-primary, rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary, #111111);
  border: 1px solid var(--border-color, rgba(0, 0, 0, 0.1));
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.product-info {
  padding: 16px;
}

.product-seller {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.verified-badge {
  color: var(--accent-success);
  font-size: 12px;
}

.product-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

/* Modal detail view */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  animation: modalSlide 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-primary);
}

/* Creator Bazaar View */
.bazaar-header {
  padding-top: 120px;
  margin-bottom: 40px;
}

.skill-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.skill-chip {
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-secondary);
}

.skill-chip.active, .skill-chip:hover {
  border-color: var(--accent-premium);
  color: var(--text-primary);
  background: rgba(179, 136, 255, 0.05);
}

.freelancer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.freelancer-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.freelancer-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-premium);
  box-shadow: 0 10px 24px rgba(179,136,255,0.08);
}

.freelancer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  margin: 0 auto 16px;
  border: 2px solid var(--border-color);
  overflow: hidden;
}

.freelancer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.freelancer-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.freelancer-username {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.freelancer-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 40px;
}

.freelancer-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.freelancer-stat-item span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.freelancer-stat-item label {
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Gated Upsell View */
.upsell-view {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
}

.upsell-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--accent-premium);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  max-width: 580px;
  box-shadow: 0 10px 40px rgba(179,136,255,0.1);
  position: relative;
}

.upsell-card i {
  font-size: 48px;
  color: var(--accent-premium);
  margin-bottom: 24px;
}

.upsell-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.upsell-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Dev Bounty Zone */
.bounties-header {
  padding-top: 120px;
  margin-bottom: 40px;
}

.bounties-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
}

.bounty-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: var(--transition-smooth);
}

.bounty-card:hover {
  border-color: var(--accent-premium);
  box-shadow: 0 4px 20px rgba(179,136,255,0.06);
}

.bounty-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bounty-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.bounty-tags {
  display: flex;
  gap: 8px;
}

.bounty-tag {
  background: var(--bg-tertiary);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

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

.bounty-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-success);
  margin-bottom: 12px;
}

/* Dashboard View */
.dashboard-header {
  padding-top: 120px;
  margin-bottom: 40px;
}

/* Tabbed Dashboard Layout */
.dashboard-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.dashboard-main {
  flex: 1.8;
  min-width: 0; /* Prevents overflow issues */
}

.dashboard-sidebar {
  flex: 1.2;
  position: sticky;
  top: 100px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
}

.dash-panel-content {
  display: none;
}

.dash-panel-content.active {
  display: block;
  animation: fadeInTab 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dash-tab-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-tab-btn i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.dash-tab-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.dash-tab-btn.active {
  background: rgba(124, 92, 252, 0.1);
  color: var(--accent-primary);
  font-weight: 700;
}

.dash-tab-btn.active i {
  color: var(--accent-primary);
}

/* Light Theme overrides for tabs */
html[data-theme="light"] .dash-tab-btn:hover {
  background: rgba(45, 27, 105, 0.05);
  color: #2D1B69;
}

html[data-theme="light"] .dash-tab-btn.active {
  background: rgba(45, 27, 105, 0.08);
  color: #2D1B69;
  font-weight: 700;
}

html[data-theme="light"] .dash-tab-btn.active i {
  color: #2D1B69;
}

/* Responsive adjustments for Dashboard */
@media (max-width: 991px) {
  .dashboard-container {
    flex-direction: column-reverse;
  }
  .dashboard-main {
    width: 100%;
  }
  .dashboard-sidebar {
    width: 100%;
    position: static;
    margin-bottom: 24px;
  }
}

.dashboard-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
}

.panel-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Wallet Card (NeoBank style) */
.wallet-card {
  background: linear-gradient(135deg, #0f2a1d 0%, #050e0a 100%);
  border: 1.5px solid var(--accent-success);
  border-radius: 16px;
  padding: 24px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 230, 118, 0.1);
  margin-bottom: 24px;
}

.wallet-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: rgba(0, 230, 118, 0.04);
  border-radius: 50%;
}

.wallet-brand {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.wallet-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.balance-amount {
  font-size: 36px;
  font-weight: 800;
}

.balance-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent-success);
  font-weight: 700;
  letter-spacing: 1px;
}

.pending-badge {
  font-size: 11px;
  background: rgba(251, 54, 64, 0.1);
  border: 1px solid rgba(251, 54, 64, 0.2);
  color: var(--accent-primary);
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Locked Escrow List */
.escrow-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
}

.escrow-info h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.escrow-info p {
  font-size: 11px;
  color: var(--text-secondary);
}

.escrow-countdown {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary);
}

/* Floating AI Chat Assistant */
.ai-chat-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 2000;
}

.chat-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-premium));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(179, 136, 255, 0.4);
  transition: var(--transition-smooth);
}

.chat-bubble:hover {
  transform: scale(1.08) rotate(5deg);
}

.chat-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  height: 480px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-premium);
  box-shadow: 0 10px 30px rgba(179, 136, 255, 0.15);
  border-radius: 16px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlide 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.chat-panel.active {
  display: flex;
}

.chat-header {
  background: var(--bg-tertiary);
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-header h4 span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-success);
  display: inline-block;
}

.chat-messages {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.chat-msg.bot {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background: var(--accent-premium);
  color: #000;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 500;
}

.chat-input-area {
  padding: 12px;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
}

.chat-input-area input {
  padding: 10px 12px;
  font-size: 13px;
}

/* List Items, etc. */
.my-listings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.listing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.listing-item-info h5 {
  font-size: 14px;
  font-weight: 700;
}

.listing-item-info span {
  font-size: 11px;
  color: var(--text-secondary);
}

.listing-item-price {
  font-weight: 700;
  color: var(--text-primary);
}

/* AI suggestions preview */
.ai-optimizer-panel {
  background: rgba(179, 136, 255, 0.04);
  border: 1px dashed var(--accent-premium);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  display: none;
}

.ai-optimizer-panel.active {
  display: block;
}

.ai-opt-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-premium);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Tab Switchers for Login */
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.auth-tab-btn {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 8px 16px;
  border-radius: 26px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.auth-tab-btn.active {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.auth-tab-content {
  display: none;
}

.auth-tab-content.active {
  display: block;
}

/* Guest email container styling */
.guest-form-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .live-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .freelancer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .verify-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .freelancer-grid {
    grid-template-columns: 1fr;
  }
  .chat-panel {
    width: 300px;
    right: -16px;
  }
}

/* ==========================================
   STUDIOZ PREMIUM SCROLL ANIMATIONS SYSTEM
   ========================================== */

/* Scroll Progress indicator */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-premium), var(--accent-success));
  z-index: 2200;
  transition: width 0.1s ease-out;
}

/* Scroll Reveal Elements */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* About Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-step {
  display: flex;
  gap: 20px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.timeline-step:hover {
  border-color: var(--accent-premium);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(179,136,255,0.05);
}

.step-num {
  font-size: 28px;
  font-weight: 850;
  color: var(--accent-premium);
  line-height: 1;
}

.step-body h4 {
  font-size: 16px;
  font-weight: 750;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.step-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-stats-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.graphic-glow-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(179,136,255,0.18) 0%, rgba(251,54,64,0) 70%);
  filter: blur(24px);
  animation: floatCircle 6s ease-in-out infinite alternate;
}

@keyframes floatCircle {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(12px, 12px) scale(1.1); }
}

.graphic-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  z-index: 1;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.graphic-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-success);
  box-shadow: 0 10px 24px var(--shadow-glow);
}

.graphic-card i {
  font-size: 40px;
  color: var(--accent-success);
  margin-bottom: 16px;
}

.graphic-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.graphic-card p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .timeline-step:hover {
    transform: none;
  }
}

/* ==========================================================================
   Awwwards Premium Interactions & Smooth Scroll
   ========================================================================== */

/* Custom Trailing Cursor */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  will-change: transform;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              height 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-cursor.hovered {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

/* Split-Type Character Masks */
.split-text {
  overflow: hidden;
  display: block;
}

.split-text .char {
  display: inline-block;
  will-change: transform, opacity;
  transform: translateY(100%);
  opacity: 0;
}

/* Smooth Scroll Layout Adjustments */
html.lenis {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis-scrolling iframe {
  pointer-events: none;
}

/* Magnetic Transition Tweaks */
.magnetic {
  display: inline-block;
  will-change: transform;
  transition: transform 0.1s ease-out;
}



/* ======================================================
   SCROLL ANIMATION STYLES - GSAP + Lenis powered
   Inspired by AICM, Scarabynth, TIDY, NEXA websites
====================================================== */

/* Custom Cursor */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  will-change: transform;
  transition: width 0.25s cubic-bezier(0.25,1,0.5,1), height 0.25s cubic-bezier(0.25,1,0.5,1);
}
.custom-cursor.hovered {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.85);
}
@media (pointer: coarse) { .custom-cursor { display: none; } }

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-premium));
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(179, 136, 255, 0.5);
}

/* Lenis classes */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.25,0.8,0.25,1), transform 0.65s cubic-bezier(0.25,0.8,0.25,1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.pricing-card:nth-child(2) { transition-delay: 0.08s; }
.pricing-card:nth-child(3) { transition-delay: 0.16s; }
.pricing-card:nth-child(4) { transition-delay: 0.24s; }

/* Particles canvas */
.hero-section { overflow: hidden; }
#particles-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-section .hero-grid { position: relative; z-index: 2; }
.hero-section .scroll-indicator { position: relative; z-index: 2; }

/* No motion fallback */
@media (prefers-reduced-motion: reduce) {
  .hero-visual, .hero-badge, .hero-title, .hero-subtitle, .hero-actions { opacity: 1 !important; transform: none !important; }
}

/* Feature card sweep glow */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 70%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(179,136,255,0.07), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.feature-card:hover::before { left: 130%; }

/* Pricing card top glow */
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(251,54,64,0.06) 0%, transparent 70%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pricing-card:hover::after { opacity: 1; }
.pricing-card.featured::after {
  background: radial-gradient(ellipse at 50% 0%, rgba(179,136,255,0.1) 0%, transparent 70%);
  opacity: 1;
}

/* Trust marquee */
.trust-marquee {
  border-top: 1px solid rgba(251,54,64,0.15) !important;
  border-bottom: 1px solid rgba(251,54,64,0.15) !important;
}

/* Product card shimmer */
.product-card { position: relative; overflow: hidden; }
.product-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}
.product-card:hover::before { left: 150%; }

/* Glow circle pulse */
.graphic-glow-circle { animation: szGlowPulse 3.5s ease-in-out infinite alternate; }
@keyframes szGlowPulse {
  from { transform: scale(0.9); opacity: 0.5; filter: blur(30px); }
  to   { transform: scale(1.15); opacity: 0.85; filter: blur(50px); }
}

/* Wallet card breathe */
.wallet-card { animation: szWalletGlow 4s ease-in-out infinite alternate; }
@keyframes szWalletGlow {
  from { box-shadow: 0 8px 20px rgba(0,230,118,0.08); }
  to   { box-shadow: 0 8px 35px rgba(0,230,118,0.2); }
}

/* Scroll indicator */
.scroll-indicator { animation: szScrollBounce 2.2s ease-in-out infinite; }
@keyframes szScrollBounce {
  0%, 100% { transform: translateY(0) translateX(-50%); opacity: 0.55; }
  50% { transform: translateY(-8px) translateX(-50%); opacity: 0.9; }
}

/* ─── 3D PERSPECTIVE VAULT SHOWCASE ─── */
.showcase-perspective-container {
  perspective: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.showcase-scroll-wrapper {
  transform: rotateX(25deg) rotateY(0deg) rotateZ(-5deg);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  overflow: visible;
}
.showcase-tilted-grid {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: max-content;
  transform-style: preserve-3d;
  animation: marquee-left 35s linear infinite;
  padding-left: 50px;
}
.showcase-tilted-grid:hover {
  animation-play-state: paused;
}
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .showcase-scroll-wrapper {
    transform: rotateX(12deg) rotateY(0deg) rotateZ(-2deg) !important;
  }
  .showcase-tilted-grid {
    animation-duration: 25s;
  }
}
.showcase-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.showcase-card:hover {
  transform: translateZ(30px) scale(1.02);
  border-color: var(--accent-success);
}
.showcase-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 6px;
}
.showcase-card p {
  font-size: 12px;
  color: var(--text-secondary);
}
.showcase-card .card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-success);
  margin-top: 14px;
}
.showcase-card .card-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(179, 136, 255, 0.1);
  color: var(--accent-premium);
  border: 1px solid rgba(179, 136, 255, 0.2);
  border-radius: 20px;
  display: inline-block;
}

/* ─── SIGNATURE SHRED TRANSITION ─── */
.shred-container-outer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
}
.shred-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: var(--bg-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.shred-strip-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.shred-strip {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  transform-origin: center top;
}
.shred-overlay-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  padding: 24px;
  text-align: center;
  transition: opacity 0.5s ease;
}
.shred-underlay-bottom {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  background: rgba(179, 136, 255, 0.03);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.shred-reveal-content {
  max-width: 900px;
  width: 100%;
  z-index: 1;
}
.earners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .earners-grid {
    grid-template-columns: 1fr;
  }
}
.earner-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.earner-rank {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-premium);
}
.earner-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.earner-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-success);
  margin-bottom: 12px;
}
.earner-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* ─── PACING: ALTERNATING LIGHT/DARK BACKGROUNDS ─── */
.trust-marquee {
  background: #FFFFFF !important;
  border-top: 1.5px solid var(--border-color) !important;
  border-bottom: 1.5px solid var(--border-color) !important;
}
.trust-marquee .marquee-content span {
  color: #1A202C !important;
}
.pricing-section {
  background: #FFFFFF !important;
  color: #1A202C !important;
  padding: 80px 24px;
  border-radius: 24px;
  border: 1.5px solid #E2E8F0 !important;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}
.pricing-section .section-title {
  color: #1A202C !important;
}
.pricing-section .pricing-card {
  background: #F8F9FA !important;
  border-color: #E2E8F0 !important;
}
.pricing-section .pricing-card:not(.featured) {
  color: #1A202C !important;
}
.pricing-section .pricing-card:not(.featured) .tier-name,
.pricing-section .pricing-card:not(.featured) .tier-price {
  color: #1A202C !important;
}
.pricing-section .pricing-card .tier-features li {
  color: #4A5568 !important;
}
.pricing-section .pricing-card .btn-outline {
  border-color: #CBD5E1 !important;
  color: #1A202C !important;
}
.pricing-section .pricing-card .btn-outline:hover {
  background: #E2E8F0 !important;
}

/* ─── CLOSING QUESTIONS / AI ASSISTANT SECTION ─── */
.closing-section {
  padding: 60px 24px;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(179,136,255,0.02) 0%, transparent 80%);
}
.closing-svg {
  animation: szFloatSvg 6s ease-in-out infinite alternate;
}
@keyframes szFloatSvg {
  from { transform: translateY(0px) rotate(0deg); }
  to   { transform: translateY(-12px) rotate(3deg); }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT THEME HEADER FIX
   Ensure nav links, theme toggle, and buttons are fully readable
═══════════════════════════════════════════════════════════════ */
[data-theme="light"] .nav-links a {
  color: #2D3748 !important;
  font-weight: 600;
}
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
  color: #1A202C !important;
}
[data-theme="light"] .nav-links a::after {
  background: var(--accent-primary);
}
[data-theme="light"] .theme-toggle {
  color: #2D3748;
}
[data-theme="light"] .theme-toggle:hover {
  background: #E2E8F0;
  color: #1A202C;
}
[data-theme="light"] .btn-outline {
  color: #1A202C !important;
  border-color: #CBD5E1 !important;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE HAMBURGER BUTTON
═══════════════════════════════════════════════════════════════ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition-smooth);
}
.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.hamburger-btn:hover {
  border-color: var(--accent-primary);
}
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAVIGATION DRAWER
═══════════════════════════════════════════════════════════════ */
.mobile-nav-drawer {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}
.mobile-nav-drawer.open {
  max-height: 500px;
}
.mobile-nav-links {
  list-style: none;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links li a {
  display: block;
  padding: 12px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}
.mobile-nav-links li a:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
[data-theme="light"] .mobile-nav-links li a {
  color: #2D3748;
}
[data-theme="light"] .mobile-nav-links li a:hover {
  background: #F1F3F5;
  color: #1A202C;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: Mobile ≤ 768px — hide desktop nav, show hamburger
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
  .hamburger-btn {
    display: flex !important;
  }
  .mobile-nav-drawer {
    display: block;
  }
  .nav-actions .btn-primary,
  .nav-actions .btn-premium {
    display: none !important;
  }
  .nav-wrapper {
    height: 64px;
  }
  .logo {
    font-size: 20px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-visual {
    display: none;
  }
  .live-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   MODAL SCROLL FIX — Lenis blocks internal modal scroll
   data-lenis-prevent attr on modal bodies enables inner scroll
═══════════════════════════════════════════════════════════════ */
.modal-overlay .modal-body,
.modal-overlay [data-lenis-prevent] {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* When any modal is visible, show as flexbox via JS */
.modal-overlay[style*="display: flex"],
.modal-overlay[style*="display:flex"] {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════
   VAULT PLACEHOLDER CARDS — "Soon" styling
═══════════════════════════════════════════════════════════════ */
.showcase-card.placeholder-card {
  opacity: 0.65;
  border-style: dashed;
  cursor: default;
}
.showcase-card.placeholder-card:hover {
  transform: none !important;
  box-shadow: none !important;
}
.showcase-card .soon-tag {
  background: rgba(179, 136, 255, 0.12);
  color: var(--accent-premium);
  border: 1px solid rgba(179, 136, 255, 0.3);
  border-radius: 20px;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   FIX: Ensure display:flex works when modals are opened via JS
   (Modals use setProperty with !important)
═══════════════════════════════════════════════════════════════ */
#otp-modal[style*="display: flex"],
#report-modal[style*="display: flex"],
#privacy-policy-modal[style*="display: flex"],
#terms-modal[style*="display: flex"] {
  display: flex !important;
}



/* GSAP SHADER OVERHAUL */
.shader-section { 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative; 
  padding: 120px 0; 
  overflow: hidden; 
  box-sizing: border-box; 
}
#s1-hero {
  padding-top: 160px;
}
/* Default / Dark Theme dark-section values */
.dark-section,
html[data-theme="dark"] .dark-section { 
  background: #000F08 !important; 
  color: #FFFFFF !important; 
  --text-primary: #FFFFFF !important;
  --text-secondary: #A0AAB2 !important;
  --border-color: #1A2E28 !important;
  --bg-secondary: #0A1E15 !important;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6,
.dark-section .section-title,
html[data-theme="dark"] .dark-section h1,
html[data-theme="dark"] .dark-section h2,
html[data-theme="dark"] .dark-section h3,
html[data-theme="dark"] .dark-section h4,
html[data-theme="dark"] .dark-section h5,
html[data-theme="dark"] .dark-section h6,
html[data-theme="dark"] .dark-section .section-title {
  color: #FFFFFF !important;
}

/* Light Theme dark-section overrides (makes it blend with light theme) */
html[data-theme="light"] .dark-section { 
  background: #F7F4EF !important; 
  color: #0D1B2A !important; 
  --text-primary: #0D1B2A !important;
  --text-secondary: #5A6270 !important;
  --border-color: rgba(45, 27, 105, 0.08) !important;
  --bg-secondary: #FFFFFF !important;
}

html[data-theme="light"] .dark-section h1,
html[data-theme="light"] .dark-section h2,
html[data-theme="light"] .dark-section h3,
html[data-theme="light"] .dark-section h4,
html[data-theme="light"] .dark-section h5,
html[data-theme="light"] .dark-section h6,
html[data-theme="light"] .dark-section .section-title {
  color: #0D1B2A !important;
}

/* Glow card custom text color override inside both themes */
.glow-card .card-number {
  color: rgba(255, 255, 255, 0.7) !important;
}
.light-section { 
  background: #F5F4F0; 
  color: #0A0A0A; 
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --border-color: #E2E8F0;
}
.text-dark { color: #0A0A0A !important; }

/* 3D Vault Grid */
.perspective-wrapper { perspective: 1200px; }
.vault-3d-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
  transform-style: preserve-3d; 
  transform-origin: center top; 
}
.product-card.dummy { background: #1A2E28; padding: 40px; border-radius: 12px; border: 1px solid var(--green); text-align: center; }

/* Shred Transition */
.shred-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.shred-overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}
.shred-strip {
  position: absolute;
  top: 0;
  height: 100%;
  width: 20.5%;
  background: #F5F4F0;
  z-index: 11;
}
.strip-1 { left: 0%; }
.strip-2 { left: 20%; }
.strip-3 { left: 40%; }
.strip-4 { left: 60%; }
.strip-5 { left: 80%; }

.shred-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  background: transparent;
}
#s7-features { position: relative; z-index: 1; }

/* Navbar override for persistence */
header { 
  position: fixed !important; top: 0; width: 100%; z-index: 1000; 
  background: rgba(10, 10, 18, 0.55); 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px); 
}
body { padding-top: 0 !important; }

/* Arrow bounce */
.scroll-cue { text-align: center; margin-top: 40px; color: var(--text-secondary); }
.arrow-bounce { display: inline-block; animation: bounce 2s infinite; margin: 0 5px; color: var(--accent-primary); }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* HOMEPAGE SHADER OVERHAUL STYLES */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-content {
  text-align: left;
}
.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--accent-primary);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-premium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.glowing-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(179,136,255,0.2) 0%, rgba(251,54,64,0.05) 50%, transparent 70%);
  filter: blur(35px);
  animation: pulseBlob 6s ease-in-out infinite alternate;
}
.hero-object {
  width: 200px;
  height: 200px;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(179,136,255,0.4));
}
.pulse-ring {
  transform-origin: center;
  animation: rotateRing 15s linear infinite;
}
@keyframes pulseBlob {
  0% { transform: scale(0.9) translate(-10px, -10px); opacity: 0.8; }
  100% { transform: scale(1.1) translate(10px, 10px); opacity: 1; }
}
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Section 2: Vault Grid */
.perspective-wrapper {
  perspective: 1200px;
  width: 100%;
}
.vault-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transform-style: preserve-3d;
  transform-origin: center top;
  will-change: transform;
}
.marquee-label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform-style: preserve-3d;
}
.digital-label {
  color: var(--accent-success);
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}
.physical-label {
  color: var(--accent-premium);
  text-shadow: 0 0 10px rgba(179, 136, 255, 0.3);
}
.product-card.dummy {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.product-card.dummy.digital-card {
  border: 1px solid rgba(0, 230, 118, 0.25);
}
.product-card.dummy.physical-card {
  border: 1px solid rgba(179, 136, 255, 0.25);
}
.product-card.dummy h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.product-card.dummy h3 .card-icon {
  font-size: 22px;
}
.product-card.dummy.digital-card h3 .card-icon {
  color: var(--accent-success);
}
.product-card.dummy.physical-card h3 .card-icon {
  color: var(--accent-premium);
}
.product-card.dummy p {
  font-size: 14px;
  font-weight: 600;
}
.product-card.dummy.digital-card p {
  color: rgba(0, 230, 118, 0.75);
}
.product-card.dummy.physical-card p {
  color: rgba(179, 136, 255, 0.75);
}
.product-card.dummy.digital-card:hover {
  border-color: var(--accent-success);
  transform: translateY(-4px) scale(1.03) translateZ(10px);
  box-shadow: 0 10px 30px rgba(0, 230, 118, 0.2);
}
.product-card.dummy.physical-card:hover {
  border-color: var(--accent-premium);
  transform: translateY(-4px) scale(1.03) translateZ(10px);
  box-shadow: 0 10px 30px rgba(179, 136, 255, 0.2);
}

/* Section 3 & 4: Why & Social */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.why-text {
  text-align: left;
}
.why-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-huge {
  font-size: 140px;
  color: var(--accent-premium);
  filter: drop-shadow(0 0 25px rgba(179,136,255,0.3));
}
.logo-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  font-size: 44px;
  color: #4A5568;
  margin-top: 35px;
}
.logo-grid i {
  transition: color 0.3s;
}
.logo-grid i:hover {
  color: var(--accent-primary);
}

/* Section 5: Hook */
.hook-section {
  padding: 120px 0;
}
.hook-title {
  font-size: 36px;
  font-weight: 800;
  max-width: 800px;
  line-height: 1.3;
  margin: 0 auto;
}

/* Section 7: Features */
.neobank-visual {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.glow-card {
  background: linear-gradient(135deg, #1A2E28 0%, #0A1411 100%);
  border: 1.5px solid var(--accent-success);
  border-radius: 20px;
  padding: 24px 32px;
  width: 340px;
  height: 190px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 230, 118, 0.15);
}
.card-chip {
  width: 44px;
  height: 32px;
  background: rgba(0, 230, 118, 0.3);
  border-radius: 6px;
}
.card-number {
  font-family: monospace;
  font-size: 16px;
  color: var(--text-secondary);
  letter-spacing: 2px;
}
.card-balance {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-success);
}
.sub-anchor {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}
.pricing-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-card p {
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-card.premium {
  border-color: var(--accent-premium);
  box-shadow: 0 10px 25px rgba(179,136,255,0.08);
}
.pricing-card.premium h4 {
  color: var(--accent-premium);
}

/* Section 8: CTA */
.dramatic-cta {
  text-align: center;
  padding: 80px 40px;
  background: radial-gradient(circle, rgba(251,54,64,0.06) 0%, transparent 70%);
  border: 1.5px solid rgba(251,54,64,0.12);
  border-radius: 24px;
  width: 100%;
}
.section-title.huge {
  font-size: 48px;
  font-weight: 800;
}

/* Section 9: AI Chat */
.icon-cluster {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 36px;
  color: var(--accent-premium);
  opacity: 0.8;
}
.icon-cluster a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
}
.icon-cluster a:hover {
  color: var(--accent-success);
  transform: scale(1.15) translateY(-2px);
}

/* General overrides */
.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .vault-3d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .why-text {
    text-align: center;
  }
  .vault-3d-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium SVG Hero Visuals */
.spin-clockwise {
  transform-origin: 50px 50px;
  animation: spinCW 20s linear infinite;
}
.spin-counter-clockwise {
  transform-origin: 50px 50px;
  animation: spinCCW 15s linear infinite;
  opacity: 0.8;
}
.pulse-emblem {
  transform-origin: 0px 0px;
  animation: pulseScale 4s ease-in-out infinite alternate;
}

@keyframes spinCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spinCCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes pulseScale {
  0% { transform: translate(50px, 50px) scale(0.95); }
  100% { transform: translate(50px, 50px) scale(1.08); }
}

/* Sliding Marquee for Vault 3D Grid */
.vault-3d-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px;
  transform-style: preserve-3d;
  transform-origin: center top;
  will-change: transform;
  overflow: hidden;
  width: 100%;
}
.marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
  pointer-events: auto;
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-row.row-2 .marquee-track {
  animation: scrollMarquee 30s linear infinite;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
/* Glassmorphism Product Showcase Cards in Marquee */
.product-card.dummy {
  flex-shrink: 0;
  width: 280px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(10, 25, 20, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.product-card.dummy h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

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

.product-card.dummy p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Digital cards glow green */
.product-card.dummy.digital-card {
  border-color: rgba(0, 230, 118, 0.25);
  background: rgba(0, 15, 8, 0.6);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(0, 230, 118, 0.05);
}

.product-card.dummy.digital-card h3 i.card-icon {
  color: var(--accent-success);
}

.product-card.dummy.digital-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent-success);
  box-shadow: 0 15px 35px rgba(0, 230, 118, 0.25), inset 0 0 15px rgba(0, 230, 118, 0.1);
}

/* Physical cards glow purple */
.product-card.dummy.physical-card {
  border-color: rgba(179, 136, 255, 0.25);
  background: rgba(18, 10, 28, 0.6);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(179, 136, 255, 0.05);
}

.product-card.dummy.physical-card h3 i.card-icon {
  color: var(--accent-premium);
}

.product-card.dummy.physical-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent-premium);
  box-shadow: 0 15px 35px rgba(179, 136, 255, 0.25), inset 0 0 15px rgba(179, 136, 255, 0.1);
}

/* Marquee Row Label Styles */
.marquee-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.marquee-label.digital-label {
  color: var(--accent-success);
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.3);
}

.marquee-label.physical-label {
  color: var(--accent-premium);
  text-shadow: 0 0 8px rgba(179, 136, 255, 0.3);
}

/* About Section Styles */
.about-card {
  will-change: transform, border-color, box-shadow;
}
.about-card:hover {
  border-color: var(--accent-success) !important;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 230, 118, 0.2);
}

/* Pricing Toggle Switch Styles */
.switch-container {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}
.switch-container input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--bg-secondary) !important;
  border: 1.5px solid var(--border-color);
  border-radius: 34px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.switch-container input:checked + .switch-slider {
  background-color: var(--accent-success) !important;
  border-color: var(--accent-success);
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3.5px;
  background-color: var(--text-primary);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.switch-container input:checked + .switch-slider:before {
  transform: translateX(24px);
  background-color: #000000;
}

/* Premium Pricing Card Animations & Interactive effects */
.premium-pricing-card {
  will-change: transform, border-color, box-shadow;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.plan-starter-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: #64748b !important;
  box-shadow: 0 12px 30px rgba(100, 116, 139, 0.15);
}
.plan-core-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: #00D2FF !important;
  box-shadow: 0 12px 30px rgba(0, 210, 255, 0.25);
}
.plan-elite-card {
  border-color: var(--accent-success) !important;
  box-shadow: 0 10px 40px rgba(0, 230, 118, 0.15) !important;
}
.plan-elite-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent-success) !important;
  box-shadow: 0 15px 45px rgba(0, 230, 118, 0.35) !important;
}
.plan-nexus-card {
  border-color: var(--accent-premium) !important;
  box-shadow: 0 15px 50px rgba(179, 136, 255, 0.35), 0 0 15px rgba(179, 136, 255, 0.15) !important;
}
.plan-nexus-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent-premium) !important;
  box-shadow: 0 20px 60px rgba(179, 136, 255, 0.55), 0 0 25px rgba(179, 136, 255, 0.3) !important;
}

/* FAQs Accordion Styles */
.faq-item:hover {
  border-color: var(--accent-primary) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}
.faq-question:hover {
  color: var(--text-primary);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-primary);
}
.faq-item.active {
  border-color: var(--accent-primary) !important;
}

/* Hover Lift Cards inside Light Section */
.hover-lift-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.hover-lift-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--accent-success) !important;
}
.plan-light-card.hover-lift-card:hover {
  border-color: var(--accent-primary) !important;
}
.plan-light-card.hover-lift-card:nth-child(3):hover {
  border-color: var(--accent-success) !important;
}
.plan-light-card.hover-lift-card:nth-child(4):hover {
  border-color: var(--accent-premium) !important;
}

/* Redesigned Dashboard Tab Layout */
.dashboard-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  align-items: flex-start;
  margin-top: 24px;
}

.dashboard-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: rgba(10, 20, 17, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-main {
  flex-grow: 1;
  min-width: 0;
}

.dash-tab-btn {
  padding: 12px 16px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.dash-tab-btn i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.dash-tab-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.dash-tab-btn.active {
  background: rgba(179, 136, 255, 0.15);
  color: var(--accent-premium);
  border-left: 3px solid var(--accent-premium);
  padding-left: 13px;
}

.dash-panel-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.dash-panel-content.active {
  display: block;
}

@media (max-width: 768px) {
  .dashboard-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .dashboard-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
    gap: 8px;
  }
  
  .dash-tab-btn {
    width: auto;
    white-space: nowrap;
    padding: 10px 14px;
  }
}

/* ═════════════════════════════════════════════
   ADDITIONAL THEME ENHANCEMENTS (STEPS MERGED)
   ═════════════════════════════════════════════ */

/* Font heading assignments */
h1, h2, h3, .hero-title, .section-title {
  font-family: var(--font-heading);
}

/* Base Light Theme Elements Overrides */
html[data-theme="light"] body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Glassmorphism for Dark Mode vs Soft Shadows for Light Mode */
[data-theme="dark"] .product-card,
[data-theme="dark"] .bazaar-card,
[data-theme="dark"] .bounty-card,
[data-theme="dark"] .auth-card,
[data-theme="dark"] .glass-card,
[data-theme="dark"] .dashboard-sidebar,
[data-theme="dark"] .dash-panel-content,
[data-theme="dark"] .stats-card,
[data-theme="dark"] .verify-card,
[data-theme="dark"] .wallet-card {
  background: rgba(10, 20, 17, 0.4) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35) !important;
}

html[data-theme="light"] .product-card,
html[data-theme="light"] .bazaar-card,
html[data-theme="light"] .bounty-card,
html[data-theme="light"] .auth-card,
html[data-theme="light"] .glass-card,
html[data-theme="light"] .dashboard-sidebar,
html[data-theme="light"] .dash-panel-content,
html[data-theme="light"] .stats-card,
html[data-theme="light"] .verify-card,
html[data-theme="light"] .wallet-card {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
}

/* Scanline shimmer on cards hover */
@keyframes scanline-shimmer {
  0% { top: -150%; }
  100% { top: 200%; }
}
.product-card, .bazaar-card, .bounty-card {
  position: relative;
  overflow: hidden;
}
.product-card::before, .bazaar-card::before, .bounty-card::before {
  content: '';
  position: absolute;
  left: -50%;
  width: 200%;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(-30deg);
  top: -150%;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover::before, .bazaar-card:hover::before, .bounty-card:hover::before {
  animation: scanline-shimmer 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

html[data-theme="light"] .product-card::before,
html[data-theme="light"] .bazaar-card::before,
html[data-theme="light"] .bounty-card::before {
  background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.15), transparent);
}

/* Neon glow text on Dark headings */
@keyframes text-glow-pulse {
  0%, 100% { text-shadow: 0 0 10px rgba(179, 136, 255, 0.35), 0 0 20px rgba(179, 136, 255, 0.1); }
  50% { text-shadow: 0 0 20px rgba(179, 136, 255, 0.7), 0 0 35px rgba(251, 54, 64, 0.35); }
}
[data-theme="dark"] .hero-title, 
[data-theme="dark"] .section-title {
  animation: text-glow-pulse 4s infinite ease-in-out;
}

/* Ink-reveal headings in Light Mode */
@keyframes ink-reveal {
  from { clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%); }
  to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
html[data-theme="light"] .hero-title,
html[data-theme="light"] .section-title {
  animation: ink-reveal 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* CTA Coral Styling overrides in Light mode */
html[data-theme="light"] .btn-primary {
  background: var(--accent-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3) !important;
}
html[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5) !important;
  transform: translateY(-2px);
}
html[data-theme="light"] .btn-premium {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-premium)) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(124, 77, 255, 0.2) !important;
}
html[data-theme="light"] .btn-premium:hover {
  box-shadow: 0 6px 20px rgba(124, 77, 255, 0.35) !important;
}
html[data-theme="light"] .btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}
html[data-theme="light"] .btn-outline:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--text-primary);
}

/* Pastel accent chips in Light Mode */
html[data-theme="light"] .skill-chip,
html[data-theme="light"] .category-chip {
  background: rgba(124, 77, 255, 0.08) !important;
  color: var(--accent-premium) !important;
  border: 1px solid rgba(124, 77, 255, 0.15) !important;
}
html[data-theme="light"] .skill-chip.active {
  background: var(--accent-premium) !important;
  color: #FFFFFF !important;
}

/* Header overlays */
html[data-theme="light"] header {
  background: rgba(255, 255, 255, 0.8) !important;
  border-bottom: 1px solid var(--border-color) !important;
  animation: none !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02) !important;
}
html[data-theme="light"] header::after {
  display: none !important;
}

/* SVG border draw animations */
@keyframes border-draw {
  to { stroke-dashoffset: 0; }
}

/* Loader Screen Styles */
.theme-loader {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(179, 136, 255, 0.15);
  border-radius: 50%;
  border-top-color: #B388FF;
  border-bottom-color: #ff6b6b;
  animation: spin 1s linear infinite, glow-pulse 2s infinite ease-in-out;
}
[data-theme="dark"] .theme-loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(179, 136, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent-premium);
  border-bottom-color: var(--accent-primary);
  animation: spin 1s linear infinite, glow-pulse 2s infinite ease-in-out;
}
[data-theme="light"] .theme-loader {
  width: 50px;
  height: 50px;
  border: 3px solid #E2E8F0;
  border-radius: 50%;
  border-top-color: var(--accent-primary);
  animation: spin 0.8s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(179, 136, 255, 0.4); }
  50% { box-shadow: 0 0 25px rgba(251, 54, 64, 0.8); }
}

/* Splash auto-hide: guaranteed 3s max even if JS fails */
@keyframes splash-auto-hide {
  0%, 90% { opacity: 1; pointer-events: all; }
  100% { opacity: 0; pointer-events: none; visibility: hidden; }
}
#splash-loading-screen.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  display: none !important;
}

/* Pill Toggle Hover styling */
.theme-pill-toggle .pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary) !important;
}
html[data-theme="light"] .theme-pill-toggle .pill-btn:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-primary) !important;
}

/* Input Fields styling overrides in light mode */
html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea {
  background: #FFFFFF !important;
  color: var(--text-primary) !important;
  border: 1.5px solid var(--border-color) !important;
}
html[data-theme="light"] input:focus,
html[data-theme="light"] select:focus,
html[data-theme="light"] textarea:focus {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* ── Curtain Wipe Overlay ── */
#theme-wipe-curtain {
  will-change: transform, background-color;
  pointer-events: none;
}

@keyframes sweep-left-to-right {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

@keyframes sweep-right-to-left {
  0% { transform: translateX(100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.wipe-sweep-l-r {
  animation: sweep-left-to-right 600ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.wipe-sweep-r-l {
  animation: sweep-right-to-left 600ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/* Floating pill button styles */
.theme-pill-toggle {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 10px 40px var(--shadow-glow) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 30px !important;
}

[data-theme="dark"] .theme-pill-toggle {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(11, 13, 23, 0.75) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35) !important;
}

.theme-pill-toggle .pill-btn {
  color: var(--text-secondary) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.theme-pill-toggle .pill-btn.active {
  background: var(--accent-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(124, 92, 252, 0.3) !important;
}

[data-theme="dark"] .theme-pill-toggle .pill-btn.active {
  background: var(--accent-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(124, 92, 252, 0.4) !important;
}

html[data-theme="light"] .theme-pill-toggle .pill-btn.active {
  background: var(--accent-primary) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(45, 27, 105, 0.2) !important;
}

/* Fix floating AI chat widget overlap: stack it vertically above the theme toggle pill */
.ai-chat-widget {
  bottom: 96px !important;
  right: 32px !important;
}

/* Fix dark mode header capsule underlines & separators */
[data-theme="dark"] .nav-links a::after {
  display: none !important;
}
[data-theme="dark"] .nav-links li::after {
  display: none !important;
}

/* Pricing grid container responsiveness (horizontal layout on desktop, columns on mobile/tablet) */
.pricing-grid-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
@media (max-width: 1024px) {
  .pricing-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .pricing-grid-container {
    grid-template-columns: 1fr !important;
  }
}

/* Light mode overrides for premium pricing cards to look professional and readable */
html[data-theme="light"] .premium-pricing-card {
  background: #FFFFFF !important;
  border: 1.5px solid rgba(45, 27, 105, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  color: #2D1B69 !important;
}
html[data-theme="light"] .premium-pricing-card h3,
html[data-theme="light"] .premium-pricing-card .currency-symbol,
html[data-theme="light"] .premium-pricing-card .plan-price-value {
  color: #2D1B69 !important;
}
html[data-theme="light"] .premium-pricing-card ul li {
  color: #5A6270 !important;
}
html[data-theme="light"] .premium-pricing-card ul li i.fa-check {
  color: var(--accent-success) !important;
}
html[data-theme="light"] .premium-pricing-card ul li i.fa-xmark {
  color: var(--accent-primary) !important;
}
html[data-theme="light"] .premium-pricing-card .btn-outline {
  border-color: rgba(45, 27, 105, 0.2) !important;
  color: #2D1B69 !important;
}
html[data-theme="light"] .premium-pricing-card .btn-outline:hover {
  background: rgba(45, 27, 105, 0.05) !important;
}
html[data-theme="light"] .premium-pricing-card.featured {
  background: #fff8f8 !important;
  border: 2.5px solid var(--accent-premium);
}

/* Light theme overrides for dark theme elements / sections */
html[data-theme="light"] .dark-section {
  background: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  --text-primary: #0D1B2A;
  --text-secondary: #5A6270;
  --border-color: rgba(45, 27, 105, 0.08);
}

html[data-theme="light"] .dramatic-cta {
  background: rgba(45, 27, 105, 0.02) !important;
  border: 1.5px solid rgba(45, 27, 105, 0.08) !important;
}

html[data-theme="light"] .glow-card {
  background: linear-gradient(135deg, #2D1B69 0%, #1A103C 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 35px rgba(45, 27, 105, 0.15) !important;
}
html[data-theme="light"] .glow-card .card-chip {
  background: rgba(201, 149, 108, 0.3) !important;
}
html[data-theme="light"] .glow-card .card-balance {
  color: #C9956C !important;
}

html[data-theme="light"] .pricing-grid .pricing-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  color: #2D1B69 !important;
}
html[data-theme="light"] .pricing-grid .pricing-card:not(.premium) h4 {
  color: #2D1B69 !important;
}
html[data-theme="light"] .pricing-grid .pricing-card p {
  color: #5A6270 !important;
}

html[data-theme="light"] .wallet-card {
  background: linear-gradient(135deg, #2D1B69 0%, #1A103C 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 24px rgba(45, 27, 105, 0.15) !important;
}
html[data-theme="light"] .wallet-card .balance-label {
  color: #C9956C !important;
}

html[data-theme="light"] .earner-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}
html[data-theme="light"] .earner-badge {
  background: rgba(45, 27, 105, 0.05) !important;
  color: var(--accent-premium) !important;
}

html[data-theme="light"] .faq-item {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
html[data-theme="light"] .faq-item:hover {
  background: rgba(45, 27, 105, 0.02) !important;
  border-color: var(--accent-primary) !important;
}

/* Mobile Bottom Navigation Bar */
@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex !important;
  }
  body {
    padding-bottom: 70px !important;
  }
}

.mobile-bottom-nav a.m-nav-item.active {
  color: var(--accent-primary) !important;
}

.mobile-bottom-nav a.m-nav-item {
  transition: var(--transition-smooth);
}

/* --- STEP 9: PREMIUM VISUAL ENHANCEMENTS --- */

/* Hex drawing styles for light logo */
.logo-hex-border-light {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}
.logo-z-stroke-light {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
}

/* Animations for floating hero logos & pulses */
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.06); }
}

/* Base Transitions for All Plan Cards */
.plan-light-card, 
.plan-dark-card, 
.premium-pricing-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

/* --- Dark Theme Plan Hovers (General Glow) --- */
[data-theme="dark"] .plan-dark-card:hover,
[data-theme="dark"] .premium-pricing-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 12px 40px rgba(124, 92, 252, 0.25), 0 0 20px rgba(124, 92, 252, 0.15) !important;
  border-color: var(--accent-primary) !important;
}

/* --- Light Theme Plan Hovers (General Glow) --- */
[data-theme="light"] .plan-light-card:hover,
[data-theme="light"] .premium-pricing-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 12px 40px rgba(45, 27, 105, 0.15), 0 0 20px rgba(45, 27, 105, 0.08) !important;
  border-color: #2D1B69 !important;
}

/* --- Elite Card Hover Glow (Green Accent / Recommended) --- */
[data-theme="dark"] .plan-dark-card[style*="accent-success"]:hover,
[data-theme="dark"] .premium-pricing-card[style*="accent-success"]:hover {
  box-shadow: 0 12px 45px rgba(0, 230, 118, 0.4), 0 0 25px rgba(0, 230, 118, 0.25) !important;
  border-color: var(--accent-success) !important;
}
[data-theme="light"] .plan-light-card[style*="00e676"]:hover,
[data-theme="light"] .premium-pricing-card[style*="accent-success"]:hover {
  box-shadow: 0 12px 45px rgba(0, 230, 118, 0.25), 0 0 25px rgba(0, 230, 118, 0.15) !important;
  border-color: #00e676 !important;
}

/* --- Nexus Card Hover Glow (Sabse Jyada Glow - Neon Gold/Pink/Violet Gradient Glow) --- */
[data-theme="dark"] .plan-dark-card:last-child:hover,
[data-theme="dark"] .premium-pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.03) !important;
  box-shadow: 0 20px 50px rgba(179, 136, 255, 0.5), 0 0 35px rgba(244, 114, 182, 0.4), 0 0 60px rgba(124, 92, 252, 0.25) !important;
  border-color: var(--accent-premium) !important;
}

[data-theme="light"] .plan-light-card:last-child:hover,
[data-theme="light"] .premium-pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.03) !important;
  box-shadow: 0 20px 50px rgba(179, 136, 255, 0.35), 0 0 30px rgba(244, 114, 182, 0.25), 0 0 50px rgba(124, 92, 252, 0.15) !important;
  border-color: #b388ff !important;
}

/* --- LOGO ANIMATIONS --- */
@keyframes shape-float {
  0% { transform: translate(var(--float-x, 0), var(--float-y, 0)) translateY(0px); }
  50% { transform: translate(var(--float-x, 0), var(--float-y, 0)) translateY(-15px); }
  100% { transform: translate(var(--float-x, 0), var(--float-y, 0)) translateY(0px); }
}
@keyframes spin-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-counter {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Constant glowing pulse for Recommended Elite card */
@keyframes elite-glow-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 230, 118, 0.2);
    border-color: rgba(0, 230, 118, 0.6);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 230, 118, 0.55);
    border-color: rgba(0, 230, 118, 1);
  }
}

/* Constant glowing pulse for Nexus card */
@keyframes nexus-glow-pulse {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(179, 136, 255, 0.15), 0 0 15px rgba(244, 114, 182, 0.2);
    border-color: rgba(244, 114, 182, 0.6);
  }
  50% {
    box-shadow: 0 10px 45px rgba(179, 136, 255, 0.25), 0 0 30px rgba(244, 114, 182, 0.6);
    border-color: rgba(244, 114, 182, 1);
  }
}

/* Apply constant glow to pricing cards on the pricing view */
[data-theme="dark"] .premium-pricing-card.plan-elite-card {
  animation: elite-glow-pulse 4s ease-in-out infinite;
  border-color: var(--accent-success) !important;
}
[data-theme="dark"] .premium-pricing-card.plan-nexus-card {
  animation: nexus-glow-pulse 4s ease-in-out infinite;
  border-color: var(--accent-premium) !important;
}

[data-theme="light"] .premium-pricing-card.plan-elite-card {
  animation: elite-glow-pulse 4s ease-in-out infinite;
  border-color: #00e676 !important;
}
[data-theme="light"] .premium-pricing-card.plan-nexus-card {
  animation: nexus-glow-pulse 4s ease-in-out infinite;
  border-color: #b388ff !important;
}

#suggestions-view.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

/* Infinite Marquee Styles */
.marquee-showcase-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.marquee-row-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.marquee-row-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  padding-left: 12px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.marquee-row-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: linear-gradient(to bottom, var(--accent-primary), var(--accent-premium));
  border-radius: 2px;
}
html[data-theme="light"] .marquee-row-title {
  color: #2D1B69;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
}
html[data-theme="light"] .marquee-row-title::before {
  background: linear-gradient(to bottom, #2D1B69, #C9956C);
}
.marquee-track-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  animation: scroll-marquee 35s linear infinite !important;
}
.marquee-track:hover {
  animation-play-state: paused;
}

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

/* Card in Marquee */
.marquee-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg-secondary);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}
.marquee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px var(--shadow-glow);
  border-color: var(--accent-primary);
}
html[data-theme="light"] .marquee-card {
  background: #FFFFFF;
  border: 1px solid rgba(45, 27, 105, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
html[data-theme="light"] .marquee-card:hover {
  border-color: #C9956C;
}

.marquee-card-media {
  height: 160px;
  background: var(--bg-tertiary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
html[data-theme="light"] .marquee-card-media {
  background: #EFECE6;
}
.marquee-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.marquee-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}
html[data-theme="light"] .marquee-card-badge {
  color: #2D1B69;
  background: #FFFFFF;
  border: 1px solid rgba(45, 27, 105, 0.08);
}

.marquee-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.marquee-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 10px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
html[data-theme="light"] .marquee-card-title {
  color: #2D1B69;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.marquee-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.marquee-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
html[data-theme="light"] .marquee-card-footer {
  border-top: 1px solid rgba(45, 27, 105, 0.06);
}
.marquee-card-price {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 16px;
}
html[data-theme="light"] .marquee-card-price {
  color: #2D1B69;
}
.marquee-card-tag {
  font-size: 11px;
  color: var(--accent-premium);
  font-weight: 600;
}

/* Coming Soon Placeholders */
.marquee-card.coming-soon {
  cursor: default;
  pointer-events: none;
  border-style: dashed;
}
.marquee-card.coming-soon .marquee-card-media {
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(124, 92, 252, 0.03) 10px, rgba(124, 92, 252, 0.03) 20px);
}
html[data-theme="light"] .marquee-card.coming-soon .marquee-card-media {
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(45, 27, 105, 0.02) 10px, rgba(45, 27, 105, 0.02) 20px);
}
.marquee-card.coming-soon .coming-soon-lock {
  font-size: 24px;
  color: var(--text-secondary);
  opacity: 0.3;
}

/* User Report Link Style */
.report-user-link {
  color: var(--accent-danger) !important;
  font-size: 11px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.report-user-link:hover {
  opacity: 1;
  text-decoration: underline !important;
}

.portfolio-icon-link {
  transition: color 0.2s ease, transform 0.2s ease;
}
.portfolio-icon-link:hover {
  color: var(--accent-primary) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   HOMEPAGE LEADERBOARDS THEME ADAPTABILITY (Dark vs Light Mode)
   ========================================================================== */

/* Dark Mode Defaults */
.leaderboard-section {
  background: #010108;
}
.leaderboard-main-title {
  color: #FFFFFF;
}
.leaderboard-card {
  background: #0A0A12;
  border-radius: 16px;
  padding: 24px;
}
.leaderboard-sellers {
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.05);
}
.leaderboard-referrers {
  border: 2px solid var(--accent-premium);
  box-shadow: 0 0 15px rgba(179, 136, 255, 0.05);
}
.leaderboard-card-title {
  color: #FFFFFF;
}
.leaderboard-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.leaderboard-name {
  color: #FFFFFF;
}
.leaderboard-val {
  color: #FFFFFF;
}

/* Light Mode Overrides */
html[data-theme="light"] .leaderboard-section {
  background: #F7F4EF !important;
}
html[data-theme="light"] .leaderboard-main-title {
  color: #2D1B69 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}
html[data-theme="light"] .leaderboard-card {
  background: #FFFFFF !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
}
html[data-theme="light"] .leaderboard-sellers {
  border: 1.5px solid rgba(45, 27, 105, 0.1) !important;
}
html[data-theme="light"] .leaderboard-referrers {
  border: 1.5px solid rgba(201, 149, 108, 0.2) !important;
}
html[data-theme="light"] .leaderboard-card-title {
  color: #2D1B69 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}
html[data-theme="light"] .leaderboard-item {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
}
html[data-theme="light"] .leaderboard-name {
  color: #0F172A !important;
}

/* --- ENHANCED UX & UI STYLES --- */
.product-card, .bounty-card, .marquee-card, .feature-card {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.product-card:hover, .bounty-card:hover, .marquee-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15), 0 0 20px rgba(124, 58, 237, 0.2);
}

input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: var(--accent-premium, #8b5cf6) !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.25), 0 0 15px rgba(139, 92, 246, 0.2) !important;
}

/* Skeleton Loading Shimmer */
.skeleton-card {
  background: var(--bg-secondary, #1a1a1a);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  height: 280px;
}

.skeleton-shimmer {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
  animation: skeletonPulse 1.5s infinite;
}

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

/* Trust Badges */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}





