/* ═══════════════════════════════════════════════════════════
   CINEMATIC EXPERIENCE — experience.css
   Extends style.css tokens. All classes prefixed with exp-.
═══════════════════════════════════════════════════════════ */

/* ── Additional tokens ────────────────────────────────── */
:root {
  color-scheme: dark;
  --cyan-rgb: 0, 238, 255;
  --purple: #7b61ff;
  --purple-rgb: 123, 97, 255;
  --green-accent: #00ffb2;
  --font-tech: 'JetBrains Mono', monospace;
  --font-display-alt: 'Orbitron', sans-serif;
  --exp-dark: #050910;
  --exp-dark2: #0a1120;
}

/* ── Samsung / forced-color protection ────────────────── */
.exp-hero,
.exp-cinema,
.exp-gcard,
.exp-showcase,
.exp-sh-grid,
.exp-wall,
.exp-tunnel,
.exp-strips,
.exp-footer {
  forced-color-adjust: none;
}

/* ── FOCUS STYLES (Accessibility) ─────────────────────── */
:focus-visible {
  outline: 2px solid rgba(var(--cyan-rgb), 1);
  outline-offset: 3px;
  box-shadow: 0 0 6px rgba(var(--cyan-rgb), 0.5);
}
:focus:not(:focus-visible) { outline: none; }

/* ── Page base ────────────────────────────────────────── */
.exp-page,
.exp-page *,
.exp-page *::before,
.exp-page *::after {
  font-family: 'Inter', var(--font-b);
}
.exp-page {
  background: var(--exp-dark);
  color: #f0f4ff;
  overflow-x: hidden;
  cursor: none;
}
.exp-page ::selection {
  background: rgba(var(--cyan-rgb), 0.3);
  color: #fff;
}
.exp-page ::-webkit-scrollbar { width: 4px; }
.exp-page ::-webkit-scrollbar-track { background: var(--exp-dark); }
.exp-page ::-webkit-scrollbar-thumb { background: rgba(var(--cyan-rgb), 0.3); border-radius: 4px; }

/* scroll-snap activated via .exp-page body class */

/* ── Custom cursor ────────────────────────────────────── */
.exp-cur-dot, .exp-cur-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  mix-blend-mode: difference;
}
.exp-cur-dot {
  width: 6px; height: 6px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s;
}
.exp-cur-ring {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%);
  transition: all 0.08s ease-out;
}
.exp-page.hovering .exp-cur-dot { width: 12px; height: 12px; }
.exp-page.hovering .exp-cur-ring { width: 60px; height: 60px; border-color: rgba(var(--cyan-rgb), 0.5); }

/* ── Preloader ────────────────────────────────────────── */
#expLoader {
  position: fixed;
  inset: 0;
  background: var(--exp-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}
#expLoader.bye { opacity: 0; visibility: hidden; }
.exp-pre-hex { width: 70px; height: 70px; position: relative; }
.exp-pre-hex::before, .exp-pre-hex::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--cyan);
  border-radius: 12px;
  animation: expPreHex 2s ease infinite;
}
.exp-pre-hex::after { animation-delay: 0.5s; border-color: var(--purple); }
@keyframes expPreHex {
  0%   { transform: rotate(0) scale(1); opacity: 1; }
  50%  { transform: rotate(180deg) scale(0.6); opacity: 0.3; }
  100% { transform: rotate(360deg) scale(1); opacity: 1; }
}
.exp-pre-pct {
  font-family: var(--font-display-alt);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 6px;
  margin-top: 24px;
}

/* ── Global overlays ──────────────────────────────────── */
.exp-scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(transparent, transparent 2px, rgba(0, 0, 0, 0.015) 2px, rgba(0, 0, 0, 0.015) 4px);
}
.exp-scan-beam {
  position: fixed;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--cyan-rgb), 0.12), transparent);
  z-index: 9997;
  pointer-events: none;
  animation: expScanBeam 6s linear infinite;
  top: 0;
}
@keyframes expScanBeam { 0% { top: -1px; } 100% { top: 100vh; } }

