/* ============================================
   MINIMAL STYLES POUR SILLONS (SANS GLASSMORPHISM SUR CARDS)
   ============================================ */

:root {
  --bg: #0E1322;
  --bg2: #151B32;
  --text: #E8EAF1;
  --muted: #9AA3B2;
  --edge: #2B355A;
  --acc: #4FC3F7;
  --acc2: #00BCD4;
  --ok: #66BB6A;
  --warn: #FFB74D;
}

/* ============================================
   CARDS - DESIGN SIMPLE ET CLEAN
   ============================================ */

.card {
  background: rgba(21, 27, 50, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.card.pad {
  padding: 32px;
}

/* ============================================
   BUTTONS - CONSERVENT LE GLASSMORPHISM
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
  border: 1px solid transparent;
}

.btn-ice {
  background: linear-gradient(135deg, 
    rgba(79, 195, 247, 0.20) 0%, 
    rgba(0, 188, 212, 0.15) 50%, 
    rgba(79, 195, 247, 0.25) 100%);
  border: 1px solid rgba(79, 195, 247, 0.4);
  color: #CFEFFF;
  text-shadow: 0 0 10px rgba(79, 195, 247, 0.7);
  box-shadow: 
    0 4px 16px rgba(79, 195, 247, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-ice::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-ice:hover::before {
  left: 100%;
}

.btn-ice:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 32px rgba(79, 195, 247, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: rgba(60, 70, 110, 0.15);
  border: 1px solid rgba(60, 70, 110, 0.5);
  color: #D0D6E6;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--acc);
  color: #fff;
  background: rgba(79, 195, 247, 0.1);
}

/* ============================================
   NAVIGATION - CONSERVE LE GLASSMORPHISM
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: linear-gradient(to bottom, 
    rgba(14, 19, 34, 0.60) 0%, 
    rgba(14, 19, 34, 0.50) 100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  z-index: 51;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
  background: rgba(79, 195, 247, 0.1);
  color: var(--acc);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.nav a.link {
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  color: #E8EAF1;
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}

.nav a.link:hover {
  color: #fff;
  background: rgba(79, 195, 247, 0.08);
  border-color: rgba(79, 195, 247, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.15);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(79, 195, 247, 0.15) 0%,
    rgba(0, 188, 212, 0.1) 100%);
  border: 1px solid rgba(79, 195, 247, 0.3);
  color: #4FC3F7;
  cursor: pointer;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(79, 195, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px) scale(0.8);
  -webkit-tap-highlight-color: transparent;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  background: linear-gradient(135deg,
    rgba(79, 195, 247, 0.25) 0%,
    rgba(0, 188, 212, 0.2) 100%);
  border-color: rgba(79, 195, 247, 0.5);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 6px 20px rgba(79, 195, 247, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 8px rgba(79, 195, 247, 0.4));
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 24px;
    left: 16px;
    width: 52px;
    height: 52px;
  }

  .scroll-to-top svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================
   AUDIO CONTROL - CONSERVE LE GLASSMORPHISM
   ============================================ */

.audio-control {
  position: fixed !important;
  top: auto !important;
  right: 24px !important;
  left: auto !important;
  bottom: 24px !important;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(79, 195, 247, 0.15), transparent 60%),
    linear-gradient(135deg, 
      rgba(26, 32, 56, 0.4) 0%, 
      rgba(79, 195, 247, 0.12) 50%, 
      rgba(0, 188, 212, 0.08) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(79, 195, 247, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    inset 0 -2px 4px rgba(79, 195, 247, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 0.84, 0.44, 1);
  animation: crystalPulse 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Orb cristallin avec effet de pulsation */
.audio-control::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(79, 195, 247, 0.6) 0%, 
    rgba(0, 188, 212, 0.4) 50%, 
    rgba(79, 195, 247, 0.3) 100%);
  z-index: -1;
  animation: orbitRing 8s linear infinite;
}

/* Anneau lumineux qui orbite */
.audio-control::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(79, 195, 247, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: orbitGlow 4s ease-in-out infinite;
}

@keyframes crystalPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 12px 40px rgba(0, 0, 0, 0.5),
      0 4px 16px rgba(79, 195, 247, 0.25),
      inset 0 2px 4px rgba(255, 255, 255, 0.15),
      inset 0 -2px 4px rgba(79, 195, 247, 0.1);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 
      0 16px 48px rgba(0, 0, 0, 0.6),
      0 6px 24px rgba(79, 195, 247, 0.4),
      inset 0 3px 6px rgba(255, 255, 255, 0.2),
      inset 0 -3px 6px rgba(79, 195, 247, 0.15);
  }
}

