/* Synergy Concepts Hub — Creative Technology Ecosystem Design System */

:root {
  /* Brand palette */
  --sch-red: #E53935;
  --sch-green: #388E3C;
  --sch-blue: #0EA5E9;
  --sch-orange: #F59E0B;
  --sch-dark: #0B0F19;
  --sch-white: #F8FAFC;

  /* Premium cinematic tokens */
  --sch-black: #0B0F19;
  --sch-charcoal: #111827;
  --sch-navy: #0B0F19;
  --sch-navy-light: #1E293B;
  --sch-surface: #1E293B;
  --sch-surface-rgb: 11, 15, 25;
  --sch-white-muted: #94A3B8;
  --sch-white-subtle: rgba(148, 163, 184, 0.75);
  --sch-blue-glow: rgba(14, 165, 233, 0.45);
  --sch-blue-soft: rgba(14, 165, 233, 0.14);
  --sch-orange-soft: rgba(245, 158, 11, 0.12);
  --sch-green-soft: rgba(56, 142, 60, 0.12);
  --sch-red-soft: rgba(229, 57, 53, 0.12);
  --sch-glass: rgba(30, 41, 59, 0.35);
  --sch-glass-border: rgba(148, 163, 184, 0.12);
  --sch-glass-hover: rgba(30, 41, 59, 0.55);
  --sch-radius: 16px;
  --sch-radius-lg: 24px;
  --sch-radius-xl: 32px;
  --sch-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sch-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --sch-header-h: 72px;
  --sch-safe-top: env(safe-area-inset-top, 0px);
  --sch-safe-bottom: env(safe-area-inset-bottom, 0px);
  --sch-safe-left: env(safe-area-inset-left, 0px);
  --sch-safe-right: env(safe-area-inset-right, 0px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sch-header-h) + var(--sch-safe-top));
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--sch-black);
  color: var(--sch-white);
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Minimum 44px touch targets (WCAG) */
.touch-target {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.menu-open { overflow: hidden; }

#main-content,
.hero-section,
.showcase-section,
.systems-showcase {
  max-width: 100%;
  overflow-x: clip;
}

.hero-visual {
  overflow: hidden;
  max-width: 100%;
}

.max-w-content {
  max-width: min(1320px, 100%);
}

.font-display {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.04em;
}

.font-mono-label {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  letter-spacing: 0.02em;
}

/* ─── Ambient Background ─── */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 15% -5%, rgba(14, 165, 233, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 85% 15%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 45% 30% at 70% 90%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 30% 25% at 50% 50%, rgba(14, 165, 233, 0.03) 0%, transparent 60%),
    var(--sch-black);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, black 15%, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb--primary {
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  top: 10%;
  right: -5%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, transparent 68%);
  animation: orbDrift 14s ease-in-out infinite;
}

.hero-orb--secondary {
  width: min(420px, 60vw);
  height: min(420px, 60vw);
  bottom: 5%;
  left: 35%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  animation: orbDrift 18s ease-in-out infinite reverse;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(-24px, 16px) scale(1.08); opacity: 1; }
}

/* ─── Glass Components ─── */
.glass {
  background: var(--sch-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--sch-glass-border);
}

.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--sch-glass-border);
  border-radius: var(--sch-radius);
  transition: transform 0.5s var(--sch-ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 48px rgba(14, 165, 233, 0.08);
  transform: translateY(-2px);
}

/* ─── Typography ─── */
.text-gradient-blue {
  background: linear-gradient(135deg, #F8FAFC 0%, var(--sch-blue) 55%, var(--sch-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--sch-orange) 0%, #fcd34d 50%, var(--sch-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sch-blue);
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-title--xl {
  font-size: clamp(2.75rem, 8.5vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.section-immersive {
  padding-top: clamp(5rem, 12vh, 9rem);
  padding-bottom: clamp(5rem, 12vh, 9rem);
}

.section-compact {
  padding-top: clamp(3rem, 8vh, 5rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

.section-pause {
  padding-top: clamp(6rem, 14vh, 10rem);
  padding-bottom: clamp(6rem, 14vh, 10rem);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.4s var(--sch-ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--sch-blue);
  color: white;
  box-shadow: 0 0 0 0 var(--sch-blue-glow);
}

.btn-primary:hover {
  background: #0284c7;
  box-shadow: 0 8px 40px var(--sch-blue-glow), 0 0 0 1px rgba(14, 165, 233, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--sch-white);
  border: 1px solid var(--sch-glass-border);
}

.btn-ghost:hover {
  background: var(--sch-glass-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-magnetic { transition: transform 0.3s var(--sch-ease); }

button,
a.btn,
.media-showcase,
.film-album-card,
a.showcase-card,
.client-card[href],
.nav-link {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ─── Header ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: var(--sch-safe-top);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav > .max-w-content {
  position: relative;
  z-index: 1;
  height: var(--sch-header-h);
}

.site-nav.scrolled {
  background: rgba(var(--sch-surface-rgb), 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sch-glass-border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  max-height: 2px;
  background: linear-gradient(90deg, var(--sch-blue) 0%, rgba(14, 165, 233, 0.6) 40%, var(--sch-orange) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  z-index: 2;
  pointer-events: none;
}

.site-logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-logo--footer {
  width: 32px;
  height: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--sch-white-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover { color: var(--sch-white); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sch-blue);
  transition: width 0.3s var(--sch-ease);
}

.nav-link:hover::after { width: 100%; }

/* ─── Hero ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--sch-header-h) + var(--sch-safe-top));
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: min(720px, 95vw);
  height: min(720px, 95vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35) 0%, transparent 68%);
  filter: blur(90px);
  opacity: 0.55;
  animation: heroGlowPulse 10s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.12); opacity: 0.7; }
}

.hero-headline {
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-subline {
  font-size: clamp(1.0625rem, 2.2vw, 1.375rem);
  color: var(--sch-white-muted);
  letter-spacing: 0.04em;
  max-width: 28rem;
  line-height: 1.5;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: clamp(480px, 58vh, 620px);
  perspective: 1400px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% 5%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.hero-visual-stage {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Floating UI Panels */
.ui-panel {
  position: absolute;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.92) 0%, rgba(11, 15, 25, 0.96) 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(14, 165, 233, 0.06),
    inset 0 1px 0 rgba(248, 250, 252, 0.08);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ui-panel-main {
  width: min(380px, 92%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: floatMain 9s ease-in-out infinite;
}

.ui-panel-portal {
  width: 200px;
  top: 62%;
  right: -2%;
  z-index: 5;
  animation: floatPortal 7.5s ease-in-out infinite;
}

@keyframes floatPortal {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.ui-panel-secondary {
  width: 220px;
  z-index: 2;
  animation: floatSecondary 7s ease-in-out infinite;
}

.ui-panel-tertiary {
  width: 180px;
  z-index: 1;
  animation: floatTertiary 9s ease-in-out infinite;
}

.ui-panel-accent {
  width: 160px;
  z-index: 4;
  animation: floatAccent 6s ease-in-out infinite;
}

@keyframes floatMain {
  0%, 100% { transform: translate(-50%, -50%) rotateX(2deg) rotateY(-3deg); }
  50% { transform: translate(-50%, calc(-50% - 12px)) rotateX(-1deg) rotateY(2deg); }
}

@keyframes floatSecondary {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes floatTertiary {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes floatAccent {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ui-panel-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ui-dot-red { background: #ff5f57; }
.ui-dot-yellow { background: #febc2e; }
.ui-dot-green { background: #28c840; }

/* Mini chart bars */
.chart-bar {
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--sch-blue) 0%, rgba(0, 102, 255, 0.4) 100%);
  animation: chartGrow 2s var(--sch-ease) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

@keyframes chartGrow {
  to { transform: scaleY(1); }
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }

/* Animated line chart */
.line-chart-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 2.5s var(--sch-ease) forwards 0.5s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.metric-value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--sch-ease), transform 0.8s var(--sch-ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--sch-ease), transform 0.8s var(--sch-ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--sch-ease), transform 0.8s var(--sch-ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--sch-ease), transform 0.8s var(--sch-ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ─── Systems Grid ─── */
.system-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
}

.system-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sch-blue-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.system-card:hover::before { opacity: 1; }

.system-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sch-blue-soft);
  color: var(--sch-blue);
  margin-bottom: 1.25rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sch-green);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(56, 142, 60, 0); }
}

/* Dashboard preview in systems section */
.systems-showcase {
  position: relative;
}

.systems-showcase::before {
  content: '';
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(ellipse at 60% 40%, rgba(14, 165, 233, 0.15) 0%, transparent 65%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.dashboard-preview {
  position: relative;
  z-index: 1;
  border-radius: var(--sch-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(165deg, rgba(17, 24, 39, 0.98) 0%, rgba(11, 15, 25, 1) 100%);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(14, 165, 233, 0.08),
    inset 0 1px 0 rgba(248, 250, 252, 0.06);
}

.dashboard-float-card {
  position: absolute;
  z-index: 2;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  animation: floatSecondary 8s ease-in-out infinite;
}

.dashboard-float-card--workflow {
  top: -8%;
  right: 4%;
  width: 168px;
  animation-delay: -2s;
}

.dashboard-float-card--mobile {
  bottom: 6%;
  left: -4%;
  width: 152px;
  animation-delay: -4s;
}

.ecosystem-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ecosystem-bento {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }

  .ecosystem-bento .bento-featured {
    grid-row: span 2;
    min-height: 280px;
  }

  .ecosystem-bento .bento-wide {
    grid-column: 1 / -1;
  }
}

.bento-featured {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border-radius: var(--sch-radius-lg);
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.12) 0%, rgba(30, 41, 59, 0.4) 45%, rgba(11, 15, 25, 0.8) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  position: relative;
  overflow: hidden;
}

.bento-featured::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.bento-featured h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.dashboard-sidebar {
  width: 56px;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid var(--sch-glass-border);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.sidebar-item.active {
  background: var(--sch-blue-soft);
  border: 1px solid rgba(0, 102, 255, 0.3);
}

/* ─── Media Section ─── */
#media {
  overflow-x: clip;
  max-width: 100%;
}

.media-showcase {
  position: relative;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.media-showcase::after {
  content: 'Explore';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--sch-white);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s var(--sch-ease);
  z-index: 2;
  pointer-events: none;
}

.media-showcase:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.media-showcase--academy::after {
  content: 'View Showcase';
}

.media-showcase--academy {
  aspect-ratio: 16 / 7;
  max-height: 220px;
}

.showcase-pillars + .media-showcase--academy {
  display: none;
}

.media-showcase__visual {
  position: absolute;
  inset: 0;
}

.media-showcase__visual--academy {
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(56, 142, 60, 0.15) 50%, rgba(11, 15, 25, 0.95) 100%);
}

.media-showcase__visual--academy img {
  opacity: 0.55;
}

.media-showcase--academy .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.media-showcase--academy .media-tag {
  color: var(--sch-green);
  border-color: rgba(56, 142, 60, 0.35);
}

body.album-open { overflow: hidden; }

/* ─── Album Viewer ─── */
.album-view {
  background: rgba(var(--sch-surface-rgb), 0.98);
  backdrop-filter: blur(24px);
}

.album-view-header {
  border-bottom: 1px solid var(--sch-glass-border);
}

.album-main-stage {
  min-height: 0;
}

.album-main-stage img {
  max-height: calc(100vh - 220px);
  max-width: 100%;
  object-fit: contain;
}

.album-thumb {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: all 0.3s ease;
}

.album-thumb.active,
.album-thumb:hover {
  opacity: 1;
  border-color: var(--sch-orange);
  transform: scale(1.05);
}

.album-thumbs-strip {
  scrollbar-width: none;
}

.album-thumbs-strip::-webkit-scrollbar { display: none; }

.sub-album-card,
.nested-sub-album-card {
  background: var(--sch-glass);
  border: 1px solid var(--sch-glass-border);
  border-radius: var(--sch-radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: transform 0.4s var(--sch-ease), border-color 0.3s ease;
}

.sub-album-card:hover,
.nested-sub-album-card:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 136, 209, 0.35);
}

/* ─── Film Production Album Picker ─── */
.album-view--film-picker .album-main-stage {
  align-items: stretch;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.album-view--film-picker #mainImageContainer,
.main-image-container--film-picker {
  display: block !important;
  width: 100%;
  height: auto !important;
  min-height: 0;
  align-items: unset !important;
  justify-content: unset !important;
}

.album-view--film-picker #albumPrev,
.album-view--film-picker #albumNext {
  display: none;
}

.album-view-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.album-view-breadcrumb__section {
  color: var(--sch-blue);
  font-weight: 500;
}

.album-view-breadcrumb__sep {
  opacity: 0.35;
}

.album-view-breadcrumb__current {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.film-album-picker {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 3rem;
}

.film-album-picker__hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.film-album-picker__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sch-orange);
  margin-bottom: 0.75rem;
}

.film-album-picker__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sch-white);
}

.film-album-picker__subtitle {
  margin-top: 0.75rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.film-album-group {
  margin-bottom: 2.5rem;
}

.film-album-group__head {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.film-album-group__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sch-white);
}

.film-album-group__desc {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.film-album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .film-album-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
  .film-album-grid { grid-template-columns: repeat(4, 1fr); }
}

.film-album-card {
  cursor: pointer;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--sch-ease), border-color 0.35s ease, box-shadow 0.45s ease;
}

.film-album-card:focus-visible {
  outline: 2px solid var(--sch-blue);
  outline-offset: 3px;
}

.film-album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.film-album-card--blue:hover { border-color: rgba(2, 136, 209, 0.45); }
.film-album-card--orange:hover { border-color: rgba(249, 168, 37, 0.45); }
.film-album-card--green:hover { border-color: rgba(56, 142, 60, 0.45); }
.film-album-card--red:hover { border-color: rgba(229, 57, 53, 0.45); }

.film-album-card--empty {
  opacity: 0.65;
}

.film-album-card--empty:hover {
  transform: none;
  box-shadow: none;
  cursor: default;
}

.film-album-card__frame--soon {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.film-album-card__thumb--placeholder {
  background: linear-gradient(
    135deg,
    rgba(2, 136, 209, 0.12) 0%,
    rgba(var(--sch-surface-rgb), 0.9) 45%,
    rgba(249, 168, 37, 0.08) 100%
  );
}

.film-album-card--empty .film-album-card__play {
  display: none;
}

.film-album-card--empty:hover .film-album-card__thumb {
  transform: none;
}

.film-album-card__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.film-album-card__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--sch-ease);
}

.film-album-card:hover .film-album-card__thumb {
  transform: scale(1.08);
}

.film-album-card__grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.film-album-card__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.film-album-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.4s var(--sch-ease);
  backdrop-filter: blur(8px);
}

.film-album-card:hover .film-album-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.film-album-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.film-album-card__count {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.85);
}

.film-album-card__soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.film-album-card__body {
  padding: 1rem 1rem 1.125rem;
}

.film-album-card__name {
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sch-white);
  line-height: 1.3;
}

.film-album-card__tagline {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── Film Gallery Viewer ─── */
.album-view--film-gallery {
  background: radial-gradient(ellipse at 50% 0%, rgba(2, 136, 209, 0.08) 0%, transparent 55%),
    rgba(18, 18, 18, 0.98);
}

.album-view--film-gallery .album-main-stage {
  background: #0a0a0a;
}

.film-gallery-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: calc(100vh - 220px);
}

.film-gallery-letterbox {
  width: min(100%, 960px);
  height: 12px;
  background: #000;
  flex-shrink: 0;
}

.film-gallery-frame {
  position: relative;
  width: min(100%, 960px);
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.film-gallery-image {
  max-width: 100%;
  max-height: calc(100vh - 260px);
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
}

.film-gallery-play-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.film-gallery-frame:hover .film-gallery-play-hint {
  opacity: 1;
}

.film-gallery-hud {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 28rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--sch-radius);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(var(--sch-surface-rgb), 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.film-gallery-hud__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sch-orange);
  margin-bottom: 0.35rem;
}

.film-gallery-hud__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sch-white);
}

.film-gallery-hud__desc {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.film-gallery-hud__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.film-gallery-hud__count {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  font-variant-numeric: tabular-nums;
}

.film-gallery-hud__autoplay {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.film-gallery-hud__autoplay:hover {
  color: var(--sch-white);
  background: rgba(255, 255, 255, 0.08);
}

.film-album-thumb {
  width: 5.5rem;
  height: 3.25rem;
  border-radius: 0.5rem;
}

.album-view--film-gallery #albumThumbBar {
  background: rgba(0, 0, 0, 0.35);
}

.lightbox-view {
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(12px);
}

.lightbox-view:not(.lightbox-view--cinematic) img {
  max-height: 92vh;
  max-width: 92vw;
  object-fit: contain;
}

.media-showcase img,
.media-showcase video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--sch-ease);
}

.media-showcase:hover img,
.media-showcase:hover video {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 3vw, 2rem);
}

