/* ==========================================================================
   ALIMAÑA VINYL TOYS - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Urban Vinyl Toy Collectible, Streetwear Cyber-Retro & Dark Neon
   ========================================================================== */

/* FontAwesome font-display: swap override (Performance & FOIT fix) */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2");
}

:root {
  /* Color Palette */
  --bg-primary: #0a0e0c;
  --bg-surface: #111713;
  --bg-surface-elevated: #18221c;
  --bg-card: #151d18;
  --bg-card-hover: #1e2a22;
  
  --alimana-lime: #ACC93B;
  --alimana-lime-glow: rgba(172, 201, 59, 0.4);
  --alimana-green: #3A892E;
  --alimana-green-dark: #275c1f;
  --alimana-slate: #364234;
  --alimana-cream: #ECEFE9;
  
  --neon-cyan: #55efc4;
  --neon-glow: #00ff88;
  --neon-red: #ff4757;
  --neon-orange: #ff9f43;
  
  --text-primary: #f5f6fa;
  --text-secondary: #a4b0be;
  --text-muted: #747d8c;
  --text-inverse: #0a0e0c;
  
  --border-subtle: rgba(172, 201, 59, 0.15);
  --border-active: rgba(172, 201, 59, 0.5);
  --glass-bg: rgba(17, 23, 19, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-accent: 'Permanent Marker', cursive;

  /* Layout */
  --header-height: 72px;
  --container-max-width: 1240px;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glow UV Night Mode */
[data-glow-mode="true"] {
  --bg-primary: #050806;
  --bg-surface: #0a110d;
  --bg-card: #0d1711;
  --alimana-lime: #00ff88;
  --alimana-lime-glow: rgba(0, 255, 136, 0.7);
  --border-subtle: rgba(0, 255, 136, 0.4);
  --border-active: #00ff88;
  --text-primary: #ffffff;
}

[data-glow-mode="true"] .stage-toy-img {
  filter: drop-shadow(0 0 35px #00ff88) brightness(1.2) contrast(1.1);
}

[data-glow-mode="true"] .top-ticker {
  background: #00ff88;
  color: #000000;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 40px);
  max-width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 100%;
  width: 100%;
  overflow-x: clip;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(172, 201, 59, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(58, 137, 46, 0.06) 0%, transparent 50%),
    linear-gradient(to bottom, var(--bg-primary), #070a08);
  min-height: 100vh;
}

@supports not (overflow-x: clip) {
  html, body {
    overflow-x: hidden;
  }
}

header, main, section, footer, .top-ticker, .site-header, .legacy-banner-strip, .section-container, .header-container {
  max-width: 100%;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==========================================================================
   TOP TICKER BAR
   ========================================================================== */
.top-ticker {
  background: var(--alimana-green);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
  transition: all var(--transition-normal);
}

.ticker-content {
  display: inline-flex;
  gap: 3rem;
  animation: tickerScroll 28s linear infinite;
}

.ticker-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-content span i {
  color: var(--alimana-lime);
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border-active);
}

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 15px var(--alimana-lime-glow);
  position: relative;
}

.brand-tag::after {
  content: '™';
  font-size: 0.65rem;
  color: var(--alimana-lime);
  position: absolute;
  top: -2px;
  right: -12px;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--alimana-lime);
  margin-top: 3px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.nav-link i {
  font-size: 0.8rem;
  color: var(--alimana-lime);
  opacity: 0.7;
  transition: transform var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(172, 201, 59, 0.12);
}

.nav-link:hover i {
  transform: translateY(-2px);
  opacity: 1;
}

.nav-btn-cta {
  background: var(--alimana-lime) !important;
  color: #0a0e0c !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.nav-btn-cta i {
  color: #0a0e0c !important;
  opacity: 1 !important;
}

.nav-btn-cta:hover {
  background: #c4e538 !important;
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--alimana-lime-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.glow-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(172, 201, 59, 0.15);
  border: 1px solid var(--border-active);
  color: var(--alimana-lime);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
  transition: all var(--transition-fast);
}

.glow-toggle-btn:hover {
  background: var(--alimana-lime);
  color: #0a0e0c;
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--text-primary);
  padding: 0.4rem;
}

/* ==========================================================================
   LEGACY BANNER STRIP
   ========================================================================== */
.legacy-banner-strip {
  width: 100%;
  background-color: #060a08;
  background-image: 
    radial-gradient(ellipse at center, rgba(8, 14, 10, 0.5) 0%, rgba(0, 0, 0, 0.92) 100%),
    url('../assets/img/alimana-bg-pattern.jpg');
  background-image: 
    radial-gradient(ellipse at center, rgba(8, 14, 10, 0.5) 0%, rgba(0, 0, 0, 0.92) 100%),
    url('../assets/img/alimana-bg-pattern.webp');
  background-repeat: repeat;
  background-size: 340px auto;
  background-position: center;
  border-bottom: 2px solid var(--alimana-green);
  border-top: 1px solid rgba(172, 201, 59, 0.2);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.95);
  padding: 1.25rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner-wrapper {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.9), 0 0 30px rgba(172, 201, 59, 0.35);
  border: 2px solid var(--border-active);
}

.legacy-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: contrast(1.05) brightness(1.02);
  transition: transform var(--transition-slow);
}