@keyframes orbitRing {
  0% { transform: rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { transform: rotate(360deg); opacity: 0.3; }
}

@keyframes orbitGlow {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 0.4;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.1); 
    opacity: 0.8;
  }
}

.audio-control:hover {
  transform: translateY(-4px) scale(1.15);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 8px 32px rgba(79, 195, 247, 0.5),
    inset 0 4px 8px rgba(255, 255, 255, 0.3),
    inset 0 -4px 8px rgba(79, 195, 247, 0.2);
}

.audio-control:hover::after {
  width: 100px;
  height: 100px;
  opacity: 1;
  border-width: 2px;
  border-color: rgba(79, 195, 247, 0.8);
}

.audio-btn {
  background: transparent;
  border: none;
  color: #CFEFFF;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.audio-btn:hover {
  color: #fff;
  text-shadow: 0 0 15px rgba(79, 195, 247, 0.9);
  transform: scale(1.1);
}

.audio-btn:active {
  transform: scale(0.95);
}

/* Icône audio avec effet cristallin */
.audio-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(79, 195, 247, 0.5));
  transition: all 0.3s ease;
}

.audio-btn:hover .audio-icon {
  filter: drop-shadow(0 0 12px rgba(79, 195, 247, 0.8));
  transform: scale(1.1);
}

/* État muté avec effet spécial */
.audio-btn.muted {
  color: #7A8B9A;
}

.audio-btn.muted .audio-icon {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
  opacity: 0.6;
}

/* ============================================
   GALLERY - SIMPLE ET CLEAN
   ============================================ */

.g-item {
  position: relative; /* IMPORTANT pour le positionnement des figcaptions */
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(43, 53, 90, 0.6);
  background: rgba(21, 27, 50, 0.5);
  transition: none; /* Suppression hover effects */
}

.g-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(10, 14, 28, 0.9), rgba(10, 14, 28, 0.0));
  font-weight: 600;
}

/* ============================================
   AVATARS - SIMPLE
   ============================================ */

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(43, 53, 90, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin: 0 auto 14px;
  transition: none; /* Suppression hover effects */
}

/* ============================================
   TIMELINE - SIMPLE
   ============================================ */

.timeline {
  position: relative;
  margin-left: 24px;
  border-left: 3px solid rgba(79, 195, 247, 0.6);
  padding-left: 24px;
}

.t-step {
  position: relative;
  margin: 0 0 24px 0;
  padding: 16px;
  background: rgba(21, 27, 50, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(43, 53, 90, 0.5);
  transition: none; /* Suppression hover effects */
}

.t-dot {
  position: absolute;
  left: -36px;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--edge);
  border: 3px solid rgba(79, 195, 247, 0.6);
  box-shadow: 0 0 12px rgba(79, 195, 247, 0.3);
}

.t-step.done .t-dot {
  background: var(--ok);
  border-color: var(--ok);
  box-shadow: 0 0 12px rgba(102, 187, 106, 0.4);
}

