/* ─── THE IMPOSSIBLE LAB CSS (Servicio 05) ─────────────────── */

:root {
  --font-primary: "Montserrat", sans-serif;
  --font-technical: "DM Mono", monospace;

  /* Classic Mode (Default) - Gris Grafito Oscuro y Dorado Champagne */
  --bg-primary: #121316; /* Gris Grafito de laboratorio */
  --bg-secondary: #1a1c20; /* Gris pizarra metalizado */
  --text-primary: #f0efeb; /* Texto claro */
  --text-secondary: #a0a5ad; /* Telemetría clara */
  --accent: #c5a028; /* Dorado champagne pulido de alto impacto */
  --accent-glow: rgba(197, 160, 40, 0.08);
  --metal-shine: linear-gradient(135deg, #1a1c20 0%, #2c2e35 50%, #121316 100%);
  --tech-grid-color: rgba(255, 255, 255, 0.06);
  --tech-badge-bg: #1a1c20;
  --tech-badge-border: #2c2e35;
  
  /* Hero Overrides (Always Dark/Cinematic) */
  --hero-bg: #0b0b0b;
  --hero-text: #ffffff;
  --hero-accent: #ffffff;
}

/* Dynamic Mode (Dark/Industrial) Override */
body.dynamic-mode {
  --bg-primary: #0b0b0b;
  --bg-secondary: #121212;
  --text-primary: #ffffff;
  --text-secondary: #8d8d93;
  --accent: #00e5ff;
  --accent-glow: rgba(0, 229, 255, 0.15);
  --metal-shine: linear-gradient(135deg, #222222 0%, #121212 50%, #2e2e30 100%);
  --tech-grid-color: rgba(255, 255, 255, 0.06);
  --tech-badge-bg: #161618;
  --tech-badge-border: #222224;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  font-family: var(--font-primary);
  color: var(--text-primary);
  transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  background-color: var(--bg-primary);
  transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── FIXED HEADER ────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
}

.header-logo {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.header-back-btn {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.header-back-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

/* ─── HERO SECTION ────────────────────────────────────────── */
.hero-general {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--hero-bg) !important;
  color: var(--hero-text) !important;
}

/* Cine-scope anamorphic widescreen bands (look de película 2.39:1) */
.hero-general::before,
.hero-general::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3.5vh;
  background: #000000;
  z-index: 12;
  pointer-events: none;
}
.hero-general::before {
  top: 0;
}
.hero-general::after {
  bottom: 0;
}

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

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  /* Color grading cinematográfico: contraste premium, saturación elegante y calidez analógica */
  filter: brightness(1.08) contrast(1.15) saturate(0.9) sepia(0.04);
}

.video-hero-single {
  display: block;
}

.video-desktop {
  display: block;
}

.video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }
  .video-mobile {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Viñeteado cinematográfico radial y máscara de contraste */
  background: radial-gradient(circle, rgba(11, 11, 11, 0) 35%, rgba(11, 11, 11, 0.65) 100%), rgba(11, 11, 11, 0.12);
  z-index: 2;
}

.hero-container-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 80px 100px 80px;
}

@media (max-width: 768px) {
  .hero-container-wrapper {
    padding: 0 30px 60px 30px;
  }
}