.media-tag {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sch-white);
  width: fit-content;
}

.cinematic-strip {
  width: 100%;
  min-width: 0;
}

.cinematic-item {
  min-width: 0;
  max-width: 100%;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--sch-ease);
  cursor: pointer;
}

.play-btn:hover {
  background: var(--sch-blue);
  border-color: var(--sch-blue);
  transform: scale(1.08);
}

/* ─── Academy ─── */
.academy-path {
  position: relative;
  padding-left: 2rem;
}

.academy-path::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sch-blue) 0%, var(--sch-orange) 50%, transparent 100%);
}

.path-node {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sch-navy);
  border: 2px solid var(--sch-blue);
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring circle {
  transition: stroke-dashoffset 1.5s var(--sch-ease);
}

.course-card {
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--sch-ease);
}

.course-card:hover { transform: translateY(-4px); }

.course-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}

.course-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sch-blue), var(--sch-orange));
  border-radius: 9999px;
  transition: width 1.2s var(--sch-ease);
}

/* ─── Digital Showcase (Clients / Portfolio) ─── */
.showcase-section {
  position: relative;
  overflow: hidden;
}

.showcase-section-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.showcase-filters::-webkit-scrollbar { display: none; }

.showcase-filter {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sch-white-muted);
  background: var(--sch-glass);
  border: 1px solid var(--sch-glass-border);
  border-radius: 9999px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.showcase-filter:hover {
  color: var(--sch-white);
  border-color: rgba(14, 165, 233, 0.3);
}

.showcase-filter.is-active {
  color: var(--sch-white);
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.15);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 100%;
  grid-auto-flow: dense;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .showcase-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.showcase-card {
  position: relative;
  display: block;
  border-radius: var(--sch-radius-lg);
  border: 1px solid var(--sch-glass-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 220px;
  transition: transform 0.5s var(--sch-ease), box-shadow 0.5s var(--sch-ease), border-color 0.4s ease;
}

a.showcase-card { cursor: pointer; }

.showcase-card.is-hidden {
  display: none;
}

.showcase-card--featured {
  min-height: 320px;
}

@media (min-width: 768px) {
  .showcase-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
  }

  .showcase-card--medium {
    grid-column: span 2;
    min-height: 260px;
  }

  .showcase-card--small {
    grid-column: span 1;
    min-height: 220px;
  }
}

@media (min-width: 1200px) {
  .showcase-card--featured {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 440px;
  }

  .showcase-card--medium {
    grid-column: span 3;
    min-height: 280px;
  }

  .showcase-card--small {
    grid-column: span 2;
    min-height: 240px;
  }
}

.showcase-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(1.2);
  transform: scale(1.15);
  opacity: 0.45;
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.6s var(--sch-ease);
}

.showcase-card__bg--fintech {
  background-image:
    linear-gradient(135deg, rgba(14, 165, 233, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.25) 0%, transparent 45%);
}

.showcase-card__bg--travel {
  background-image:
    linear-gradient(160deg, rgba(229, 57, 53, 0.2) 0%, transparent 55%),
    url('https://res.cloudinary.com/djr43ohnq/image/upload/f_auto,q_auto:eco,w_400,e_blur:800/v1759536578/2149729052_dznia5.jpg');
}

.showcase-card__bg--corporate {
  background-image: linear-gradient(145deg, rgba(14, 165, 233, 0.25) 0%, rgba(11, 15, 25, 0.9) 100%);
}