.t-step.live .t-dot {
  background: var(--warn);
  border-color: var(--warn);
  box-shadow: 0 0 12px rgba(255, 183, 77, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ============================================
   STUDIO LOGO SECTION
   ============================================ */

.studio-logo-section {
  padding: 10px 0;
  text-align: center;
}

.studio-logo {
  display: inline-block;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.studio-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.studio-logo-image {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(79, 195, 247, 0.2));
}

@media (max-width: 768px) {
  .studio-logo-section {
    padding: 10px 0;
  }
  
  .studio-logo-image {
    height: 150px;
  }
}

/* ============================================
   NEEDS INLINE - COMPACT DESIGN
   ============================================ */

.needs-inline {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
}

.need-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 20px;
  background: rgba(21, 27, 50, 0.6);
  border: 1px solid rgba(43, 53, 90, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.need-item:hover {
  background: rgba(21, 27, 50, 0.8);
  border-color: rgba(79, 195, 247, 0.4);
  transform: translateY(-2px);
}

.need-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(79, 195, 247, 0.3));
}

.need-item h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .needs-inline {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .need-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  border-top: 1px solid rgba(43, 53, 90, 0.6);
  background: rgba(10, 14, 28, 0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablette */
@media (max-width: 1024px) and (min-width: 721px) {
  .card.pad {
    padding: 28px;
  }

  .audio-control {
    width: 56px !important;
    height: 56px !important;
    animation: none;
  }

  .audio-control::before {
    animation: none;
  }

  .audio-control::after {
    animation: none;
  }

  /* Tablet optimizations */
  .sanctuary-section {
    gap: 40px;
    padding: 40px;
    margin: 60px 0;
  }

  .protagonists {
    gap: 40px;
  }

  .overview-vestiges,
  .gameplay-vestiges {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }

  .vestiges {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
  }

  .status-timeline {
    padding: 40px;
  }

  .mobile-nav {
    width: 300px;
  }

  /* Team & Contact optimisés pour tablette */
  .team-grid,
  .contact-content {
    padding: 48px 32px;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  /* Fusion Vestige sur tablette */
  .fusion-vestige {
    grid-template-columns: 1fr;
  }

  .fusion-info {
    padding: 40px 32px;
  }

  /* Galerie Screenshots - 3 colonnes sur tablette */
  .screenshots-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .card.pad {
    padding: 24px;
  }

  .audio-control {
    top: auto !important;
    bottom: 24px !important;
    right: 16px !important;
    width: 52px !important;
    height: 52px !important;
    animation: none;
    /* Style simplifié mobile - cohérent avec scroll-to-top */
    background: linear-gradient(135deg,
      rgba(79, 195, 247, 0.15) 0%,
      rgba(0, 188, 212, 0.1) 100%) !important;
    border: 1px solid rgba(79, 195, 247, 0.3) !important;
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.4),
      0 4px 12px rgba(79, 195, 247, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  }

  .audio-control::before {
    display: none; /* Désactive l'anneau orbital sur mobile */
  }

  .audio-control::after {
    display: none; /* Désactive l'effet glow orbital sur mobile */
  }

  .audio-control:hover {
    transform: translateY(-4px) scale(1.1) !important;
    background: linear-gradient(135deg,
      rgba(79, 195, 247, 0.25) 0%,
      rgba(0, 188, 212, 0.2) 100%) !important;
    border-color: rgba(79, 195, 247, 0.5) !important;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.5),
      0 6px 20px rgba(79, 195, 247, 0.35),
      inset 0 2px 0 rgba(255, 255, 255, 0.15) !important;
  }

  .audio-icon {
    width: 20px !important;
    height: 20px !important;
  }

  /* Mobile Navigation */
  .nav-inner {
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 52;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-menu {
    display: none;
  }

  .nav .nav-ctas {
    display: none !important;
  }

  .nav .nav-ctas .btn {
    display: none !important;
  }

  .nav .nav-ctas .lang-toggle {
    display: none !important;
  }

  .nav .nav-ctas * {
    display: none !important;
  }

  /* Mobile optimizations for sections */
  .sanctuary-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
    margin: 32px 0;
  }

  .sanctuary-content h3 {
    font-size: 24px;
  }

  .sanctuary-content p {
    font-size: 15px;
  }

  .protagonists {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .overview-vestiges,
  .gameplay-vestiges {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .overview-vestige,
  .gameplay-vestige {
    min-width: auto;
  }

  .overview-vestige-video,
  .gameplay-vestige-video,
  .protagonist-video {
    height: 180px;
  }

  .vestiges {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .status-timeline {
    padding: 32px 24px;
  }

  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
  }

  .timeline-icon svg {
    width: 20px;
    height: 20px;
  }

  .timeline-content h3 {
    font-size: 18px;
  }

  .timeline-content p {
    font-size: 14px;
  }

  /* FIX 1: Status Steps - Force 1 colonne et optimise l'affichage */
  .status-steps {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin: 32px 0;
  }

  .status-step {
    padding: 20px 16px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }

  /* FIX 2: Team Grid - Force 1 colonne et réduit les paddings */
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 32px 16px !important;
  }

  .team-member {
    padding: 24px 16px;
  }

  .member-avatar {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .member-info h3 {
    font-size: 18px;
  }

  .member-role {
    font-size: 11px;
  }

  .member-description {
    font-size: 14px;
  }

  /* FIX 3: Contact Section - Passe en 1 colonne */
  .contact-content {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 32px 16px !important;
  }

  .contact-intro h3 {
    font-size: 24px;
  }

  .contact-description {
    font-size: 16px;
    max-width: 100%;
  }

  .contact-actions {
    flex-direction: column;
    gap: 12px;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .contact-info {
    min-width: auto;
    gap: 20px;
  }

  .info-item {
    padding: 16px;
  }

  /* FIX 4: Fusion Vestige - Passe en 1 colonne sur mobile */
  .fusion-vestige {
    grid-template-columns: 1fr !important;
  }

  .fusion-info {
    padding: 32px 16px;
  }

  .fusion-name {
    font-size: 20px;
  }

  .fusion-info p {
    font-size: 13px;
  }

  /* Galerie Screenshots - 2 colonnes sur mobile */
  .screenshots-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Très petits écrans (iPhone SE, etc.) */
@media (max-width: 480px) {
  /* Réduction supplémentaire des paddings */
  .sanctuary-section,
  .team-grid,
  .contact-content {
    padding: 24px 12px !important;
  }

  .fusion-info {
    padding: 24px 12px;
  }

  /* Galerie Screenshots - 1 colonne sur très petits écrans */
  .screenshots-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Boutons pleine largeur */
  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-row .btn {
    width: 100%;
  }

  /* Titres plus petits */
  .section-head h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .sanctuary-content h3,
  .contact-intro h3 {
    font-size: 20px;
  }

  /* Status steps - Encore plus compact */
  .status-step {
    padding: 16px 12px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   MIGRATED STYLES FROM INDEX.HTML
   ============================================ */

/* Core Layout & Typography */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
  min-height:100vh;
}
h1,h2,h3,h4,.cinzel{font-family:Cinzel, serif}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{width:min(1200px, 92%); margin-inline:auto}
.grid{display:grid; gap:24px}

/* HERO Section */
.hero{position:relative; min-height:92vh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; isolation:isolate}
.hero-video{
  position:absolute; 
  inset:0; 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  filter:contrast(1.05) saturate(1.05) brightness(.9); 
  opacity:.35;
  z-index:1;
}

/* Animations */
@keyframes bgFloat{
  0%,100%{ transform:translateY(0) scale(1.05) }
  50%{ transform:translateY(-12px) scale(1.08) }
}
.hero > .inner{position:relative; z-index:3}
.logo{height:50px;}
.kicker{color:var(--muted); font-weight:600; letter-spacing:.08em}

/* Title Effects */
.title-wrap{position:relative; display:inline-block; padding:12px 18px;}
.title{
  position:relative;
  display:inline-block;
  margin:.2em 0 .15em;
}
.title img{
  height:clamp(80px, 15vw, 200px);
  width:auto;
  display:block;
  filter: url(#echo-warp) drop-shadow(0 0 24px rgba(79,195,247,.5));
}
.subtitle{font-size:clamp(18px, 2.3vw, 24px); color:#cbd3e7}
.cta-row{margin-top:28px; display:flex; gap:12px; flex-wrap:wrap; justify-content:center}

/* Sections */
section{padding:80px 0}
.section-head{text-align:center; margin-bottom:32px}
.section-head h2{font-size:clamp(28px,5vw,44px); margin:0 0 8px}
.divider{width:120px; height:2px; background:linear-gradient(90deg, transparent, var(--acc), transparent); margin:12px auto 0; opacity:.7}

/* Teaser content */
.teaser-content {
  padding: 40px 24px;
  color: var(--muted);
}

/* Section spacing uniformization */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* Performance optimizations */
.btn, .nav, .audio-control, .card, .pillar, .team-member {
  will-change: transform;
  contain: layout style paint;
}

/* Accessibility: Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile performance: Disable expensive effects */
@media (max-width: 768px) and (max-resolution: 150dpi) {
  .backdrop-blur, .audio-control, .card, .team-container, .contact-container {
    backdrop-filter: none !important;
    background: rgba(21, 27, 50, 0.95) !important;
  }
}

/* ============================================
   ADDITIONAL MIGRATED STYLES FROM INDEX.HTML
   ============================================ */

/* Overview Container - Professional 2-column layout */
.overview-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.overview-container:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.overview-background {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(21, 27, 50, 0.95), rgba(15, 23, 42, 0.95)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32" fill="none" stroke="rgba(79, 195, 247, 0.03)" stroke-width="1"><path d="M0 16h32M16 0v32"/></svg>');
}

.texture-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(600px at 30% 20%, rgba(79, 195, 247, 0.1), transparent 50%),
    radial-gradient(400px at 70% 80%, rgba(147, 51, 234, 0.05), transparent 50%);
  backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(79, 195, 247, 0.15);
  border-radius: 24px;
}

.overview-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 48px;
}

.overview-column {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.overview-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
}

.overview-item:hover {
  transform: translateX(8px);
}

.overview-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: rgba(79, 195, 247, 0.8);
  transition: all 0.3s ease;
}

.overview-item:hover .overview-icon {
  color: rgb(79, 195, 247);
  transform: scale(1.1);
}

.overview-icon svg {
  width: 100%;
  height: 100%;
}

.overview-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(79, 195, 247, 0.6);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.overview-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  font-family: 'Cinzel', serif;
}

.overview-item p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.overview-item p em {
  color: rgba(79, 195, 247, 0.7);
  font-style: normal;
  font-size: 14px;
}

/* Team Section - Modern glassmorphism design */
.team-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.team-container:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.team-background {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(21, 27, 50, 0.95), rgba(15, 23, 42, 0.95)),
    radial-gradient(800px at 70% 20%, rgba(79, 195, 247, 0.08), transparent 60%),
    radial-gradient(600px at 30% 80%, rgba(147, 51, 234, 0.06), transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 19px,
      rgba(79, 195, 247, 0.35) 20px,
      rgba(79, 195, 247, 0.35) 21px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 19px,
      rgba(79, 195, 247, 0.35) 20px,
      rgba(79, 195, 247, 0.35) 21px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 99px,
      rgba(79, 195, 247, 0.55) 100px,
      rgba(79, 195, 247, 0.55) 101px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 99px,
      rgba(79, 195, 247, 0.55) 100px,
      rgba(79, 195, 247, 0.55) 101px
    );
  background-size: 
    100% 100%,
    100% 100%,
    100% 100%,
    20px 20px,
    20px 20px,
    100px 100px,
    100px 100px;
}


.team-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding: 60px 48px;
  align-items: center;
}

.team-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.team-intro {
  text-align: center;
}

.team-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: rgba(79, 195, 247, 0.8);
  transition: all 0.4s ease;
}

.team-container:hover .team-icon {
  color: rgba(79, 195, 247, 1);
  transform: scale(1.1);
}

.team-intro h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.team-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 420px;
  margin: 0 auto;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 280px;
}

.team-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 60px 48px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: rgba(21, 27, 50, 0.4);
  border: 1px solid rgba(79, 195, 247, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.member-avatar {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(79, 195, 247, 0.2);
  transition: all 0.3s ease;
}

.team-member:hover .member-avatar img {
  border-color: rgba(79, 195, 247, 0.5);
  transform: scale(1.02);
}

.member-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.member-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(79, 195, 247, 0.8);
  margin-bottom: 12px;
}

.member-description {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 280px;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(79, 195, 247, 0.7);
}

.info-value {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}



/* Contact Section - Modern interaction design */
.contact-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.contact-container:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.contact-background {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(21, 27, 50, 0.95), rgba(15, 23, 42, 0.95)),
    radial-gradient(800px at 70% 20%, rgba(79, 195, 247, 0.08), transparent 60%),
    radial-gradient(600px at 30% 80%, rgba(147, 51, 234, 0.06), transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 19px,
      rgba(79, 195, 247, 0.35) 20px,
      rgba(79, 195, 247, 0.35) 21px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 19px,
      rgba(79, 195, 247, 0.35) 20px,
      rgba(79, 195, 247, 0.35) 21px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 99px,
      rgba(79, 195, 247, 0.55) 100px,
      rgba(79, 195, 247, 0.55) 101px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 99px,
      rgba(79, 195, 247, 0.55) 100px,
      rgba(79, 195, 247, 0.55) 101px
    );
  background-size: 
    100% 100%,
    100% 100%,
    100% 100%,
    20px 20px,
    20px 20px,
    100px 100px,
    100px 100px;
}


.contact-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding: 60px 48px;
  align-items: center;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-intro {
  text-align: center;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: rgba(79, 195, 247, 0.8);
  transition: all 0.4s ease;
}

.contact-container:hover .contact-icon {
  color: rgba(79, 195, 247, 1);
  transform: scale(1.1);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-intro h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.contact-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 420px;
  margin: 0 auto;
}

.contact-description strong {
  color: rgba(79, 195, 247, 0.9);
}

.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn.primary {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.8), rgba(79, 195, 247, 0.6));
  color: #ffffff;
  border: 1px solid rgba(79, 195, 247, 0.4);
  box-shadow: 
    0 8px 32px rgba(79, 195, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-btn.primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.9), rgba(79, 195, 247, 0.7));
  box-shadow: 
    0 12px 40px rgba(79, 195, 247, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-btn.secondary {
  background: rgba(21, 27, 50, 0.8);
  color: rgba(79, 195, 247, 0.9);
  border: 1px solid rgba(79, 195, 247, 0.3);
  backdrop-filter: blur(16px);
}

.contact-btn.secondary:hover {
  transform: translateY(-2px);
  background: rgba(21, 27, 50, 0.9);
  border-color: rgba(79, 195, 247, 0.5);
  color: rgba(79, 195, 247, 1);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 280px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(21, 27, 50, 0.4);
  border: 1px solid rgba(79, 195, 247, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.info-item:hover {
  background: rgba(21, 27, 50, 0.6);
  border-color: rgba(79, 195, 247, 0.3);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(79, 195, 247, 0.1);
}

.info-icon {
  width: 32px;
  height: 32px;
  color: rgba(79, 195, 247, 0.7);
  flex-shrink: 0;
}

.info-icon svg {
  width: 100%;
  height: 100%;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(79, 195, 247, 0.6);
}

.info-value {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}


/* Gallery Section - Unified glassmorphism design */
.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.screenshot-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  background: rgba(21, 27, 50, 0.5);
}

.screenshot-item {
  cursor: pointer;
}

.screenshot-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.2);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.screenshot-item:hover img {
  transform: scale(1.08);
}

/* Image Popup Modal */
.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.image-popup.active .popup-content {
  transform: scale(1);
}

.popup-image-container {
  position: relative;
  display: inline-block;
}

.popup-image {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  display: block;
}

.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  z-index: 10001;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(79, 195, 247, 0.6);
  color: #4FC3F7;
  transform: scale(1.1);
}

