/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* === GRID BACKGROUND FIXED === */
.bg-grid-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: var(--z-background);
  opacity: 0.3;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.header-top {
  background: var(--void);
  border-bottom: 1px solid var(--grid);
  height: 32px;
  display: flex;
  align-items: center;
}

.header-top-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-slot {
  display: flex;
  gap: 0.5rem;
}

.slot-count {
  font-weight: 700;
  color: var(--gradient-rose);
}

.header-powered {
  display: none;
}

@media (min-width: 768px) {
  .header-powered {
    display: block;
  }
}

/* === NAVIGATION === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--grid);
  background: rgba(0, 0, 0, 0.95);
}

.nav-logo {
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo {
  height: 60px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-soft);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--white);
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-link-dropdown {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-arrow {
  font-size: 0.625rem;
  transition: transform var(--transition-base);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1rem;
  background: var(--void-soft);
  border: 1px solid var(--grid);
  min-width: 250px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white-soft);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--void-soft);
  border-bottom: 1px solid var(--grid);
  padding: 1rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--white-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--white);
}

.mobile-dropdown {
  cursor: pointer;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
  position: relative;
}

.hero-content {
  margin-bottom: 4rem;
}

.hero-title {
  font-size: clamp(2rem, 9vw, 8rem);
  line-height: 0.85;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.asterisk {
  font-weight: 700;
}

.hero-subtitle {
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.4;
  padding-left: 1rem;
  border-left: 4px solid;
  border-image: var(--gradient-main) 1;
}

.highlight-dark {
  background: var(--white);
  color: var(--void);
  padding: 0 0.25rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.btn-large {
  font-size: 1rem;
  padding: 1.25rem 2.5rem;
}

.hero-cta-note {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: -0.5rem;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--grid);
  border-left: 1px solid var(--grid);
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-stat {
  padding: 0.875rem;
  border-right: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stat-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  opacity: 0.6;
  transition: all var(--transition-fast);
}

.hero-stat:hover .stat-label {
  opacity: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-value {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

/* === MARQUEE === */
.marquee {
  background: var(--gradient-main);
  color: var(--white);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}

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

.mx-4 {
  margin: 0 1rem;
}

/* === MANIFESTO === */
.manifesto {
  padding: 2.5rem 0;
}

.manifesto-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.manifesto-text {
  font-size: clamp(0.875rem, 1.8vw, 1.125rem);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manifesto-text p {
  opacity: 0;
  transform: translateY(30px);
}

.manifesto-text.animate p {
  animation: fadeIn 0.8s ease-out forwards;
}

.manifesto-text p:nth-child(1) { animation-delay: 0.1s; }
.manifesto-text p:nth-child(2) { animation-delay: 0.3s; }
.manifesto-text p:nth-child(3) { animation-delay: 0.5s; }
.manifesto-text p:nth-child(4) { animation-delay: 0.7s; }

.manifesto-conclusion {
  font-size: clamp(1.5rem, 3vw, 2rem);
  padding-left: 2rem;
  border-left: 4px solid var(--white);
  margin-top: 2rem;
}

.italic {
  font-style: italic;
}

/* === PRICING === */
.pricing {
  background: var(--void);
}

.pricing-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  opacity: 0.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--grid);
  border-left: 1px solid var(--grid);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Psycho hover effect */
  .pricing-grid:hover .pricing-card:not(:hover) {
    opacity: 0.4;
    filter: grayscale(100%);
    transform: scale(0.98);
  }
  
  .pricing-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .pricing-card:hover {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }
}

.pricing-card {
  padding: 2.5rem;
  border-right: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--void);
}

.pricing-card-popular {
  background: var(--gradient-main);
  color: var(--white);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--void);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}

.details-link {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-ghost);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0.5rem;
}

.details-link:hover {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: var(--gradient-violet);
}

.details-link-light {
  color: var(--white);
}

.details-link-bottom {
  position: static;
  display: inline-block;
  margin-top: 0.5rem;
  text-align: center;
  width: 100%;
}