.showcase-card__bg--booking {
  background-image: linear-gradient(160deg, rgba(14, 165, 233, 0.2) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.showcase-card__bg--media {
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(11, 15, 25, 0.85) 100%),
    url('https://res.cloudinary.com/djr43ohnq/image/upload/f_auto,q_auto:eco,w_400,e_blur:800/v1759536578/2149729052_dznia5.jpg');
}

.showcase-card__bg--gallery {
  background-image:
    linear-gradient(160deg, rgba(229, 57, 53, 0.15) 0%, transparent 50%),
    url('https://res.cloudinary.com/djr43ohnq/image/upload/f_auto,q_auto:eco,w_400,e_blur:800/v1759536582/18697_q1ptuz.jpg');
}

.showcase-card__bg--industrial {
  background-image: linear-gradient(145deg, rgba(56, 142, 60, 0.2) 0%, rgba(30, 41, 59, 0.85) 100%);
}

.showcase-card__bg--cinema {
  background-image:
    linear-gradient(180deg, rgba(229, 57, 53, 0.12) 0%, rgba(11, 15, 25, 0.9) 100%),
    url('https://res.cloudinary.com/djr43ohnq/image/upload/f_auto,q_auto:eco,w_400,e_blur:800/v1759536578/2149729052_dznia5.jpg');
}

.showcase-card__bg--academy {
  background-image: linear-gradient(145deg, rgba(245, 158, 11, 0.2) 0%, rgba(14, 165, 233, 0.1) 50%, rgba(11, 15, 25, 0.9) 100%);
}

.showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 25, 0.35) 0%,
    rgba(11, 15, 25, 0.75) 45%,
    rgba(11, 15, 25, 0.95) 100%
  );
  transition: background 0.5s ease;
}

.showcase-card__content,
.showcase-card__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.showcase-card__inner {
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .showcase-card--featured .showcase-card__inner {
    flex-direction: row;
    align-items: stretch;
    padding: 2rem;
  }
}

.showcase-card__copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.showcase-card__logo {
  margin-bottom: 1rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  background: transparent;
}

.showcase-card__logo img {
  max-height: 72px;
  max-width: min(220px, 90%);
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  transition: transform 0.45s var(--sch-ease);
}

.showcase-card--featured .showcase-card__logo img {
  max-height: 80px;
  max-width: min(240px, 92%);
}

.showcase-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--sch-white);
}

.showcase-card--featured .showcase-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.showcase-tag {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.15);
  color: var(--sch-white-muted);
}

.showcase-card__desc {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--sch-white-muted);
  flex: 1;
}

.showcase-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

.showcase-metric {
  font-size: 0.75rem;
  color: var(--sch-white-muted);
}

.showcase-metric strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sch-white);
  letter-spacing: -0.02em;
}

.showcase-card__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
}

.showcase-card__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sch-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.showcase-card__link:hover { color: var(--sch-white); }

.showcase-card__link--secondary {
  color: var(--sch-white-muted);
}

.showcase-card__link--secondary:hover {
  color: var(--sch-white);
}

/* Ambient glows by project type */
.showcase-card.glow-blue {
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.08);
}

.showcase-card.glow-blue::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 60px rgba(14, 165, 233, 0.08);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-card.glow-red::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 50px rgba(229, 57, 53, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-card.glow-gold::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-card.glow-green::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 50px rgba(56, 142, 60, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
  }

  .showcase-card:hover::after { opacity: 1; }

  .showcase-card:hover .showcase-card__bg {
    opacity: 0.65;
    filter: blur(20px) saturate(1.3);
  }

  .showcase-card:hover .showcase-card__overlay {
    background: linear-gradient(
      180deg,
      rgba(11, 15, 25, 0.25) 0%,
      rgba(11, 15, 25, 0.7) 50%,
      rgba(11, 15, 25, 0.92) 100%
    );
  }

  .showcase-card:hover .showcase-card__logo img {
    transform: scale(1.05);
  }
}

/* Featured QuickCredit UI panel */
.showcase-featured-ui {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  min-height: 180px;
}

@media (min-width: 1024px) {
  .showcase-featured-ui {
    width: 42%;
    max-width: 320px;
    min-height: 240px;
  }
}

@media (max-width: 1023px) {
  .showcase-card--featured .showcase-featured-ui {
    display: none;
  }

  .showcase-card--featured .showcase-card__inner {
    flex-direction: column;
  }
}

.showcase-ui-panel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(280px, 100%);
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.95) 0%, rgba(11, 15, 25, 0.98) 100%);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(14, 165, 233, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: floatMain 9s ease-in-out infinite;
}

.showcase-ui-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-ui-float {
  position: absolute;
  bottom: 8%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
  animation: floatSecondary 7s ease-in-out infinite;
}

/* ─── Academy Minimal ─── */
.academy-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--sch-radius-lg);
  border: 1px solid var(--sch-glass-border);
  background: linear-gradient(135deg, rgba(2, 136, 209, 0.06) 0%, rgba(249, 168, 37, 0.04) 50%, rgba(56, 142, 60, 0.03) 100%);
}

.academy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.academy-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--sch-glass-border);
  color: var(--sch-white-muted);
}

.academy-tag.tag-blue { border-color: rgba(2, 136, 209, 0.3); color: var(--sch-blue); }
.academy-tag.tag-orange { border-color: rgba(249, 168, 37, 0.3); color: var(--sch-orange); }
.academy-tag.tag-green { border-color: rgba(56, 142, 60, 0.3); color: var(--sch-green); }
.academy-tag.tag-gold { border-color: rgba(245, 158, 11, 0.35); color: #f59e0b; }

.btn-external::after {
  content: '↗';
  font-size: 0.875em;
  opacity: 0.7;
}

/* ─── Case Studies ─── */
.case-study {
  display: grid;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--sch-glass-border);
}

.case-study:last-child { border-bottom: none; }

.case-metric {
  text-align: center;
  padding: 1.5rem;
}

.case-metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sch-blue);
  line-height: 1;
}

.case-metric-label {
  font-size: 0.8125rem;
  color: var(--sch-white-subtle);
  margin-top: 0.5rem;
}

.timeline {
  display: flex;
  gap: 0;
  position: relative;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 2rem;
}

.timeline-step::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sch-glass-border);
}

.timeline-step:first-child::before { left: 50%; }
.timeline-step:last-child::before { right: 50%; }

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sch-navy);
  border: 2px solid var(--sch-blue);
  z-index: 1;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-radius: var(--sch-radius);
  overflow: hidden;
}

.ba-panel {
  padding: 1.5rem;
  border-radius: var(--sch-radius);
  border: 1px solid var(--sch-glass-border);
}

.ba-panel.before { background: rgba(255, 255, 255, 0.02); }
.ba-panel.after {
  background: var(--sch-blue-soft);
  border-color: rgba(0, 102, 255, 0.2);
}

/* ─── Stats Counter ─── */
.stat-block {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Ecosystem Pill ─── */
.ecosystem-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--sch-glass);
  border: 1px solid var(--sch-glass-border);
  color: var(--sch-white-muted);
  transition: all 0.3s ease;
}

.ecosystem-pill:hover {
  border-color: rgba(0, 102, 255, 0.3);
  color: var(--sch-white);
}

.ecosystem-pill .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sch-blue);
}

/* ─── Contact / Footer ─── */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sch-blue-glow) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.3;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--sch-glass-border);
  border-radius: 12px;
  color: var(--sch-white);
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: rgba(0, 102, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-input::placeholder { color: var(--sch-white-subtle); }

select.form-input {
  color-scheme: dark;
  cursor: pointer;
  padding-right: 2.75rem;
  background-color: rgba(255, 255, 255, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255%2C255%2C255%2C0.45)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  background-size: 1rem;
}

select.form-input:invalid {
  color: var(--sch-white-subtle);
}

select.form-input option {
  background-color: var(--sch-navy);
  color: var(--sch-white);
}

select.form-input option[value=""] {
  color: var(--sch-white-subtle);
}

.form-select {
  position: relative;
}

.form-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  cursor: pointer;
}

.form-select-value.is-placeholder {
  color: var(--sch-white-subtle);
}

.form-select-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.25s var(--sch-ease), color 0.25s ease;
}

.form-select.is-open .form-select-chevron {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.7);
}

.form-select-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 50;
  margin: 0;
  padding: 0.375rem;
  list-style: none;
  background: var(--sch-navy);
  border: 1px solid var(--sch-glass-border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  max-height: 15rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.25s var(--sch-ease);
}

.form-select.is-open .form-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-select-option {
  padding: 0.6875rem 0.875rem;
  border-radius: 8px;
  color: var(--sch-white-muted);
  font-size: 0.9375rem;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.form-select-option:hover,
.form-select-option:focus-visible {
  background: var(--sch-glass-hover);
  color: var(--sch-white);
  outline: none;
}

.form-select-option[aria-selected="true"] {
  background: var(--sch-blue-soft);
  color: var(--sch-white);
}

/* ─── Cinematic Fullscreen Navigation ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--sch-black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--sch-ease), visibility 0.55s ease;
  overflow: hidden;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

/* Atmospheric layers */
.menu-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.menu-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(14, 165, 233, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 35% 30% at 60% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 45%);
  transition: opacity 0.8s var(--sch-ease);
}

.menu-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
  animation: menuGridDrift 40s linear infinite;
}

@keyframes menuGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(64px, 64px); }
}

.menu-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.menu-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transition: transform 1.2s var(--sch-ease), opacity 0.8s ease;
}

.menu-glow--blue {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  top: 10%;
  right: 5%;
  background: rgba(14, 165, 233, 0.15);
  animation: menuGlowPulse 8s ease-in-out infinite;
}

.menu-glow--amber {
  width: 30vw;
  height: 30vw;
  max-width: 400px;
  max-height: 400px;
  bottom: 15%;
  left: 10%;
  background: rgba(245, 158, 11, 0.06);
  animation: menuGlowPulse 10s ease-in-out infinite reverse;
}

@keyframes menuGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.menu-data-streams {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 48px,
      rgba(14, 165, 233, 0.025) 48px,
      rgba(14, 165, 233, 0.025) 49px
    );
  animation: menuStreamFlow 20s linear infinite;
  opacity: 0.55;
}

.menu-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(14, 165, 233, 0.012) 3px,
    rgba(14, 165, 233, 0.012) 4px
  );
  animation: menuScanlinesDrift 12s linear infinite;
  opacity: 0.35;
  mix-blend-mode: screen;
}

