/* Estilos compartidos por las paginas ligeras de side projects (khion, disembodied) */
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; }

#cur { position: fixed; width: 7px; height: 7px; background: #cff782; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.15s, background 0.15s; opacity: 0; }
#cur-ring { position: fixed; width: 30px; height: 30px; border: 1.5px solid #cff782; border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width 0.25s, height 0.25s, border-radius 0.25s, border-color 0.25s; opacity: 0; }

nav { position: fixed; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 3rem; background: rgba(5,6,6,0.9); backdrop-filter: blur(14px); z-index: 100; border-bottom: 1px solid rgba(207,247,130,0.07); }

.side-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; overflow: hidden; }
.side-hero-img { position: absolute; inset: 0; }
.side-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.55; }
.side-hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,6,0.55) 0%, rgba(5,6,6,0.25) 45%, #050606 100%); }
.side-hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 9rem 3rem 3.5rem; width: 100%; }
.side-hero-logo { margin-bottom: 1.5rem; }
.side-hero-logo img { height: clamp(52px, 8vh, 76px); width: auto; max-width: 55%; object-fit: contain; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.65)); }
.side-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 400; color: #fff; line-height: 0.95; letter-spacing: 0.01em; margin-bottom: 1.1rem; }
.side-title em { font-style: normal; color: #cff782; }
.side-sub { font-size: 1.02rem; color: #b5b5b5; max-width: 46rem; line-height: 1.7; }
.side-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.4rem; }
.side-tag { font-family: 'DM Mono', monospace; font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(207,247,130,0.85); border: 1px solid rgba(207,247,130,0.3); padding: 0.3rem 0.7rem; }

.side-sheet { max-width: 1100px; margin: 0 auto; padding: 3rem 3rem 5rem; }
.sheet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: rgba(207,247,130,0.12); border: 1px solid rgba(207,247,130,0.12); }
.sheet-item { background: #070808; padding: 1.2rem 1.4rem; }
.sheet-key { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(207,247,130,0.5); margin-bottom: 0.45rem; }
.sheet-val { font-family: 'Syne', sans-serif; font-size: 0.98rem; font-weight: 600; color: #e8e8e8; line-height: 1.4; }
.sheet-awards { margin-top: 1.6rem; border-left: 3px solid rgba(207,247,130,0.4); padding: 0.4rem 0 0.4rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.sheet-award { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: #cff782; letter-spacing: 0.4px; }
.side-cta { display: flex; gap: 1rem; justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }

/* Breakdown (lighting-01) */
.lg-break { margin-top: 3.5rem; }
.lg-stack { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.6rem; }
.lg-stack img { width: 100%; display: block; background: #0a0a12; border: 1px solid rgba(255,255,255,0.06); cursor: pointer; }
.lg-break-label { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: rgba(207,247,130,0.5); letter-spacing: 3px; margin-bottom: 0.6rem; }
.lg-break-title { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1.2rem; }
.lg-break-title em { font-style: normal; color: #cff782; }
.lg-break-p { font-size: 0.95rem; color: #9a9a9a; line-height: 1.85; max-width: 50rem; margin-bottom: 1.1rem; }
.lg-video { margin-top: 1.6rem; }
.lg-video video { width: 100%; display: block; background: #0a0a12; border: 1px solid rgba(255,255,255,0.06); }
.lg-video-cap { padding: 0.55rem 0.2rem; font-family: 'DM Mono', monospace; font-size: 0.68rem; color: #777; letter-spacing: 0.5px; line-height: 1.6; }
.lg-refs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.6rem; max-width: 50rem; }
.lg-refs img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; background: #0a0a12; border: 1px solid rgba(255,255,255,0.06); cursor: pointer; }

.fx { opacity: 0; transform: translateY(14px); animation: side-in 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.fx-2 { animation-delay: 0.12s; }
.fx-3 { animation-delay: 0.24s; }
.fx-4 { animation-delay: 0.36s; }
@keyframes side-in { to { opacity: 1; transform: none; } }

@media (max-width: 640px) {
  nav { padding: 1.1rem 1.3rem; }
  .nav-back span { display: none; }
  .side-hero { min-height: 58vh; }
  .side-hero-content { padding: 7rem 1.5rem 2.5rem; }
  .side-sheet { padding: 2.2rem 1.5rem 4rem; }
}

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