/* Language Toggle */
.lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(21, 27, 50, 0.8);
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 14px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  will-change: transform;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  height: 52px;
}

.lang-toggle:hover {
  border-color: rgba(79, 195, 247, 0.3);
  transform: translateY(-1px);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(79, 195, 247, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lang-option {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  user-select: none;
  width: 64px;
  height: 44px;
  flex-shrink: 0;
}

.lang-flag {
  font-size: 15px;
  line-height: 1;
  display: block;
}

.lang-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  line-height: 1;
}

.lang-option.active .lang-text {
  color: rgba(79, 195, 247, 0.9);
}

.lang-option:not(.active):hover .lang-text {
  color: rgba(255, 255, 255, 0.9);
}

.lang-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 64px;
  height: 44px;
  background: linear-gradient(135deg, 
    rgba(79, 195, 247, 0.15),
    rgba(79, 195, 247, 0.08));
  border: 1px solid rgba(79, 195, 247, 0.25);
  border-radius: 10px;
  transition: transform 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  z-index: 1;
  box-shadow: 
    0 2px 8px rgba(79, 195, 247, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lang-toggle[data-active="en"] .lang-slider {
  transform: translateX(64px);
}

/* Navigation alignment fix */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================
   MOBILE NAVIGATION SYSTEM
   ============================================ */

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, rgba(21, 27, 50, 0.98), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(24px) saturate(1.3);
  border-left: 1px solid rgba(79, 195, 247, 0.2);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(79, 195, 247, 0.1);
}

.mobile-logo {
  height: 32px;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: rgba(79, 195, 247, 0.1);
  color: var(--acc);
}

.mobile-nav-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 18px 20px;
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(79, 195, 247, 0.1);
  color: var(--acc);
  transform: translateX(4px);
}