@keyframes menuScanlinesDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

.menu-hologram-ring {
  position: absolute;
  top: 50%;
  right: 8%;
  width: min(70vw, 680px);
  height: min(70vw, 680px);
  transform: translate(15%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.06);
  box-shadow:
    0 0 80px rgba(14, 165, 233, 0.04),
    inset 0 0 60px rgba(14, 165, 233, 0.03);
  animation: menuHologramRing 20s ease-in-out infinite;
  opacity: 0.5;
}

.menu-hologram-ring::before,
.menu-hologram-ring::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.04);
}

.menu-hologram-ring::after {
  inset: 28%;
  border-color: rgba(245, 158, 11, 0.03);
}

@keyframes menuHologramRing {
  0%, 100% { transform: translate(15%, -50%) scale(1) rotate(0deg); opacity: 0.4; }
  50% { transform: translate(12%, -52%) scale(1.04) rotate(3deg); opacity: 0.65; }
}

@keyframes menuStreamFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(49px); }
}

/* ─── Cinematic Ghost Typography ─── */
.menu-ghost-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  transition: transform 0.45s var(--sch-ease);
}

.menu-ghost-word {
  position: absolute;
  right: -8%;
  top: 46%;
  transform: translateY(-50%) scale(0.94);
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  font-size: clamp(11rem, 32vw, 28rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.78;
  white-space: nowrap;
  user-select: none;
  color: rgba(248, 250, 252, 0.018);
  text-shadow:
    0 0 120px rgba(14, 165, 233, 0.12),
    0 0 40px rgba(14, 165, 233, 0.06);
  -webkit-text-stroke: 1px rgba(148, 163, 184, 0.04);
  filter: blur(2px);
  mask-image:
    linear-gradient(105deg, transparent 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.25) 55%, transparent 88%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.15) 85%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(105deg, transparent 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.25) 55%, transparent 88%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 0.15) 85%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  opacity: 0;
  transition:
    opacity 0.9s var(--sch-ease),
    transform 1.1s var(--sch-ease),
    filter 0.9s ease;
  will-change: opacity, transform, filter;
}

.menu-ghost-word.is-active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  filter: blur(1.5px);
  animation: menuGhostDrift 18s ease-in-out infinite;
}

.menu-ghost-word.is-exiting {
  opacity: 0;
  transform: translateY(-54%) scale(1.08);
  filter: blur(12px);
  animation: none;
}

.menu-ghost-word.is-entering {
  opacity: 0;
  transform: translateY(-42%) scale(0.88);
  filter: blur(10px);
}

.menu-ghost-word.is-entering.is-active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  filter: blur(1.5px);
  animation: menuGhostDrift 18s ease-in-out infinite;
}

@keyframes menuGhostDrift {
  0%, 100% {
    transform: translateY(-50%) scale(1) translateX(0);
    opacity: 0.85;
  }
  33% {
    transform: translateY(-51.5%) scale(1.015) translateX(-12px);
    opacity: 1;
  }
  66% {
    transform: translateY(-48.5%) scale(0.995) translateX(8px);
    opacity: 0.75;
  }
}

.mobile-menu[data-active-scene="media"] .menu-ghost-word.is-active { color: rgba(248, 250, 252, 0.022); }
.mobile-menu[data-active-scene="academy"] .menu-ghost-word.is-active { color: rgba(248, 250, 252, 0.02); text-shadow: 0 0 100px rgba(56, 142, 60, 0.08); }
.mobile-menu[data-active-scene="contact"] .menu-ghost-word.is-active { color: rgba(14, 165, 233, 0.025); }
.mobile-menu[data-active-scene="case-studies"] .menu-ghost-word.is-active { letter-spacing: -0.04em; }

@media (max-width: 767px) {
  .menu-ghost-word {
    right: -20%;
    font-size: clamp(7rem, 40vw, 12rem);
    top: 38%;
  }
}

.menu-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 30%, rgba(11, 15, 25, 0.65) 100%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.3) 0%, transparent 20%, transparent 80%, rgba(11, 15, 25, 0.5) 100%);
}

/* Scene atmosphere shifts */
.mobile-menu[data-active-scene="systems"] .menu-glow--blue { opacity: 1; }
.mobile-menu[data-active-scene="media"] .menu-glow--blue { background: rgba(14, 165, 233, 0.2); transform: translate(-5%, 5%); }
.mobile-menu[data-active-scene="academy"] .menu-glow--amber { opacity: 1; transform: scale(1.15); }
.mobile-menu[data-active-scene="contact"] .menu-glow--blue { background: rgba(14, 165, 233, 0.25); }
.mobile-menu[data-active-scene="case-studies"] .menu-glow--amber { opacity: 0.8; }

/* Premium close button */
.menu-close {
  position: absolute;
  top: calc(1.25rem + var(--sch-safe-top));
  right: calc(1.25rem + var(--sch-safe-right));
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.15);
  color: var(--sch-white);
  cursor: pointer;
  transition: transform 0.45s var(--sch-ease), box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
  opacity: 0;
  transform: scale(0.85) rotate(-90deg);
}

.mobile-menu.open .menu-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.25s;
}

.menu-close:hover {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 0 32px rgba(14, 165, 233, 0.2), inset 0 1px 0 rgba(248, 250, 252, 0.08);
  transform: scale(1.05) rotate(90deg);
}

.menu-close__ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-close:hover .menu-close__ring {
  opacity: 1;
  animation: menuCloseRing 2s ease-in-out infinite;
}

@keyframes menuCloseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.2; }
}

.menu-close__icon {
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--sch-ease);
}

/* Panel layout */
.mobile-menu-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100dvh;
  padding-top: calc(4.5rem + var(--sch-safe-top));
  padding-bottom: calc(5rem + var(--sch-safe-bottom));
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
  transition: opacity 0.6s var(--sch-ease) 0.1s, transform 0.65s var(--sch-ease) 0.1s, filter 0.6s ease 0.1s;
}

.mobile-menu.open .mobile-menu-panel {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.menu-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: min(1400px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .menu-layout {
    grid-template-columns: minmax(220px, 32%) 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    max-width: min(1680px, 100%);
  }
}

@media (min-width: 1024px) {
  .menu-layout {
    grid-template-columns: minmax(260px, 30%) 1fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

/* Navigation column */
.menu-nav-col {
  position: relative;
  z-index: 3;
}

.menu-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-nav-item {
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--sch-ease), transform 0.55s var(--sch-ease);
}

.mobile-menu.open .menu-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .menu-nav-item:nth-child(1) { transition-delay: 0.12s; }
.mobile-menu.open .menu-nav-item:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open .menu-nav-item:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.open .menu-nav-item:nth-child(4) { transition-delay: 0.30s; }
.mobile-menu.open .menu-nav-item:nth-child(5) { transition-delay: 0.36s; }
.mobile-menu.open .menu-nav-item:nth-child(6) { transition-delay: 0.42s; }

.mobile-nav-link {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--sch-white);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(0.5rem, 1.5vh, 0.85rem) 0;
  transition: color 0.4s var(--sch-ease), transform 0.45s var(--sch-ease);
  min-height: 48px;
}

.menu-link-index {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.35);
  padding-top: 0.65em;
  flex-shrink: 0;
  transition: color 0.4s ease;
}

.menu-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-link-label {
  display: block;
  transition: transform 0.45s var(--sch-ease), text-shadow 0.45s ease;
}

.menu-link-desc {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.6875rem, 1.4vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--sch-white-muted);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s var(--sch-ease), max-height 0.45s var(--sch-ease), margin 0.45s ease;
}

.menu-nav-item.is-active .menu-link-desc,
.menu-nav-item:hover .menu-link-desc,
.menu-nav-item:focus-within .menu-link-desc {
  opacity: 1;
  max-height: 3rem;
}

.menu-link-line {
  display: block;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--sch-blue) 0%, rgba(14, 165, 233, 0.2) 100%);
  transition: width 0.55s var(--sch-ease);
  margin-top: 0.15rem;
}

.menu-nav-item.is-active .menu-link-line,
.menu-nav-item:hover .menu-link-line {
  width: min(120px, 30%);
}

.menu-nav-item.is-active .menu-link-label,
.menu-nav-item:hover .menu-link-label {
  transform: translateX(4px);
  text-shadow: 0 0 40px rgba(14, 165, 233, 0.25);
}

.menu-nav-item.is-active .menu-link-index,
.menu-nav-item:hover .menu-link-index {
  color: var(--sch-blue);
}

.menu-nav-item.is-active .mobile-nav-link,
.menu-nav-item:hover .mobile-nav-link {
  color: var(--sch-white);
}

.menu-nav-link--accent.is-active .menu-link-label,
.menu-nav-item:hover .menu-nav-link--accent .menu-link-label {
  color: var(--sch-blue);
}

/* Experience column — dominant visual universe */
.menu-experience-col {
  display: none;
  position: relative;
  height: clamp(440px, 72vh, 740px);
  perspective: 1800px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s var(--sch-ease) 0.35s, transform 0.8s var(--sch-ease) 0.35s;
  margin-right: clamp(-1rem, -3vw, -2.5rem);
  --menu-parallax-x: 0;
  --menu-parallax-y: 0;
}

@media (min-width: 768px) {
  .menu-experience-col {
    display: block;
  }
}

.mobile-menu.open .menu-experience-col {
  opacity: 1;
  transform: translateX(0);
}

.menu-scene-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform:
    perspective(1800px)
    rotateY(calc(var(--menu-parallax-x) * 0.4deg))
    rotateX(calc(var(--menu-parallax-y) * -0.3deg));
  transition: transform 0.35s var(--sch-ease);
}

