/* ========================================
   CHARLES INFORMATIQUE — 2026 REDESIGN
   "Artisan Numérique" — Bold & Business
   ======================================== */

/* CSS Custom Properties */
:root {
  /* Colors — Electric Earth Palette */
  --color-charcoal: #1A1A1A;
  --color-charcoal-light: #2D2D2D;
  --color-charcoal-lighter: #3D3D3D;
  --color-clay: #C4A484;
  --color-clay-light: #D4B89A;
  --color-coral: #FF6B5B;
  --color-coral-dark: #EE5A24;
  --color-coral-light: #FF8F84;
  --color-mist: #F5F1ED;
  --color-mist-dark: #E8E2DC;
  --color-midnight: #0F172A;
  --color-gold: #FFD700;
  --color-mint: #39FF14;
  --color-lavender: #E6E6FA;
  --color-white: #FFFFFF;
  
  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Fluid Typography Scale */
  --text-xs: clamp(0.625rem, 0.8vw, 0.75rem);
  --text-sm: clamp(0.75rem, 0.9vw, 0.875rem);
  --text-base: clamp(0.875rem, 1vw, 1rem);
  --text-lg: clamp(1rem, 1.2vw, 1.125rem);
  --text-xl: clamp(1.25rem, 1.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 2vw, 2rem);
  --text-3xl: clamp(2rem, 3vw, 3rem);
  --text-4xl: clamp(2.5rem, 4vw, 4rem);
  --text-5xl: clamp(3rem, 6vw, 6rem);
  --text-6xl: clamp(4rem, 8vw, 8rem);
  --text-7xl: clamp(5rem, 12vw, 12rem);
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-48: 12rem;
  
  /* Easing Functions */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 60px rgba(255, 107, 91, 0.4);
  --shadow-glow-sm: 0 0 30px rgba(255, 107, 91, 0.3);
  
  /* Transitions */
  --transition-fast: 150ms var(--ease-smooth);
  --transition-base: 300ms var(--ease-expo);
  --transition-slow: 500ms var(--ease-expo);
  --transition-dramatic: 800ms var(--ease-dramatic);
}

/* ========================================
   BASE & RESET
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-mist);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--color-coral);
  color: var(--color-white);
}

/* ========================================
   SPOTLIGHT EFFECT
   ======================================== */
.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 107, 91, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .spotlight {
    opacity: 1;
  }
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--ease-expo);
}

.cursor.hover .cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor.hover .cursor-ring {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: var(--color-coral);
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ========================================
   GRAIN OVERLAY
   ======================================== */
.grain-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-10%, 5%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 10%); }
  80% { transform: translate(-15%, 0); }
  90% { transform: translate(10%, 5%); }
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.05);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-coral), var(--color-coral-dark));
  width: 0%;
  transition: width 0.1s linear;
}

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */
.accent {
  color: var(--color-coral);
  font-family: var(--font-serif);
  font-style: italic;
}

.micro-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-clay);
}

.outline {
  -webkit-text-stroke: 2px var(--color-charcoal);
  -webkit-text-fill-color: transparent;
}

.section-number {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-coral);
  font-weight: 500;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  padding: var(--space-4) var(--space-6);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-sm);
}

.btn-glow {
  position: relative;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--color-coral), var(--color-coral-dark), var(--color-coral));
  border-radius: 100px;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
  filter: blur(8px);
}

.btn-glow:hover::before {
  opacity: 0.5;
}

.btn-ghost {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
}

.btn-ghost:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal-light);
}

.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn-shine {
  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;
}

.btn:hover .btn-shine {
  left: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-6);
  background: rgba(245, 241, 237, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(-100%);
  animation: navSlideDown 0.8s var(--ease-expo) 0.3s forwards;
}

@keyframes navSlideDown {
  to { transform: translateY(0); }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo-morph {
  display: flex;
  gap: 1px;
}

.logo-char {
  width: 32px;
  height: 32px;
  background: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: transform var(--transition-base);
}

.logo-morph:hover .logo-char:first-child {
  transform: rotate(-5deg) translateY(-2px);
}

.logo-morph:hover .logo-char:last-child {
  transform: rotate(5deg) translateY(-2px);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  position: relative;
  padding: var(--space-2) 0;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-coral);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.nav-link:hover::after {
  transform: translateX(0);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: var(--space-3) var(--space-5);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--color-coral);
  transform: scale(1.05);
}