.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid rgba(79, 195, 247, 0.1);
}

.mobile-lang-section {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-btn {
  display: block;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(79, 195, 247, 0.2);
  background: rgba(21, 27, 50, 0.6);
  color: var(--text);
}

.mobile-nav-btn:hover {
  background: rgba(79, 195, 247, 0.1);
  color: var(--acc);
  border-color: rgba(79, 195, 247, 0.4);
}

.mobile-nav-btn.primary {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.8), rgba(79, 195, 247, 0.6));
  color: #ffffff;
  border-color: rgba(79, 195, 247, 0.4);
}

.mobile-nav-btn.primary:hover {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.9), rgba(79, 195, 247, 0.7));
}

/* ============================================
   OVERVIEW VESTIGES STYLES
   ============================================ */

.overview-vestiges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.overview-vestige {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(21, 27, 50, 0.6);
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
  backdrop-filter: blur(12px);
}

.overview-vestige:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.overview-vestige-video {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.overview-vestige-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.overview-vestige:hover .overview-vestige-video video {
  transform: scale(1.05);
}

.overview-vestige-info {
  padding: 24px;
}

.overview-vestige-element {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(79, 195, 247, 0.6);
  margin-bottom: 8px;
}

.overview-vestige-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.overview-vestige-info p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.overview-vestige-info p em {
  color: rgba(79, 195, 247, 0.7);
  font-style: normal;
  font-size: 13px;
}

/* ============================================
   GAMEPLAY VESTIGES STYLES
   ============================================ */

.gameplay-vestiges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.gameplay-vestige {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(21, 27, 50, 0.6);
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  backdrop-filter: blur(12px);
}

.gameplay-vestige:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.gameplay-vestige-video {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.gameplay-vestige-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gameplay-vestige:hover .gameplay-vestige-video video {
  transform: scale(1.05);
}

.gameplay-vestige-info {
  padding: 24px;
}

.gameplay-vestige-element {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(79, 195, 247, 0.6);
  margin-bottom: 8px;
}

.gameplay-vestige-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.gameplay-vestige-info p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================
   SANCTUARY SECTION STYLES
   ============================================ */

.sanctuary-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 80px 0;
  padding: 48px;
  position: relative;
  border-radius: 12px;
  background: rgba(21, 27, 50, 0.7);
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.sanctuary-section:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.sanctuary-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.sanctuary-visual video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.sanctuary-visual:hover video {
  transform: scale(1.02);
}

.sanctuary-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.sanctuary-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px 0;
}

/* ============================================
   PROTAGONISTS SECTION STYLES
   ============================================ */

.protagonists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
}

