﻿:root {
  --bg-dark: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --primary-cyan: #00f3ff;
  --primary-purple: #bd00ff;
  --primary-pink: #ff00c8;
  --primary-blue: #0088ff;
  --gradient-main: linear-gradient(90deg, #00f3ff 0%, #bd00ff 100%);
  --font-main: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at 50% 0%, #1a0b2e 0%, #050505 60%);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

.app-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* Background Gradients */
.bg-glow-top {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, rgba(189, 0, 255, 0.05) 40%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-center {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 50vh;
  background: radial-gradient(circle, rgba(189, 0, 255, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40vh;
  background: linear-gradient(to top, rgba(0, 243, 255, 0.05), transparent);
  z-index: -1;
  pointer-events: none;
}

/* Navigation */
.navbar,
.glass-nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 3rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.version {
  font-size: 0.75rem;
  background: #1a1a1a;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  color: #888;
  font-weight: 600;
  margin-left: 0.8rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: white;
}

.btn-primary-small {
  background: var(--gradient-main);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary-small:hover {
  opacity: 0.9;
}

/* Global Section Styles */
.section-container {
  width: 100%;
  max-width: 1200px;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, #bbb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Fixed typo items-align */
  gap: 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.overline {
  color: #00f3ff;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: -0.5rem;
  font-family: 'Outfit', sans-serif;
}

.main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 1.5rem 0;
}

.gradient-text-cyan {
  background: linear-gradient(90deg, #00f3ff 0%, #bd00ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.gradient-text-white {
  color: white;
  display: block;
  margin-top: 0.2rem;
}

.subtitle {
  color: #8899a6;
  font-size: 1.1rem;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.subtitle-small {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.highlight-cyan {
  color: #00f3ff;
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
}

/* Buttons */
.cta-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.btn-glow-cyan {
  background: linear-gradient(90deg, #00c6ff 0%, #d600ff 100%);
  color: white;
  /* Black text on bright button sometimes looks better, but screenshot shows white? Wait, screenshot shows "Ver Planes" with pinkish gradient */
  /* Actually screenshot shows "Ver Planes" with Cyan to Purple/Pink gradient */
  padding: 1rem 3rem;
  border-radius: 8px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(189, 0, 255, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.btn-glow-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(189, 0, 255, 0.6);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(214, 0, 255, 0.5);
  color: #d600ff;
  /* Text color in screenshot looks purple/pink? No, looks white/grey with purple border? */
  /* Re-reading screenshot: "Descubrir MÃ¡s" has vivid purple text and vivid purple border */
  padding: 1rem 3rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn-outline:hover {
  background: rgba(214, 0, 255, 0.1);
  box-shadow: 0 0 20px rgba(214, 0, 255, 0.2);
}

/* Glass Card */
.glass-card-container {
  margin-top: 3rem;
  width: 100%;
  max-width: 800px;
  perspective: 1000px;
}

.glass-card {
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  transform: rotateX(5deg);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.glass-card-container:hover .glass-card {
  transform: rotateX(0deg);
}

.card-header {
  margin-bottom: 1.5rem;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background-color: #ff5f56;
}

.dot.yellow {
  background-color: #ffbd2e;
}

.dot.green {
  background-color: #27c93f;
}

.card-body-placeholder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 1rem;
}

.placeholder-line {
  height: 10px;
  background: #1a1a1a;
  border-radius: 5px;
}

.width-80 {
  width: 85%;
}

.width-60 {
  width: 65%;
}

.width-40 {
  width: 40%;
}


/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.icon-box.cyan {
  color: var(--primary-cyan);
  background: rgba(0, 243, 255, 0.1);
}

.icon-box.purple {
  color: var(--primary-purple);
  background: rgba(189, 0, 255, 0.1);
}

.icon-box.pink {
  color: var(--primary-pink);
  background: rgba(255, 0, 200, 0.1);
}

.icon-box.blue {
  color: var(--primary-blue);
  background: rgba(0, 136, 255, 0.1);
}

.feature-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* How It Works */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
  gap: 2rem;
}

.step-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.05);
}

.step-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary-purple);
  color: white;
  font-size: 0.8rem;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-line {
  flex: 0.5;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.step-item h3 {
  margin-bottom: 0.8rem;
}

.step-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 250px;
}

/* Pricing */
.pricing-toggle-container {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem;
  border-radius: 50px;
  margin-bottom: 3rem;
}

.toggle-btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.toggle-btn.active {
  background: var(--primary-cyan);
  color: #000;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.pricing-grid.hidden {
  display: none;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.05), 0 0 40px rgba(189, 0, 255, 0.03);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(0, 243, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--primary-cyan);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

.pricing-card.popular .btn-pro-glow {
  animation: pulse-glow 2s infinite ease-in-out;
}

.feature-sub {
  padding-left: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.9;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.plan-features {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.plan-features p {
  font-size: 0.95rem;
  display: flex;
  gap: 0.5rem;
}

.feature-highlight {
  color: var(--primary-cyan);
  font-weight: 600;
}

.btn-primary-block {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary-block:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-glow-block {
  width: 100%;
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.btn-pro-glow {
  width: 100%;
  background: linear-gradient(90deg, #00c6ff 0%, #bd00ff 50%, #ff00c8 100%);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-neon-outline {
  width: 100%;
  background: transparent;
  border: 1px solid var(--primary-cyan);
  color: var(--primary-cyan);
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.btn-neon-outline:hover {
  background: rgba(0, 243, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
  color: white;
  border-color: #00f3ff;
}


.btn-outline-block {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline-block:hover {
  border-color: white;
}

/* Animations */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.7);
  }

  100% {
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.4);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stars {
  color: var(--primary-cyan);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #ddd;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author strong {
  display: block;
  font-size: 0.9rem;
}

.author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.compatible-logos {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  width: 100%;
}

.compatible-logos p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.logos-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.logo-text {
  color: #555;
  font-weight: 600;
  font-size: 1.2rem;
}

/* FAQ */
.faq-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  padding: 1.2rem 1.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  line-height: 1.6;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  font-size: 1.05rem;
}

.faq-item.active .faq-answer {
  padding: 1.2rem 1.5rem;
  max-height: 200px;
}

/* Footer */
.footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links a {
  color: #8899a6;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  color: #666;
  font-size: 0.8rem;
}

/* Response for new sections */
@media (max-width: 768px) {

  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-line {
    width: 2px;
    height: 30px;
    margin: 0;
    flex: none;
  }

  .nav-links {
    display: none;
    /* Hide nav links on mobile for now */
  }
}

.no-card-text {
  font-size: 0.8rem;
  color: #8899a6;
  text-align: center;
  margin-top: 0.8rem;
  font-weight: 500;
  font-weight: 500;
  opacity: 0.8;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #0f1014;
  border: 1px solid var(--primary-cyan);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: white;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.modal-text {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #e0e0e0;
  text-align: center;
}

.modal-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.modal-bullets li {
  color: #e0e0e0;
  font-weight: 500;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.modal-bullets li span {
  font-size: 1.2rem;
}

.modal-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.modal-input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-modal-cta {
  width: 100%;
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
  transition: transform 0.2s;
  margin-bottom: 0.8rem;
}

.btn-modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
}

.modal-microcopy {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.7;
}

.modal-logo {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

/* â”€â”€ Compatible Con Marquee â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-section {
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.marquee-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0a0b0d, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0a0b0d, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}



@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}


.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
  cursor: default;
  color: #ffffff;
}

.marquee-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.marquee-item svg {
  display: block;
  width: 36px;
  height: 36px;
  color: #ffffff;
  /* Sets currentColor for SVGs */
}

.marquee-item span {
  font-size: 1.15rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* â”€â”€ Utility â”€â”€ */
.hidden {
  display: none !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE RESPONSIVENESS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Nav Layout Structure */
.nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  gap: 2rem;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link-pro {
  color: var(--primary-cyan);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.2s;
}

.nav-link-pro:hover {
  opacity: 0.8;
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2001;
  /* Above mobile menu overlay */
  padding: 0;
  position: absolute;
  right: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: left center;
}

/* Hamburger Active State (X) */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0px, -2px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0px, 2px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 11, 13, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--primary-cyan);
}

.mobile-link.highlight {
  color: var(--primary-cyan);
  background: rgba(0, 243, 255, 0.1);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  margin-top: 1rem;
}

body.menu-open {
  overflow: hidden;
  /* Prevent scrolling when menu is open */
}

/* Global Mobile Adjustments */
@media (max-width: 768px) {

  /* Navigation */
  .desktop-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .glass-nav {
    padding: 2rem 1.5rem 1rem;
  }

  /* Typography */
  .main-title {
    font-size: 2.8rem;
  }

  .subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* Layout Padding */
  .section-container {
    padding: 3rem 1.5rem;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    padding: 0 1.5rem;
  }

  /* Grids and Stacking handled mostly by existing CSS, adding specific fixes */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }

  .step-line {
    display: none;
    /* Hide connector lines on mobile */
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .logos-row {
    flex-wrap: wrap;
    gap: 2rem;
  }

  /* Marquee Specific Fixes */
  .marquee-track {
    animation-duration: 25s;
    /* Slow down slightly for easier reading on small screens */
    gap: 2rem;
  }

  .marquee-item svg {
    width: 28px;
    height: 28px;
  }

  .marquee-item span {
    font-size: 1rem;
  }
}

/* Smallest Screens (Phones) */
@media (max-width: 480px) {
  .main-title {
    font-size: 2.2rem;
  }

  .store-title {
    font-size: 2.2rem;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAIN POINTS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Removing old gradient from pain-points to let the scrolling line shine */
.pain-points {
  background: transparent;
}

.pain-title {
  color: #fff;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.pain-subtitle {
  /* Removed solid red, added premium gradient */
  background: linear-gradient(90deg, #00f3ff, #bd00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
}

.scroll-story-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin: 1rem auto 6rem;
  /* Reduced top margin to bring the section up */
  max-width: 1000px;
  position: relative;
  padding: 0 0 4rem;
  /* Reduced top padding */
}

/* El Hilo Neón Vertical */
.vertical-neon-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(0, 243, 255, 0.2);
  z-index: 0;
}

.vertical-neon-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  /* Esta altura será animada por GSAP */
  background: #00f3ff;
  box-shadow: 0 0 15px #00f3ff, 0 0 30px #00f3ff;
  will-change: height;
}

.horizontal-pain-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
  background: rgba(10, 11, 13, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  /* Invisible and shifted left before GSAP reveals it */
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s;
}

.horizontal-pain-card.right-aligned {
  flex-direction: row-reverse;
  /* Shifted right before GSAP reveals it */
  transform: translateX(60px) scale(0.95);
}

.horizontal-pain-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  border-color: rgba(0, 243, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.05);
}

.horizontal-pain-card .card-left,
.horizontal-pain-card .card-right {
  flex: 1;
  padding: 0 2rem;
}

.icon-box.huge-icon {
  font-size: 3.5rem;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  line-height: 80px;
}

.pain-heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.horizontal-pain-card p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #ccc;
  font-weight: 300;
}

.right-align {
  text-align: right;
}

.left-align {
  text-align: left;
}

.pain-connector {
  text-align: center;
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  position: relative;
}

.pain-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.connector-text {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.bounce-arrow {
  color: var(--primary-cyan);
  animation: bounce 2.5s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-12px);
  }

  60% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .section-container.pain-points {
    padding-bottom: 1rem;
  }

  .pain-connector {
    margin-top: 1rem;
    padding: 1rem 0 0;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .connector-text {
    font-size: 1.8rem;
    padding: 0 1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEW UX: PROBLEM & SOLUTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Key Revelation Block */
.key-revelation-block {
  max-width: 800px;
  margin: 3.5rem auto;
  position: relative;
  /* Removed the background drop and border entirely to make it floating text */
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.key-revelation-block::before {
  /* Removed the top gradient line since there's no visible box anymore */
  display: none;
}

.revelation-content {
  padding: 3rem;
  text-align: center;
}

.revelation-h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.4;
  /* Make this typography look like the central shiny piece */
  background: linear-gradient(90deg, #fff 0%, #00f3ff 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.code-example {
  background: rgba(10, 11, 13, 0.9);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: inline-block;
  text-align: left;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
}

.code-line {
  margin: 0.3rem 0;
}

.code-example .dim {
  color: #666;
  margin-right: 1rem;
}

.code-example .highlight {
  color: var(--primary-cyan);
  font-weight: 700;
}

.revelation-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.highlight-text {
  color: #fff;
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
}

.revelation-divider {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem auto;
}

.revelation-outro {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin: 0;
}

.transition-text {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4rem;
  opacity: 0.9;
}

/* Redefine pain grid to 2x2 */
.pain-points .pain-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Solution Masonry Layout */
.solution-section {
  padding-top: 2rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sol-col-2 {
  grid-column: span 2;
}

.sol-col-3 {
  grid-column: span 3;
}

.wide-feature {
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
}

.wide-feature .icon-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

.wide-feature .wide-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.wide-feature .wide-content p {
  margin-bottom: 0;
}

.highlight-feature {
  background: radial-gradient(circle at right bottom, rgba(0, 243, 255, 0.08) 0%, rgba(20, 21, 26, 0.6) 100%);
  border-color: rgba(0, 243, 255, 0.2);
}

.highlight-feature h3 {
  color: #fff;
}

@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sol-col-2 {
    grid-column: span 1;
  }

  .sol-col-3 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pain-points .pain-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .sol-col-2,
  .sol-col-3 {
    grid-column: span 1;
  }

  .wide-feature {
    flex-direction: column;
    text-align: center;
  }

  .wide-feature .icon-box {
    margin-bottom: 1.5rem;
  }

  .revelation-content {
    padding: 2rem 1.5rem;
  }

  .code-example {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .connector-text span {
    font-size: 1.8rem !important;
  }
}


/* Premium Subtitle */
.premium-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Revelation Block */
.key-revelation-block {
  max-width: 900px;
  margin: 4rem auto;
  position: relative;
  border-radius: 24px;
  background: rgba(15, 16, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 40px rgba(0, 243, 255, 0.03);
  overflow: hidden;
}

.key-revelation-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-cyan), var(--primary-purple), transparent);
  opacity: 0.8;
}

/* Premium Full-width Banner */
.premium-banner-section {
  width: 100%;
  background: linear-gradient(90deg, rgba(8, 9, 11, 1) 0%, rgba(18, 20, 26, 1) 50%, rgba(8, 9, 11, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 4rem 1.5rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
  text-align: center;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

.banner-text-main {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 0 auto;
  max-width: 900px;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.5;
}

.banner-divider {
  width: 40px;
  height: 2px;
  background: var(--primary-purple);
  margin: 2rem auto;
  box-shadow: 0 0 15px var(--primary-purple);
}

.banner-text-sub {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--primary-cyan);
  margin: 0 auto;
  opacity: 0.9;
}

/* Solution 4-Card Grid */
.solution-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 5rem;
}

/* Deep Impact Final Text */
.final-impact-text {
  text-align: center;
  padding: 6rem 2rem;
  margin-top: 2rem;
  position: relative;
}

.final-impact-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.impact-title {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
}

.impact-subtitle {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 700;
  word-spacing: 0.5rem;
  letter-spacing: -0.01em;
}

.premium-gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .section-container.solution-section {
    padding-top: 1.5rem;
  }

  .solution-grid-4 {
    grid-template-columns: 1fr;
  }

  .final-impact-text {
    padding: 1.5rem 1rem 0;
    margin-top: 0;
  }

  .impact-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .impact-subtitle {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .premium-banner-wrapper {
    padding: 3rem 1.5rem;
  }
}

/* ══════════════════════════════
   INTELLIGENT WAVEFORM SECTION
══════════════════════════════ */
.intelligent-waveform-section {
  position: relative;
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.waveform-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.waveform-header {
  text-align: center;
  margin-bottom: 3rem;
  z-index: 2;
  position: relative;
}

.glass-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(0, 243, 255, 0.15);
  transition: border-color 0.3s ease;
  overflow: hidden;
  margin: 0 auto;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.glass-panel:hover::before {
  opacity: 1;
}

.terminal-content {
  position: relative;
  z-index: 2;
}

.comparison-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
  background: rgba(10, 11, 13, 0.7);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.file-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.status-indicator.error {
  color: #ff3366;
  background: #ff3366;
}

.status-indicator.success {
  color: #00f3ff;
  background: #00f3ff;
}

.mono-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.mono-text.dim {
  color: #888;
}

.mono-text.highlight {
  color: #00f3ff;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.scan-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-scan {
  background: transparent;
  color: var(--primary-cyan);
  border: 1px solid var(--primary-cyan);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-scan:hover {
  background: rgba(0, 243, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.scan-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.5), transparent);
  position: relative;
  overflow: hidden;
}

.scan-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 20px #00f3ff;
  animation: scan-anim 2s infinite linear;
}

@keyframes scan-anim {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.glitch-target {
  position: relative;
  display: inline-block;
}

.results-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mt-row {
  margin-top: 0.5rem;
}

.metadata-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.metadata-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.stars-container {
  display: flex;
  gap: 4px;
  color: #00f3ff;
  filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.folder-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid rgba(0, 243, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #fff;
}

.folder-icon {
  width: 14px;
  height: 14px;
  fill: #00f3ff;
}

/* ══════════════════════════════
   MOBILE OPTIMIZATIONS
══════════════════════════════ */
@media (max-width: 768px) {

  /* Scrollytelling Section */
  .scroll-story-container {
    gap: 3rem;
    padding: 0 1rem 0;
    margin-bottom: 2rem;
  }

  .vertical-neon-line {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .horizontal-pain-card,
  .horizontal-pain-card.right-aligned {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem !important;
    transform: translateY(30px) scale(0.95);
  }

  .horizontal-pain-card .card-left,
  .horizontal-pain-card .card-right {
    padding: 0 !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .horizontal-pain-card .card-left {
    order: 1;
    margin-bottom: 1.5rem;
  }

  .horizontal-pain-card .card-right {
    order: 2;
  }

  .horizontal-pain-card.right-aligned .card-left {
    order: 2;
    margin-bottom: 0;
  }

  .horizontal-pain-card.right-aligned .card-right {
    order: 1;
    margin-bottom: 1.5rem;
  }

  .horizontal-pain-card.active {
    transform: translateY(0) scale(1);
  }

  .icon-box.huge-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-bottom: 1rem;
  }

  .pain-heading {
    font-size: 1.6rem;
  }

  .horizontal-pain-card p {
    font-size: 1.1rem;
  }

  .right-align,
  .left-align {
    text-align: center !important;
  }

  .glass-panel {
    width: 95%;
    padding: 1.5rem;
  }

  .comparison-container {
    padding: 1rem;
    overflow-x: hidden;
  }
}