.menu-depth-blur {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.menu-depth-blur--far {
  width: 80%;
  height: 60%;
  top: 20%;
  right: -10%;
  background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  animation: menuDepthBreath 10s ease-in-out infinite;
}

.menu-depth-blur--near {
  width: 50%;
  height: 40%;
  bottom: 5%;
  left: 10%;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  filter: blur(40px);
  animation: menuDepthBreath 8s ease-in-out infinite reverse;
}

@keyframes menuDepthBreath {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

.menu-ecosystem-bg {
  position: absolute;
  inset: -5%;
  z-index: 0;
  pointer-events: none;
}

.menu-orbit-ring {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 85%;
  height: 85%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(14, 165, 233, 0.08);
  border-radius: 50%;
  animation: menuOrbitSpin 30s linear infinite;
  opacity: 0.6;
}

.menu-orbit-ring::before {
  content: '';
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(14, 165, 233, 0.04);
  border-radius: 50%;
}

@keyframes menuOrbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.menu-cloud-grid {
  position: absolute;
  inset: 10%;
  background-image: radial-gradient(rgba(14, 165, 233, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

.menu-infra-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 0;
}

.menu-infra-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.25);
  flex-shrink: 0;
}

.menu-infra-node--hub {
  width: 14px;
  height: 14px;
  background: rgba(14, 165, 233, 0.25);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 0 16px rgba(14, 165, 233, 0.35);
  animation: menuNodePulse 2.5s ease-in-out infinite;
}

.menu-infra-line {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.3), rgba(14, 165, 233, 0.05));
}

.menu-infra-line--diag {
  width: 18px;
  transform: rotate(-30deg);
}

.menu-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92) translateY(20px);
  filter: blur(8px);
  transition:
    opacity 0.75s var(--sch-ease),
    transform 0.8s var(--sch-ease),
    visibility 0.75s,
    filter 0.85s ease;
  pointer-events: none;
}

.menu-scene.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

.menu-scene-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: menuSceneGlow 6s ease-in-out infinite;
}

.menu-scene-glow--media { background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%); }
.menu-scene-glow--work { background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%); }
.menu-scene-glow--academy { background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.1) 0%, rgba(56, 142, 60, 0.06) 50%, transparent 70%); }
.menu-scene-glow--cases { background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.08) 0%, rgba(245, 158, 11, 0.06) 50%, transparent 70%); }
.menu-scene-glow--contact { background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.18) 0%, transparent 65%); }

@keyframes menuSceneGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Menu UI panels — layered ecosystem cluster */
.menu-ui-panel {
  position: absolute;
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.82) 0%, rgba(11, 15, 25, 0.92) 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(14, 165, 233, 0.06),
    inset 0 1px 0 rgba(248, 250, 252, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  z-index: 2;
  transition: box-shadow 0.5s ease;
}

.menu-ui-panel--glass {
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.55) 0%, rgba(11, 15, 25, 0.65) 100%);
  border-color: rgba(14, 165, 233, 0.12);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(14, 165, 233, 0.04);
}

.menu-ui-panel--depth-bg {
  z-index: 0;
  filter: blur(4px);
  opacity: 0.45;
  transform: scale(0.88);
  pointer-events: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.menu-ui-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.05) 0%, transparent 45%, rgba(14, 165, 233, 0.02) 100%);
  pointer-events: none;
}

.menu-ui-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.2), transparent);
  opacity: 0.6;
}

.menu-metric-pulse {
  animation: menuMetricPulse 3.5s ease-in-out infinite;
}

@keyframes menuMetricPulse {
  0%, 100% { opacity: 1; text-shadow: none; }
  50% { opacity: 0.85; text-shadow: 0 0 20px rgba(14, 165, 233, 0.3); }
}

.menu-timeline-segment {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(148, 163, 184, 0.15);
}

.menu-timeline-segment.is-active {
  background: var(--sch-blue);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}

.menu-media-frame--ghost img {
  filter: saturate(0.5) blur(2px) brightness(0.7);
}

.menu-contact-orb--bg {
  width: 100px;
  height: 100px;
  opacity: 0.5;
}

/* Systems scene — enlarged cluster */
.menu-ui-panel--systems-bg {
  width: min(340px, 80%);
  top: 18%;
  left: -8%;
  animation: menuFloatDepth 11s ease-in-out infinite;
}

.menu-ui-panel--main {
  width: min(440px, 92%);
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: menuFloatMain 9s ease-in-out infinite;
}

.menu-ui-panel--float-a {
  width: min(240px, 52%);
  top: 2%;
  right: -4%;
  z-index: 6;
  animation: menuFloatA 7s ease-in-out infinite;
}

.menu-ui-panel--float-b {
  width: min(220px, 48%);
  bottom: 8%;
  right: -2%;
  z-index: 4;
  animation: menuFloatB 8.5s ease-in-out infinite;
  animation-delay: -2s;
}

.menu-ui-panel--float-c {
  width: min(200px, 44%);
  bottom: 6%;
  left: -6%;
  z-index: 3;
  animation: menuFloatC 7.5s ease-in-out infinite;
  animation-delay: -1s;
}

.menu-ui-panel--float-d {
  width: min(190px, 42%);
  top: 28%;
  left: -4%;
  z-index: 4;
  animation: menuFloatA 8s ease-in-out infinite;
  animation-delay: -3s;
}

.menu-ui-panel--float-e {
  width: min(200px, 44%);
  top: 58%;
  right: 8%;
  z-index: 5;
  animation: menuFloatB 7s ease-in-out infinite;
  animation-delay: -1.5s;
}

.menu-ui-panel--float-f {
  width: min(170px, 38%);
  top: 12%;
  left: 18%;
  z-index: 7;
  animation: menuFloatC 6.5s ease-in-out infinite;
  animation-delay: -2.5s;
}

@keyframes menuFloatMain {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(0deg); }
  50% { transform: translate(-50%, -50%) translateY(-14px) rotate(0.3deg); }
}

@keyframes menuFloatDepth {
  0%, 100% { transform: scale(0.88) translateY(0); opacity: 0.4; }
  50% { transform: scale(0.9) translateY(-8px); opacity: 0.5; }
}

@keyframes menuFloatA {
  0%, 100% { transform: translateY(0) rotate(-0.8deg); }
  50% { transform: translateY(-16px) rotate(0.6deg); }
}

@keyframes menuFloatB {
  0%, 100% { transform: translateY(0) rotate(0.4deg); }
  50% { transform: translateY(-12px) rotate(-0.5deg); }
}

@keyframes menuFloatC {
  0%, 100% { transform: translateY(0) rotate(0.6deg); }
  50% { transform: translateY(-14px) rotate(-0.4deg); }
}

/* Media scene — cinematic cluster */
.menu-ui-panel--media-bg {
  width: min(360px, 85%);
  top: 22%;
  right: -12%;
  animation: menuFloatDepth 10s ease-in-out infinite;
}

.menu-ui-panel--media-main {
  width: min(400px, 90%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: menuFloatMain 8s ease-in-out infinite;
}

.menu-ui-panel--media-b {
  width: min(220px, 48%);
  top: 0;
  right: -6%;
  z-index: 6;
  animation: menuFloatA 6.5s ease-in-out infinite;
}

.menu-ui-panel--media-c {
  width: min(210px, 46%);
  bottom: 4%;
  left: -8%;
  z-index: 4;
  animation: menuFloatC 7s ease-in-out infinite;
}

.menu-ui-panel--media-d {
  width: min(200px, 44%);
  top: 38%;
  left: -10%;
  z-index: 3;
  animation: menuFloatB 8s ease-in-out infinite;
  animation-delay: -2s;
}

.menu-ui-panel--media-e {
  width: min(190px, 42%);
  bottom: 18%;
  right: 6%;
  z-index: 6;
  animation: menuFloatA 7.5s ease-in-out infinite;
  animation-delay: -1s;
}

.menu-media-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sch-charcoal);
}

.menu-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.menu-media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 25, 0.25);
}

.menu-media-play svg {
  width: 36px;
  height: 36px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14, 165, 233, 0.4);
}

.menu-media-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.06) 50%, transparent 100%);
  animation: menuScanline 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes menuScanline {
  0%, 100% { transform: translateY(-100%); opacity: 0; }
  50% { transform: translateY(100%); opacity: 1; }
}

.menu-media-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.menu-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.menu-waveform span {
  flex: 1;
  background: var(--sch-blue);
  border-radius: 2px;
  animation: menuWave 1.2s ease-in-out infinite;
}

.menu-waveform span:nth-child(1) { height: 40%; animation-delay: 0s; }
.menu-waveform span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.menu-waveform span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.menu-waveform span:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.menu-waveform span:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.menu-waveform span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.menu-waveform span:nth-child(7) { height: 45%; animation-delay: 0.6s; }
.menu-waveform span:nth-child(8) { height: 65%; animation-delay: 0.7s; }

@keyframes menuWave {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* Work scene */
.menu-ui-panel--work-bg {
  width: min(320px, 78%);
  bottom: 8%;
  right: -10%;
  animation: menuFloatDepth 9s ease-in-out infinite;
}

.menu-ui-panel--work-main {
  width: min(380px, 88%);
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: menuFloatMain 8.5s ease-in-out infinite;
  padding: 0;
  overflow: hidden;
}

.menu-work-preview {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 15, 25, 0.85) 100%);
}

.menu-ui-panel--work-b {
  width: min(200px, 44%);
  top: 4%;
  right: -4%;
  z-index: 6;
  animation: menuFloatA 7s ease-in-out infinite;
}

.menu-ui-panel--work-c {
  width: min(210px, 46%);
  bottom: 2%;
  left: -8%;
  z-index: 4;
  animation: menuFloatC 6.5s ease-in-out infinite;
}

.menu-ui-panel--work-d {
  width: min(180px, 40%);
  top: 52%;
  right: 4%;
  z-index: 6;
  animation: menuFloatB 7.5s ease-in-out infinite;
  animation-delay: -2s;
}