.nav-cta svg {
  transition: transform var(--transition-base);
}

.nav-cta:hover svg {
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: all var(--transition-base);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-mist);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--color-coral);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-24) var(--space-6);
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: aurora-move 20s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--color-coral);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--color-clay);
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: rgba(57, 255, 20, 0.3);
  top: 40%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes aurora-move {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, 5%) scale(1.1);
  }
  50% {
    transform: translate(-5%, 10%) scale(0.95);
  }
  75% {
    transform: translate(-10%, -5%) scale(1.05);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-32);
  align-items: center;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-expo) 0.5s forwards;
}

.label-line {
  width: 40px;
  height: 1px;
  background: var(--color-coral);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-6);
  padding-bottom: 0.1em;
}

.title-line {
  display: block;
  font-size: var(--text-5xl);
  line-height: 1.0;
  overflow: visible;
  margin-bottom: 0.05em;
  white-space: nowrap;
}

.title-line .letter {
  display: inline-block;
  transform-origin: 50% 100%;
  padding-bottom: 0.1em;
}



@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-charcoal-light);
  max-width: 480px;
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-expo) 1.3s forwards;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-expo) 1.5s forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-expo) 1.7s forwards;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-white);
  border: 2px solid var(--color-mist);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.hero-trust p {
  font-size: var(--text-sm);
  color: var(--color-charcoal-light);
}

.hero-trust strong {
  color: var(--color-charcoal);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-expo) 1.2s forwards;
  width: 100%;
  max-width: 420px;
  justify-self: center;
}

.code-window {
  background: var(--color-charcoal);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
  transition: transform var(--transition-slow);
  width: 100%;
}

.code-window:hover {
  transform: rotate(0deg) scale(1.02);
}

.window-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-4);
  background: var(--color-charcoal-light);
  border-bottom: 1px solid var(--color-charcoal-lighter);
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-coral);
}

.window-dot:nth-child(2) {
  background: var(--color-clay);
}

.window-dot:nth-child(3) {
  background: var(--color-mint);
}

.window-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-clay);
}

.window-code {
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
}

.window-code pre {
  margin: 0;
}

.code-keyword { color: #FF6B5B; }
.code-variable { color: #39FF14; }
.code-property { color: #C4A484; }
.code-string { color: #FFD700; }
.code-function { color: #E6E6FA; }
.code-comment { color: #666; font-style: italic; }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-white);
  padding: var(--space-3) var(--space-4);
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  font-size: var(--text-xs);
  font-weight: 500;
  animation: float 6s ease-in-out infinite;
}

.badge-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: -3s;
}

.badge-icon {
  font-size: 16px;
}

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

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-expo) 2s forwards;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--color-charcoal-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: var(--space-2);
}

.scroll-wheel {
  width: 4px;
  height: 6px;
  background: var(--color-coral);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-clay);
}

/* ========================================
   MARQUEE SECTION
   ======================================== */
.marquee-section {
  padding: var(--space-12) 0;
  background: var(--color-charcoal);
  overflow: hidden;
}

.marquee-track {
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
}

.marquee-item strong {
  color: var(--color-coral);
  font-weight: 700;
}

.marquee-separator {
  color: var(--color-clay);
  font-size: var(--text-lg);
}

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

/* ========================================
   MANIFESTO SECTION
   ======================================== */
.manifesto {
  padding: var(--space-32) var(--space-6);
}

.manifesto-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.manifesto-label {
  position: absolute;
  top: var(--space-8);
  left: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.manifesto-content {
  max-width: 100%;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-8);
}

.title-line {
  display: block;
}

.manifesto-text {
  margin-bottom: var(--space-8);
}

.text-highlight {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-6);
  color: var(--color-charcoal);
}

.manifesto-text p {
  font-size: var(--text-base);
  color: var(--color-charcoal-light);
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.manifesto-signature {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-mist-dark);
}

.signature-name {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-coral);
}

.signature-role {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-clay);
}

.manifesto-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.profile-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.profile-image-wrapper:hover .profile-image {
  transform: scale(1.02);
}

.profile-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--color-coral);
  border-radius: 32px;
  z-index: 0;
  opacity: 0.5;
  transition: all var(--transition-slow);
}

.profile-image-wrapper:hover .profile-frame {
  inset: -16px;
  opacity: 0.8;
  border-color: var(--color-coral-dark);
}