.protagonist {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(21, 27, 50, 0.6);
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  backdrop-filter: blur(12px);
}

.protagonist:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.protagonist-video {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.protagonist-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.protagonist:hover .protagonist-video video {
  transform: scale(1.05);
}

.protagonist-info {
  padding: 32px;
}

.protagonist-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(79, 195, 247, 0.6);
  margin-bottom: 8px;
}

.protagonist-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.protagonist-info p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================
   VESTIGES GALLERY STYLES
   ============================================ */

.vestiges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 48px 0;
}

.vestige {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(21, 27, 50, 0.6);
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  backdrop-filter: blur(12px);
}

.vestige:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.vestige-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.vestige-image img,
.vestige-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vestige:hover .vestige-image img,
.vestige:hover .vestige-image video {
  transform: scale(1.05);
}

.vestige-info {
  padding: 24px;
}

.vestige-element {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(79, 195, 247, 0.6);
  margin-bottom: 8px;
}

.vestige-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.vestige-info p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Vestige-specific colors */
.vestige-ice .vestige-element {
  color: rgba(79, 195, 247, 0.8);
}

.vestige-fire .vestige-element {
  color: rgba(255, 183, 77, 0.8);
}

.vestige-shadow .vestige-element {
  color: rgba(147, 51, 234, 0.8);
}

