/* ═══════════════════════════════════════════════════════
   SISTEMA ESMERALDA — Mystical Satellite Experience
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Greens */
  --emerald-deep: #0d2218;
  --emerald-dark: #1a3a2a;
  --emerald-mid: #2d7a4f;
  --emerald-bright: #3dba76;
  --emerald-neon: #00ff88;
  --emerald-soft: #00cc6a;
  --emerald-glow: rgba(0, 255, 136, 0.15);
  --emerald-glow-strong: rgba(0, 255, 136, 0.35);

  /* Backgrounds */
  --bg-space: #050e0a;
  --bg-deep: #0a1a10;
  --bg-card: rgba(13, 34, 24, 0.6);
  --bg-glass: rgba(26, 58, 42, 0.25);

  /* Text */
  --text-primary: #e8f5ee;
  --text-secondary: #a0c4b0;
  --text-muted: #6a9a7f;
  --text-white: #ffffff;

  /* Accents */
  --accent-gold: #f0c040;
  --accent-amber: #e8a020;
  --accent-red: #ff4444;
  --accent-orange: #ff8844;

  /* Typography */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: clamp(60px, 10vh, 120px);
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Border */
  --border-glass: 1px solid rgba(0, 255, 136, 0.12);
  --border-glow: 1px solid rgba(0, 255, 136, 0.3);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-space);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-space); }
::-webkit-scrollbar-thumb {
  background: var(--emerald-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--emerald-mid);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
}

a {
  color: var(--emerald-neon);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--text-white);
  text-shadow: 0 0 20px var(--emerald-neon);
}

/* ── Utility Classes ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--emerald-neon);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--emerald-neon);
}

.section-title {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-white), var(--emerald-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 50px;
}

.text-glow {
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
}

.highlight {
  color: var(--emerald-neon);
  font-weight: 600;
}

.highlight-gold {
  color: var(--accent-gold);
  font-weight: 700;
  font-family: var(--font-mono);
}

/* ── Glass Card ── */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 40px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald-neon), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(0, 255, 136, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.08);
}

.glass-card:hover::before {
  opacity: 1;
}

/* ── Particle Canvas ── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5, 14, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-mid), var(--emerald-neon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-neon);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--emerald-neon);
}

.nav-links a:hover {
  color: var(--text-white);
}

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

.nav-cta {
  padding: 8px 20px !important;
  background: linear-gradient(135deg, var(--emerald-mid), var(--emerald-bright));
  border-radius: 100px;
  font-weight: 600 !important;
  color: var(--text-white) !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4) !important;
  transform: scale(1.05);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(1.3) brightness(0.6);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 14, 10, 0.4) 0%,
    rgba(5, 14, 10, 0.6) 40%,
    rgba(5, 14, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(20px, 4vw, 40px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--emerald-neon);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald-neon);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--emerald-neon);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.5s both;
  line-height: 1.1;
}

.hero h1 .line-1 {
  display: block;
  background: linear-gradient(135deg, var(--text-white), var(--emerald-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .line-2 {
  display: block;
  color: var(--emerald-neon);
  -webkit-text-fill-color: var(--emerald-neon);
  text-shadow: 0 0 60px rgba(0, 255, 136, 0.5);
  font-size: 0.8em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.7s both;
  line-height: 1.8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-stat {
  text-align: center;
  padding: 20px 10px;
  border: var(--border-glass);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
}

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--emerald-neon);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.hero-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.hero-stat .stat-source {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--emerald-mid);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--emerald-mid);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--emerald-neon);
  border-radius: 3px;
  animation: scroll-dot 2s ease-in-out infinite;
}

/* Radar orbit */
.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 136, 0.06);
  z-index: 1;
  animation: rotate-slow 60s linear infinite;
}

.hero-orbit::before {
  content: '🛰';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.5rem;
  filter: drop-shadow(0 0 20px var(--emerald-neon));
}

.hero-orbit-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 136, 0.04);
  z-index: 1;
  animation: rotate-slow 45s linear infinite reverse;
}