.exp-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9996;
}
.exp-pt {
  position: absolute;
  border-radius: 50%;
  animation: expPtRise linear infinite;
}
@keyframes expPtRise {
  0%   { transform: translateY(110vh) scale(0.5); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* ── Section base ─────────────────────────────────────── */
.exp-page section { position: relative; overflow: hidden; }
.exp-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}
.exp-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.exp-reveal.vis { opacity: 1; transform: none; }
.exp-reveal-d1 { transition-delay: 0.1s; }
.exp-reveal-d2 { transition-delay: 0.2s; }
.exp-reveal-d3 { transition-delay: 0.3s; }
.exp-reveal-d4 { transition-delay: 0.4s; }

/* ── Navigation bar ───────────────────────────────────── */
.exp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3.2rem;
  background: rgba(5, 9, 16, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(var(--cyan-rgb), 0.06);
}
.exp-nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.exp-nav-logo .logo-img {
  height: 5rem;
}
.exp-nav-back {
  font-family: var(--font-tech);
  font-size: 1.1rem;
  color: rgba(var(--cyan-rgb), 0.5);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.exp-nav-back:hover { color: var(--cyan); }
.exp-nav-back .exp-back-arrow {
  font-size: 1.4rem;
  transition: transform 0.3s var(--ease);
}
.exp-nav-back:hover .exp-back-arrow { transform: translateX(-4px); }
.exp-nav .lang-toggle {
  font-family: var(--font-tech);
  font-size: 1.1rem;
  color: rgba(var(--cyan-rgb), 0.5);
  background: none;
  border: 1px solid rgba(var(--cyan-rgb), 0.15);
  padding: 0.4rem 1rem;
  min-height: 44px;
  min-width: 44px;
  border-radius: 0.5rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.exp-nav .lang-toggle:hover {
  color: var(--cyan);
  border-color: rgba(var(--cyan-rgb), 0.4);
}
.exp-nav .lang-toggle .lang-opt.active {
  color: var(--cyan);
}

/* ── Navigation dots ──────────────────────────────────── */
.exp-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exp-dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(var(--cyan-rgb), 0.25);
  background: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.exp-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}
.exp-dot.active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.4);
}
.exp-dot:hover { border-color: rgba(var(--cyan-rgb), 0.6); }