/* ─── ANIMACIONES DE ENTRADA HERO (CLASSIC & DYNAMIC) ─────── */
@keyframes heroRevealClassic {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRevealDynamic {
  0% {
    opacity: 0;
    transform: scale(0.97) translateY(8px);
    filter: blur(10px) brightness(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) brightness(1);
  }
}

/* Animaciones para Classic (Modo por defecto) */
.hero-content {
  max-width: 550px;
  animation: heroRevealClassic 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .reveal-kicker { opacity: 0; animation: heroRevealClassic 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards; }
.hero-content .reveal-title { opacity: 0; animation: heroRevealClassic 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards; }
.hero-content .reveal-body { opacity: 0; animation: heroRevealClassic 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }
.hero-content .reveal-cta { opacity: 0; animation: heroRevealClassic 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }

/* Animaciones para Dynamic (Immersive Mode) */
body.dynamic-mode .hero-content {
  animation: heroRevealDynamic 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.dynamic-mode .hero-content .reveal-kicker { opacity: 0; animation: heroRevealDynamic 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards; }
body.dynamic-mode .hero-content .reveal-title { opacity: 0; animation: heroRevealDynamic 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
body.dynamic-mode .hero-content .reveal-body { opacity: 0; animation: heroRevealDynamic 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.32s forwards; }
body.dynamic-mode .hero-content .reveal-cta { opacity: 0; animation: heroRevealDynamic 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.48s forwards; }

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-content .reveal-kicker,
  .hero-content .reveal-title,
  .hero-content .reveal-body,
  .hero-content .reveal-cta,
  body.dynamic-mode .hero-content,
  body.dynamic-mode .hero-content .reveal-kicker,
  body.dynamic-mode .hero-content .reveal-title,
  body.dynamic-mode .hero-content .reveal-body,
  body.dynamic-mode .hero-content .reveal-cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hero-accent);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-experiment-meta {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-nomad-drop-access {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nomad-access-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-technical);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nomad-badge-status {
  color: #c5a028; /* Dorado champagne de alto impacto por defecto en Classic (visibilidad sobre el vídeo negro) */
  font-weight: 600;
  transition: color 0.4s ease;
}

body.dynamic-mode .nomad-badge-status {
  color: #00e5ff; /* Cian brillante en Dynamic */
}

.nomad-badge-details {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.nomad-access-link {
  font-family: var(--font-technical);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25); /* Borde con más opacidad */
  padding: 6px 14px;
  border-radius: 2px;
  margin-top: 4px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.02);
}

.nomad-access-link:hover {
  color: #c5a028;
  border-color: #c5a028;
  background-color: rgba(197, 160, 40, 0.05);
  box-shadow: 0 0 15px rgba(197, 160, 40, 0.1);
}

body.dynamic-mode .nomad-access-link:hover {
  color: #00e5ff;
  border-color: #00e5ff;
  background-color: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.exp-badge {
  display: inline-block;
  font-size: 10px;
  font-family: var(--font-technical);
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-statement {
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.hero-cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-cta-container {
    justify-content: center;
  }
}

.hero-cta-btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  background-color: #ffffff;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #ffffff;
}

.hero-cta-btn:hover {
  background-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.hero-cta-btn--drop {
  background-color: rgba(12, 12, 14, 0.85) !important; /* Base oscura semi-sólida para contraste absoluto contra fondos claros */
  color: #ffffff !important;
  border: 1.5px solid #c5a028 !important; /* Borde dorado champagne en Classic por defecto */
}

body.dynamic-mode .hero-cta-btn--drop {
  border-color: #00e5ff !important; /* Borde cian en Dynamic */
}

.hero-cta-btn--drop:hover {
  background-color: #c5a028 !important; /* Relleno sólido dorado al pasar el cursor */
  color: #121316 !important; /* Texto oscuro para legibilidad */
  box-shadow: 0 4px 20px rgba(197, 160, 40, 0.4) !important;
}

body.dynamic-mode .hero-cta-btn--drop:hover {
  background-color: #00e5ff !important; /* Relleno cian en Dynamic */
  color: #060608 !important;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4) !important;
}

/* ─── SECTION: MANIFIESTO ─────────────────────────────────── */
.section-manifiesto {
  padding: 70px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-primary);
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.manifiesto-block {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--tech-grid-color);
  padding: 80px 60px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifiesto-block.in-view {
  opacity: 1;
  transform: translateY(0);
}

.manifiesto-text {
  font-size: clamp(20px, 3.2vw, 36px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 900px;
  color: var(--text-primary);
}

/* Technical Corner Markings */
.tech-corner {
  position: absolute;
  font-family: var(--font-technical);
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--accent);
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

body.dynamic-mode .tech-corner {
  opacity: 0.45;
  color: var(--accent);
}

.tech-corner--tl { top: 15px; left: 20px; }
.tech-corner--tr { top: 15px; right: 20px; }
.tech-corner--bl { bottom: 15px; left: 20px; }
.tech-corner--br { bottom: 15px; right: 20px; }

@media (max-width: 768px) {
  .section-manifiesto {
    padding: 40px 20px;
  }
  .manifiesto-block {
    padding: 40px 20px;
  }
}

/* ─── SECTION: EXPERIMENT ─────────────────────────────────── */


.section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  color: var(--text-primary);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--tech-grid-color);
  padding-bottom: 20px;
}



/* ─── SECTION: CLOSING ────────────────────────────────────── */
.section-closing {
  padding: 160px 40px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--tech-grid-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.closing-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto; /* Centrado estructural e inline respecto al ancho completo de la página */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .section-closing {
    padding: 60px 20px;
  }
  .closing-block {
    gap: 25px;
  }
}

.closing-statement {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.closing-cta-wrapper {
  margin-top: 10px;
}

/* ─── REVEAL ANIMATIONS (INTEGRATION WITH JS) ─────────────── */
.reveal-kicker, .reveal-title, .reveal-body, .reveal-cta {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Accessibility: prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    transition-duration: 0s !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Ocultar botón flotante duplicado únicamente en esta página */
.technical-grid-switch-wrapper,
[data-floating-back],
.floating-back-btn,
#floating-back-btn {
  display: none !important;
}

/* ==========================================================================
   SECTION 01 — IDEA STYLES
   ========================================================================== */
.section-idea {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

/* Canvas Board (Team Image + SVG Overlay) */
.board-canvas {
  position: relative;
  width: 100%;
  margin: 50px auto 70px auto;
  display: block;
  perspective: 1200px; /* Soporte para profundidad 3D Micro Parallax */
}

.board-image-wrapper {
  position: relative;
  width: 100%;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.board-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.92) contrast(1.02);
  transition: filter 0.4s ease;
}

/* SVG Overlay for technical layout lines */
.board-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Technical draw lines styling (with automatic draw-on-scroll capability) */
.tech-path {
  stroke-width: 1.5px;
  stroke-dasharray: 6, 4;
  stroke-dashoffset: 40; /* Animación de trazado corta y robusta */
  opacity: 0.75;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, 
              stroke 0.4s ease, 
              stroke-width 0.4s ease, 
              opacity 0.4s ease;
}

/* Trigger draw effect when canvas is in view */
.in-view .tech-path {
  stroke-dashoffset: 0;
}

.tech-node {
  r: 4;
  transition: fill 0.4s ease, r 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-zone-circle {
  stroke-width: 1px;
  stroke-dasharray: 8, 4;
  transform-origin: 500px 300px;
  opacity: 0.25;
  transition: stroke 0.4s ease, opacity 0.4s ease;
}

/* Sutil rotación del círculo de enfoque central */
.in-view .tech-zone-circle {
  animation: techCircleRot 45s linear infinite;
}

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

/* Highlight hover states */
.tech-path.highlight {
  stroke-width: 2px !important;
  opacity: 1 !important;
}

.tech-node.highlight {
  r: 7 !important;
}

/* Board Notes (Absolute Position Callouts) */
.board-note {
  position: absolute;
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
  background-color: var(--bg-primary);
  padding: 6px 12px;
  border: 1px solid var(--tech-grid-color);
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              color 0.4s ease, 
              box-shadow 0.4s ease, 
              background-color 0.4s ease;
}

/* Precise Callout coordinates matching SVG viewport coordinates (1000x600) */
.note-tl { top: 13%; left: 2%; }
.note-tr { top: 13%; right: 2%; }
.note-ml { top: 48%; left: 0%; }
.note-mr { top: 48%; right: 0%; }
.note-bl { bottom: 13%; left: 2%; }
.note-br { bottom: 13%; right: 2%; }

/* Content block under the Board Canvas */
.idea-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.idea-text-main {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.idea-text-main p {
  margin-bottom: 25px;
}

.idea-text-main p:last-child {
  margin-bottom: 0;
}

.idea-question {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-primary);
  border-left: 2px solid var(--accent);
  padding-left: 25px;
  margin-top: 35px !important;
  letter-spacing: 0.01em;
}

.idea-closing-statement {
  padding-left: 20px;
  border-left: 1px dashed var(--tech-grid-color);
}

.idea-closing-statement h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* --- THEMATIC ACCENT COLORS (Classic vs Dynamic) --- */
/* Classic Theme Accent (Champagne / Gold) */
html:not(.dynamic-mode) .tech-path { stroke: rgba(197, 160, 40, 0.85); }
html:not(.dynamic-mode) .tech-node { fill: rgba(197, 160, 40, 0.95); }
html:not(.dynamic-mode) .tech-zone-circle { stroke: rgba(197, 160, 40, 0.4); }
html:not(.dynamic-mode) .board-note {
  color: #c5a028;
  border-color: rgba(212, 175, 55, 0.25);
}
html:not(.dynamic-mode) .tech-path.highlight {
  stroke: rgba(197, 160, 40, 1) !important;
  filter: drop-shadow(0 0 2px rgba(197, 160, 40, 0.4));
}
html:not(.dynamic-mode) .tech-node.highlight {
  fill: rgba(197, 160, 40, 1) !important;
}

/* Dynamic Theme Accent (Cian Técnico) */
body.dynamic-mode .tech-path { stroke: rgba(0, 229, 255, 0.75); }
body.dynamic-mode .tech-node { fill: rgba(0, 229, 255, 0.95); }
body.dynamic-mode .tech-zone-circle { stroke: rgba(0, 229, 255, 0.35); }
body.dynamic-mode .board-note {
  color: #00e5ff;
  border-color: rgba(0, 229, 255, 0.3);
}
body.dynamic-mode .tech-path.highlight {
  stroke: rgba(0, 229, 255, 1) !important;
  filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.7));
}
body.dynamic-mode .tech-node.highlight {
  fill: rgba(0, 229, 255, 1) !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 01 — IDEA
   ========================================================================== */
@media (max-width: 991px) {
  .section-idea {
    padding: 50px 30px;
  }
  .idea-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-idea {
    padding: 40px 20px;
  }
  .board-canvas {
    margin: 20px auto;
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16 !important;
    display: block !important;
    perspective: 1000px;
  }
  
  .board-image-wrapper {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .board-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .board-svg-overlay {
    display: none; /* Hide lines on mobile to avoid overlapping */
  }
  
  .board-note {
    position: absolute !important;
    font-size: 9px;
    padding: 4px 8px;
    background-color: rgba(12, 12, 14, 0.85);
    border: 1px solid var(--tech-grid-color);
    border-radius: 2px;
    cursor: default;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    font-family: var(--font-technical), monospace;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Posiciones absolutas adaptadas al canvas 9:16 vertical de móvil */
  .note-tl { top: 6% !important; left: 4% !important; right: auto !important; bottom: auto !important; }
  .note-tr { top: 16% !important; right: 4% !important; left: auto !important; bottom: auto !important; }
  .note-ml { top: 32% !important; left: 4% !important; right: auto !important; bottom: auto !important; }
  .note-mr { top: 48% !important; right: 4% !important; left: auto !important; bottom: auto !important; }
  .note-bl { bottom: 16% !important; left: 4% !important; right: auto !important; top: auto !important; }
  .note-br { bottom: 6% !important; right: 4% !important; left: auto !important; top: auto !important; }
  
  .idea-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
  }
  
  .idea-closing-statement {
    padding-left: 0;
    border-left: none;
    border-top: 1px dashed var(--tech-grid-color);
    padding-top: 25px;
  }
}

/* ==========================================================================
   SECTION 03 — BOCETOS STYLES
   ========================================================================== */
.section-sketches {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

.sketches-stepper-container {
  width: 100%;
  margin: 35px auto 45px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Stepper Canvas Viewport (16:9 Aspect Ratio) */
.sketches-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  overflow: hidden;
  background-color: #0c0c0e;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.sketch-phase-view {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sketch-phase-view.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.sketch-process-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Zoom Lens interactive container */
.zoom-lens-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.sketch-zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform-origin 0.1s ease-out;
}

/* Technical HUD overlay */
.tech-hud {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hud-item {
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hud-scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 4px, 6px 100%;
  opacity: 0.25;
  z-index: 11;
}

/* Stepper Controls (3 Columns Menu) */
.sketches-stepper-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.stepper-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--tech-grid-color);
  padding: 20px 25px;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-btn .step-num {
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.stepper-btn .step-title {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

/* Active buttons adapters (Classic vs Dynamic) */
html:not(.dynamic-mode) .stepper-btn.active {
  border-color: #c5a028;
  background-color: var(--bg-primary);
  box-shadow: inset 0 3px 0 #c5a028, 0 8px 25px rgba(197, 160, 40, 0.06);
}

html:not(.dynamic-mode) .stepper-btn.active .step-num,
html:not(.dynamic-mode) .stepper-btn.active .step-title {
  color: #c5a028;
}

body.dynamic-mode .stepper-btn.active {
  border-color: #00e5ff;
  background-color: var(--bg-primary);
  box-shadow: inset 0 3px 0 #00e5ff, 0 8px 25px rgba(0, 229, 255, 0.08);
}

body.dynamic-mode .stepper-btn.active .step-num,
body.dynamic-mode .stepper-btn.active .step-title {
  color: #00e5ff;
}

/* Stepper content block underneath */
.sketches-content-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.sketches-text-main {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.sketches-text-main p {
  margin-bottom: 25px;
}

.sketches-text-main p:last-child {
  margin-bottom: 0;
}

.sketches-tech-info {
  padding: 10px 25px;
  border-left: 1px dashed var(--tech-grid-color);
}

.tech-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--tech-grid-color);
}

.tech-spec-row:last-child {
  border-bottom: none;
}

.tech-spec-row .spec-label {
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.tech-spec-row .spec-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 03 — BOCETOS
   ========================================================================== */
@media (max-width: 991px) {
  .section-sketches {
    padding: 50px 30px;
  }
  
  .sketches-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-sketches {
    padding: 40px 20px;
  }
  .sketches-canvas {
    aspect-ratio: 9 / 16 !important;
  }
  .sketches-stepper-container {
    gap: 20px;
    margin-top: 20px;
  }
  .sketches-stepper-menu {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .stepper-btn {
    padding: 15px 20px;
  }
  
  .sketches-content-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 40px;
  }
  
  .sketches-tech-info {
    border-left: none;
    border-top: 1px dashed var(--tech-grid-color);
    padding-left: 0;
    padding-top: 20px;
  }
}

/* ==========================================================================
   SECTION 04 — DISEÑO INDUSTRIAL STYLES
   ========================================================================== */
.section-industrial-design {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

.industrial-board-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin: 50px auto 70px auto;
  width: 100%;
}

/* Column 1: Product 3D Viewer Card */
.product-viewer-card {
  position: relative;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  background-color: var(--bg-secondary);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.01);
  overflow: hidden;
}

.viewer-tag {
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 0.75;
}

.product-3d-canvas {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  padding: 20px;
  margin: 20px 0;
}

.product-isolated-img {
  width: 130%;
  height: auto;
  object-fit: contain;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* Dynamic Shadow helper under the 3D watch */
.product-shadow-helper {
  position: absolute;
  width: 85%;
  height: 20px;
  bottom: 5%;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}

/* Hotspot system styling */
.tech-hotspot {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  z-index: 12;
  cursor: pointer;
}

.hotspot-dot {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background-color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html:not(.dynamic-mode) .hotspot-dot {
  background-color: #c5a028;
  box-shadow: 0 0 8px #c5a028;
}

body.dynamic-mode .hotspot-dot {
  background-color: #00e5ff;
  box-shadow: 0 0 10px #00e5ff;
}

.hotspot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: hotspotPulseAnim 2.2s infinite ease-out;
  opacity: 0.75;
}

html:not(.dynamic-mode) .hotspot-pulse {
  border-color: #c5a028;
}

body.dynamic-mode .hotspot-pulse {
  border-color: #00e5ff;
}

@keyframes hotspotPulseAnim {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

/* Informative tooltip popup on hover */
.hotspot-popup {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  background-color: rgba(12, 12, 14, 0.96);
  border: 1px solid var(--tech-grid-color);
  color: #f3f3f3;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hotspot-popup strong {
  display: block;
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

html:not(.dynamic-mode) .hotspot-popup strong {
  color: #c5a028;
}

body.dynamic-mode .hotspot-popup strong {
  color: #00e5ff;
}

.tech-hotspot:hover .hotspot-popup {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tech-hotspot:hover .hotspot-dot {
  transform: scale(1.4);
}

.viewer-instructions {
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-align: center;
}

/* Column 2: Tech Specs Boards Stack */
.specs-boards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.specs-board-item {
  position: relative;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.01);
  aspect-ratio: 16 / 9;
}

.board-tag {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 10;
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.board-zoom-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.specs-board-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform-origin 0.1s ease-out;
}

/* Explanatory Content Block */
.industrial-content-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.industrial-text-main {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.industrial-text-main p {
  margin-bottom: 25px;
}

.industrial-text-main p:last-child {
  margin-bottom: 0;
}

.industrial-statement-box {
  padding-left: 25px;
  border-left: 1px dashed var(--tech-grid-color);
}

.industrial-statement-box h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 04 — DISEÑO INDUSTRIAL
   ========================================================================== */
@media (max-width: 991px) {
  .section-industrial-design {
    padding: 50px 30px;
  }
  
  .industrial-board-grid {
    gap: 30px;
  }
  
  .industrial-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-industrial-design {
    padding: 40px 20px;
  }
  .industrial-board-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .specs-boards-stack {
    gap: 20px;
  }
  
  .specs-board-item {
    aspect-ratio: 9 / 16 !important;
  }
  
  .industrial-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
  }
  
  .industrial-statement-box {
    border-left: none;
    padding-left: 0;
    padding-top: 25px;
  }
}

/* ==========================================================================
   SECTION 05 — MATERIALES STYLES
   ========================================================================== */
.section-materials {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

.materials-compare-container {
  width: 100%;
  margin: 35px auto 45px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Compare Slider Canvas (16:9 Aspect Ratio) */
.compare-slider-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background-color: #0b0b0b;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.compare-img-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
}

.compare-img-layer.layer-under {
  width: 100%;
  z-index: 1;
}

.compare-img-layer.layer-over {
  z-index: 2;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.compare-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

/* Force image inside clipped layer to measure exactly the canvas width */
.compare-img-layer.layer-over .compare-img {
  width: var(--canvas-width, 100%);
  max-width: none;
}

.compare-img-layer.layer-under .compare-img {
  width: 100%;
}

/* Information tags inside comparison layers */
.compare-tag {
  position: absolute;
  bottom: 25px;
  z-index: 10;
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #ffffff;
  background-color: rgba(12, 12, 14, 0.7);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.compare-tag.tag-left {
  left: 25px;
}

.compare-tag.tag-right {
  right: 25px;
}

/* The drag handle */
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.handle-bar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background-color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.handle-arrow-left,
.handle-arrow-right {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.handle-arrow-left {
  border-right: 5px solid var(--accent);
  margin-right: 3px;
}

.handle-arrow-right {
  border-left: 5px solid var(--accent);
  margin-left: 3px;
}

/* Classic vs Dynamic styling overrides for comparison slider */
html:not(.dynamic-mode) .compare-handle {
  background-color: #c5a028;
}
html:not(.dynamic-mode) .handle-bar {
  background-color: #c5a028;
  box-shadow: 0 0 8px rgba(197, 160, 40, 0.4);
}
html:not(.dynamic-mode) .handle-button {
  border: 2px solid #c5a028;
}
html:not(.dynamic-mode) .handle-arrow-left {
  border-right-color: #c5a028;
}
html:not(.dynamic-mode) .handle-arrow-right {
  border-left-color: #c5a028;
}

body.dynamic-mode .compare-handle {
  background-color: #00e5ff;
}
body.dynamic-mode .handle-bar {
  background-color: #00e5ff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}
body.dynamic-mode .handle-button {
  border: 2px solid #00e5ff;
}
body.dynamic-mode .handle-arrow-left {
  border-right-color: #00e5ff;
}
body.dynamic-mode .handle-arrow-right {
  border-left-color: #00e5ff;
}

.compare-instructions {
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-align: center;
}

/* Explanatory Content Block */
.materials-content-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.materials-text-main {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.materials-text-main p {
  margin-bottom: 25px;
}

.materials-text-main p:last-child {
  margin-bottom: 0;
}

.materials-statement-box {
  padding-left: 0;
}

/* Spec Matrix Grid */
.spec-matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.matrix-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 24px;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  background-color: var(--bg-secondary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.matrix-label {
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.matrix-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 05 — MATERIALES
   ========================================================================== */
@media (max-width: 991px) {
  .section-materials {
    padding: 50px 30px;
  }
  
  .materials-compare-container {
    margin: 25px auto 35px auto;
  }
  
  .materials-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-materials {
    padding: 40px 20px;
  }
  .compare-slider-canvas {
    aspect-ratio: 9 / 16 !important;
  }
  .materials-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
  }
  
  .compare-tag {
    font-size: 9px;
    padding: 4px 8px;
    bottom: 15px;
  }
  
  .compare-tag.tag-left {
    left: 15px;
  }
  
  .compare-tag.tag-right {
    right: 15px;
  }
}

/* ==========================================================================
   SECTION 06 — PROTOTIPO STYLES
   ========================================================================== */
.section-prototype {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

.prototype-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 35px auto 45px auto;
  width: 100%;
}

/* Column 1: Lab Diagnostics Console */
.lab-console-card {
  position: relative;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  background-color: var(--bg-secondary);
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.01);
  overflow: hidden;
}

.console-tag {
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.console-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2ec4b6;
  box-shadow: 0 0 8px #2ec4b6;
  animation: statusPulse 1.8s infinite ease-in-out;
}

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

.console-status-text {
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.console-parameters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parameter-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.parameter-meta {
  display: flex;
  justify-content: space-between;
}

.parameter-label {
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.parameter-value {
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
}

.parameter-bar-bg {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
}

html:not(.dynamic-mode) .parameter-bar-bg {
  background-color: rgba(0, 0, 0, 0.06);
}

body.dynamic-mode .parameter-bar-bg {
  background-color: rgba(255, 255, 255, 0.08);
}

.parameter-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.fill-cognitive {
  background-color: #e63946; /* Stress level color */
}

.fill-attention {
  background-color: var(--accent);
}

.fill-time {
  background-color: var(--text-secondary);
}

/* Theme accent adapters for parameters */
html:not(.dynamic-mode) .fill-attention {
  background-color: #c5a028;
}
body.dynamic-mode .fill-attention {
  background-color: #00e5ff;
}

.console-controllers {
  display: flex;
  gap: 15px;
}

.console-btn {
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid var(--tech-grid-color);
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.console-btn.btn-action {
  font-weight: 700;
}

html:not(.dynamic-mode) .console-btn.btn-action {
  background-color: #c5a028;
  color: #ffffff;
  border-color: #c5a028;
}

html:not(.dynamic-mode) .console-btn.btn-action:hover {
  background-color: #b08d20;
  border-color: #b08d20;
  box-shadow: 0 4px 15px rgba(197, 160, 40, 0.15);
}

body.dynamic-mode .console-btn.btn-action {
  background-color: #00e5ff;
  color: #0c0c0e;
  border-color: #00e5ff;
}

body.dynamic-mode .console-btn.btn-action:hover {
  background-color: #00bcd4;
  border-color: #00bcd4;
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.2);
}

.console-btn.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
}

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

.console-terminal-log {
  border: 1px solid var(--tech-grid-color);
  padding: 15px;
  border-radius: 3px;
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  line-height: 1.6;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

html:not(.dynamic-mode) .console-terminal-log {
  background-color: rgba(0, 0, 0, 0.02);
  color: #5a5a5c;
}

body.dynamic-mode .console-terminal-log {
  background-color: rgba(0, 0, 0, 0.2);
  color: #a0a0a2;
}

/* Column 2: Pedestal Viewer Card */
.pedestal-viewer-card {
  position: relative;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.01);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pedestal-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: crosshair;
  perspective: 1200px;
}

.pedestal-prototype-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform-origin 0.15s ease-out;
}

/* Laser scan line animation (active on hover) */
.laser-scanner-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

html:not(.dynamic-mode) .laser-scanner-line {
  background-color: #c5a028;
  box-shadow: 0 0 12px #c5a028;
}

body.dynamic-mode .laser-scanner-line {
  background-color: #ff0055; /* Laser red/pink color */
  box-shadow: 0 0 15px #ff0055;
}

.pedestal-canvas:hover .laser-scanner-line {
  animation: laserScanAnim 2.5s infinite linear;
  opacity: 1;
}

@keyframes laserScanAnim {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* HUD Overlay on Pedestal View */
.pedestal-hud-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 20px;
  z-index: 8;
}

.hud-corner {
  position: absolute;
  width: 15px;
  height: 15px;
}

html:not(.dynamic-mode) .hud-corner {
  border: 1.5px solid rgba(197, 160, 40, 0.35);
}

body.dynamic-mode .hud-corner {
  border: 1.5px solid rgba(0, 229, 255, 0.35);
}

.hud-corner.top-left {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.hud-corner.top-right {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.hud-corner.bottom-left {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.hud-corner.bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.hud-tag {
  position: absolute;
  bottom: 20px;
  left: 45px;
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}

html:not(.dynamic-mode) .hud-tag {
  color: rgba(197, 160, 40, 0.65);
}

body.dynamic-mode .hud-tag {
  color: rgba(0, 229, 255, 0.65);
}

/* Explanatory Content Block */
.prototype-content-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.prototype-text-main {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.prototype-text-main p {
  margin-bottom: 25px;
}

.prototype-text-main p:last-child {
  margin-bottom: 0;
}

.prototype-statement-box {
  padding-left: 25px;
  border-left: 1px dashed var(--tech-grid-color);
}

.prototype-statement-box h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 06 — PROTOTIPO
   ========================================================================== */
@media (max-width: 991px) {
  .section-prototype {
    padding: 50px 30px;
  }
  
  .prototype-board-grid {
    gap: 30px;
  }
  
  .prototype-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-prototype {
    padding: 40px 20px;
  }
  .pedestal-canvas {
    aspect-ratio: 9 / 16 !important;
  }
  .prototype-board-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .lab-console-card {
    padding: 25px;
  }
  
  .prototype-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
  }
  
  .prototype-statement-box {
    border-left: none;
    border-top: 1px dashed var(--tech-grid-color);
    padding-left: 0;
    padding-top: 25px;
  }
}

/* ==========================================================================
   SECTION 07 — EMBALAJE STYLES
   ========================================================================== */
.section-packaging {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

.packaging-spotlight-container {
  width: 100%;
  margin: 35px auto 45px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Packaging Canvas Viewport (16:9 Aspect Ratio) */
.packaging-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  overflow: hidden;
  background-color: #0c0c0e;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Hide standard cursor only on desktop hover */
@media (min-width: 769px) {
  .packaging-canvas {
    cursor: none;
  }
}

.packaging-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Spotlight masking layer */
.packaging-spotlight-mask {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

html:not(.dynamic-mode) .packaging-spotlight-mask {
  background: radial-gradient(var(--mask-size, 260px) circle at var(--mask-x, 50%) var(--mask-y, 50%), 
              transparent 100%, 
              rgba(12, 12, 14, 0.92) 100%);
}

body.dynamic-mode .packaging-spotlight-mask {
  background: radial-gradient(var(--mask-size, 260px) circle at var(--mask-x, 50%) var(--mask-y, 50%), 
              transparent 100%, 
              rgba(12, 12, 14, 0.94) 100%);
}

/* HUD Reticle Pointer Overlay */
.packaging-hud-reticle {
  position: absolute;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.packaging-canvas:hover .packaging-hud-reticle {
  opacity: 1;
}

.reticle-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: spinReticleAnim 20s linear infinite;
}

html:not(.dynamic-mode) .reticle-circle {
  border: 1px dashed rgba(197, 168, 128, 0.6);
}

body.dynamic-mode .reticle-circle {
  border: 1px dashed rgba(0, 229, 255, 0.6);
}

@keyframes spinReticleAnim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.reticle-coords,
.reticle-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-technical), monospace;
  font-size: 9px;
  white-space: nowrap;
  padding: 3px 6px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

html:not(.dynamic-mode) .reticle-coords,
html:not(.dynamic-mode) .reticle-label {
  background-color: rgba(12, 12, 14, 0.9);
  border: 1px solid rgba(197, 168, 128, 0.35);
}

body.dynamic-mode .reticle-coords,
body.dynamic-mode .reticle-label {
  background-color: rgba(12, 12, 14, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.reticle-coords {
  top: -24px;
  color: #ffffff;
}

.reticle-label {
  bottom: -24px;
}

html:not(.dynamic-mode) .reticle-label {
  color: #c5a880;
}

body.dynamic-mode .reticle-label {
  color: #00e5ff;
}

.packaging-hud-tag {
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  z-index: 10;
  pointer-events: none;
}

html:not(.dynamic-mode) .packaging-hud-tag {
  color: rgba(197, 168, 128, 0.65);
}

body.dynamic-mode .packaging-hud-tag {
  color: rgba(0, 229, 255, 0.65);
}

.packaging-instructions {
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-align: center;
}

/* Explanatory Content Block */
.packaging-content-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.packaging-statement-box {
  padding-left: 0;
}

/* Spec Matrix Grid */
.packaging-matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 07 — EMBALAJE
   ========================================================================== */
@media (max-width: 991px) {
  .section-packaging {
    padding: 50px 30px;
  }
  
  .packaging-spotlight-container {
    margin: 25px auto 35px auto;
  }
  
  .packaging-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-packaging {
    padding: 40px 20px;
  }
  .packaging-canvas {
    aspect-ratio: 9 / 16 !important;
  }
  .packaging-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
  }
  
  /* Habilitar spotlight mask y custom HUD en móvil */
  .packaging-spotlight-mask {
    /* Permitir máscara en móvil */
  }
  
  .packaging-hud-reticle {
    opacity: 0; /* Ocultar inicialmente hasta que haya interacción táctil */
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  /* Mostrar retículo en interacción táctil activa */
  .packaging-canvas.touch-active .packaging-hud-reticle {
    opacity: 0.85;
  }
  
  .packaging-canvas {
    cursor: default !important;
  }
}

/* ==========================================================================
   SECTION 08 — PORTADAS STYLES
   ========================================================================== */
.section-covers {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

/* 3-Column Grid Layout */
.covers-board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 35px auto 45px auto;
  width: 100%;
}

.cover-card {
  position: relative;
  border-radius: 4px;
  background: var(--bg-secondary);
  cursor: pointer;
  perspective: 1000px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Fade out other covers on hover to focus active cover */
.covers-board-grid:hover .cover-card:not(:hover) {
  opacity: 0.35;
}

.cover-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--tech-grid-color);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.4s ease;
}

html:not(.dynamic-mode) .cover-card:hover .cover-frame {
  box-shadow: 0 15px 40px rgba(197, 160, 40, 0.1);
}

body.dynamic-mode .cover-card:hover .cover-frame {
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15);
}

.cover-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.cover-card:hover .cover-image-img {
  filter: brightness(1.03) contrast(1.03);
  transform: scale(1.04);
}

/* Technical HUD overlay on cover card */
.cover-hud-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 10;
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(12, 12, 14, 0.75);
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html:not(.dynamic-mode) .cover-hud-tag {
  color: rgba(240, 239, 235, 0.75);
}

body.dynamic-mode .cover-hud-tag {
  color: rgba(255, 255, 255, 0.75);
}

html:not(.dynamic-mode) .cover-card:hover .cover-hud-tag {
  border-color: #c5a028;
  color: #c5a028;
}

body.dynamic-mode .cover-card:hover .cover-hud-tag {
  border-color: #00e5ff;
  color: #00e5ff;
}

/* Statement Copy Block */
.covers-content-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.covers-text-main {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.covers-text-main p {
  margin-bottom: 25px;
}

.covers-text-main p:last-child {
  margin-bottom: 0;
}

.covers-statement-box {
  padding-left: 25px;
  border-left: 1px dashed var(--tech-grid-color);
}

.covers-statement-box h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* Legal disclaimer — conceptual/unofficial imagery (covers + press) */
.media-disclaimer {
  margin-top: 24px;
  padding-top: 14px;
  max-width: 900px;
  border-top: 1px dashed var(--tech-grid-color);
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--text-secondary);
  opacity: 0.7;
  text-transform: uppercase;
}

/* ==========================================================================
   INTERACTIVE COVER LIGHTBOX OVERLAY
   ========================================================================== */
.cover-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}

.cover-lightbox.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(15px);
}

.lightbox-container {
  position: relative;
  z-index: 10;
  max-width: 90%;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lightbox-close-btn {
  font-family: var(--font-technical), monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--tech-grid-color);
  padding: 8px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html:not(.dynamic-mode) .lightbox-close-btn:hover {
  border-color: #c5a028;
  color: #c5a028;
  box-shadow: 0 0 10px rgba(197, 160, 40, 0.2);
}

body.dynamic-mode .lightbox-close-btn:hover {
  border-color: #00e5ff;
  color: #00e5ff;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

.lightbox-content {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--tech-grid-color);
  aspect-ratio: 4 / 5;
  height: 75vh;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.lightbox-disclaimer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  margin: 0;
  padding: 8px 14px;
  background: rgba(12, 12, 14, 0.72);
  backdrop-filter: blur(4px);
  font-family: var(--font-technical), monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: rgba(240, 239, 235, 0.8);
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.lightbox-active-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 08 — PORTADAS
   ========================================================================== */
@media (max-width: 991px) {
  .section-covers {
    padding: 50px 30px;
  }
  
  .covers-board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px auto 35px auto;
  }
  
  .covers-content-wrapper {
    gap: 30px;
  }
  
  .lightbox-content {
    height: 65vh;
  }
}

@media (max-width: 576px) {
  .section-covers {
    padding: 40px 20px;
  }
  .covers-board-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .covers-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
  }
  
  .covers-statement-box {
    border-left: none;
    border-top: 1px dashed var(--tech-grid-color);
    padding-left: 0;
    padding-top: 25px;
  }
  
  .lightbox-content {
    height: 55vh;
    aspect-ratio: 4 / 5;
    width: 90vw;
  }
}

/* ==========================================================================
   SECTION 09 — PRENSA STYLES
   ========================================================================== */
.section-press {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

/* 4-Column Grid Layout */
.press-board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 35px auto 45px auto;
  width: 100%;
}

.press-card {
  position: relative;
  border-radius: 4px;
  background: var(--bg-secondary);
  cursor: pointer;
  perspective: 1000px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Fade out other cards on hover */
.press-board-grid:hover .press-card:not(:hover) {
  opacity: 0.4;
}

.press-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--tech-grid-color);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.4s ease;
}

html:not(.dynamic-mode) .press-card:hover .press-frame {
  box-shadow: 0 15px 40px rgba(197, 160, 40, 0.08);
}

body.dynamic-mode .press-card:hover .press-frame {
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.12);
}

.press-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.press-card:hover .press-image-img {
  filter: brightness(1.02) contrast(1.02);
  transform: scale(1.03);
}

/* Technical HUD tag */
.press-hud-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 10;
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(12, 12, 14, 0.75);
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html:not(.dynamic-mode) .press-hud-tag {
  color: rgba(240, 239, 235, 0.75);
}

body.dynamic-mode .press-hud-tag {
  color: rgba(255, 255, 255, 0.75);
}

html:not(.dynamic-mode) .press-card:hover .press-hud-tag {
  border-color: #c5a028;
  color: #c5a028;
}

body.dynamic-mode .press-card:hover .press-hud-tag {
  border-color: #00e5ff;
  color: #00e5ff;
}

/* Press content wrapper layout */
.press-content-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.press-text-main {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.press-text-main p {
  margin-bottom: 25px;
}

.press-text-main p:last-child {
  margin-bottom: 0;
}

.press-statement-box {
  padding-left: 25px;
  border-left: 1px dashed var(--tech-grid-color);
}

.press-statement-box h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 09 — PRENSA
   ========================================================================== */
@media (max-width: 991px) {
  .section-press {
    padding: 50px 30px;
  }
  
  .press-board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px auto 35px auto;
  }
  
  .press-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .section-press {
    padding: 40px 20px;
  }
  .press-board-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .press-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
  }
  
  .press-statement-box {
    border-left: none;
    border-top: 1px dashed var(--tech-grid-color);
    padding-left: 0;
    padding-top: 25px;
  }
}

/* ==========================================================================
   HUD STICKY DOT NAVIGATION (PROPUESTA A - MONTSERRAT & WHITE DYNAMIC TEXT)
   ========================================================================== */
.hud-dot-navigation {
  position: fixed;
  right: 20px; /* Pegado más al extremo para liberar espacio de pantalla */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

/* Strict link reset to prevent global style overrides */
.hud-dot-navigation a.nav-dot {
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  height: 18px;
}

html:not(.dynamic-mode) .hud-dot-navigation a.nav-dot {
  color: #121212 !important;
}

body.dynamic-mode .hud-dot-navigation a.nav-dot {
  color: #ffffff !important;
}

.nav-dots-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Más compacto para que no sea intrusivo */
  align-items: flex-end;
  pointer-events: auto;
  position: relative;
  padding-right: 4px;
}

/* Faint vertical line behind dots */
.nav-dots-wrapper::before {
  content: "";
  position: absolute;
  right: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  z-index: 1;
}

html:not(.dynamic-mode) .nav-dots-wrapper::before {
  background-color: rgba(18, 18, 18, 0.08);
}

body.dynamic-mode .nav-dots-wrapper::before {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Custom interactive inner micro-dot */
.dot-inner {
  width: 6px; /* Súper sutil y técnico */
  height: 6px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.nav-dot:hover .dot-inner,
.nav-dot.active .dot-inner {
  transform: scale(1.3);
}

/* Classic Active color overrides */
html:not(.dynamic-mode) .nav-dot:hover .dot-inner,
html:not(.dynamic-mode) .nav-dot.active .dot-inner {
  border-color: #c5a028;
  background-color: #c5a028;
  box-shadow: 0 0 6px rgba(197, 160, 40, 0.4);
}

/* Dynamic Active color overrides */
body.dynamic-mode .nav-dot:hover .dot-inner,
body.dynamic-mode .nav-dot.active .dot-inner {
  border-color: #00e5ff;
  background-color: #00e5ff;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

/* Technical text labels with glassmorphism blur */
.dot-label {
  font-family: 'Montserrat', 'Inter', var(--font-primary), sans-serif;
  font-size: 8.5px; /* Más pequeña y discreta */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em; /* Ancho acotado */
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  white-space: nowrap;
  padding: 3px 8px; /* Compact padding */
  border-radius: 2px;
  border: 1px solid var(--tech-grid-color);
  backdrop-filter: blur(6px); /* Cristal esmerilado translúcido */
}

html:not(.dynamic-mode) .dot-label {
  color: #121212 !important;
  background-color: rgba(240, 239, 235, 0.85); /* Translúcido en Classic */
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

body.dynamic-mode .dot-label {
  color: #ffffff !important;
  background-color: rgba(12, 12, 14, 0.85); /* Translúcido en Dynamic */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.nav-dot:hover .dot-label {
  opacity: 1;
  transform: translateX(0);
}

/* Label active state colors */
html:not(.dynamic-mode) .nav-dot.active .dot-label {
  color: #c5a028 !important;
}

body.dynamic-mode .nav-dot.active .dot-label {
  color: #00e5ff !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR HUD NAVIGATION
   ========================================================================== */
@media (max-width: 991px) {
  .hud-dot-navigation {
    right: 20px;
  }
}

@media (max-width: 768px) {
  /* Disable dot navigation completely on mobile viewports for clean layout */
  .hud-dot-navigation {
    display: none !important;
  }
}
/* ==========================================================================
   MANIFIESTO EXTRA DESIGN IMPROVEMENTS
   ========================================================================== */
.manifiesto-block {
  flex-direction: column;
  gap: 30px;
}

.manifiesto-cierre {
  font-family: var(--font-technical), monospace;
  font-size: clamp(12px, 1.8vw, 15px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-align: center;
  color: var(--accent); /* Dorado champagne en Classic / cian en Dynamic */
  text-transform: uppercase;
}

/* ==========================================================================
   SECTION 02 — CONCEPTO STYLES
   ========================================================================== */
.section-concept {
  padding: 70px 40px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

.concept-visual-container {
  width: 100%;
  margin: 35px auto 45px auto; /* Mantener el espaciado compacto */
  perspective: 1000px; /* Enable 3D perspective space */
}

.concept-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  overflow: hidden;
  background-color: #0c0c0e;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

/* Dynamic glow overlay on hover */
body.dynamic-mode .concept-image-wrapper:hover {
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.3);
}

html:not(.dynamic-mode) .concept-image-wrapper:hover {
  box-shadow: 0 20px 50px rgba(197, 160, 40, 0.12);
  border-color: rgba(197, 160, 40, 0.3);
}

.concept-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0); /* Hardware acceleration */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Glass dicroic shine overlay */
.concept-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0) 70%);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.concept-image-wrapper:hover .concept-shine {
  opacity: 1;
}

/* HUD Interactive Focus Brackets */
.hud-bracket {
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 5;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dynamic-mode .hud-bracket {
  border-color: rgba(0, 229, 255, 0.35);
}

html:not(.dynamic-mode) .hud-bracket {
  border-color: rgba(197, 160, 40, 0.35);
}

.concept-image-wrapper:hover .hud-bracket {
  border-color: var(--accent);
}

/* Corner positions & specific borders */
.bracket--tl {
  top: 22px;
  left: 22px;
  border-top: 1.5px solid;
  border-left: 1.5px solid;
}

.bracket--tr {
  top: 22px;
  right: 22px;
  border-top: 1.5px solid;
  border-right: 1.5px solid;
}

.bracket--bl {
  bottom: 22px;
  left: 22px;
  border-bottom: 1.5px solid;
  border-left: 1.5px solid;
}

.bracket--br {
  bottom: 22px;
  right: 22px;
  border-bottom: 1.5px solid;
  border-right: 1.5px solid;
}

/* Interactive contraction on hover (Focus effect) */
.concept-image-wrapper:hover .bracket--tl { top: 28px; left: 28px; }
.concept-image-wrapper:hover .bracket--tr { top: 28px; right: 28px; }
.concept-image-wrapper:hover .bracket--bl { bottom: 28px; left: 28px; }
.concept-image-wrapper:hover .bracket--br { bottom: 28px; right: 28px; }

/* Micro Diagnostic LED Indicator */
.tech-led {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  animation: ledPulse 0.8s infinite alternate;
}

body.dynamic-mode .tech-led {
  background-color: #00e5ff;
  box-shadow: 0 0 6px #00e5ff, 0 0 2px #00e5ff;
}

html:not(.dynamic-mode) .tech-led {
  background-color: #c5a028;
  box-shadow: 0 0 6px #c5a028, 0 0 2px #c5a028;
}

@keyframes ledPulse {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Continuous Laboratory laser scanning sweep line */
.concept-image-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 4;
  pointer-events: none;
  animation: laserSweep 4s linear infinite;
}

body.dynamic-mode .concept-image-wrapper::after {
  background: linear-gradient(90deg, rgba(0,229,255,0) 0%, rgba(0,229,255,0.95) 50%, rgba(0,229,255,0) 100%);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.8), 0 0 4px rgba(0, 229, 255, 0.5);
}

html:not(.dynamic-mode) .concept-image-wrapper::after {
  background: linear-gradient(90deg, rgba(197,160,40,0) 0%, rgba(197,160,40,0.95) 50%, rgba(197,160,40,0) 100%);
  box-shadow: 0 0 10px rgba(197, 160, 40, 0.8), 0 0 4px rgba(197, 160, 40, 0.5);
}

@keyframes laserSweep {
  0% {
    top: 0%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 0%;
  }
}

.concept-content-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  margin: 35px auto 45px auto;
  width: 100%;
  align-items: start;
}

/* Left Column: Text Main & Statement */
.concept-text-column {
  display: flex;
  flex-direction: column;
}

.concept-text-main {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.concept-text-main p {
  margin-bottom: 25px;
}

.concept-text-main p:last-child {
  margin-bottom: 0;
}

.concept-closing-statement {
  margin-top: 40px;
  padding-left: 25px;
  border-left: 1px dashed var(--tech-grid-color);
}

.concept-closing-statement h3 {
  font-size: clamp(19px, 2.3vw, 26px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* Right Column: Specs Panel */
.concept-specs-column {
  display: flex;
  flex-direction: column;
}

.concept-specs-card {
  position: relative;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  background-color: var(--bg-secondary);
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.01);
  overflow: hidden;
}

.concept-spec-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concept-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--tech-grid-color);
}

.concept-spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.concept-spec-item .spec-label {
  font-family: var(--font-technical), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.concept-spec-item .spec-value {
  font-family: var(--font-primary), sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR SECTION 02 — CONCEPTO
   ========================================================================== */
@media (max-width: 991px) {
  .concept-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-concept {
    padding: 40px 20px;
  }
  .concept-visual-container {
    margin-bottom: 20px;
  }
  .concept-image-wrapper {
    aspect-ratio: 9 / 16 !important;
  }
  .concept-content-wrapper {
    gap: 20px;
  }
}

/* ==========================================================================
   SECTION 10 — NOMAD DROP ACCESS BOX
   ========================================================================== */
.section-nomad-drop {
  padding: 70px 40px; /* Mantener ritmo de scroll y paddings congelados */
  background-color: var(--bg-primary);
  border-top: 1px solid var(--tech-grid-color);
  position: relative;
  overflow: hidden;
}

.nomad-drop-block {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--tech-grid-color);
  padding: 50px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 100%;
}

.nomad-drop-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.drop-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.drop-detail-item .detail-num {
  font-family: var(--font-primary);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  text-transform: uppercase;
}

.drop-detail-item .detail-txt {
  font-family: var(--font-technical), monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 6px;
}

.drop-detail-divider {
  font-family: var(--font-technical), monospace;
  font-size: 24px;
  color: var(--tech-grid-color);
  user-select: none;
}

.nomad-drop-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .section-nomad-drop {
    padding: 40px 20px !important;
  }
  .nomad-drop-block {
    padding: 30px 20px;
    gap: 20px;
  }
  .nomad-drop-details {
    gap: 20px;
  }
  .drop-detail-divider {
    display: none; /* Hide dividers on mobile stack */
  }
  .drop-detail-item {
    min-width: 120px;
  }
}

/* Evitar zonas negras por retardo de animaciones en móvil e igualar espaciados compactos */
@media (max-width: 768px) {
  /* Forzar visibilidad instantánea al hacer scroll */
  .reveal-kicker, 
  .reveal-title, 
  .reveal-body, 
  .reveal-cta,
  .manifiesto-block, 
  .concept-visual-container, 
  .sketches-stepper-container, 
  .product-viewer-card, 
  .materials-compare-container, 
  .prototype-board-grid, 
  .packaging-spotlight-container, 
  .covers-board-grid, 
  .press-board-grid, 
  .nomad-drop-block, 
  .closing-block {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  /* Compactar espaciado inferior de títulos de sección */
  .section-title {
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
  }
}

/* ─── SECTION: NUCLEUS FULLSCREEN ─────────────────────────── */
.section-nucleus-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-color: #000000;
  overflow: hidden;
  border-top: 1px solid var(--tech-grid-color);
  perspective: 1200px; /* Habilitar perspectiva 3D */
}

@media (max-width: 768px) {
  .section-nucleus-fullscreen {
    height: 100svh;
    min-height: 500px;
  }
}

.nucleus-fullscreen-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nucleus-picture-wrapper {
  width: 100%;
  height: 100%;
  display: block;
}

.nucleus-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Capa de destello reflectante de zafiro dicroico */
.nucleus-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 30%, rgba(0, 229, 255, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
  transition: opacity 0.5s ease;
}

/* Haz de barrido láser técnico activo */
.nucleus-laser-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(0, 229, 255, 0) 0%, rgba(0, 229, 255, 0.7) 50%, rgba(0, 229, 255, 0) 100%);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
  opacity: 0.35;
  z-index: 4;
  pointer-events: none;
  animation: nucleusScanner 7s infinite ease-in-out;
}

@keyframes nucleusScanner {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Degradado de viñeteado premium para integrar con el fondo negro de las secciones contiguas */
.nucleus-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000000 0%, rgba(0,0,0,0) 8%, rgba(0,0,0,0) 92%, #000000 100%);
  pointer-events: none;
  z-index: 2;
}

/* ─── NOMAD DROP ENHANCEMENTS (CAJA MÁS GRANDE Y BOTÓN RADAR CIAN) ─── */
.nomad-drop-block {
  padding: 105px 85px !important; /* Caja colosal de mayor presencia y dimensiones ultra premium */
  gap: 50px !important;
  background: #0c0c0e !important;
  border: 1px solid var(--tech-grid-color) !important;
  box-shadow: none;
  transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Transición para los textos internos de la caja */
.nomad-drop-block .detail-num,
.nomad-drop-block .detail-txt,
.nomad-drop-block .drop-detail-divider,
.nomad-drop-block .tech-corner {
  color: #ffffff !important;
  transition: color 0.8s ease !important;
}

/* Números y acentos cian por defecto */
.nomad-drop-block .detail-num,
.nomad-drop-block .detail-txt:nth-child(even),
.nomad-drop-block .tech-corner {
  color: #00e5ff !important;
}

/* ────────────────────────────────────────────────────────
   ESTADO ACTIVO AL HACER SCROLL (ILUMINACIÓN RADICAL CIAN) 
   ──────────────────────────────────────────────────────── */
.nomad-drop-block.in-view {
  background: linear-gradient(135deg, #00e5ff 0%, #00b0ff 100%) !important;
  border-color: #ffffff !important;
  box-shadow: 0 25px 60px rgba(0, 229, 255, 0.35) !important;
}

/* Textos internos cambian a negro profundo para un contraste brutal contra el fondo cian eléctrico */
.nomad-drop-block.in-view .detail-num,
.nomad-drop-block.in-view .detail-txt,
.nomad-drop-block.in-view .drop-detail-divider,
.nomad-drop-block.in-view .tech-corner {
  color: #000000 !important;
}

.nomad-drop-block .detail-num {
  font-size: clamp(32px, 5vw, 48px) !important; /* Agrandar números para que tengan más protagonismo */
}

.nomad-drop-block .detail-txt {
  font-size: 11.5px !important;
  letter-spacing: 0.22em !important;
}

@media (max-width: 768px) {
  .nomad-drop-block {
    padding: 60px 30px !important; /* Caja de móviles robusta */
    gap: 35px !important;
  }
  .nomad-drop-block.in-view {
    background: linear-gradient(135deg, #00e5ff 0%, #00b0ff 100%) !important;
    border-color: #ffffff !important;
  }
}

/* Botón interactivo central con halos concéntricos cian de radar */
.nomad-cta-pulse {
  position: relative;
  padding: 20px 52px !important; /* Botón más generoso y visible */
  font-size: 11.5px !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  border-radius: 100px;
  animation: cianRadarPulse 2.8s infinite cubic-bezier(0.16, 1, 0.3, 1) !important;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease !important;
}

/* Insertar el punto pulsante "ON AIR" de forma nativa en CSS para evitar romper el script de traducción */
.nomad-cta-pulse::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #52d8ed;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #52d8ed;
  animation: cianDotPulse 1.5s infinite ease-in-out;
}

.nomad-cta-pulse:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(82, 216, 237, 0.8) !important;
}

/* Adaptación estética del botón dentro del estado in-view (Caja Cian) */
.nomad-drop-block.in-view .nomad-cta-pulse {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
}

.nomad-drop-block.in-view .nomad-cta-pulse::before {
  background-color: #00e5ff !important;
  box-shadow: 0 0 8px #00e5ff !important;
}

/* Modificación de aros de radar en estado in-view para contraste oscuro sobre fondo cian */
.nomad-drop-block.in-view .nomad-cta-pulse {
  animation: oscuroRadarPulse 2.8s infinite cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes oscuroRadarPulse {
  0% {
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 
                0 0 0 0 rgba(0, 0, 0, 0.35), 
                0 0 0 12px rgba(0, 0, 0, 0.25), 
                0 0 0 24px rgba(0, 0, 0, 0.15), 
                0 0 0 36px rgba(0, 0, 0, 0.1),
                0 0 0 48px rgba(0, 0, 0, 0.05);
  }
  50% {
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 
                0 0 0 15px rgba(0, 0, 0, 0.25), 
                0 0 0 30px rgba(0, 0, 0, 0.15), 
                0 0 0 45px rgba(0, 0, 0, 0.1), 
                0 0 0 60px rgba(0, 0, 0, 0.05),
                0 0 0 75px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 
                0 0 0 30px rgba(0, 0, 0, 0), 
                0 0 0 45px rgba(0, 0, 0, 0), 
                0 0 0 60px rgba(0, 0, 0, 0), 
                0 0 0 75px rgba(0, 0, 0, 0),
                0 0 0 95px rgba(0, 0, 0, 0);
  }
}

/* Punto pulsante "ON AIR" del botón flotante y CTA */
.floating-back-dot {
  width: 6px;
  height: 6px;
  background-color: #52d8ed;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #52d8ed;
  animation: cianDotPulse 1.5s infinite ease-in-out;
}

@keyframes cianDotPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Efecto de radar ampliado y robustecido con 5 aros concéntricos que se extienden el doble */
@keyframes cianRadarPulse {
  0% {
    box-shadow: 0 12px 30px rgba(0,0,0,.5), 
                0 0 0 0 rgba(82, 216, 237, 0.6), 
                0 0 0 12px rgba(82, 216, 237, 0.4), 
                0 0 0 24px rgba(82, 216, 237, 0.25), 
                0 0 0 36px rgba(82, 216, 237, 0.15),
                0 0 0 48px rgba(82, 216, 237, 0.05);
  }
  50% {
    box-shadow: 0 12px 30px rgba(0,0,0,.5), 
                0 0 0 15px rgba(82, 216, 237, 0.4), 
                0 0 0 30px rgba(82, 216, 237, 0.25), 
                0 0 0 45px rgba(82, 216, 237, 0.15), 
                0 0 0 60px rgba(82, 216, 237, 0.05),
                0 0 0 75px rgba(82, 216, 237, 0);
  }
  100% {
    box-shadow: 0 12px 30px rgba(0,0,0,.5), 
                0 0 0 30px rgba(82, 216, 237, 0), 
                0 0 0 45px rgba(82, 216, 237, 0), 
                0 0 0 60px rgba(82, 216, 237, 0), 
                0 0 0 75px rgba(82, 216, 237, 0),
                0 0 0 95px rgba(82, 216, 237, 0);
  }
}

/* ─── CLASES RESPONSIVAS PARA EL LAYOUT DE DISEÑO INDUSTRIAL ─── */
.desktop-only {
  display: block !important;
}
.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}

/* ─── INDUSTRIAL PREMIUM CARD 3D (DESKTOP) ─── */
.industrial-premium-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-color: #000000;
  border: 1px solid var(--tech-grid-color);
  border-radius: 4px;
  overflow: hidden;
  perspective: 1200px;
  aspect-ratio: 3 / 4;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revelado instantáneo cuando la sección de diseño industrial entra en vista */
.section-industrial-design.in-view .industrial-premium-card,
.section-industrial-design.in-view .specs-board-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* En móviles forzar siempre visible */
@media (max-width: 768px) {
  .specs-board-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.premium-card-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.premium-card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 30%, rgba(0, 229, 255, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
  transition: opacity 0.5s ease;
}

.premium-card-laser {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(0, 229, 255, 0) 0%, rgba(0, 229, 255, 0.7) 50%, rgba(0, 229, 255, 0) 100%);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
  opacity: 0.35;
  z-index: 4;
  pointer-events: none;
  animation: industrialScanner 6s infinite ease-in-out;
}

@keyframes industrialScanner {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.premium-card-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 2;
}