/* ═══════════════════════════════════════════════════════
   SECTION — PROBLEMA
   ═══════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 1;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.15), transparent);
  margin: 0;
}

/* Story block */
.story-block {
  position: relative;
  padding: 40px;
  border-left: 3px solid var(--emerald-mid);
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.04), transparent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 40px 0;
}

.story-block p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-primary);
  line-height: 1.9;
  font-style: italic;
}

.story-block .story-author {
  margin-top: 16px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--emerald-bright);
  font-weight: 600;
}

/* Stats row */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 50px 0;
}

.impact-stat {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.impact-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-mid), var(--emerald-neon));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.impact-stat:hover::after {
  transform: scaleX(1);
}

.impact-stat .number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--emerald-neon);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.impact-stat .label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.impact-stat .source {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Country table */
.data-table-wrapper {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: var(--radius-md);
  border: var(--border-glass);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table thead {
  background: rgba(0, 255, 136, 0.06);
}

.data-table th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--emerald-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.data-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.05);
  color: var(--text-secondary);
}

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

.data-table tbody tr {
  transition: background 0.3s ease;
}

.data-table tbody tr:hover {
  background: rgba(0, 255, 136, 0.04);
}

.data-table .row-total {
  background: rgba(0, 255, 136, 0.06);
  font-weight: 600;
}

.data-table .row-total td {
  color: var(--emerald-bright);
}

/* ═══════════════════════════════════════════════════════
   INNOVATION CHAIN
   ═══════════════════════════════════════════════════════ */
.chain-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 50px 0;
  padding: 20px 0;
}

.chain-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  min-width: 140px;
}

.chain-step .chain-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
  box-shadow: 0 0 20px var(--emerald-glow);
  transition: all 0.3s ease;
}

.chain-step:hover .chain-icon {
  transform: scale(1.15);
  box-shadow: 0 0 40px var(--emerald-glow-strong);
}

.chain-step .chain-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 120px;
}

.chain-arrow {
  font-size: 1.5rem;
  color: var(--emerald-neon);
  animation: pulse 2s ease-in-out infinite;
  margin: 0 -5px;
}

/* Innovation cards grid */
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.innovation-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.innovation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-mid), var(--emerald-neon), var(--emerald-mid));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.innovation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 136, 0.2);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

.innovation-card:hover::before {
  transform: scaleX(1);
}

.innovation-card .card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--emerald-neon);
  margin-bottom: 12px;
}

.innovation-card .card-what {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.innovation-card .card-why {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 255, 136, 0.08);
}

/* ═══════════════════════════════════════════════════════
   COPERNICUS SECTION
   ═══════════════════════════════════════════════════════ */
.copernicus-section {
  position: relative;
  overflow: hidden;
}

.copernicus-section .section-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: var(--border-glass);
  margin: 40px 0;
  opacity: 0.85;
  filter: saturate(1.2);
}

.sentinel-tabs {
  display: flex;
  gap: 12px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.sentinel-tab {
  padding: 10px 24px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sentinel-tab:hover,
.sentinel-tab.active {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--emerald-neon);
  color: var(--emerald-neon);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.sentinel-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.sentinel-content.active {
  display: block;
}

/* ═══════════════════════════════════════════════════════
   SCORE SECTION
   ═══════════════════════════════════════════════════════ */
.score-section {
  background: linear-gradient(180deg, var(--bg-space), var(--emerald-deep), var(--bg-space));
}

.score-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.score-gauge {
  position: relative;
  width: 220px;
  height: 220px;
}

.score-gauge svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-gauge .gauge-bg {
  fill: none;
  stroke: rgba(0, 255, 136, 0.1);
  stroke-width: 8;
}

.score-gauge .gauge-fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  transition: stroke-dashoffset 2s ease;
}

.score-gauge .gauge-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-gauge .gauge-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--emerald-neon);
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
  line-height: 1;
}

.score-gauge .gauge-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

.score-factors {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.score-factor {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 255, 136, 0.06);
}

.score-factor .factor-weight {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--emerald-neon);
  min-width: 45px;
}