.menu-work-tile {
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.menu-work-preview--sm {
  aspect-ratio: 16 / 10;
}

/* Academy scene */
.menu-ui-panel--academy-bg {
  width: min(340px, 82%);
  top: 15%;
  left: -10%;
  animation: menuFloatDepth 10s ease-in-out infinite;
}

.menu-ui-panel--academy-main {
  width: min(400px, 90%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: menuFloatMain 9s ease-in-out infinite;
}

.menu-media-frame--academy img {
  filter: saturate(0.85) brightness(0.95);
}

.menu-ui-panel--academy-b {
  width: min(200px, 44%);
  top: 2%;
  right: -4%;
  z-index: 6;
  animation: menuFloatA 7s ease-in-out infinite;
}

.menu-ui-panel--academy-c {
  width: min(220px, 48%);
  bottom: 4%;
  left: -6%;
  z-index: 4;
  animation: menuFloatB 8s ease-in-out infinite;
}

.menu-ui-panel--academy-d {
  width: min(180px, 40%);
  bottom: 22%;
  right: 2%;
  z-index: 6;
  animation: menuFloatC 6.5s ease-in-out infinite;
  animation-delay: -1.5s;
}

.menu-progress-fill {
  animation: menuProgressPulse 3s ease-in-out infinite;
}

@keyframes menuProgressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Case studies scene */
.menu-ui-panel--cases-bg {
  width: min(300px, 75%);
  top: 10%;
  right: -8%;
  animation: menuFloatDepth 9s ease-in-out infinite;
}

.menu-ui-panel--cases-main {
  width: min(380px, 88%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: menuFloatMain 8s ease-in-out infinite;
}

.menu-metric-card {
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.menu-metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sch-blue);
}

.menu-metric-label {
  font-size: 0.625rem;
  color: var(--sch-white-muted);
  margin-top: 0.15rem;
}

.menu-ui-panel--cases-b {
  width: min(220px, 48%);
  bottom: 6%;
  right: -4%;
  z-index: 6;
  animation: menuFloatA 7s ease-in-out infinite;
}

.menu-ui-panel--cases-c {
  width: min(200px, 44%);
  top: 0;
  left: -6%;
  z-index: 4;
  animation: menuFloatC 6.5s ease-in-out infinite;
  padding: 0;
  overflow: hidden;
}

.menu-ui-panel--cases-d {
  width: min(170px, 38%);
  top: 42%;
  left: 2%;
  z-index: 6;
  animation: menuFloatB 7.5s ease-in-out infinite;
  animation-delay: -2s;
}

/* Contact scene */
.menu-ui-panel--contact-bg {
  width: min(360px, 85%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  animation: menuFloatDepth 11s ease-in-out infinite;
}

.menu-ui-panel--contact-main {
  width: min(380px, 88%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: menuFloatMain 10s ease-in-out infinite;
}

.menu-contact-orb {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.4) 0%, rgba(14, 165, 233, 0.05) 60%, transparent 100%);
  border: 1px solid rgba(14, 165, 233, 0.25);
  animation: menuOrbPulse 4s ease-in-out infinite;
}

@keyframes menuOrbPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(14, 165, 233, 0.15); transform: scale(1); }
  50% { box-shadow: 0 0 40px rgba(14, 165, 233, 0.3); transform: scale(1.05); }
}

.menu-ui-panel--contact-b {
  width: min(180px, 40%);
  bottom: 8%;
  right: -2%;
  z-index: 4;
  animation: menuFloatA 7s ease-in-out infinite;
}

.menu-ui-panel--contact-c {
  width: min(160px, 36%);
  top: 8%;
  left: -4%;
  z-index: 6;
  animation: menuFloatC 6.5s ease-in-out infinite;
  animation-delay: -1s;
}

/* Shared menu nodes & flow */
.menu-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.25);
  flex-shrink: 0;
}

.menu-node--active {
  background: rgba(14, 165, 233, 0.3);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.4);
  animation: menuNodePulse 2.5s ease-in-out infinite;
}

@keyframes menuNodePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(14, 165, 233, 0.3); }
  50% { box-shadow: 0 0 16px rgba(14, 165, 233, 0.55); }
}

.menu-flow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.4) 0%, rgba(14, 165, 233, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.menu-flow-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.8), transparent);
  animation: menuFlowPulse 2s ease-in-out infinite;
}

.menu-flow-line--long { min-width: 60px; }

@keyframes menuFlowPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Status bar */
.menu-status-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem clamp(1.5rem, 4vw, 4rem);
  padding-bottom: calc(1rem + var(--sch-safe-bottom));
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 25, 0.85) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--sch-ease) 0.45s, transform 0.55s var(--sch-ease) 0.45s;
}

.mobile-menu.open .menu-status-bar {
  opacity: 1;
  transform: translateY(0);
}

.menu-status-left,
.menu-status-center,
.menu-status-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-status-left {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.menu-status-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sch-white-muted);
}

.menu-status-sub {
  font-size: 0.625rem;
  color: rgba(148, 163, 184, 0.5);
}

.menu-status-center {
  font-size: 0.625rem;
  color: rgba(148, 163, 184, 0.6);
  gap: 0.5rem;
}

.menu-status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sch-green);
  box-shadow: 0 0 8px rgba(56, 142, 60, 0.5);
  animation: menuStatusPulse 2s ease-in-out infinite;
}

@keyframes menuStatusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.menu-status-clock {
  color: var(--sch-blue);
  letter-spacing: 0.05em;
}

.menu-status-clock::before {
  content: '·';
  margin-right: 0.5rem;
  color: rgba(148, 163, 184, 0.3);
}

.menu-status-right {
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: rgba(148, 163, 184, 0.45);
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .menu-status-center { display: none; }
  .menu-status-right { display: none; }
}

@media (max-width: 1023px) {
  .mobile-menu-panel {
    padding-top: calc(5rem + var(--sch-safe-top));
    justify-content: center;
  }

  .menu-nav-item.is-active .menu-link-desc {
    opacity: 1;
    max-height: 3rem;
  }
}

/* ─── Page Load ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--sch-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--sch-glass-border);
  border-radius: 9999px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--sch-blue);
  animation: loaderFill 1.2s var(--sch-ease) forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to { width: 100%; }
}

/* ─── Parallax ─── */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ─── Responsive ─── */
@media (max-width: 1023px) {
  .hero-visual {
    height: 360px;
    margin-top: 2rem;
    max-width: 100%;
    overflow: hidden;
  }

  .ui-panel-main { width: min(280px, 92vw); }
  .ui-panel-secondary,
  .ui-panel-tertiary,
  .ui-panel-accent,
  .ui-panel-portal,
  .ui-panel-automation,
  .ui-panel-notify,
  .dashboard-float-card { display: none; }

  .before-after { grid-template-columns: 1fr; }

  .dashboard-preview { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .case-study .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .case-metric { padding: 1rem 0.5rem; }
  .case-metric-value { font-size: 1.75rem; }
}

@media (max-width: 639px) {
  .hero-visual {
    height: 280px;
    margin-top: 1.5rem;
  }

  .ui-panel-main { width: min(260px, 88vw); }

  .section-title { font-size: clamp(1.625rem, 8vw, 2rem); }

  section.py-32 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  section.py-28 { padding-top: 4rem; padding-bottom: 4rem; }
  section.py-24 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  section.py-20 { padding-top: 3rem; padding-bottom: 3rem; }

  .hero-grid {
    min-height: auto !important;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .ecosystem-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .showcase-filters {
    flex-wrap: nowrap;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .showcase-card--featured .showcase-featured-ui {
    display: none;
  }

  .showcase-card--featured .showcase-card__inner {
    flex-direction: column;
    gap: 0;
  }

  .showcase-card--featured .showcase-card__copy {
    width: 100%;
    max-width: 100%;
  }

  .showcase-card__logo img {
    max-height: 56px;
  }

  .timeline {
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
  }

  .timeline-step {
    flex: none;
    text-align: left;
    padding-top: 0;
    padding-left: 2.25rem;
  }

  .timeline-step::before { display: none; }

  .timeline-dot {
    left: 0;
    top: 0.15rem;
    transform: none;
  }

  .case-metric-value { font-size: 1.5rem; }
  .case-metric-label { font-size: 0.75rem; }

  .film-album-picker {
    padding: 1rem 1rem 2.5rem;
  }

  .film-album-picker__title {
    font-size: 1.5rem;
  }

  .film-album-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .album-view-header {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    padding-top: max(0.75rem, var(--sch-safe-top));
    gap: 0.5rem;
  }

  .album-view-breadcrumb {
    flex: 1 1 100%;
    order: 2;
    padding-left: 0.25rem;
  }

  #imageCounter {
    font-size: 0.75rem;
  }

  .album-main-stage {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  #albumPrev {
    left: 0.35rem;
    width: 44px;
    height: 44px;
  }

  #albumNext {
    right: 0.35rem;
    width: 44px;
    height: 44px;
  }

  .album-main-stage img,
  .film-gallery-image {
    max-height: calc(100dvh - 200px);
  }

  .film-gallery-hud {
    left: 0.75rem;
    right: 0.75rem;
    bottom: max(0.75rem, var(--sch-safe-bottom));
    max-width: none;
    padding: 1rem;
  }

  .film-gallery-hud__title { font-size: 1.0625rem; }

  .film-gallery-hud__desc {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #albumThumbBar {
    padding-bottom: max(1rem, var(--sch-safe-bottom));
  }

  .film-album-thumb {
    width: 4.5rem;
    height: 2.75rem;
  }

  .lightbox-view {
    padding: max(1rem, var(--sch-safe-top)) 0.75rem max(1rem, var(--sch-safe-bottom));
  }

  #lightboxClose {
    top: max(1rem, var(--sch-safe-top));
    right: max(0.75rem, var(--sch-safe-right));
    width: 44px;
    height: 44px;
  }

  .mobile-nav-link {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    padding: 0.65rem 0;
  }

  .menu-close {
    top: max(1rem, var(--sch-safe-top));
    right: max(1rem, var(--sch-safe-right));
  }

  .media-overlay { padding: 1.25rem; }

  .media-showcase::after {
    opacity: 1;
    transform: translateY(0);
    top: 0.75rem;
    right: 0.75rem;
  }

  .cinematic-item {
    flex: 0 0 min(82vw, 300px);
  }

  .stat-block { padding: 1.25rem 0.5rem; }
}

@media (max-width: 380px) {
  .hero-section h1 {
    font-size: clamp(2rem, 10vw, 2.5rem) !important;
  }

  .hero-section .grid-cols-3 {
    gap: 0.5rem;
  }

  .hero-section .stat-number {
    font-size: 1.25rem;
  }

  .hero-section .text-xs {
    font-size: 0.625rem;
    line-height: 1.3;
  }
}

/* Touch devices: reduce hover-only effects */
@media (hover: none) and (pointer: coarse) {
  .glass-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--sch-glass-border);
  }

  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }

  .media-showcase:hover img,
  .media-showcase:hover video {
    transform: none;
  }

  .showcase-card:hover {
    transform: none;
    box-shadow: none;
  }

  .showcase-card:hover .showcase-card__bg {
    filter: blur(28px) saturate(1.2);
    opacity: 0.45;
  }

  .film-album-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ─── Premium motion & depth ─── */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-cinematic-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(11, 15, 25, 0.4) 100%),
    linear-gradient(180deg, transparent 60%, rgba(11, 15, 25, 0.6) 100%);
}