.details-link-under-oui {
  position: static;
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.pricing-badge {
  display: inline-block;
  border: 1px solid var(--grid);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
  opacity: 0.6;
}

.pricing-badge-light {
  background: var(--void);
  color: var(--white);
  border-color: var(--void);
}

.pricing-time {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card-popular .pricing-price {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
}

.price-ht {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.6;
}

.price-strike {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 1.25rem;
}

.price-offer {
  display: inline-block;
  background: var(--void);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 0.5rem;
  transform: rotate(-2deg);
}

.pricing-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  flex-shrink: 0;
}

.feature-dot.inactive {
  background: var(--grid);
}

.pricing-card-popular .feature-dot {
  background: var(--void);
}

.w-full {
  width: 100%;
}

/* Pricing Complex */
.pricing-complex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  border-left: 1px solid var(--grid);
  border-right: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
  text-decoration: none;
  color: var(--white);
  transition: all var(--transition-base);
}

.pricing-complex:hover {
  background: rgba(255, 255, 255, 0.02);
}

.complex-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.complex-subtitle {
  font-size: 0.75rem;
  opacity: 0.6;
}

.complex-link {
  font-size: 0.875rem;
  border-bottom: 1px solid var(--white);
  transition: all var(--transition-fast);
}

.pricing-complex:hover .complex-link {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: var(--gradient-violet);
}

/* === SQUAD (X-RAY EFFECT) === */
.squad {
  overflow: hidden;
  padding: 4rem 0;
}

.container-full {
  width: 100%;
  padding: 0 2rem;
}

.squad-header {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.squad-drag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gradient-rose);
  animation: pulse 2s ease-in-out infinite;
}

.hide-mobile {
  display: none;
}

.show-mobile {
  display: inline;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: inline;
  }
  
  .show-mobile {
    display: none;
  }
}

.squad-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gradient-violet) var(--void-soft);
  border-top: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
}

.squad-scroll::-webkit-scrollbar {
  height: 8px;
}

.squad-scroll::-webkit-scrollbar-track {
  background: var(--void-soft);
}

.squad-scroll::-webkit-scrollbar-thumb {
  background: var(--gradient-main);
}

.squad-grid {
  display: flex;
  gap: 0;
}

.squad-card {
  min-width: 320px;
  width: 320px;
  padding: 2.5rem;
  border-right: 1px solid var(--grid);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .squad-card {
    min-width: 400px;
    width: 400px;
  }
}

.squad-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.squad-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.squad-image {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  background: var(--void-soft);
}

.squad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.squad-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.squad-xp {
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.squad-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* X-RAY Effect */
.xray-container {
  position: relative;
}

.xray-img {
  filter: grayscale(100%) contrast(1.2);
  transition: filter 0.1s ease;
}

.xray-container:hover .xray-img {
  filter: invert(100%) sepia(100%) saturate(400%) hue-rotate(60deg) contrast(1.5);
}

.xray-scanline {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gradient-violet),
    var(--gradient-rose),
    transparent
  );
  opacity: 0.5;
  z-index: 10;
  pointer-events: none;
}

.xray-container:hover .xray-scanline {
  animation: xray-scan 1.5s linear infinite;
}

@keyframes xray-scan {
  from {
    top: -100%;
  }
  to {
    top: 100%;
  }
}

/* Squad AI Card */
.squad-card-ai {
  background: var(--void-soft);
}

.squad-image-ai {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
}

.ai-icon {
  font-family: 'Syne', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
}

/* === PROCESS === */
.process {
  background: var(--void);
}

.process-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.process-intro {
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.8;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--grid);
  border-left: 1px solid var(--grid);
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--grid);
  border-bottom: 1px solid var(--grid);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  transition: all var(--transition-base);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all var(--transition-base);
}

.process-step:hover .step-number {
  background: var(--gradient-main);
  border-color: var(--gradient-violet);
  transform: scale(1.1);
}

.step-number-gradient {
  background: var(--gradient-main);
  border-color: var(--gradient-violet);
}

.step-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.6;
}

.step-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.step-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
}

.process-step-final {
  background: rgba(255, 255, 255, 0.02);
}

/* Process CTA */
.process-cta {
  text-align: center;
  padding: 2rem 0 0 0;
  border-top: 2px solid var(--white);
  margin-bottom: 0;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 1rem;
}

/* ========================================
   JEAN-CHARLES BSOD SECTION
   ======================================== */
.jean-charles {
  background: var(--void);
  padding: 2rem 0 var(--spacing-xl) 0;
  position: relative;
}

/* Glitch effect - PUNITION */
.jean-charles.glitch-active::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 10, 55, 0.03) 25%,
    transparent 50%,
    rgba(180, 7, 254, 0.03) 75%,
    transparent 100%
  );
  animation: glitchScan 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.jean-charles.glitch-active .bsod {
  animation: glitchShake 0.3s ease-in-out infinite;
}

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