/* ══════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════ */
.exp-hero { position: relative; height: 100vh; height: 100dvh; overflow: hidden; }
.exp-hero video {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Default — safe for Safari/iOS video compositing */
.exp-hero-v1 { opacity: 0.45; z-index: 1; }
.exp-hero-v2 { opacity: 0.12; z-index: 2; transform: scaleX(-1); }
.exp-hero-v3 { opacity: 0.08; z-index: 3; }
/* Enhancement for browsers with correct video blend compositing */
@supports (mix-blend-mode: screen) {
  .exp-hero-v2 { opacity: 0.25; mix-blend-mode: screen; }
  .exp-hero-v3 { opacity: 0.15; mix-blend-mode: color-dodge; }
}
.exp-hero-fog {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(ellipse at 50% 40%, transparent 15%, var(--exp-dark) 72%);
}
.exp-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.exp-hero-cta {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
}
.exp-hero-tag {
  font-family: var(--font-tech);
  font-size: 12px;
  color: rgba(var(--cyan-rgb), 0.6);
  letter-spacing: 8px;
  opacity: 0;
  animation: expHFade 0.8s ease 1.2s both;
}
.exp-hero-logo {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  opacity: 0;
  animation: expHSlam 1s cubic-bezier(0.16, 1, 0.3, 1) 1.6s both;
}
.exp-hero-logo .logo-img-cin {
  height: clamp(8rem, 14vw, 16rem);
  filter: drop-shadow(0 0 20px rgba(var(--cyan-rgb), 0.6))
          drop-shadow(0 0 50px rgba(var(--cyan-rgb), 0.25));
}
.exp-hero-sep {
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(var(--cyan-rgb), 0.8), rgba(var(--purple-rgb), 0.6), transparent);
  margin: 0 auto;
  animation: expHLine 1.5s ease 2s both;
}
.exp-hero-name {
  font-family: var(--font-display-alt);
  font-size: clamp(15px, 2.8vw, 30px);
  letter-spacing: clamp(5px, 1.8vw, 18px);
  margin-top: 18px;
  opacity: 0;
  animation: expHFade 1s ease 2.4s both;
}
.exp-hero-sub {
  font-family: var(--font-tech);
  font-size: clamp(12px, 1.2vw, 13px);
  color: rgba(var(--cyan-rgb), 0.45);
  letter-spacing: 5px;
  margin-top: 8px;
  opacity: 0;
  animation: expHFade 1s ease 2.7s both;
}
@keyframes expHFade {
  0%   { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes expHSlam {
  0%   { opacity: 0; transform: scale(2.8); filter: blur(25px); }
  55%  { transform: scale(0.97); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes expHLine { to { width: min(460px, 65vw); } }

.exp-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: expHFade 1s ease 3.2s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.exp-hero-scroll-box {
  width: 18px; height: 28px;
  border: 1.5px solid rgba(var(--cyan-rgb), 0.35);
  border-radius: 9px;
}
.exp-hero-scroll-box::after {
  content: '';
  display: block;
  width: 3px; height: 7px;
  background: var(--cyan);
  border-radius: 2px;
  margin: 4px auto 0;
  animation: expScrollBob 2s ease infinite;
}
.exp-hero-scroll span {
  font-family: var(--font-tech);
  font-size: 8px;
  color: rgba(var(--cyan-rgb), 0.35);
  letter-spacing: 4px;
}
@keyframes expScrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}

/* ══════════════════════════════════════════════════════
   SHOWCASE GRID
══════════════════════════════════════════════════════ */
.exp-showcase { padding: 120px 5vw; }
.exp-sh-head { text-align: center; margin-bottom: 70px; }
.exp-sh-head h2 {
  font-family: var(--font-display-alt);
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: 3px;
}
.exp-sh-line {
  width: 50px; height: 2px;
  background: var(--cyan);
  margin: 16px auto;
  box-shadow: 0 0 12px rgba(var(--cyan-rgb), 0.5);
}
.exp-sh-head p {
  font-family: var(--font-tech);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 5px;
}
.exp-sh-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.exp-sh-cell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(var(--cyan-rgb), 0.06);
}
.exp-sh-cell video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s;
}
.exp-sh-cell:hover video { transform: scale(1.1); filter: brightness(1.25) saturate(1.4); }
.exp-sh-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(5, 9, 16, 0.75));
  pointer-events: none;
  z-index: 2;
}
.exp-sh-cell::before {
  content: attr(data-idx);
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--font-display-alt);
  font-size: 11px;
  color: rgba(var(--cyan-rgb), 0.35);
  z-index: 3;
  letter-spacing: 2px;
}
.exp-sh-label {
  position: absolute;
  bottom: 16px; left: 18px;
  z-index: 3;
  pointer-events: none;
}
.exp-sh-label h3 {
  font-family: var(--font-display-alt);
  font-size: 13px;
  letter-spacing: 3px;
  transition: color 0.3s;
}
.exp-sh-label span {
  font-family: var(--font-tech);
  font-size: 9px;
  color: rgba(var(--cyan-rgb), 0.5);
  letter-spacing: 2px;
}
.exp-sh-cell:hover .exp-sh-label h3 { color: var(--cyan); }
.exp-sh-cell:hover::after { background: linear-gradient(transparent 40%, rgba(5, 9, 16, 0.85)); }
.exp-sh-logo-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  pointer-events: none;
  display: flex;
  justify-content: center;
}
.exp-sh-logo-center .logo-img-cin {
  height: clamp(4rem, 5vw, 6rem);
  filter: drop-shadow(0 0 12px rgba(var(--cyan-rgb), 0.6))
          drop-shadow(0 0 30px rgba(0, 0, 0, 0.9));
}