.vestige-light .vestige-element {
  color: rgba(255, 215, 0, 0.8);
}

/* ============================================
   FUSION VESTIGE STYLES
   ============================================ */

.fusion-vestige {
  background: rgba(21, 27, 50, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  backdrop-filter: blur(12px);
  overflow: hidden;
  margin: 48px 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.fusion-vestige:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.fusion-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.fusion-image img,
.fusion-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fusion-vestige:hover .fusion-image img,
.fusion-vestige:hover .fusion-image video {
  transform: scale(1.05);
}

.fusion-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fusion-element {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(79, 195, 247, 0.8);
  margin: 0 0 8px 0;
}

.fusion-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.fusion-info p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================
   STATUS STEPS STYLES
   ============================================ */

.status-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.status-step {
  background: rgba(21, 27, 50, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(79, 195, 247, 0.1);
  padding: 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.status-step:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  transition: all 0.3s ease;
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.status-completed .step-icon {
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.2), rgba(102, 187, 106, 0.1));
  border: 2px solid rgba(102, 187, 106, 0.4);
  color: rgba(102, 187, 106, 0.9);
}

.status-current .step-icon {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.2), rgba(79, 195, 247, 0.1));
  border: 2px solid rgba(79, 195, 247, 0.6);
  color: rgba(79, 195, 247, 0.9);
  position: relative;
}