@keyframes glitchShake {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1px, 1px);
  }
  50% {
    transform: translate(1px, -0.5px);
  }
  75% {
    transform: translate(-0.5px, -1px);
  }
}

.bsod {
  max-width: 900px;
  margin: 0 auto;
  background: #0000AA;
  padding: 3rem;
  border: 4px solid #FFF;
  box-shadow: 0 0 0 8px #0000AA;
  font-family: 'JetBrains Mono', monospace;
}

.bsod-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.bsod-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.bsod-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.bsod-problem {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFF;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

/* BSOD Timeline */
.bsod-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(8px);
}

.timeline-item-gameover {
  border-color: #FF3333;
  background: rgba(255, 51, 51, 0.1);
}

.timeline-emoji {
  font-size: 3rem;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

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

.timeline-content {
  flex: 1;
}

.timeline-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.timeline-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.timeline-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.timeline-result {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
  color: #FFF;
}

.text-strike {
  text-decoration: line-through;
  opacity: 0.6;
}

.text-gameover {
  color: #FF3333;
}

/* BSOD CTA */
.bsod-cta {
  text-align: center;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.bsod-cta .cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.btn-error {
  background: #FF3333;
  color: #FFF;
  border: none;
  box-shadow: 8px 8px 0 0 #000;
}

.btn-error:hover {
  background: #FF4444;
  transform: translate(2px, 2px);
  box-shadow: 6px 6px 0 0 #000;
}

/* ========================================
   WORK SECTION
   ======================================== */
.work {
  background: var(--void-soft);
  padding: var(--spacing-xl) 0;
}

.work-header {
  text-align: center;
  margin-bottom: 4rem;
}

.work-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.work-stat {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.work-stat:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(180, 7, 254, 0.5);
  transform: translateY(-4px);
}

.stat-value {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

.work-cta {
  text-align: center;
}

/* ========================================
   3 MONDES SECTION
   ======================================== */
.trois-mondes {
  background: var(--white);
  color: var(--void);
  padding: var(--spacing-xl) 0;
}

.mondes-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trois-mondes .section-title,
.trois-mondes .section-subtitle {
  color: var(--void);
}

.mondes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Venn Diagram */
.mondes-venn {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
}

.venn-circle {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 3px solid var(--void);
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.venn-circle:hover {
  border-color: var(--gradient-rose);
  background: rgba(180, 7, 254, 0.1);
  transform: scale(1.05);
  z-index: 10;
}

.venn-tech {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.venn-tech:hover {
  transform: translateX(-50%) scale(1.05);
}

.venn-agency {
  bottom: 0;
  left: 0;
}

.venn-template {
  bottom: 0;
  right: 0;
}

.venn-center-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-main);
  z-index: 20;
  animation: pulse 3s ease-in-out infinite;
}

.circle-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.venn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 20;
  animation: pulse 3s ease-in-out infinite;
}

/* Mondes Content */
.mondes-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.monde-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.monde-item:last-of-type {
  border-bottom: none;
}

.monde-number {
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.5;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.monde-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--void);
}

.monde-desc {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  background: var(--void);
  padding: var(--spacing-xl) 0;
}

.container-grid {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition-base);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  gap: 2rem;
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.faq-item:hover .faq-title {
  color: var(--gradient-rose);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--void);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.6;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

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

.footer-list a {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.footer-list a:hover {
  color: var(--gradient-rose);
}

.external-icon {
  font-size: 0.625rem;
  margin-left: 0.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 2rem;
}

.footer-copyright {
  font-size: 0.625rem;
  line-height: 1.6;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 60ch;
}

.footer-status {
  font-size: 0.625rem;
  text-transform: uppercase;
  color: var(--gradient-rose);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Footer Video */
.footer-video-link {
  margin: 3rem 0;
  text-align: center;
}

.video-link-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 1rem 2rem;
}

.video-link-btn:hover {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Video Modal */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--void);
  border: 2px solid var(--white);
  z-index: var(--z-modal);
  margin-top: 5vh;
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: var(--white);
  color: var(--void);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.video-modal-close:hover {
  background: var(--gradient-main);
  transform: rotate(90deg);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .mondes-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mondes-venn {
    max-width: 400px;
  }
  
  .container-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-sidebar {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .logo {
    height: 48px;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .hero-cta {
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .bsod {
    padding: 2rem 1.5rem;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline-emoji {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }
  
  .work-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