/* ══════════════════════════════════════════════════════
   CINEMATIC BLEND
══════════════════════════════════════════════════════ */
.exp-cinema { height: 100vh; height: 100dvh; position: relative; }
.exp-cinema video {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Default — safe for Safari/iOS video compositing */
.exp-cm-v1 { opacity: 0.25; }
.exp-cm-v2 { opacity: 0.15; transform: scaleX(-1); }
.exp-cm-v3 { opacity: 0.1; transform: scale(1.15); }
.exp-cm-v4 { opacity: 0.1; }
/* Enhancement for browsers with correct video blend compositing */
@supports (mix-blend-mode: screen) {
  .exp-cm-v1 { opacity: 0.5; mix-blend-mode: screen; }
  .exp-cm-v2 { opacity: 0.3; mix-blend-mode: lighten; }
  .exp-cm-v3 { opacity: 0.2; mix-blend-mode: color-dodge; }
  .exp-cm-v4 { opacity: 0.2; mix-blend-mode: soft-light; }
}
.exp-cm-mask {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: radial-gradient(ellipse at 50% 50%, rgba(5, 9, 16, 0.15), rgba(5, 9, 16, 0.88) 68%);
}
.exp-cm-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  padding: 0 30px;
}
.exp-cm-content blockquote {
  font-family: var(--font-display-alt);
  font-size: clamp(13px, 2.2vw, 22px);
  line-height: 2.6;
  letter-spacing: 4px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.exp-cm-content em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.3);
}

/* ══════════════════════════════════════════════════════
   COMMERCIALS GALLERY
══════════════════════════════════════════════════════ */
.exp-gallery { padding: 120px 5vw; }
.exp-gallery-head { text-align: center; margin-bottom: 70px; }
.exp-gallery-head h2 {
  font-family: var(--font-display-alt);
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: 3px;
}
.exp-gallery-line {
  width: 50px; height: 2px;
  background: var(--cyan);
  margin: 16px auto;
  box-shadow: 0 0 12px rgba(var(--cyan-rgb), 0.5);
}
.exp-gallery-head p {
  font-family: var(--font-tech);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 5px;
}
.exp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.exp-gcard {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(var(--cyan-rgb), 0.1);
  background: rgba(var(--cyan-rgb), 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
}
.exp-gcard:hover {
  transform: scale(1.03);
  border-color: rgba(var(--cyan-rgb), 0.3);
  box-shadow: 0 0 30px rgba(var(--cyan-rgb), 0.1);
}
.exp-gcard video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter 0.5s;
}
.exp-gcard:hover video,
.exp-gcard.touch-active video { filter: brightness(1.2); }

.exp-gcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(5, 9, 16, 0.85));
  pointer-events: none;
  z-index: 2;
}
.exp-gcard::before {
  content: attr(data-idx);
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--font-display-alt);
  font-size: 11px;
  color: rgba(var(--cyan-rgb), 0.35);
  z-index: 3;
  letter-spacing: 2px;
}
.exp-gcard-info {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  z-index: 3;
  pointer-events: none;
}
.exp-gcard-info h3 {
  font-family: var(--font-display-alt);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.exp-gcard-info span {
  font-family: var(--font-tech);
  font-size: 11px;
  color: rgba(var(--cyan-rgb), 0.5);
  letter-spacing: 2px;
}
.exp-gcard:hover .exp-gcard-info h3,
.exp-gcard.touch-active .exp-gcard-info h3 { color: var(--cyan); }
.exp-gcard-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(var(--cyan-rgb), 0.4);
  background: rgba(5, 9, 16, 0.6);
  color: var(--cyan);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.exp-gcard-play:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}
.exp-gcard.playing .exp-gcard-play { opacity: 0; pointer-events: none; }