.status-current .step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(79, 195, 247, 0.6);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.status-next .step-icon {
  background: linear-gradient(135deg, rgba(255, 183, 77, 0.15), rgba(255, 183, 77, 0.08));
  border: 2px solid rgba(255, 183, 77, 0.3);
  color: rgba(255, 183, 77, 0.8);
}

.status-future .step-icon {
  background: rgba(21, 27, 50, 0.4);
  border: 2px solid rgba(79, 195, 247, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.step-content p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0;
}

.step-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  background: rgba(79, 195, 247, 0.1);
  color: rgba(79, 195, 247, 0.8);
}

.status-current .progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 2px;
  margin: 12px 0 0 0;
  overflow: hidden;
}

.status-current .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(79, 195, 247, 0.8), rgba(79, 195, 247, 0.6));
  border-radius: 2px;
  transition: width 1s ease;
}

/* Status Needs Section */
.status-needs {
  margin: 64px 0 0 0;
}

.status-card {
  background: rgba(21, 27, 50, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(79, 195, 247, 0.1);
  padding: 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.status-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(79, 195, 247, 0.15);
}

.status-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.needs-grid .need-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(21, 27, 50, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(79, 195, 247, 0.1);
  transition: all 0.2s ease;
}

.needs-grid .need-item:hover {
  background: rgba(21, 27, 50, 0.6);
  border-color: rgba(79, 195, 247, 0.3);
  transform: translateY(-2px);
}

.needs-grid .need-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.needs-grid .need-item span:last-child {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 12px 0;
}

.timeline-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Timeline status states */
.timeline-done {
  border-left: 4px solid var(--ok);
}

.timeline-done .timeline-icon {
  background: linear-gradient(135deg, rgba(102, 187, 106, 0.2), rgba(102, 187, 106, 0.1));
  color: var(--ok);
  border: 2px solid rgba(102, 187, 106, 0.4);
}

.timeline-done .timeline-status.completed {
  background: rgba(102, 187, 106, 0.2);
  color: var(--ok);
  border: 1px solid rgba(102, 187, 106, 0.4);
}

.timeline-active {
  border-left: 4px solid var(--warn);
}

.timeline-active .timeline-icon {
  background: linear-gradient(135deg, rgba(255, 183, 77, 0.2), rgba(255, 183, 77, 0.1));
  color: var(--warn);
  border: 2px solid rgba(255, 183, 77, 0.4);
}

.timeline-pulse {
  animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.timeline-active .timeline-status.active {
  background: rgba(255, 183, 77, 0.2);
  color: var(--warn);
  border: 1px solid rgba(255, 183, 77, 0.4);
}

.timeline-upcoming {
  border-left: 4px solid rgba(79, 195, 247, 0.6);
}

.timeline-upcoming .timeline-icon {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.2), rgba(79, 195, 247, 0.1));
  color: rgba(79, 195, 247, 0.8);
  border: 2px solid rgba(79, 195, 247, 0.4);
}

.timeline-upcoming .timeline-status.upcoming {
  background: rgba(79, 195, 247, 0.2);
  color: rgba(79, 195, 247, 0.9);
  border: 1px solid rgba(79, 195, 247, 0.4);
}

/* ============================================
   PROGRESS BAR STYLES
   ============================================ */

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(43, 53, 90, 0.6);
  border-radius: 4px;
  overflow: hidden;
  margin: 12px 0 8px 0;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--warn), rgba(255, 183, 77, 0.8));
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShimmer 2s ease-in-out infinite;
  pointer-events: none;
}

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

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

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

/* Stagger animations for multiple reveals */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */

.pitch-link {
  color: var(--acc);
  text-decoration: underline;
  transition: all 0.2s ease;
}

.pitch-link:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(79, 195, 247, 0.6);
}

.cta-section {
  text-align: center;
  margin: 40px 0;
}

.cta-section p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.cta-section .pitch-link {
  font-weight: 600;
}

/* Inner container for content alignment */
.inner {
  position: relative;
  z-index: 2;
}

/* Content alignment utilities */
.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Margin utilities */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.overview{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.item h4{margin:6px 0 6px}
.muted{color:var(--muted)}