.legacy-banner-strip:hover .legacy-banner-img {
  transform: scale(1.01);
}

.banner-glow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 40%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4rem 1.5rem 5rem;
  position: relative;
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(172, 201, 59, 0.12);
  border: 1px solid var(--border-active);
  color: var(--alimana-lime);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.highlight-lime {
  color: var(--alimana-lime);
  position: relative;
  text-shadow: 0 0 20px var(--alimana-lime-glow);
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background: var(--alimana-lime);
  color: #0a0e0c;
  box-shadow: 0 0 20px var(--alimana-lime-glow);
}

.btn-primary:hover {
  background: #c4e538;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--alimana-lime-glow);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
}

.btn-secondary:hover {
  border-color: var(--alimana-lime);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.btn-lime-full {
  background: var(--alimana-lime);
  color: #0a0e0c;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.btn-lime-full:hover {
  background: #c4e538;
  box-shadow: 0 0 25px var(--alimana-lime-glow);
  transform: translateY(-2px);
}

/* Quick Stats */
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--alimana-lime);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Visualizer Card */
.hero-visualizer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-xl);
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.visualizer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--alimana-lime);
  font-weight: 700;
}

.pulse-dot {
  font-size: 0.55rem;
  color: var(--alimana-lime);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.card-chip {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
}

.visualizer-stage {
  min-height: 360px;
  background: radial-gradient(circle at center, rgba(172, 201, 59, 0.12) 0%, rgba(10, 14, 12, 0.8) 70%);
  border-radius: var(--border-radius-lg);
  border: 1px dashed rgba(172, 201, 59, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.glow-halo {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--alimana-lime-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.stage-toy-img {
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8));
  transition: all var(--transition-normal);
  z-index: 2;
  animation: floatToy 5s ease-in-out infinite;
}

@keyframes floatToy {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

.radar-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--alimana-lime), transparent);
  box-shadow: 0 0 10px var(--alimana-lime);
  opacity: 0.4;
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanLine {
  0% { top: 0%; opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Variant controls */
.variant-controls {
  margin-top: 1.25rem;
  background: var(--bg-surface-elevated);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.control-label {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.color-swatches {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.swatch-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--c);
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
}

.swatch-btn.active {
  border-color: #ffffff;
  transform: scale(1.18);
  box-shadow: 0 0 12px var(--c);
}

.variant-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
}

/* ==========================================================================
   GLOBAL SECTION COMMONS
   ========================================================================== */
.section-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-badge-center {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(172, 201, 59, 0.1);
  border: 1px solid var(--border-active);
  color: var(--alimana-lime);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   SPORE TROOPER STORY & EDITIONS
   ========================================================================== */
.spore-feature-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(17, 23, 19, 0.6) 50%, transparent);
}

.spore-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
}

.spore-grid > * {
  min-width: 0;
}

.spore-story-card, .editions-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  position: relative;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}

.card-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-heading i {
  color: var(--alimana-lime);
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

.specs-pill-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0;
}