.score-factor .factor-bar {
  flex: 1;
  height: 6px;
  background: rgba(0, 255, 136, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.score-factor .factor-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-mid), var(--emerald-neon));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease;
}

.score-factor .factor-name {
  font-size: 0.85rem;
  color: var(--text-secondary);
  min-width: 140px;
}

/* Score scale */
.score-scale {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.score-level {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-glass);
  border-radius: var(--radius-sm);
  border: var(--border-glass);
  transition: all 0.3s ease;
}

.score-level:hover {
  background: rgba(0, 255, 136, 0.04);
}

.score-level .level-indicator {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 4px;
}

.score-level .level-indicator.resiliente { background: var(--emerald-neon); box-shadow: 0 0 10px var(--emerald-neon); }
.score-level .level-indicator.estable { background: var(--emerald-bright); }
.score-level .level-indicator.vulnerable { background: var(--accent-gold); }
.score-level .level-indicator.crisis { background: var(--accent-red); }

.score-level .level-range {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
}

.score-level .level-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-bright);
  margin-top: 2px;
}

.score-level .level-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   MODULES SECTION
   ═══════════════════════════════════════════════════════ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.module-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.module-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.module-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 30px 80px rgba(0, 255, 136, 0.12);
}

.module-card:hover::after {
  opacity: 1;
}

.module-card .module-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.module-card .module-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.module-card .module-status.active {
  background: rgba(0, 255, 136, 0.12);
  color: var(--emerald-neon);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.module-card .module-status.calibrated {
  background: rgba(61, 186, 118, 0.12);
  color: var(--emerald-bright);
  border: 1px solid rgba(61, 186, 118, 0.2);
}

.module-card .module-status.new-feat {
  background: rgba(240, 192, 64, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(240, 192, 64, 0.2);
}

.module-card h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.module-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   GRANJERITA SECTION
   ═══════════════════════════════════════════════════════ */
.granjerita-section {
  background: linear-gradient(180deg, var(--bg-space), rgba(13, 34, 24, 0.4), var(--bg-space));
}

.granjerita-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.granjerita-avatar-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.granjerita-avatar-wrapper img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(0, 255, 136, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 255, 136, 0.1);
}

.granjerita-avatar-wrapper .avatar-glow {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08), transparent 70%);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

.granjerita-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.granjerita-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.granjerita-feature:hover {
  background: rgba(0, 255, 136, 0.04);
  border-color: rgba(0, 255, 136, 0.2);
  transform: translateX(8px);
}

.granjerita-feature .feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.granjerita-feature h4 {
  font-size: 0.9rem;
  color: var(--emerald-bright);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.granjerita-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Chat simulation */
.chat-bubble {
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 20px 20px 20px 4px;
  padding: 16px 22px;
  margin-top: 30px;
  max-width: 400px;
  position: relative;
}

.chat-bubble p {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
}

.chat-bubble .chat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--emerald-neon);
  margin-bottom: 6px;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════
   MERCADO SECTION
   ═══════════════════════════════════════════════════════ */
.mercado-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.mercado-feature {
  padding: 30px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.mercado-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.2);
}

.mercado-feature .feature-emoji {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.mercado-feature h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.mercado-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Price comparison */
.price-comparison {
  display: flex;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.price-card {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  border: var(--border-glass);
  background: var(--bg-glass);
  transition: all 0.3s ease;
}

.price-card.highlight-card {
  border-color: var(--emerald-neon);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.price-card .price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-card .price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.price-card .price-diff {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-top: 6px;
}

.price-good { color: var(--emerald-neon); }
.price-bad { color: var(--accent-red); }

/* ═══════════════════════════════════════════════════════
   RED COMUNITARIA
   ═══════════════════════════════════════════════════════ */
.community-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
  align-items: start;
}

.community-story {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}

.community-story .story-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-event {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.timeline-event:hover {
  background: rgba(0, 255, 136, 0.04);
}

.timeline-event .event-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald-neon);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--emerald-neon);
}

.timeline-event .event-user {
  font-size: 0.82rem;
  color: var(--emerald-bright);
  font-weight: 600;
  margin-bottom: 2px;
}