/* ══════════════════════════════════════════════════════
   SPLIT PANEL
══════════════════════════════════════════════════════ */
.exp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 80vh;
  position: relative;
}
.exp-split > div { overflow: hidden; }
.exp-split video { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.exp-sp-left video { filter: saturate(1.5) brightness(0.9); }
.exp-sp-right video { filter: hue-rotate(20deg) saturate(1.2); }
.exp-sp-bar {
  position: absolute;
  top: 0; left: 50%;
  width: 3px; height: 100%;
  z-index: 10;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 5%, var(--cyan) 30%, var(--purple) 70%, transparent 95%);
  box-shadow: 0 0 25px rgba(var(--cyan-rgb), 0.3), 0 0 50px rgba(var(--cyan-rgb), 0.1);
}
.exp-sp-name {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  font-family: var(--font-display-alt);
  font-size: clamp(22px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: clamp(3px, 1vw, 10px);
  white-space: nowrap;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.95);
}
[dir="rtl"] .exp-sp-name { white-space: normal; }
.exp-sp-name span {
  background: linear-gradient(135deg, #fff, rgba(var(--cyan-rgb), 1), rgba(var(--purple-rgb), 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ══════════════════════════════════════════════════════
   ORBIT CIRCLES
══════════════════════════════════════════════════════ */
.exp-orbits { height: 100vh; position: relative; }
.exp-orbits-bg {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.exp-orbit-container {
  position: relative;
  z-index: 5;
  width: min(88vw, 680px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.exp-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--cyan-rgb), 0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: expSpin 35s linear infinite;
}
.exp-orbit-ring:nth-child(2) { animation-direction: reverse; border-color: rgba(var(--purple-rgb), 0.06); }
.exp-o-circ {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(var(--cyan-rgb), 0.2);
  box-shadow: 0 0 25px rgba(var(--cyan-rgb), 0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
}
.exp-o-circ:hover { transform: scale(1.15) !important; box-shadow: 0 0 50px rgba(var(--cyan-rgb), 0.4); }
.exp-o-circ video { width: 100%; height: 100%; object-fit: cover; }
.exp-oc-main {
  width: clamp(140px, 22vw, 240px); height: clamp(140px, 22vw, 240px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(var(--cyan-rgb), 0.2);
}
.exp-oc-a { width: clamp(85px, 13vw, 145px); height: clamp(85px, 13vw, 145px); top: 4%; left: 6%; }
.exp-oc-b { width: clamp(95px, 14vw, 155px); height: clamp(95px, 14vw, 155px); top: 2%; right: 6%; border-color: rgba(var(--purple-rgb), 0.3); }
.exp-oc-c { width: clamp(80px, 12vw, 135px); height: clamp(80px, 12vw, 135px); bottom: 6%; left: 10%; border-color: rgba(0, 255, 178, 0.25); }
.exp-oc-d { width: clamp(90px, 13vw, 145px); height: clamp(90px, 13vw, 145px); bottom: 3%; right: 8%; border-color: rgba(var(--purple-rgb), 0.25); }
.exp-orbit-label {
  position: absolute;
  bottom: clamp(15px, 4vh, 50px);
  left: 50%; transform: translateX(-50%);
  z-index: 10;
  font-family: var(--font-display-alt);
  font-size: 13px;
  color: rgba(var(--cyan-rgb), 0.4);
  letter-spacing: 8px;
}
@keyframes expSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ══════════════════════════════════════════════════════
   VIDEO WALL
══════════════════════════════════════════════════════ */
.exp-wall { height: 100vh; position: relative; }
.exp-wall video { position: absolute; width: 50%; height: 50%; object-fit: cover; }
.exp-wv1 { top: 0; left: 0; filter: saturate(1.4); }
.exp-wv2 { top: 0; right: 0; filter: hue-rotate(15deg) saturate(1.2); }
.exp-wv3 { bottom: 0; left: 0; filter: hue-rotate(-10deg) brightness(0.9); }
.exp-wv4 { bottom: 0; right: 0; filter: saturate(1.5) brightness(0.85); }
.exp-wall-cross { position: absolute; z-index: 5; }
.exp-wall-cross-h {
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-1px);
  background: linear-gradient(90deg, transparent, rgba(var(--cyan-rgb), 0.5), transparent);
  box-shadow: 0 0 15px rgba(var(--cyan-rgb), 0.2);
}
.exp-wall-cross-v {
  left: 50%; top: 0;
  width: 2px; height: 100%;
  transform: translateX(-1px);
  background: linear-gradient(180deg, transparent, rgba(var(--cyan-rgb), 0.5), transparent);
  box-shadow: 0 0 15px rgba(var(--cyan-rgb), 0.2);
}
.exp-wall-mask {
  position: absolute;
  inset: 0; z-index: 6;
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(5, 9, 16, 0.7) 70%);
}
.exp-wall-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: center;
}
.exp-wall-logo .logo-img-cin {
  height: clamp(5rem, 7vw, 8rem);
  filter: drop-shadow(0 0 20px rgba(var(--cyan-rgb), 0.6))
          drop-shadow(0 0 50px rgba(0, 0, 0, 0.9));
}
.exp-wall-labels {
  position: absolute;
  z-index: 8;
  font-family: var(--font-tech);
  font-size: 9px;
  color: rgba(var(--cyan-rgb), 0.35);
  letter-spacing: 3px;
}
.exp-wl1 { top: 22%; left: 22%; }
.exp-wl2 { top: 22%; right: 22%; }
.exp-wl3 { bottom: 22%; left: 22%; }
.exp-wl4 { bottom: 22%; right: 22%; }

/* ══════════════════════════════════════════════════════
   IMMERSIVE TUNNEL
══════════════════════════════════════════════════════ */
.exp-tunnel { height: 100vh; position: relative; perspective: 900px; background: var(--exp-dark); }
.exp-tn-ring {
  position: absolute;
  border: 1px solid rgba(var(--cyan-rgb), 0.04);
  border-radius: 14px;
  animation: expTnZoom 5s linear infinite;
}
@keyframes expTnZoom {
  0%   { width: 15%; height: 15%; opacity: 0; inset: 42.5%; }
  50%  { opacity: 0.25; }
  100% { width: 130%; height: 130%; opacity: 0; inset: -15%; }
}
.exp-tn-vid {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(var(--cyan-rgb), 0.12);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s, border-color 0.4s, box-shadow 0.4s;
}
.exp-tn-vid:hover {
  z-index: 20 !important;
  transform: scale(1.06) !important;
  border-color: var(--cyan);
  box-shadow: 0 10px 60px rgba(var(--cyan-rgb), 0.2);
}
.exp-tn-vid video { width: 100%; height: 100%; object-fit: cover; }
.exp-tv1 { width: 42%; aspect-ratio: 16/9; top: 6%; left: 4%; transform: rotate(-2deg); }
.exp-tv2 { width: 42%; aspect-ratio: 16/9; top: 6%; right: 4%; transform: rotate(2deg); }
.exp-tv3 { width: 42%; aspect-ratio: 16/9; bottom: 6%; left: 4%; transform: rotate(1.5deg); }
.exp-tv4 { width: 42%; aspect-ratio: 16/9; bottom: 6%; right: 4%; transform: rotate(-1.5deg); }
.exp-tn-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  text-align: center;
  pointer-events: none;
}
.exp-tn-logo {
  display: flex;
  justify-content: center;
}
.exp-tn-logo .logo-img-cin {
  height: clamp(5rem, 8vw, 9rem);
  filter: drop-shadow(0 0 16px rgba(var(--cyan-rgb), 0.6))
          drop-shadow(0 0 40px rgba(var(--cyan-rgb), 0.2));
}
.exp-tn-name {
  font-family: var(--font-display-alt);
  font-size: clamp(12px, 1.8vw, 18px);
  letter-spacing: clamp(5px, 1.2vw, 12px);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════
   DIAGONAL STRIPS
══════════════════════════════════════════════════════ */
.exp-strips { height: 85vh; position: relative; }
.exp-str {
  position: absolute;
  height: 150%; top: -25%;
  overflow: hidden;
  -webkit-clip-path: polygon(18% 0, 100% 0, 82% 100%, 0% 100%);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0% 100%);
}
.exp-str video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.5) brightness(0.85); }
.exp-str:nth-child(1) { left: -6%; width: 27%; opacity: 0.6; transform: rotate(-2deg); }
.exp-str:nth-child(2) { left: 22%; width: 27%; opacity: 0.85; transform: rotate(1.5deg); }
.exp-str:nth-child(3) { left: 49%; width: 27%; opacity: 0.75; transform: rotate(-1deg); }
.exp-str:nth-child(4) { right: -6%; width: 27%; opacity: 0.6; transform: rotate(2deg); }
.exp-strips-fog {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--exp-dark), transparent 12%, transparent 88%, var(--exp-dark));
  z-index: 5;
}
.exp-strips-cta {
  position: absolute;
  bottom: 10%; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}