.hero-visual-hologram {
  position: absolute;
  inset: -5%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 40%, rgba(14, 165, 233, 0.04) 45%, rgba(14, 165, 233, 0.08) 50%, rgba(14, 165, 233, 0.04) 55%, transparent 60%);
  animation: hologramSweep 8s ease-in-out infinite;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

@keyframes hologramSweep {
  0%, 100% { transform: translateX(-20%) skewX(-5deg); opacity: 0.4; }
  50% { transform: translateX(20%) skewX(-5deg); opacity: 0.8; }
}

.ui-panel-automation {
  width: 175px;
  bottom: 22%;
  right: -6%;
  z-index: 4;
  animation: floatAccent 7.5s ease-in-out infinite;
  animation-delay: -1.5s;
}

.ui-panel-notify {
  width: 168px;
  top: 42%;
  left: -8%;
  z-index: 6;
  animation: floatPortal 6.5s ease-in-out infinite;
  animation-delay: -3s;
  border-color: rgba(56, 142, 60, 0.2);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(56, 142, 60, 0.08);
}

.ui-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.06) 0%, transparent 40%, rgba(14, 165, 233, 0.03) 100%);
  pointer-events: none;
}

.section-sequence {
  position: relative;
  isolation: isolate;
}

.section-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.section-mesh--blue {
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 55%);
}

.section-mesh--systems {
  background:
    radial-gradient(ellipse 50% 45% at 85% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 35% 25% at 15% 70%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
}

.section-mesh--gold {
  background:
    radial-gradient(ellipse 45% 35% at 70% 15%, rgba(245, 158, 11, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 85%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
}

.ecosystem-header--offset {
  margin-left: 0;
  padding-left: 0;
}

@media (min-width: 1024px) {
  .ecosystem-header--offset {
    padding-top: 1rem;
  }
}

.ecosystem-bento--asymmetric {
  position: relative;
}

@media (min-width: 640px) {
  .ecosystem-bento--asymmetric .bento-featured {
    transform: translateY(-0.5rem);
  }

  .ecosystem-bento--asymmetric .glass-card:nth-child(3) {
    transform: translateY(1rem);
  }
}

.systems-layout .systems-copy {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .systems-copy {
    padding-top: 2rem;
    padding-right: 1rem;
  }

  .systems-showcase {
    transform: translateX(1.5rem);
  }
}

.dashboard-float-card--sparkline {
  top: auto;
  bottom: -6%;
  right: 8%;
  width: 140px;
  animation-delay: -1s;
}

.dashboard-float-card--notify {
  top: 8%;
  left: -6%;
  width: 160px;
  animation-delay: -3.5s;
}

.spark-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--sch-blue) 0%, rgba(14, 165, 233, 0.35) 100%);
  animation: sparkPulse 3s ease-in-out infinite;
}

.spark-bar:nth-child(1) { animation-delay: 0s; }
.spark-bar:nth-child(2) { animation-delay: 0.3s; }
.spark-bar:nth-child(3) { animation-delay: 0.6s; }
.spark-bar:nth-child(4) { animation-delay: 0.9s; }
.spark-bar:nth-child(5) { animation-delay: 1.2s; }
.spark-bar:nth-child(6) { animation-delay: 1.5s; }

@keyframes sparkPulse {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.08); }
}

.media-header {
  position: relative;
  padding-left: 0;
}

.media-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .media-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .media-showcase-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem;
  }
}

.media-showcase-grid > * {
  min-width: 0;
  max-width: 100%;
}

.media-showcase--hero {
  aspect-ratio: 16 / 10;
}

.media-showcase--secondary {
  aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
  .media-showcase--secondary {
    aspect-ratio: 4 / 5;
  }
}

@media (min-width: 1280px) {
  .media-showcase--hero {
    aspect-ratio: 16 / 11;
  }
}

.case-study--cinematic {
  padding: clamp(3rem, 6vh, 5rem) 0;
  position: relative;
}

.case-study--cinematic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 48px;
  background: linear-gradient(180deg, var(--sch-blue) 0%, transparent 100%);
  border-radius: 9999px;
  opacity: 0.6;
}

.case-study--reverse::before {
  left: auto;
  right: 0;
  background: linear-gradient(180deg, var(--sch-orange) 0%, transparent 100%);
}

.case-study-visual {
  position: relative;
}

.case-ui-preview {
  position: relative;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(165deg, rgba(17, 24, 39, 0.98) 0%, rgba(11, 15, 25, 1) 100%);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(14, 165, 233, 0.08),
    inset 0 1px 0 rgba(248, 250, 252, 0.06);
  margin-bottom: 1.5rem;
  animation: casePreviewFloat 10s ease-in-out infinite;
}

@keyframes casePreviewFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.case-ui-preview--travel {
  animation-delay: -2s;
  border-color: rgba(245, 158, 11, 0.15);
}

.case-ui-preview__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.case-ui-preview__body {
  padding: 1rem 1.25rem 1.5rem;
  position: relative;
}

.case-ui-stat {
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.case-ui-preview__float {
  position: absolute;
  bottom: -0.75rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border-radius: 9999px;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.case-ui-booking {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-ui-booking__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.case-study-metrics {
  margin-top: 0.5rem;
}

.stagger-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--sch-ease-out), transform 0.9s var(--sch-ease-out);
}

.stagger-group.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-group.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-group.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-group.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-group.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-group.visible > *:nth-child(6) { transition-delay: 0.4s; }

.stagger-group.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.magnetic-surface {
  transition: transform 0.5s var(--sch-ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

.glass-card {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease, box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(14, 165, 233, 0.22);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.48),
    0 0 56px rgba(14, 165, 233, 0.1),
    inset 0 1px 0 rgba(248, 250, 252, 0.06);
}

.btn-primary {
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  box-shadow:
    0 12px 48px rgba(14, 165, 233, 0.35),
    0 0 0 1px rgba(14, 165, 233, 0.25);
}

.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition: opacity 1s var(--sch-ease-out), transform 1s var(--sch-ease-out), filter 1s var(--sch-ease-out);
}

.reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero-stat-row {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--sch-blue);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.case-study-compact p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--sch-white-muted);
}

.case-study-compact strong {
  color: var(--sch-white);
  font-weight: 600;
}

.media-section-lead {
  font-size: 1rem;
  color: var(--sch-white-muted);
  max-width: 22rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .media-showcase .font-display.text-2xl {
    font-size: 1.25rem;
  }

  .media-overlay {
    padding: 1rem;
  }
}

.cinematic-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .cinematic-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cinematic-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.cinematic-item {
  min-width: 0;
  max-width: 100%;
}

.nav-link.is-active {
  color: var(--sch-white);
}

.nav-link.is-active::after {
  width: 100%;
}

/* ─── Cinematic Gallery Experience ─── */
.album-view--cinematic {
  background: rgba(11, 15, 25, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.album-view-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(14, 165, 233, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
  z-index: 0;
}

.album-view--hub .album-main-stage,
.album-view--gallery .album-main-stage {
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.album-view--hub #mainImageContainer,
.album-view--gallery #mainImageContainer {
  display: block !important;
  width: 100%;
  height: auto !important;
  min-height: 0;
  align-items: unset !important;
  justify-content: unset !important;
}

.gallery-hub {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}

.gallery-hub__hero {
  margin-bottom: 3rem;
  max-width: 40rem;
}

.gallery-hub__hero--compact {
  margin-bottom: 2rem;
}

.gallery-hub__label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sch-blue);
  margin-bottom: 0.75rem;
}

.gallery-hub__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--sch-white);
}

.gallery-hub__subtitle {
  margin-top: 0.875rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--sch-white-muted);
  max-width: 36rem;
}

.gallery-hub__story {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(148, 163, 184, 0.85);
  max-width: 32rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(14, 165, 233, 0.35);
}

.gallery-featured {
  margin-bottom: 3.5rem;
}

.gallery-featured__head {
  margin-bottom: 1.5rem;
}

.gallery-featured__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}

.gallery-featured__text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--sch-white-muted);
  max-width: 28rem;
}

.gallery-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .gallery-featured__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
  }
}

.gallery-collections__head {
  margin-bottom: 1.5rem;
}

.gallery-collections__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}

.gallery-collections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-collections__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .gallery-collection-card--featured {
    grid-column: span 2;
  }
}

.gallery-story-card,
.gallery-collection-card {
  position: relative;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(30, 41, 59, 0.35);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.55s ease;
}

.gallery-story-card:hover,
.gallery-collection-card:hover:not(.gallery-collection-card--empty) {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.28);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 40px rgba(14, 165, 233, 0.08);
}

.gallery-story-card--large {
  min-height: 320px;
}

.gallery-story-card__media,
.gallery-collection-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-story-card:hover .gallery-story-card__media,
.gallery-collection-card:hover .gallery-collection-card__media {
  transform: scale(1.06);
}

.gallery-story-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.15) 0%, rgba(11, 15, 25, 0.92) 100%);
}

.gallery-collection-card__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: 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.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gallery-story-card {
  min-height: 280px;
}

.gallery-story-card__body,
.gallery-collection-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 1.5rem;
}

.gallery-collection-card__body {
  min-height: 260px;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 15, 25, 0.95) 100%);
}

.gallery-story-card__tag,
.gallery-collection-card__category {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sch-blue);
  margin-bottom: 0.5rem;
}

.gallery-story-card--orange .gallery-story-card__tag,
.gallery-collection-card--orange .gallery-collection-card__category { color: var(--sch-orange); }

.gallery-story-card__name,
.gallery-collection-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sch-white);
  line-height: 1.2;
}

.gallery-story-card__desc,
.gallery-collection-card__subtitle {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--sch-white-muted);
}

.gallery-story-card__cta,
.gallery-story-card__count,
.gallery-collection-card__count {
  margin-top: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.9);
}

.gallery-story-card__cta {
  color: var(--sch-blue);
}

.gallery-collection-card__soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 25, 0.65);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.75);
  z-index: 2;
}