.profile-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  min-width: 100px;
}

.badge-year {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-coral);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-clay);
  text-align: center;
}

.visual-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--color-coral);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  opacity: 0.2;
  top: -50px;
  right: -50px;
  animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  25% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  75% { border-radius: 60% 40% 60% 40% / 40% 50% 60% 50%; }
}

.visual-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.card-number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-coral);
  line-height: 1;
}

.card-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-clay);
  margin-top: var(--space-2);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  max-width: 1400px;
  margin: 0 auto var(--space-16);
  padding: 0 var(--space-6);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-top: var(--space-4);
}

/* ========================================
   SERVICES — BENTO GRID
   ======================================== */
.services {
  padding: var(--space-32) var(--space-6);
  background: var(--color-white);
}

.bento-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: 0 var(--space-6);
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  transition: transform var(--transition-slow);
  transform-style: preserve-3d;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 656px;
}

.bento-wide {
  grid-column: span 2;
}

.bento-full {
  grid-column: 1 / -1;
  min-height: 280px;
}

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

.bento-content {
  position: relative;
  z-index: 1;
  padding: var(--space-8);
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
}

.bento-card:not(.bento-featured) .bento-content {
  color: var(--color-charcoal);
}

.bento-card .bento-content.bento-content-light {
  color: var(--color-white);
}

.bento-card .bento-content.bento-content-light .bento-number {
  color: var(--color-clay);
}

.bento-card.bento-wide .bento-content {
  color: var(--color-white);
}

.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
}

.bento-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.bento-number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  opacity: 0.6;
  margin-bottom: var(--space-2);
}

.bento-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.bento-desc {
  font-size: var(--text-lg);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.bento-list {
  list-style: none;
  margin-top: auto;
}

.bento-list li {
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
}

.bento-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-coral);
}

.bento-featured .bento-list li::before {
  color: var(--color-white);
}

.bento-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-white);
  color: var(--color-coral);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  z-index: 2;
}

.tech-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}

.tech-item {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   EXPERTISE IA SECTION
   ======================================== */
.expertise-ia {
  padding: var(--space-32) var(--space-6);
  background: var(--color-mist);
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-charcoal-lighter);
  max-width: 600px;
  margin-top: var(--space-4);
  line-height: 1.6;
}

/* ========================================
   WORK SECTION — HORIZONTAL SCROLL
   ======================================== */
.work {
  padding: var(--space-32) 0;
  overflow: hidden;
}

.work-header {
  max-width: 1400px;
  margin: 0 auto var(--space-12);
  padding: 0 var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.work-carousel {
  padding: 0 var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.work-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: var(--space-6);
  padding-bottom: var(--space-4);
}

.project-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
}

.project-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

/* Dark overlay for project images */
.project-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.35);
  z-index: 0;
  transition: background var(--transition-slow);
}

.project-image:hover::before {
  background: rgba(26, 26, 26, 0.55);
}

.project-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0;
  transition: all var(--transition-slow);
  z-index: 1;
}

.project-image:hover .project-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.project-overlay {
  position: absolute;
  inset: 0;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  opacity: 1;
  transform: translateY(0);
  transition: all var(--transition-slow);
  z-index: 1;
}

/* Light blur behind text content */
.project-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 50%, transparent 100%);
  z-index: -1;
}

/* Blur effect around text area */
.project-overlay > * {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-image:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-image:hover .project-overlay::before {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(26, 26, 26, 0.2) 100%);
}

.project-category {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-coral);
  margin-bottom: var(--space-2);
}

.project-overlay h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.project-overlay p {
  font-size: var(--text-sm);
  opacity: 0.8;
  margin-bottom: var(--space-4);
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.project-tech span {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
}

.carousel-hint {
  max-width: 1400px;
  margin: var(--space-8) auto 0;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hint-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-clay);
  white-space: nowrap;
}

.hint-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--color-clay), transparent);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  padding: var(--space-32) var(--space-6);
  background: var(--color-mist-dark);
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: var(--space-16);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-8);
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-coral);
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: var(--text-base);
  color: var(--color-charcoal-light);
  margin-bottom: var(--space-4);
}

.step-details {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.step-details li {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-clay);
  padding: var(--space-2) var(--space-4);
  background: var(--color-mist);
  border-radius: 100px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--space-32) var(--space-6);
  background: var(--color-charcoal);
  color: var(--color-white);
}