.spec-pill {
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.spec-pill i {
  color: var(--alimana-lime);
}

.banner-preview-box {
  margin-top: 1.5rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.rounded-banner-img {
  width: 100%;
  transition: transform var(--transition-normal);
}

.rounded-banner-img:hover {
  transform: scale(1.03);
}

.editions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.edition-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-surface-elevated);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.edition-item:hover {
  border-color: var(--border-active);
  transform: translateX(5px);
  background: var(--bg-card-hover);
}

.edition-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.edition-indicator.color-green { background: #55efc4; box-shadow: 0 0 10px #55efc4; }
.edition-indicator.color-red { background: #ff4757; box-shadow: 0 0 10px #ff4757; }
.edition-indicator.color-black { background: #2f3542; border: 1px solid #747d8c; }
.edition-indicator.color-glow { background: #00ff88; box-shadow: 0 0 12px #00ff88; }
.edition-indicator.color-white { background: #ffffff; box-shadow: 0 0 8px rgba(255,255,255,0.7); }

.edition-info h4 {
  font-size: 0.95rem;
  color: #ffffff;
  font-family: var(--font-mono);
  margin-bottom: 0.25rem;
}

.edition-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.editions-footer-action {
  margin-top: 2rem;
}

/* ==========================================================================
   CATALOG SECTION
   ========================================================================== */
.catalog-section {
  padding: 6rem 0;
}

.catalog-filters {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-surface);
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}

.filter-tab {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.filter-tab.active, .filter-tab:hover {
  background: var(--alimana-lime);
  color: #0a0e0c;
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.toy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.toy-card:hover {
  border-color: var(--border-active);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--alimana-lime-glow);
}

.toy-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  background: rgba(10, 14, 12, 0.85);
  border: 1px solid var(--border-active);
  color: var(--alimana-lime);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.toy-card-badge.glow-badge {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  border-color: #00ff88;
}

.toy-card-badge.plush-badge {
  background: rgba(255, 159, 67, 0.2);
  color: #ff9f43;
  border-color: #ff9f43;
}

.toy-card-badge.promo-badge {
  background: rgba(255, 71, 87, 0.2);
  color: #ff4757;
  border-color: #ff4757;
}

.toy-card-image-wrap {
  height: 240px;
  background: radial-gradient(circle at center, rgba(172, 201, 59, 0.08) 0%, rgba(10, 14, 12, 0.9) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.toy-card-img {
  max-height: 200px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.toy-card:hover .toy-card-img {
  transform: scale(1.08) rotate(-1deg);
}

.toy-card-image-wrap.plush-bg {
  background: radial-gradient(circle at center, rgba(255, 159, 67, 0.15) 0%, rgba(10, 14, 12, 0.9) 80%);
}

.plush-visual-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #ff9f43;
}

.plush-text-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.toy-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.toy-card-type {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--alimana-lime);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.toy-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.toy-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

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

.toy-status {
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.toy-status.in-stock { color: var(--alimana-lime); }
.toy-status.glow-text { color: #00ff88; }
.toy-price {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.btn-card-detail {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--alimana-lime);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: transform var(--transition-fast);
}

.btn-card-detail:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ==========================================================================
   ABOUT / THE COLLECTIVE
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: radial-gradient(circle at right center, rgba(58, 137, 46, 0.08) 0%, transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.polaroid-card {
  background: #f1f2f6;
  padding: 1rem 1rem 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(172, 201, 59, 0.15);
  transform: rotate(-2deg);
  transition: transform var(--transition-normal);
  position: relative;
}

.polaroid-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.polaroid-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #ff4757;
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.polaroid-img {
  width: 100%;
  border-radius: 4px;
  filter: contrast(1.05);
}

.polaroid-caption {
  margin-top: 1rem;
  text-align: center;
}

.polaroid-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2f3542;
  font-family: var(--font-mono);
}

.polaroid-sub {
  font-size: 0.72rem;
  color: #747d8c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legacy-quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  position: relative;
}

.quote-icon {
  font-size: 1.5rem;
  color: var(--alimana-lime);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.legacy-quote-card p {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-style: italic;
}

.about-lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.about-p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.skill-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.skill-icon {
  font-size: 1.3rem;
  color: var(--alimana-lime);
  background: rgba(172, 201, 59, 0.1);
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.skill-item h4 {
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.skill-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(17, 23, 19, 0.7) 50%, transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-card:hover {
  border-color: var(--border-active);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--alimana-lime-glow);
}

.gallery-img-wrap {
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 12, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--alimana-lime);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-hover-overlay span {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--alimana-lime);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.4rem;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-box:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.service-box.highlight-service {
  border-color: var(--border-active);
  background: linear-gradient(145deg, var(--bg-card), #16241a);
  box-shadow: 0 0 25px rgba(172, 201, 59, 0.15);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--alimana-lime);
  margin-bottom: 1.5rem;
}

.service-icon-wrap.lime-icon {
  background: var(--alimana-lime);
  color: #0a0e0c;
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullets li i {
  color: var(--alimana-lime);
  font-size: 0.75rem;
}

/* ==========================================================================
   COMMUNITY / FRIENDS LINKS
   ========================================================================== */
.community-section {
  padding: 6rem 0;
  background: radial-gradient(circle at left center, rgba(172, 201, 59, 0.05) 0%, transparent 60%);
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.friend-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.friend-card:hover {
  border-color: var(--border-active);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.friend-banner-wrap {
  width: 100%;
  height: 80px;
  background: #ffffff;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.friend-banner-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.friend-name {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.friend-name i {
  font-size: 0.7rem;
  color: var(--alimana-lime);
}

/* ==========================================================================
   CONTACT SECTION: EVOLUCIÓN A ROTOKAIJU
   ========================================================================== */
.contact-section {
  position: relative;
  padding: 6rem 0;
  background-color: #060907;
  background-image: 
    linear-gradient(180deg, #060907 0%, rgba(6, 9, 7, 0.25) 15%, rgba(6, 9, 7, 0.25) 85%, #060907 100%),
    url('../assets/img/fondo-cotizacion-rotokaiju.jpg');
  background-image: 
    linear-gradient(180deg, #060907 0%, rgba(6, 9, 7, 0.25) 15%, rgba(6, 9, 7, 0.25) 85%, #060907 100%),
    url('../assets/img/fondo-cotizacion-rotokaiju.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.evolution-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Columna Izquierda */
.evolution-info-col {
  display: flex;
  flex-direction: column;
}

.evolution-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(172, 201, 59, 0.45);
  background: rgba(172, 201, 59, 0.08);
  color: var(--alimana-lime);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: flex-start;
  box-shadow: 0 0 20px rgba(172, 201, 59, 0.15);
}

.evolution-badge-pill i {
  font-size: 0.75rem;
}

.evolution-contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.text-neon-lime {
  color: var(--alimana-lime);
  text-shadow: 0 0 25px rgba(172, 201, 59, 0.5);
  display: inline-block;
}

.evolution-contact-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.evolution-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1.05rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8e5;
  transition: all 0.25s ease;
}

.chip-item:hover {
  background: rgba(172, 201, 59, 0.1);
  border-color: rgba(172, 201, 59, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

.chip-item i {
  color: var(--alimana-lime);
  font-size: 0.95rem;
}

/* Card: Legado Alimaña */
.legacy-card {
  background: rgba(16, 23, 19, 0.85);
  border: 1px solid rgba(172, 201, 59, 0.25);
  border-radius: 18px;
  padding: 1.35rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(172, 201, 59, 0.04);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.legacy-card:hover {
  border-color: rgba(172, 201, 59, 0.45);
  transform: translateY(-2px);
}

.legacy-card-content {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.legacy-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(172, 201, 59, 0.12);
  border: 1px solid rgba(172, 201, 59, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alimana-lime);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(172, 201, 59, 0.2);
}

.legacy-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.legacy-card-sub {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.legacy-card-sub a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(172, 201, 59, 0.5);
  transition: all 0.2s;
}

.legacy-card-sub a:hover {
  color: var(--alimana-lime);
  text-decoration-color: var(--alimana-lime);
}

.legacy-stamp {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  line-height: 1.25;
  text-align: right;
  color: rgba(172, 201, 59, 0.85);
  font-weight: 800;
  letter-spacing: 0.6px;
  border-left: 1px dashed rgba(172, 201, 59, 0.3);
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

.legacy-stamp i {
  color: var(--alimana-lime);
  font-size: 0.95rem;
  filter: drop-shadow(0 0 8px rgba(172, 201, 59, 0.4));
}

/* Timeline Bridge Alimaña -> RotoKaiju */
.timeline-bridge-wrap {
  width: 100%;
}

.timeline-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(8, 12, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 0.85rem 1.1rem;
}

.bridge-node {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.bridge-node.alimana-node {
  border: 1.5px solid rgba(172, 201, 59, 0.7);
  color: var(--alimana-lime);
  background: rgba(172, 201, 59, 0.08);
}

.bridge-node.alimana-node i {
  font-size: 1.2rem;
}

.bridge-node.rotokaiju-node {
  border: 1.5px solid rgba(255, 122, 24, 0.8);
  color: #ff8a30;
  background: rgba(255, 122, 24, 0.08);
}

.bridge-node.rotokaiju-node i {
  font-size: 1.2rem;
}

.node-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.node-title {
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 1px;
}

.node-sub {
  font-size: 0.64rem;
  font-family: var(--font-mono);
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.bridge-connector {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 90px;
}

.bridge-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--alimana-lime) 0%, #ffaa00 50%, #ff7a18 100%);
  position: relative;
  box-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.bridge-pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffaa00;
  box-shadow: 0 0 14px #ffaa00, 0 0 6px #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseDot 2.2s infinite alternate ease-in-out;
}

@keyframes pulseDot {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    box-shadow: 0 0 8px #ffaa00;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 18px #ff8a30, 0 0 25px rgba(255, 170, 0, 0.8);
  }
}

.bridge-connector-label {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.45rem;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Columna Derecha: Tarjeta Activa en RotoKaiju */
.rotokaiju-active-card {
  background: rgba(14, 18, 16, 0.92);
  border: 1.5px solid rgba(255, 138, 48, 0.45);
  border-radius: 26px;
  padding: 2.25rem 2.25rem 1.75rem;
  box-shadow: 
    0 0 45px rgba(255, 110, 30, 0.16),
    0 25px 60px rgba(0, 0, 0, 0.7),
    inset 0 0 35px rgba(255, 110, 30, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rotokaiju-active-card:hover {
  border-color: rgba(255, 138, 48, 0.65);
  box-shadow: 
    0 0 55px rgba(255, 110, 30, 0.22),
    0 30px 70px rgba(0, 0, 0, 0.8);
}

.rotokaiju-card-header {
  margin-bottom: 1.4rem;
}

.rotokaiju-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.rotokaiju-card-title i {
  color: #ff8a30;
  filter: drop-shadow(0 0 10px rgba(255, 138, 48, 0.5));
}

.rotokaiju-card-title .text-orange {
  color: #ff8a30;
  text-shadow: 0 0 20px rgba(255, 138, 48, 0.5);
}

.rotokaiju-card-sub {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.5;
}

/* Banner de Cotización RotoKaiju */
.rotokaiju-banner-link {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.6rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, filter 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 122, 24, 0.12);
  background: transparent;
}

.rotokaiju-banner-link:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 122, 24, 0.35);
  filter: brightness(1.05);
}

.rotokaiju-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner-overlay-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.75s ease;
}

.rotokaiju-banner-link:hover .banner-overlay-shine {
  left: 140%;
}

/* 3 Pasos del Proceso */
.rotokaiju-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 0.85rem 0.65rem;
  transition: all 0.25s ease;
}

.step-card:hover {
  background: rgba(255, 122, 24, 0.06);
  border-color: rgba(255, 138, 48, 0.25);
  transform: translateY(-2px);
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 138, 48, 0.1);
  border: 1px solid rgba(255, 138, 48, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8a30;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  box-shadow: 0 0 15px rgba(255, 138, 48, 0.15);
}

.step-card h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.step-card p {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

/* Botón Principal CTA RotoKaiju */
.btn-goto-rotokaiju {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1.15rem 1.8rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff8a30 0%, #ff4b1f 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255, 90, 20, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-goto-rotokaiju:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(255, 90, 20, 0.65);
  background: linear-gradient(135deg, #ffa048 0%, #ff5e36 100%);
  color: #ffffff;
}

.btn-goto-rotokaiju i.fa-rocket {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.btn-goto-rotokaiju:hover i.fa-rocket {
  transform: translateY(-2px) rotate(-15deg);
}

.btn-goto-rotokaiju i.fa-arrow-right {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.btn-goto-rotokaiju:hover i.fa-arrow-right {
  transform: translateX(4px);
}

/* Enlace a Evolución */
.sublink-evolution-wrap {
  text-align: center;
  margin-top: 1rem;
}

.sublink-evolution {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sublink-evolution:hover {
  color: #ff8a30;
  text-decoration: underline;
}

.sublink-evolution i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.sublink-evolution:hover i {
  transform: translateX(3px);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .evolution-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .evolution-contact-desc {
    max-width: 100%;
  }

  .rotokaiju-active-card {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .evolution-contact-title {
    font-size: 1.9rem;
  }

  .legacy-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .legacy-stamp {
    border-left: none;
    border-top: 1px dashed rgba(172, 201, 59, 0.3);
    padding-left: 0;
    padding-top: 0.75rem;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .timeline-bridge {
    flex-direction: column;
    gap: 0.6rem;
  }

  .bridge-line {
    width: 2px;
    height: 35px;
  }

  .rotokaiju-steps-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .step-card {
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
    padding: 0.75rem;
  }
  
  .step-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   MODALS & LIGHTBOXES
   ========================================================================== */
.modal-overlay, .lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active, .lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--border-radius-xl);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px var(--alimana-lime-glow);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn, .lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover, .lightbox-close:hover {
  background: var(--alimana-lime);
  color: #0a0e0c;
  transform: rotate(90deg);
}

.modal-content {
  padding: 2.5rem;
}

/* Modal Content Inner Layout */
.modal-grid-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.modal-toy-preview {
  background: radial-gradient(circle at center, rgba(172, 201, 59, 0.15) 0%, rgba(10, 14, 12, 0.9) 80%);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.modal-toy-img {
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}

.modal-toy-details h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.modal-tag {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--alimana-lime);
  margin-bottom: 1rem;
  display: block;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.modal-specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-specs-table td {
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.modal-specs-table td:first-child {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.modal-specs-table td:last-child {
  color: #ffffff;
  font-weight: 600;
  text-align: right;
}

/* Lightbox overlay components */
.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightboxImg {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-active);
  box-shadow: 0 0 35px var(--alimana-lime-glow);
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--alimana-lime);
  color: #0a0e0c;
}

.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

/* ==========================================================================
   FAQ & KNOWLEDGE BASE SECTION (AEO & GEO)
   ========================================================================== */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-card:hover {
  border-color: var(--border-active);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(172, 201, 59, 0.15);
}

.faq-question {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.35;
}

.faq-question i {
  color: var(--alimana-lime);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-answer strong {
  color: #ffffff;
}

.faq-answer em {
  color: var(--alimana-lime);
  font-style: italic;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #060907;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 3.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand-title {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 400px;
}

.footer-heading {
  font-size: 0.95rem;
  font-family: var(--font-mono);
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--alimana-lime);
}

.retro-counter-box {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--border-radius-md);
  padding: 0.85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 15px rgba(172, 201, 59, 0.15);
}

.counter-label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.counter-digits {
  display: flex;
  gap: 4px;
}

.counter-digits span {
  background: #000000;
  color: var(--alimana-lime);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(172, 201, 59, 0.3);
  text-shadow: 0 0 8px var(--alimana-lime-glow);
}

.counter-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.credits-legacy,
.credits-designer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.credits-designer a {
  color: var(--alimana-lime);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.credits-designer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.credits-designer strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (FULL FLUID ARCHITECTURE)
   ========================================================================== */

/* --- 1. Large Desktop / Ultrawide (> 1200px) --- */
@media (min-width: 1201px) {
  .hero-container {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
  }
}

/* --- 2. Medium Laptops / Small Desktops (993px - 1200px) --- */
@media (max-width: 1200px) {
  .section-container, .header-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-container {
    grid-template-columns: 1.15fr 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .spore-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }

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

/* --- 3. Tablets (769px - 992px) --- */
@media (max-width: 992px) {
  :root {
    --header-height: 68px;
    --section-padding: 4rem 1.25rem;
  }

  .header-container {
    padding: 0 1.25rem;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    color: var(--alimana-lime);
    background: rgba(172, 201, 59, 0.12);
    border: 1px solid var(--border-active);
    border-radius: var(--border-radius-sm);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(8, 12, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border-active);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95);
    padding: 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .main-nav.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
  }

  .nav-btn-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .spore-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* --- 4. Mobile Devices (Landscape & Portrait <= 768px) --- */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --section-padding: 3rem 1rem;
  }

  body {
    -webkit-tap-highlight-color: transparent;
  }

  h1, h2, h3, h4, p, span, a, label {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .header-container {
    padding: 0 1rem;
  }

  .brand-tag {
    font-size: 1.3rem;
  }

  .brand-sub {
    font-size: 0.55rem;
  }

  .glow-toggle-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }

  .hero-section {
    padding: 1.5rem 0 2.5rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.8vw, 2.5rem);
    line-height: 1.18;
    text-align: center;
    overflow-wrap: anywhere;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.95rem 1.25rem;
  }

  .hero-trust-badge {
    justify-content: center;
    font-size: 0.82rem;
  }

  .hero-teaser-card {
    padding: 1.25rem;
    width: 100%;
  }

  .toy-preview-box {
    height: 260px;
  }

  .swatch-group {
    justify-content: center;
  }

  .swatch-btn {
    width: 44px;
    height: 44px;
  }

  .section-title {
    font-size: clamp(1.6rem, 5.8vw, 2.2rem);
    line-height: 1.2;
    text-align: center;
  }

  .section-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: center;
    padding: 0 0.5rem;
  }

  .section-badge-center {
    display: flex;
    justify-content: center;
  }

  /* Spore Grid & Cards Responsive */
  .spore-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    width: 100%;
  }

  .spore-story-card, 
  .editions-card {
    padding: clamp(1.25rem, 4vw, 1.75rem);
    border-radius: var(--border-radius-lg);
    box-sizing: border-box;
    width: 100%;
  }

  .card-heading {
    font-size: clamp(1.15rem, 4.5vw, 1.35rem);
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .card-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .specs-pill-list {
    grid-template-columns: 1fr !important;
    gap: 0.65rem;
    margin: 1.25rem 0;
    width: 100%;
  }

  .spec-pill {
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .banner-preview-box {
    margin-top: 1.25rem;
    width: 100%;
    border-radius: var(--border-radius-md);
  }

  .rounded-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .editions-list {
    gap: 0.75rem;
    width: 100%;
  }

  .edition-item {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
    box-sizing: border-box;
  }

  .edition-info h4 {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .edition-info p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .editions-footer-action {
    margin-top: 1.5rem;
    width: 100%;
  }

  .btn-lime-full {
    font-size: 0.92rem;
    padding: 0.85rem 1rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .about-manifesto-card {
    text-align: center;
  }

  .about-signature {
    justify-content: center;
  }

  /* Catalog Horizontal Touch Swipe */
  .catalog-filters {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.75rem;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.55rem 0.95rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .toy-card {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }

  .toy-footer {
    flex-direction: column;
    gap: 0.75rem;
  }

  .toy-footer .btn-sm {
    width: 100%;
    justify-content: center;
  }

  .quick-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 1.5rem;
    width: 100%;
    text-align: center;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .friends-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .friend-banner-wrap {
    height: 60px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-card {
    padding: 1.25rem;
  }

  .contact-form-card {
    padding: 1.5rem 1.15rem;
  }

  .contact-form-card .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Prevent auto-zoom on iOS Safari */
  .form-input, .form-select, .form-textarea {
    font-size: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-links-col ul {
    align-items: center;
  }

  .modal-card {
    width: 92vw;
    max-width: 460px;
    padding: 1.25rem;
    max-height: 88vh;
  }

  .modal-grid-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .modal-toy-preview {
    min-height: 200px;
  }

  .modal-specs-table {
    text-align: left;
  }

  .lightbox-img-wrapper img {
    max-width: 94vw;
    max-height: 70vh;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .lightbox-nav.prev { left: 0.35rem; }
  .lightbox-nav.next { right: 0.35rem; }
}

/* --- 5. Small Mobile Phones (<= 480px) --- */
@media (max-width: 480px) {
  :root {
    --section-padding: 2.5rem 0.75rem;
  }

  .quick-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

  .spore-grid {
    gap: 1.25rem;
  }

  .spore-story-card, 
  .editions-card {
    padding: 1.25rem 0.85rem;
  }

  .card-heading {
    font-size: 1.15rem;
  }

  .card-text {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .specs-pill-list {
    gap: 0.5rem;
    margin: 1rem 0;
  }

  .spec-pill {
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }

  .edition-item {
    padding: 0.75rem 0.75rem;
    gap: 0.6rem;
  }

  .edition-indicator {
    width: 12px;
    height: 12px;
    margin-top: 3px;
  }

  .edition-info h4 {
    font-size: 0.84rem;
  }

  .edition-info p {
    font-size: 0.76rem;
  }

  .btn-lime-full {
    font-size: 0.86rem;
    padding: 0.8rem 0.65rem;
  }

  .ticker-content span {
    font-size: 0.72rem;
    margin-right: 1.5rem;
  }

  .legacy-banner-strip {
    padding: 0.5rem;
    background-size: 200px auto;
  }

  .banner-wrapper {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  }

  .retro-counter-box {
    width: 100%;
    justify-content: space-between;
  }

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

/* ==========================================================================
   SECTION: EVOLUCIÓN DE MARCA (DE ALIMAÑA A ROTO KAIJU)
   ========================================================================== */
.evolution-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(ellipse at 20% 50%, rgba(172, 201, 59, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(242, 101, 34, 0.08) 0%, transparent 60%),
              var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.badge-evolution {
  background: linear-gradient(135deg, rgba(172, 201, 59, 0.2) 0%, rgba(242, 101, 34, 0.25) 100%);
  border: 1px solid rgba(242, 101, 34, 0.5);
  color: #ff9f43;
}

.highlight-kaiju {
  background: linear-gradient(135deg, #ff9f43 0%, #ff5252 50%, #f26522 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(242, 101, 34, 0.35);
  font-weight: 800;
}

/* Tabs Switcher */
.evolution-tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin: 2.25rem 0 2rem;
  flex-wrap: wrap;
}

.evolution-tab {
  background: rgba(21, 29, 24, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
}

.tab-label-short {
  display: none;
}
.tab-label-full {
  display: inline;
}

.evolution-tab:hover {
  background: rgba(242, 101, 34, 0.12);
  border-color: rgba(242, 101, 34, 0.4);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.evolution-tab.active {
  background: linear-gradient(135deg, rgba(172, 201, 59, 0.2) 0%, rgba(242, 101, 34, 0.3) 100%);
  border-color: #f26522;
  color: #fff;
  box-shadow: 0 4px 20px rgba(242, 101, 34, 0.25);
}

/* Display Card */
.evolution-display-card {
  position: relative;
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(242, 101, 34, 0.25);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(242, 101, 34, 0.08);
  margin-bottom: 3.5rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.evolution-display-card:hover {
  border-color: rgba(242, 101, 34, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(242, 101, 34, 0.15);
}

.evolution-art-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background: #060907;
}

.evolution-view-item {
  display: none;
  width: 100%;
  text-align: center;
}

.evolution-view-item.active {
  display: block;
  animation: fadeInArt 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInArt {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.evolution-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.evolution-img.square-img {
  max-height: 680px;
  width: auto;
  object-fit: contain;
}

.evolution-img.poster-img {
  max-height: 780px;
  width: auto;
  object-fit: contain;
}

.art-caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  background: rgba(10, 14, 12, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  gap: 0.75rem;
}

.caption-tag {
  color: #ff9f43;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  white-space: nowrap;
}

.caption-text {
  color: var(--text-secondary);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ==========================================================================
   NATIVE RESPONSIVE EVOLUTION TIMELINE
   ========================================================================== */
.evolution-timeline-container {
  margin: 3.5rem 0 4rem;
}

.timeline-heading-wrap {
  text-align: center;
  margin-bottom: 2.25rem;
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(172, 201, 59, 0.1);
  border: 1px solid rgba(172, 201, 59, 0.35);
  color: var(--alimana-lime);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.95rem;
  border-radius: 30px;
  margin-bottom: 0.85rem;
}

.timeline-main-title {
  font-size: clamp(1.35rem, 3.5vw, 1.95rem);
  color: var(--text-primary);
  text-wrap: balance;
  line-height: 1.25;
}

.evolution-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.timeline-phase-card {
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem 1.15rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timeline-phase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 101, 34, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(242, 101, 34, 0.1);
}

.timeline-phase-card.phase-1,
.timeline-phase-card.phase-2 {
  border-top: 3px solid var(--alimana-lime);
}

.timeline-phase-card.phase-3 {
  border-top: 3px solid #00cec9;
}

.timeline-phase-card.phase-4,
.timeline-phase-card.phase-5 {
  border-top: 3px solid #f26522;
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.phase-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

.phase-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.phase-icon-wrap {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  color: #ff9f43;
}

.timeline-phase-card.phase-1 .phase-icon-wrap,
.timeline-phase-card.phase-2 .phase-icon-wrap {
  color: var(--alimana-lime);
}

.phase-title {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  text-wrap: balance;
}

.phase-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  text-wrap: pretty;
}

.phase-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-muted);
  align-self: flex-start;
  white-space: nowrap;
}

.phase-tag.highlight-tag {
  background: rgba(242, 101, 34, 0.15);
  color: #f26522;
  border: 1px solid rgba(242, 101, 34, 0.3);
  font-weight: 600;
}

/* Roto Kaiju Bridge Card */
.rotokaiju-bridge-card {
  position: relative;
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  background: linear-gradient(135deg, rgba(21, 29, 24, 0.95) 0%, rgba(35, 21, 14, 0.95) 100%);
  border: 1px solid rgba(242, 101, 34, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.rotokaiju-bridge-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.rotokaiju-bridge-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(172, 201, 59, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bridge-split-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.bridge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff9f43;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.bridge-title {
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.25;
  text-wrap: balance;
}

.bridge-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

.bridge-features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bridge-features-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--text-primary);
  font-family: var(--font-mono);
  word-break: break-word;
}

.bridge-features-pills span i {
  color: var(--alimana-lime);
}

.bridge-action-col {
  display: flex;
  justify-content: flex-end;
}

.btn-rotokaiju-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 2rem;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, #f26522 0%, #d35400 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-main);
  box-shadow: 0 10px 30px rgba(242, 101, 34, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-normal);
  width: 100%;
  max-width: 380px;
}

.btn-rotokaiju-cta:hover {
  background: linear-gradient(135deg, #ff793f 0%, #e65c00 100%);
  box-shadow: 0 15px 40px rgba(242, 101, 34, 0.6), 0 0 30px rgba(242, 101, 34, 0.3);
  transform: translateY(-3px) scale(1.02);
  color: #fff;
}

.btn-cta-main {
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.5px;
  text-wrap: balance;
  word-break: break-word;
}

.btn-cta-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  margin-top: 0.25rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR EVOLUTION SECTION
   ========================================================================== */
@media (max-width: 1200px) {
  .evolution-timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .bridge-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .bridge-features-pills {
    justify-content: center;
  }

  .bridge-action-col {
    justify-content: center;
  }

  .rotokaiju-bridge-card {
    padding: 2.25rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .evolution-section {
    padding: 4rem 0;
  }

  .evolution-timeline-container {
    margin: 2.5rem 0 3rem;
  }

  .evolution-timeline-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline-phase-card {
    padding: 1.25rem 1rem;
  }

  /* Mostrar etiquetas compactas en tabs móviles */
  .tab-label-full {
    display: none;
  }
  .tab-label-short {
    display: inline;
  }

  .evolution-tabs-nav {
    gap: 0.5rem;
    margin: 1.5rem 0 1.5rem;
  }

  .evolution-tab {
    font-size: 0.82rem;
    padding: 0.5rem 0.9rem;
  }

  .art-caption-bar {
    flex-direction: column;
    padding: 0.85rem 1rem;
    gap: 0.35rem;
    text-align: center;
  }

  .caption-text {
    font-size: 0.78rem;
  }

  .rotokaiju-bridge-card {
    padding: 2rem 1.25rem;
  }

  .btn-rotokaiju-cta {
    max-width: 100%;
    padding: 1.1rem 1.5rem;
  }

  .btn-cta-main {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .evolution-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 0.35rem;
  }

  .evolution-tab {
    width: 100%;
    justify-content: center;
    padding: 0.55rem 0.25rem;
    font-size: 0.74rem;
    text-align: center;
    border-radius: 8px;
  }

  .evolution-tab i {
    display: none;
  }

  .timeline-main-title {
    font-size: 1.25rem;
  }

  .rotokaiju-bridge-card {
    padding: 1.5rem 0.9rem;
    border-radius: var(--border-radius-lg);
  }

  .bridge-title {
    font-size: 1.35rem;
  }

  .bridge-text {
    font-size: 0.88rem;
  }

  .bridge-features-pills {
    gap: 0.4rem;
  }

  .bridge-features-pills span {
    font-size: 0.72rem;
    padding: 0.25rem 0.55rem;
  }

  .btn-rotokaiju-cta {
    padding: 1rem 0.85rem;
  }

  .btn-cta-main {
    font-size: 1rem;
  }

  .btn-cta-sub {
    font-size: 0.7rem;
  }
}