.gallery-collection-card--empty {
  opacity: 0.7;
  cursor: default;
}

.gallery-stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .gallery-stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Gallery masonry view */
.gallery-view {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

.gallery-view__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.gallery-view__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sch-blue);
}

.gallery-view__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 0.375rem;
}

.gallery-view__desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--sch-white-muted);
  max-width: 36rem;
}

.gallery-view__mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sch-white);
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-view__mode-btn:hover {
  border-color: rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.12);
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.12);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.gallery-masonry__item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--sch-radius);
  overflow: hidden;
  cursor: pointer;
  background: rgba(30, 41, 59, 0.4);
  aspect-ratio: 4 / 3;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.gallery-masonry__item--hero {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 280px;
}

.gallery-masonry__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 240px;
}

.gallery-masonry__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-masonry__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 15, 25, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-masonry__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 25, 0.65);
  border: 1px solid rgba(248, 250, 252, 0.2);
  color: white;
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-masonry__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.gallery-masonry__item:hover img {
  transform: scale(1.06);
}

.gallery-masonry__item:hover .gallery-masonry__overlay,
.gallery-masonry__item:hover .gallery-masonry__zoom {
  opacity: 1;
}

.gallery-masonry__item:hover .gallery-masonry__zoom {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-slideshow {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
}

.gallery-slideshow__frame {
  position: relative;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  background: #000;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slideshow__image {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-slideshow__hud {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--sch-radius);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(11, 15, 25, 0.9) 100%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(16px);
}

.gallery-slideshow__hud-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sch-orange);
}

.gallery-slideshow__hud-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.gallery-slideshow__hud-desc {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--sch-white-muted);
}

.gallery-slideshow__hud-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.gallery-slideshow__autoplay {
  font-size: 0.75rem;
  color: var(--sch-white-muted);
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 9999px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-slideshow__autoplay:hover {
  color: var(--sch-white);
  border-color: rgba(14, 165, 233, 0.35);
}

.gallery-editorial-thumb {
  width: 5rem;
  height: 3.25rem;
  border-radius: 0.5rem;
}

/* Cinematic Lightbox */
.lightbox-view--cinematic {
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lightbox-view--cinematic.lightbox-view--open {
  display: flex;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.lightbox-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(14, 165, 233, 0.08) 0%, transparent 65%);
}

.lightbox-stage {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 1200px);
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--sch-radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-image--visible {
  opacity: 1;
  transform: scale(1);
}

.lightbox-video {
  width: min(92vw, 1100px);
  height: min(52vh, 620px);
  max-height: 85vh;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--sch-radius-lg);
  background: #000;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-video--visible {
  opacity: 1;
  transform: scale(1);
}

.lightbox-view--video .lightbox-stage {
  max-width: min(96vw, 1200px);
}

.lightbox-control {
  position: absolute;
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--sch-white);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-control:hover {
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.15);
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.2);
}

.lightbox-control--close {
  top: max(1.25rem, var(--sch-safe-top));
  right: 1.25rem;
}

.lightbox-control--prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-control--next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-footer {
  position: absolute;
  bottom: max(1.25rem, var(--sch-safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  max-width: 90vw;
}

.lightbox-caption {
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sch-white);
  margin-bottom: 0.375rem;
}

.lightbox-counter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  color: var(--sch-white-muted);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(8px);
  display: inline-block;
}

@media (max-width: 639px) {
  .gallery-hub { padding: 1rem 1rem 3rem; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-masonry__item--hero,
  .gallery-masonry__item--tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }
  .lightbox-control--prev,
  .lightbox-control--next { display: none; }
}

/* ─── Cinematic Showcase Pillars ─── */
.showcase-cinema {
  position: relative;
  overflow: hidden;
}

.showcase-cinema-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 120%);
  height: 480px;
  background: radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.showcase-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 100%;
}

@media (min-width: 640px) {
  .showcase-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .showcase-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.showcase-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(30, 41, 59, 0.35);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease, box-shadow 0.55s ease;
  min-height: 0;
}

.showcase-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 48px rgba(14, 165, 233, 0.1);
}

.showcase-pillar--film:hover { border-color: rgba(229, 57, 53, 0.35); box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 40px rgba(229, 57, 53, 0.08); }
.showcase-pillar--brand:hover { border-color: rgba(245, 158, 11, 0.3); }
.showcase-pillar--academy:hover { border-color: rgba(56, 142, 60, 0.35); }

.showcase-pillar__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 240px;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .showcase-pillar__media {
    aspect-ratio: 3 / 4;
    max-height: 220px;
  }
}

.showcase-pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-pillar:hover .showcase-pillar__media img {
  transform: scale(1.07);
}

.showcase-pillar__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 15, 25, 0.35) 100%);
  pointer-events: none;
}

.showcase-pillar__media--academy::after {
  background: linear-gradient(160deg, transparent 20%, rgba(56, 142, 60, 0.15) 50%, rgba(11, 15, 25, 0.92) 100%);
}

.showcase-pillar__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s var(--sch-ease);
  z-index: 2;
}

.showcase-pillar--film:hover .showcase-pillar__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.showcase-pillar__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 1rem 1.125rem 1.25rem;
  margin-top: 0;
  background: rgba(11, 15, 25, 0.88);
  border-left: none;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.showcase-pillar__index {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(148, 163, 184, 0.6);
  display: block;
  margin-bottom: 0.35rem;
}

.showcase-pillar__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sch-blue);
  margin-bottom: 0.5rem;
}

.showcase-pillar--film .showcase-pillar__tag { color: #ef5350; }
.showcase-pillar--brand .showcase-pillar__tag { color: #f59e0b; }
.showcase-pillar--academy .showcase-pillar__tag { color: var(--sch-green); }

.showcase-pillar__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sch-white);
  line-height: 1.25;
}

.showcase-pillar__desc {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--sch-white-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase-pillar::before {
  content: 'Explore';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sch-white);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s var(--sch-ease);
  z-index: 3;
  pointer-events: none;
}

.showcase-pillar:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Academy Immersive Section ─── */
.academy-cinematic {
  position: relative;
  overflow: hidden;
}

.academy-cinematic-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at 100% 50%, rgba(56, 142, 60, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.academy-immersive {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .academy-immersive {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.academy-immersive__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--sch-white-muted);
}

.academy-immersive__story {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(148, 163, 184, 0.85);
  padding-left: 1rem;
  border-left: 2px solid rgba(56, 142, 60, 0.4);
}

.academy-immersive__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.academy-visual-card {
  position: relative;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.55s var(--sch-ease), box-shadow 0.55s ease;
}

.academy-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(56, 142, 60, 0.12);
}

.academy-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--sch-ease);
}

.academy-visual-card:hover img {
  transform: scale(1.05);
}

.academy-visual-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 15, 25, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.academy-visual-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sch-green);
}

.academy-visual-card__cta {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--sch-white-muted);
}

/* ─── Gallery Pillar Variants ─── */
.gallery-hub__manifesto {
  margin-top: 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(56, 142, 60, 0.9);
  max-width: 36rem;
}

.gallery-hub--academy .gallery-hub__label {
  color: var(--sch-green);
}

.gallery-hub--film .gallery-hub__label {
  color: #ef5350;
}

.gallery-hub--brand .gallery-hub__label {
  color: #f59e0b;
}

.gallery-collections__grid--film {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gallery-collections__grid--film {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-collections__grid--film {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-collection-card--glass {
  backdrop-filter: blur(12px);
  background: rgba(30, 41, 59, 0.45);
}

.gallery-collection-card__play {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-collection-card:hover .gallery-collection-card__play {
  opacity: 1;
}

.gallery-collection-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.gallery-collection-card:hover .gallery-collection-card__video {
  opacity: 1;
}

/* ─── Brand Glass Gallery ─── */
.gallery-brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-brand-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.gallery-brand-card {
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: var(--sch-radius-lg);
  overflow: visible;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-brand-card:hover {
  transform: translateY(-6px);
}

.gallery-brand-card__glass {
  position: relative;
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-brand-card__glass img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--sch-ease);
}

.gallery-brand-card:hover .gallery-brand-card__glass img {
  transform: scale(1.04);
}

.gallery-brand-card__shine {
  position: absolute;
  inset: 0;
  border-radius: var(--sch-radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.gallery-brand-card:hover .gallery-brand-card__shine {
  opacity: 1;
}

/* ─── Film Preview Gallery ─── */
.gallery-film-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-film-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-film-tile {
  border-radius: var(--sch-radius-lg);
  overflow: hidden;
}

.gallery-film-tile__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--sch-radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #0b0f19;
}

.gallery-film-tile__poster,
.gallery-film-tile__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--sch-ease), opacity 0.5s ease;
}

.gallery-film-tile__video {
  opacity: 0;
  z-index: 1;
}

.gallery-film-tile:hover .gallery-film-tile__video {
  opacity: 1;
}

.gallery-film-tile:hover .gallery-film-tile__poster {
  transform: scale(1.04);
}

.gallery-film-tile__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

.gallery-film-tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 3;
  transition: transform 0.4s var(--sch-ease), background 0.35s ease;
}

.gallery-film-tile:hover .gallery-film-tile__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(229, 57, 53, 0.5);
}

.gallery-film-tile__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: var(--sch-white-muted);
  z-index: 4;
}

.gallery-film-tile__title {
  margin-top: 0.75rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sch-white);
}

.gallery-film-tile--soon {
  cursor: default;
}

.gallery-view--academy .gallery-view__label {
  color: var(--sch-green);
}

.gallery-view--film .gallery-view__label {
  color: #ef5350;
}

.gallery-view--brand .gallery-view__label {
  color: #f59e0b;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .stagger-group > * {
    opacity: 1;
    transform: none;
  }
  .hero-particles { display: none; }
  .hero-visual-hologram { animation: none; }
  .menu-particles { display: none; }
  .menu-grid,
  .menu-data-streams,
  .menu-scanlines,
  .menu-ghost-word,
  .menu-ui-panel,
  .menu-scene-glow,
  .menu-glow,
  .menu-orbit-ring,
  .menu-hologram-ring { animation: none !important; }
  .mobile-menu-panel,
  .menu-nav-item,
  .menu-experience-col,
  .menu-close,
  .menu-status-bar { transition: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}