.testimonials-header {
  max-width: 1200px;
  margin: 0 auto var(--space-16);
}

.testimonials-header .section-number {
  color: var(--color-coral);
}

.testimonials-header .section-title {
  color: var(--color-white);
  margin-top: var(--space-4);
}

.testimonials-header .accent {
  color: var(--color-coral);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-charcoal-light);
  padding: var(--space-8);
  border-radius: 24px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: var(--color-charcoal-lighter);
}

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
}

.testimonial-quote {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  color: var(--color-white);
  opacity: 0.5;
}

.testimonial-card.featured .testimonial-quote {
  color: var(--color-white);
  opacity: 0.8;
}

.testimonial-text {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.featured .testimonial-text {
  font-size: var(--text-lg);
  color: var(--color-white);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-white);
}

.author-info span {
  font-size: var(--text-sm);
  color: var(--color-clay);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  position: relative;
  padding: var(--space-32) var(--space-6);
  overflow: hidden;
}

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

.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.contact-blob.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--color-coral);
  top: -20%;
  right: -10%;
  animation: blobFloat 15s ease-in-out infinite;
}

.contact-blob.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--color-clay);
  bottom: -10%;
  left: -5%;
  animation: blobFloat 15s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-content .section-number {
  margin-bottom: var(--space-4);
}

.contact-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-6);
}

.contact-subtitle {
  font-size: var(--text-lg);
  color: var(--color-charcoal-light);
  margin-bottom: var(--space-8);
  max-width: 400px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-white);
  border-radius: 16px;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.contact-method:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.method-icon {
  width: 48px;
  height: 48px;
  background: var(--color-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral);
  transition: all var(--transition-base);
}

.contact-method:hover .method-icon {
  background: var(--color-coral);
  color: var(--color-white);
}

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

.method-info {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-clay);
}

.method-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-charcoal);
}

/* Contact Form */
.contact-form-container {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.form-group {
  position: relative;
}

.form-group.floating input,
.form-group.floating textarea,
.form-group select {
  width: 100%;
  padding: var(--space-4) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-mist-dark);
  outline: none;
  transition: border-color var(--transition-base);
}

.form-group.floating textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group.floating label {
  position: absolute;
  left: 0;
  top: var(--space-4);
  font-size: var(--text-base);
  color: var(--color-clay);
  pointer-events: none;
  transition: all var(--transition-base);
}

.form-group.floating input:focus ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label {
  top: -12px;
  font-size: var(--text-xs);
  color: var(--color-coral);
}

.form-group.floating input:focus,
.form-group.floating textarea:focus {
  border-color: var(--color-coral);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C4A484' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.btn-submit {
  width: 100%;
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-8);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  position: relative;
  padding: var(--space-16) var(--space-6) var(--space-8);
  background: var(--color-charcoal);
  color: var(--color-white);
  overflow: hidden;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-charcoal-light);
}

.footer-logo {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.footer-logo .logo-char {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.footer-tagline {
  font-size: var(--text-base);
  color: var(--color-clay);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--color-charcoal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--color-coral);
  transform: translateY(-4px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.footer-column a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-clay);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-coral);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-clay);
}

.footer-credit {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

.footer-blob {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: var(--color-coral);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.1;
  filter: blur(80px);
  animation: footerBlob 10s ease-in-out infinite;
}

@keyframes footerBlob {
  0%, 100% { 
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% { 
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    transform: translate(-20px, -20px) rotate(5deg);
  }
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 10001;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  transform: translateX(150%);
  transition: transform var(--transition-base);
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: var(--color-mint);
  color: var(--color-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .hero-visual {
    order: -1;
  }
  
  .code-window {
    transform: rotate(0);
  }
  
  .manifesto-container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .manifesto-label {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: var(--space-6);
  }
  
  .manifesto-visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .profile-badge {
    bottom: -10px;
    right: -10px;
    padding: var(--space-3) var(--space-4);
    min-width: 80px;
  }
  
  .badge-year {
    font-size: var(--text-2xl);
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-large,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 320px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card.featured {
    grid-column: span 1;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .title-word {
    font-size: var(--text-4xl);
  }
  
  .project-card {
    flex: 0 0 300px;
  }
  
  .process-step {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

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

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .grain-overlay,
  .spotlight,
  .cursor {
    display: none;
  }
}