.exp-strips-cta h3 {
  font-family: var(--font-display-alt);
  font-size: clamp(14px, 2.5vw, 26px);
  letter-spacing: 8px;
}
.exp-strips-sl {
  width: 60px; height: 1px;
  background: var(--cyan);
  margin: 12px auto;
  box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.5);
}
.exp-strips-cta p {
  font-family: var(--font-tech);
  font-size: 12px;
  color: rgba(var(--cyan-rgb), 0.35);
  letter-spacing: 4px;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.exp-footer { padding: 100px 5vw; text-align: center; position: relative; overflow: hidden; }
.exp-footer video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.07;
}
.exp-ft-in { position: relative; z-index: 5; }
.exp-ft-logo {
  display: flex;
  justify-content: center;
}
.exp-ft-logo .logo-img-cin {
  height: 6rem;
  filter: drop-shadow(0 0 12px rgba(var(--cyan-rgb), 0.6))
          drop-shadow(0 0 30px rgba(var(--cyan-rgb), 0.2));
}
.exp-ft-name {
  font-family: var(--font-display-alt);
  font-size: clamp(12px, 1.8vw, 17px);
  letter-spacing: clamp(6px, 1.5vw, 14px);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}
.exp-ft-title {
  font-family: var(--font-tech);
  font-size: 12px;
  color: rgba(var(--cyan-rgb), 0.35);
  letter-spacing: 5px;
  margin-top: 6px;
}
.exp-ft-sep {
  width: 60px; height: 1px;
  background: rgba(var(--cyan-rgb), 0.2);
  margin: 30px auto;
}
.exp-ft-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.exp-ft-tag {
  padding: 5px 16px;
  border: 1px solid rgba(var(--cyan-rgb), 0.12);
  border-radius: 20px;
  font-family: var(--font-tech);
  font-size: 10px;
  color: rgba(var(--cyan-rgb), 0.4);
  letter-spacing: 2px;
  transition: all 0.3s;
}
.exp-ft-tag:hover {
  color: var(--cyan);
  border-color: rgba(var(--cyan-rgb), 0.4);
  box-shadow: 0 0 15px rgba(var(--cyan-rgb), 0.1);
}
.exp-ft-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}
.exp-ft-social a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(var(--cyan-rgb), 0.15);
  color: rgba(var(--cyan-rgb), 0.5);
  transition: all 0.3s;
  text-decoration: none;
}
.exp-ft-social a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(var(--cyan-rgb), 0.2);
  transform: scale(1.1);
}
.exp-ft-social svg { width: 16px; height: 16px; }
.exp-ft-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.exp-ft-link {
  font-family: var(--font-tech);
  font-size: 12px;
  color: rgba(var(--cyan-rgb), 0.3);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.exp-ft-link:hover { color: var(--cyan); }
.exp-ft-copy {
  font-family: var(--font-tech);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  letter-spacing: 3px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .exp-orbit-container { width: min(85vw, 580px); }
}

@media (max-width: 992px) {
  .exp-split { grid-template-columns: 1fr; height: auto; }
  .exp-split > div { min-height: 45vh; }
  .exp-sp-bar { display: none; }
  .exp-sp-name { font-size: clamp(22px, 6vw, 40px); }
  .exp-tn-vid { width: 44%; }
}

@media (max-width: 768px) {
  .exp-page { cursor: auto; }
  .exp-cur-dot, .exp-cur-ring { display: none; }
  .exp-dots { display: none; }

  .exp-nav { padding: 1.2rem 2rem; }
  .exp-nav-back span { display: none; }

  /* Override style.css mobile .lang-toggle absolute positioning */
  .exp-nav .lang-toggle {
    position: static;
    transform: none;
    top: auto;
    left: auto;
  }

  .exp-sh-grid { grid-template-columns: 1fr; }
  .exp-gallery-grid { grid-template-columns: 1fr; }

  .exp-oc-a, .exp-oc-b, .exp-oc-c, .exp-oc-d { display: none; }

  .exp-wall video { width: 100%; height: 25%; }
  .exp-wv1 { top: 0; left: 0; }
  .exp-wv2 { top: 25%; left: 0; right: auto; }
  .exp-wv3 { top: 50%; left: 0; bottom: auto; }
  .exp-wv4 { top: 75%; left: 0; right: auto; bottom: auto; }
  .exp-wall-cross-v, .exp-wall-cross-h { display: none; }
  .exp-wall-labels { display: none; }

  .exp-tn-vid { width: 44%; }
  .exp-str { width: 45% !important; }

  .exp-nav-logo .logo-img { height: 4.6rem; }
  .exp-ft-logo .logo-img-cin { height: 4.5rem; }
  .exp-ft-tags { gap: 8px; }
  .exp-ft-links { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 580px) {
  .exp-tn-vid { width: 46%; }
  .exp-str { width: 48% !important; }
  .exp-ft-tags { gap: 6px; }
}

@media (max-width: 400px) {
  .exp-nav { padding: 1rem 1.4rem; }
  .exp-nav-logo .logo-img { height: 4.4rem; }
}

/* ── Capability queries ───────────────────────────────── */
@media (hover: none), (pointer: coarse) {
  .exp-page { cursor: auto; }
  .exp-cur-dot, .exp-cur-ring { display: none; }
  .exp-sh-cell, .exp-tn-vid, .exp-gcard { cursor: default; }
}

@media (prefers-reduced-motion: reduce) {
  .exp-scanlines, .exp-scan-beam, .exp-particles { display: none; }
  .exp-tn-ring { animation: none; }
  .exp-orbit-ring { animation: none; }
  .exp-hero-scroll-box::after { animation: none; }
  .exp-pre-hex::before, .exp-pre-hex::after { animation: none; }
  .exp-hero-tag, .exp-hero-logo, .exp-hero-sep,
  .exp-hero-name, .exp-hero-sub, .exp-hero-scroll { animation: none; opacity: 1; }
  .exp-hero-sep { width: min(460px, 65vw); }
  .exp-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Mobile "Back to Portfolio" button ────────────────── */
.exp-mobile-back {
  display: none;
  text-decoration: none;
  color: var(--cyan, #00e5ff);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .exp-mobile-back {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 1rem 2.4rem;
    background: rgba(5, 9, 16, 0.85);
    border: 1px solid rgba(var(--cyan-rgb), 0.25);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.2s, border-color 0.2s;
  }
  .exp-mobile-back:hover,
  .exp-mobile-back:active {
    background: rgba(var(--cyan-rgb), 0.12);
    border-color: rgba(var(--cyan-rgb), 0.5);
  }
}

[dir="rtl"] .exp-mobile-back .exp-back-arrow {
  transform: scaleX(-1);
}

/* ── RTL overrides ────────────────────────────────────── */
[dir="rtl"] .exp-dots { right: auto; left: 20px; }
[dir="rtl"] .exp-nav-back .exp-back-arrow { transform: scaleX(-1); }
[dir="rtl"] .exp-nav-back:hover .exp-back-arrow { transform: scaleX(-1) translateX(4px); }
[dir="rtl"] .exp-sh-cell::before { left: auto; right: 16px; }
[dir="rtl"] .exp-sh-label { left: auto; right: 18px; }
[dir="rtl"] .exp-gcard::before { left: auto; right: 16px; }
[dir="rtl"] .exp-gcard-info { left: auto; right: 18px; text-align: right; }
[dir="rtl"] .exp-cm-content { text-align: center; }
[dir="rtl"] .exp-ft-copy { direction: ltr; }

/* Early FOUC prevention */
html.lang-he-early body { font-family: 'Heebo', sans-serif; }

/* Hebrew font overrides */
.lang-he .exp-hero-tag,
.lang-he .exp-hero-sub,
.lang-he .exp-hero-scroll span,
.lang-he .exp-sh-head p,
.lang-he .exp-gallery-head p,
.lang-he .exp-gcard-info span,
.lang-he .exp-strips-cta p,
.lang-he .exp-ft-title,
.lang-he .exp-ft-copy,
.lang-he .exp-nav-back,
.lang-he .exp-mobile-back {
  font-family: 'Heebo', sans-serif;
}
.lang-he .exp-hero-logo,
.lang-he .exp-hero-name,
.lang-he .exp-sh-head h2,
.lang-he .exp-gallery-head h2,
.lang-he .exp-gcard-info h3,
.lang-he .exp-sp-name,
.lang-he .exp-strips-cta h3,
.lang-he .exp-ft-logo,
.lang-he .exp-ft-name,
.lang-he .exp-cm-content blockquote {
  font-family: 'Rubik', var(--font-display-alt), sans-serif;
}