.timeline-event .event-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.community-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-feat {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.community-feat:hover {
  transform: translateX(4px);
  border-color: rgba(0, 255, 136, 0.2);
}

.community-feat .cf-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.community-feat h4 {
  font-size: 0.9rem;
  color: var(--text-white);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.community-feat p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════════════════ */
.team-section {
  position: relative;
  overflow: hidden;
}

.team-section .team-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.team-section .team-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.8) brightness(0.5);
}

.team-section .team-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-space), rgba(5, 14, 10, 0.7), var(--bg-space));
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.team-member {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.25);
}

.team-member .member-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  border: 2px solid rgba(0, 255, 136, 0.2);
}

.team-member h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 700;
}

.team-member .member-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--emerald-neon);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.team-member .member-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-member .member-leads {
  text-align: left;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 255, 136, 0.08);
}

.team-member .member-leads li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 4px 0;
  list-style: none;
  position: relative;
  padding-left: 16px;
}

.team-member .member-leads li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--emerald-neon);
  font-weight: bold;
}

.team-quote {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.team-quote p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-primary);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   BUSINESS MODEL SECTION
   ═══════════════════════════════════════════════════════ */
.business-layers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}

.business-layer {
  display: grid;
  grid-template-columns: 200px 150px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.business-layer:hover {
  background: rgba(0, 255, 136, 0.04);
  transform: translateX(4px);
}

.business-layer .layer-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-bright);
}

.business-layer .layer-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--emerald-neon);
}

.business-layer .layer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.business-layer.free-layer .layer-price {
  color: var(--accent-gold);
}

/* Financial table */
.financial-table-wrapper {
  margin: 40px 0;
  border-radius: var(--radius-md);
  border: var(--border-glass);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   ROADMAP SECTION
   ═══════════════════════════════════════════════════════ */
.roadmap-section {
  background: linear-gradient(180deg, var(--bg-space), var(--emerald-deep), var(--bg-space));
}

.roadmap-timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 40px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--emerald-neon), var(--emerald-mid), rgba(0, 255, 136, 0.1));
}

.roadmap-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--emerald-neon);
  border: 3px solid var(--bg-space);
  box-shadow: 0 0 15px var(--emerald-neon);
}

.roadmap-item .roadmap-phase {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--emerald-neon);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.roadmap-item .roadmap-period {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.roadmap-item .roadmap-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0, 255, 136, 0.08);
}

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

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--emerald-neon);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--emerald-neon);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 255, 136, 0.06);
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copernicus {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--emerald-mid);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.4); }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes rotate-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

@keyframes scan-line {
  0% { top: -10%; }
  100% { top: 110%; }
}

@keyframes typing-cursor {
  0%, 50% { border-right-color: var(--emerald-neon); }
  51%, 100% { border-right-color: transparent; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .granjerita-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .community-layout {
    grid-template-columns: 1fr;
  }
  .business-layer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(5, 14, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.4s ease;
    z-index: 1000;
    border-left: 1px solid rgba(0, 255, 136, 0.1);
  }

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

  .nav-toggle {
    display: flex;
  }

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

  .hero-orbit,
  .hero-orbit-2 {
    display: none;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .mercado-features {
    grid-template-columns: 1fr;
  }

  .chain-flow {
    flex-direction: column;
  }

  .chain-arrow {
    transform: rotate(90deg);
  }

  .score-display {
    flex-direction: column;
    gap: 30px;
  }

  .score-scale {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .price-comparison {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .innovation-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   SPECIAL EFFECTS
   ═══════════════════════════════════════════════════════ */

/* Scan line overlay for tech sections */
.scan-overlay {
  position: relative;
  overflow: hidden;
}

.scan-overlay::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.15), transparent);
  animation: scan-line 8s linear infinite;
  pointer-events: none;
  z-index: 5;
}

/* Glow border on sections */
.glow-border {
  position: relative;
}

.glow-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald-neon), transparent);
  opacity: 0.5;
}

/* Background grid pattern */
.grid-bg {
  position: relative;
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}
