/* ==========================================================================
   OMNIFLONEX AI — UI COMPONENTS & LUXURY SHOWROOM MODULES
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Top Announcement Bar
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   01. Top Announcement Bar (Matching Main Website Marquee)
   -------------------------------------------------------------------------- */
.top-announcement-bar,
.announcement-bar {
  background: linear-gradient(90deg, #064E3B, #047857, #064E3B) !important;
  color: #FEF3C7 !important;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  box-sizing: border-box;
}

.top-announcement-bar:hover,
.announcement-bar:hover {
  background: linear-gradient(90deg, #047857, #059669, #047857) !important;
}

.announcement-bar .badge-gold {
  background: rgba(212, 175, 55, 0.22);
  color: #FEF3C7;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
  border: 1px solid rgba(212, 175, 55, 0.45);
}

/* Accessible Skip Link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  background: var(--emerald, #008F6B);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm, 4px);
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-to-content:focus {
  top: 1rem;
}

/* --------------------------------------------------------------------------
   02. Floating Luxury Capsule Navigation
   -------------------------------------------------------------------------- */
.nav-wrapper {
  position: fixed;
  top: 2.75rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  pointer-events: none;
}

.nav-capsule {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.6rem 0.45rem 1.4rem;
  box-shadow: var(--shadow-md), 0 1px 0 rgba(212, 175, 55, 0.25);
  transition: all var(--transition-normal);
  max-width: 1120px;
  width: 100%;
}

.nav-capsule:hover {
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(5, 150, 105, 0.15), 0 0 15px rgba(212, 175, 55, 0.15);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-emblem-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(5, 150, 105, 0.4)) drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-emblem-img {
  transform: scale(1.1) rotate(-4deg);
}

.brand-emblem {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.text-gradient-logo {
  background: linear-gradient(135deg, #059669, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tld {
  color: var(--gold);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--emerald-deep);
  background: var(--mint);
}

.nav-link.active {
  color: #FFFFFF;
  background: var(--emerald);
  box-shadow: var(--shadow-emerald);
  font-weight: 600;
}

.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  display: grid;
  gap: 0.25rem;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--mint);
  color: var(--emerald-deep);
}

.dropdown-item .item-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--emerald);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   03. Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 0.45rem 1.15rem;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

.btn-emerald, .btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-emerald);
}

.btn-emerald:hover, .btn-primary:hover {
  background: linear-gradient(135deg, var(--emerald-deep), var(--teal));
  box-shadow: 0 14px 34px rgba(0, 143, 107, 0.35);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--mint);
  border-color: var(--border-emerald);
  color: var(--emerald-deep);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.btn-glass:hover {
  background: var(--mint);
  border-color: var(--border-emerald);
  color: var(--emerald);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #A9873E);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #A9873E, #8C6D2B);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(199, 167, 91, 0.35);
}

/* --------------------------------------------------------------------------
   04. Badges & Labels
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-concept {
  background: var(--mint);
  color: var(--emerald-deep);
  border: 1px solid var(--border-light);
}

.badge-internal {
  background: rgba(199, 167, 91, 0.15);
  color: #8C6D2B;
  border: 1px solid var(--border-gold);
}

.badge-emerald {
  background: var(--emerald);
  color: #FFFFFF;
}

.badge-outline {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: var(--surface);
}

/* --------------------------------------------------------------------------
   05. Master Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: radial-gradient(circle at 65% 35%, var(--mint-light) 0%, var(--bg-primary) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--emerald-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-tag .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(0, 143, 107, 0.7);
  animation: pulse-ring 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(0, 143, 107, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 143, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 143, 107, 0); }
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.champagne-accent {
  background: linear-gradient(135deg, var(--gold), #937326);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* 3D Visual Hero Container */
.hero-visual-container {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.three-canvas-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(229, 244, 237, 0.6) 0%, rgba(248, 251, 248, 0) 70%);
}

#hero-three-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-sculpture-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.15rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}

.hero-sculpture-card .icon-chip {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-sculpture-card .sculpture-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-sculpture-card .sculpture-sub {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   06. Selected Work (Master Showroom)
   -------------------------------------------------------------------------- */
.selected-work-list {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 7vw, 6.5rem);
}

.project-editorial-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.project-editorial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-emerald);
}

/* Layout Variant: 2-Column Split (Alternating) */
.project-editorial-card.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.project-editorial-card.split-layout.reversed {
  grid-template-columns: 0.85fr 1.15fr;
}

.project-editorial-card.split-layout.reversed .project-media-wrapper {
  order: 2;
}

.project-editorial-card.split-layout.reversed .project-info-wrapper {
  order: 1;
}

/* Layout Variant: Full Bleed Cinematic */
.project-editorial-card.full-bleed {
  display: block;
}

.project-editorial-card.full-bleed .project-media-wrapper {
  height: clamp(340px, 50vw, 560px);
}

.project-editorial-card.full-bleed .project-info-wrapper {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--surface);
}

.project-media-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  min-height: 380px;
}

.project-media-wrapper img, .project-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-editorial-card:hover .project-media-wrapper img {
  transform: scale(1.035);
}

.project-media-overlay {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.project-info-wrapper {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.project-number {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.1em;
}

.project-category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.project-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.project-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.project-capabilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

.capability-pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-weight: 500;
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   07. Seven Disciplines Explorer Panels
   -------------------------------------------------------------------------- */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
}

.discipline-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.discipline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-emerald);
}

.discipline-media-frame {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.discipline-media-frame img,
.discipline-media-frame video,
.discipline-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.discipline-card:hover .discipline-media-frame img,
.discipline-card:hover .discipline-media-frame video,
.discipline-card:hover .discipline-card-video {
  transform: scale(1.06);
}

.discipline-video-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(6, 78, 59, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #FEF3C7;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.cross-nav-thumb img,
.cross-nav-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.discipline-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.discipline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.discipline-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--emerald);
}

.discipline-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.discipline-card:hover .discipline-title {
  color: var(--emerald-deep);
}

.discipline-summary {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.55;
}

.discipline-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-deep);
}

/* Deep Case Study Modal Details */
.cs-rolling-marquee-bar {
  background: linear-gradient(90deg, #064E3B 0%, #047857 50%, #064E3B 100%) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35) !important;
  color: #FEF3C7 !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  padding: 0.45rem 0 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 30 !important;
}

.cs-marquee-track {
  display: flex !important;
  align-items: center !important;
  width: max-content !important;
  will-change: transform !important;
  animation: csMarqueeContinuous 35s linear infinite !important;
}

.cs-rolling-marquee-bar:hover .cs-marquee-track {
  animation-play-state: paused !important;
}

.cs-marquee-item {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  padding-right: 3.5rem !important;
  flex-shrink: 0 !important;
}

@keyframes csMarqueeContinuous {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.cs-scroll-progress-track {
  width: 100%;
  height: 3.5px;
  background: rgba(5, 150, 105, 0.15);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 25;
}

.cs-scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #059669, #10B981, #D4AF37);
  transition: width 0.08s ease-out;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}

.modal-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-alt);
  position: sticky;
  top: 0;
  z-index: 20;
}

.modal-nav-btn {
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-motif-tag {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   PRODUCT HERO 3D SHOWCASE - ULTRA-PREMIUM INTERACTIVE
   ========================================================================== */
.product-hero-showcase {
  width: 100%;
  max-width: 480px;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 246, 0.85));
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 25px 60px -15px rgba(6, 78, 59, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8) inset, 0 10px 20px -5px rgba(0, 0, 0, 0.04);
  padding: 12px;
  perspective: 1000px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  user-select: none;
}

[data-theme="dark"] .product-hero-showcase {
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.95));
  border-color: rgba(52, 211, 153, 0.25);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 40px -10px rgba(16, 185, 129, 0.2);
}

.product-hero-showcase-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #030712;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.product-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-hero-showcase:hover .product-hero-video {
  transform: scale(1.03);
}

.product-hero-ambient-glow {
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.22), rgba(245, 158, 11, 0.08) 50%, transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.product-hero-hud-top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  pointer-events: auto;
}

.product-hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10, 15, 26, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 12px;
  border-radius: 9999px;
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f3f4f6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.product-hero-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: hero-pulse 2s infinite;
}

@keyframes hero-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.product-hero-hud-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-hero-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.product-hero-action-btn:hover {
  background: rgba(16, 185, 129, 0.9);
  border-color: #34d399;
  transform: scale(1.08);
  color: #030712;
}

.product-hero-hud-bottom {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.product-hero-spec-pill {
  background: rgba(10, 15, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 12px;
  color: #e5e7eb;
  font-size: 0.72rem;
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  line-height: 1.3;
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.product-hero-spec-pill strong {
  display: block;
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.product-hero-play-prompt {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
}

.product-hero-play-prompt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #10b981, #047857);
}

.product-hero-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
  background: rgba(243, 244, 246, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 4px;
  border-radius: 14px;
}

[data-theme="dark"] .product-hero-switcher {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
}

.product-hero-switch-btn {
  background: transparent;
  border: none;
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted, #64748b);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}

.product-hero-switch-btn:hover {
  color: var(--text-primary, #0f172a);
  background: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .product-hero-switch-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.product-hero-switch-btn.active {
  background: #ffffff;
  color: #065f46;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

[data-theme="dark"] .product-hero-switch-btn.active {
  background: #064e3b;
  color: #34d399;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.modal-nav-btn:hover {
  background: var(--mint);
  border-color: var(--emerald);
  color: var(--emerald-deep);
  transform: translateY(-1px);
}

.modal-body-scrollable {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  max-height: calc(88vh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-body-scrollable::-webkit-scrollbar {
  width: 8px;
}

.modal-body-scrollable::-webkit-scrollbar-track {
  background: rgba(5, 150, 105, 0.04);
  border-radius: 9999px;
}

.modal-body-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #059669 0%, #10b981 100%);
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.modal-body-scrollable::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #047857 0%, #059669 100%);
}

.discipline-footer .arrow-icon {
  transition: transform var(--transition-fast);
}

.discipline-card:hover .discipline-footer .arrow-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   08. Interactive Before → After Comparison Slider
   -------------------------------------------------------------------------- */
.before-after-container {
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background: #07090e;
  user-select: none;
}

.before-after-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 596px;
  overflow: hidden;
  background: #07090e;
}

.ba-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #07090e;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
}

.ba-image-layer.before-layer {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ba-image-layer.after-layer {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  z-index: 2;
}

.ba-image-layer.after-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ba-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(7, 59, 51, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.ba-label.label-before {
  left: 1.5rem;
}

.ba-label.label-after {
  right: 1.5rem;
  background: rgba(0, 143, 107, 0.9);
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.ba-handle-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--emerald);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-fast);
}

.before-after-container:hover .ba-handle-button {
  transform: scale(1.08);
}

/* Before-After Scenario Selector Tabs */
.ba-scenario-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ba-scenario-btn {
  padding: 0.5rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.ba-scenario-btn:hover {
  background: var(--mint);
  color: var(--emerald-deep);
}

.ba-scenario-btn.active {
  background: var(--emerald);
  color: #FFFFFF;
  border-color: var(--emerald);
  box-shadow: var(--shadow-emerald);
}

/* --------------------------------------------------------------------------
   09. Showreel & Motion Showcase (Cinematic Screening Room Hierarchy)
   -------------------------------------------------------------------------- */
.showreel-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.showreel-card {
  grid-column: span 6;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.showreel-card:hover {
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.09);
  border-color: var(--border-emerald);
  transform: translateY(-4px);
}

.showreel-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #042621;
}

.showreel-thumb-container img,
.showreel-thumb-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showreel-card:hover .showreel-thumb-container img {
  transform: scale(1.03);
}

.play-trigger-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.showreel-card:hover .play-trigger-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--emerald);
  color: #FFFFFF;
  border-color: var(--emerald);
}

.showreel-card-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.showreel-card-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.showreel-card-category {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--emerald-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Featured Screening Piece (First Video Dominates the Theater) */
@media (min-width: 992px) {
  .showreel-grid > .showreel-card:first-child {
    grid-column: 1 / -1;
  }

  .showreel-grid > .showreel-card:first-child .showreel-thumb-container {
    aspect-ratio: 21 / 9;
    max-height: 480px;
  }

  .showreel-grid > .showreel-card:first-child .play-trigger-btn {
    width: 72px;
    height: 72px;
  }

  .showreel-grid > .showreel-card:first-child .play-trigger-btn svg {
    width: 28px;
    height: 28px;
  }

  .showreel-grid > .showreel-card:first-child .showreel-card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 991px) {
  .showreel-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .showreel-card {
    grid-column: 1 / -1;
  }
}

.delivery-badge-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
}

.delivery-spec {
  color: var(--emerald);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* --------------------------------------------------------------------------
   10. AI Node Workflow Demonstrator (For AI Systems Category)
   -------------------------------------------------------------------------- */
.workflow-demo-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.workflow-node-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.wf-node {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  transition: all var(--transition-fast);
}

.wf-node:hover {
  background: var(--surface);
  border-color: var(--emerald);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.wf-node.node-highlight {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: var(--shadow-emerald);
}

.wf-node-icon {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.wf-node-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wf-connector-arrow {
  color: var(--emerald);
  font-size: 1.1rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   11. Flagship "Built by OmniFlonex AI" Case Study Components
   -------------------------------------------------------------------------- */
.flagship-hero-banner {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 143, 107, 0.3);
  box-shadow: var(--shadow-lg);
  margin-bottom: 3.5rem;
}

.flagship-hero-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 143, 107, 0.25) 0%, rgba(0, 143, 107, 0) 70%);
  pointer-events: none;
}

.flagship-hero-banner h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 1rem;
}

.flagship-hero-banner p.lead {
  color: var(--text-inverse-muted);
  max-width: 680px;
  margin-bottom: 2rem;
}

.flagship-story-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.flagship-step-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.flagship-step-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   12. Filter Tabs & Search Bar
   -------------------------------------------------------------------------- */
.filter-bar-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.filter-pills-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.filter-pill {
  padding: 0.45rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  background: var(--mint);
  color: var(--emerald-deep);
}

.filter-pill.active {
  background: var(--emerald);
  color: #FFFFFF;
  border-color: var(--emerald);
  box-shadow: var(--shadow-emerald);
}

.search-input-wrapper {
  position: relative;
  max-width: 380px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.65rem 1.2rem 0.65rem 2.6rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.search-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0, 143, 107, 0.15);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   13. Full Screen Dynamic Case Study Modal
   -------------------------------------------------------------------------- */
.case-study-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 59, 51, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1rem, 3vw, 2.5rem);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.case-study-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.case-study-modal-content {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  max-width: 1080px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin: auto 0;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.case-study-modal-backdrop.open .case-study-modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 50;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--mint);
  color: var(--emerald-deep);
  transform: rotate(90deg);
}

/* --------------------------------------------------------------------------
   14. Process Breakdown ("How We Build")
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.process-step-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--mint-accent);
  margin-bottom: 1rem;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   15. Deep Emerald Luxury Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--teal-dark);
  color: #FFFFFF;
  padding-top: clamp(2.75rem, 4.5vw, 3.75rem);
  padding-bottom: 2rem;
  border-top: 1px solid rgba(0, 143, 107, 0.25);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 143, 107, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Tighten CTA Section Bottom Padding Before Footer */
#contact.section-padding {
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin-bottom: 2.25rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-inverse-muted);
  line-height: 1.55;
  max-width: 400px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champagne);
  margin-bottom: 0.9rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-inverse-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* Omni Footer Social Icons */
.omni-foot-socials {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 0.75rem !important;
}
.omni-foot-social {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}
.omni-foot-social svg {
  width: 22px !important;
  height: 22px !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}
.omni-foot-social:hover {
  transform: translateY(-4px) scale(1.08) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}
.omni-foot-social:hover svg {
  transform: scale(1.1) !important;
}
.omni-foot-social.social-instagram:hover {
  box-shadow: 0 0 16px rgba(225, 48, 108, 0.6) !important;
}
.omni-foot-social.social-youtube:hover {
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.6) !important;
}
.omni-foot-social.social-linkedin:hover {
  box-shadow: 0 0 16px rgba(10, 102, 194, 0.6) !important;
}
.omni-foot-social.social-whatsapp:hover {
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.6) !important;
}
.omni-foot-social.social-twitter:hover {
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.4) !important;
}
.omni-foot-social.social-facebook:hover {
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.6) !important;
}
.omni-foot-social.social-telegram:hover {
  box-shadow: 0 0 16px rgba(42, 171, 238, 0.6) !important;
}

/* ==========================================================================
   CATEGORY PAGES & ADVANCED INTERACTIVE ENGINE STYLES
   ========================================================================== */

/* Back to Showroom Hub Pill */
.back-hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--emerald-deep);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.back-hub-pill:hover {
  background: var(--emerald);
  color: #FFFFFF;
  border-color: var(--emerald);
  transform: translateX(-2px);
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--emerald);
  background: var(--mint);
  transform: scale(1.05);
}

/* Category Hero */
.category-hero-section {
  min-height: 72vh;
  padding: 8.5rem 0 4rem;
  background: radial-gradient(circle at 65% 35%, var(--mint-light) 0%, var(--bg-primary) 70%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .category-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
}

.category-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.category-hero-manifesto {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 620px;
}

.category-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 991px) {
  .category-hero-manifesto, .category-hero-meta {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

.category-hero-3d {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-3d-wrapper {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-3d-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
}

.category-motif-tag {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-deep);
  display: flex;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.deliverable-chip-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.deliverable-chip-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.deliv-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.deliv-spec {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.spec-label {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.7rem;
}

.spec-val {
  color: var(--emerald-deep);
  font-weight: 700;
}

/* ==========================================================================
   Category Projects Exhibition Grid (Editorial Asymmetry & Visual Rhythm)
   ========================================================================== */
.category-projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.25rem;
}

/* Minimal Luxury Card Design (Artwork as HERO, Text Supports Visual) */
.project-grid-card {
  grid-column: span 6;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-grid-card:hover {
  border-color: var(--border-emerald);
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.08);
  transform: translateY(-4px);
}

.project-grid-card:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 4px;
}

.card-media-aspect {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.card-media-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-grid-card:hover .card-media-aspect img {
  transform: scale(1.03);
}

.project-grid-card[data-project-id="ai-doc-parser-04"]:hover .card-media-aspect img,
.project-grid-card[data-project-id="ai-content-triage-05"]:hover .card-media-aspect img {
  transform: none;
}

/* Remove distracting badges and UI elements directly floating over artwork */
.card-badge-strip {
  display: none;
}

.card-content {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-discipline-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.card-subtitle {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--mint);
  color: var(--emerald-deep);
  border: 1px solid var(--border-light);
}

.quality-mini-spec {
  display: none; /* Eliminate redundant clutter on cards */
}

.card-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--emerald-deep);
}

.arrow-glyph {
  transition: transform 0.3s ease;
}

.project-grid-card:hover .arrow-glyph {
  transform: translateX(4px);
}

/* ==========================================================================
   Editorial Asymmetry & Layout Rhythm (Desktop >= 992px)
   - Project 01: Flagship 60/40 Split Lead
   - Projects 02 & 03: Balanced Duo (span 6 each)
   - Project 04: Panoramic Inverted 40/60 Split (span 12)
   - Projects 05 & 06: Balanced Duo (span 6 each)
   ========================================================================== */
@media (min-width: 992px) {
  /* Project 01 — Flagship Horizontal Showcase */
  .category-projects-grid > .project-grid-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }

  .category-projects-grid > .project-grid-card:first-child .card-media-aspect {
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
  }

  .category-projects-grid > .project-grid-card:first-child .card-content {
    padding: 3.25rem 2.75rem;
    justify-content: center;
  }

  .category-projects-grid > .project-grid-card:first-child .card-title {
    font-size: 1.75rem;
    margin-bottom: 0.65rem;
  }

  .category-projects-grid > .project-grid-card:first-child .card-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  /* Project 04 — Inverted Split Showcase */
  .category-projects-grid > .project-grid-card:nth-child(4):not(:last-child) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    align-items: stretch;
  }

  .category-projects-grid > .project-grid-card:nth-child(4):not(:last-child) .card-media-aspect {
    order: 2;
    height: 100%;
    min-height: 380px;
    aspect-ratio: auto;
  }

  .category-projects-grid > .project-grid-card:nth-child(4):not(:last-child) .card-content {
    order: 1;
    padding: 3rem 2.5rem;
    justify-content: center;
  }

  .category-projects-grid > .project-grid-card:nth-child(4):not(:last-child) .card-title {
    font-size: 1.6rem;
    margin-bottom: 0.65rem;
  }
}

/* Tablet & Mobile Layouts */
@media (max-width: 991px) {
  .category-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .category-projects-grid > .project-grid-card {
    grid-column: span 1;
  }
  .category-projects-grid > .project-grid-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .category-projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .category-projects-grid > .project-grid-card {
    grid-column: 1 / -1;
  }
  .card-content {
    padding: 1.5rem;
  }
}

/* Cross Navigation */
.cross-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.cross-nav-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cross-nav-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cross-nav-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--bg-secondary);
}

.cross-nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cross-nav-overlay {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.cross-nav-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cross-nav-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 0.35rem;
}

.cross-nav-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cross-nav-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.cross-nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--emerald-deep);
}

/* Studio Proof Wall 3D Flip Cards */
.proof-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.proof-card-3d {
  perspective: 1000px;
  min-height: 320px;
  cursor: pointer;
}

.proof-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-out-expo);
  transform-style: preserve-3d;
  border-radius: var(--radius-xl);
}

.proof-card-3d:hover .proof-card-inner,
.proof-card-3d.flipped .proof-card-inner {
  transform: rotateY(180deg);
}

.proof-card-front,
.proof-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-card-front {
  background: var(--surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.proof-card-back {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-deepest));
  color: #FFFFFF;
  transform: rotateY(180deg);
  border: 1px solid var(--border-emerald);
  box-shadow: var(--shadow-emerald);
}

.proof-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.proof-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.proof-card-front p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.proof-card-flip-prompt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--emerald-deep);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.proof-card-back h4 {
  font-size: 1.15rem;
  color: var(--champagne);
  margin-bottom: 0.75rem;
}

.proof-card-back p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-inverse-muted);
}

.proof-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.proof-tech-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 143, 107, 0.3);
  color: var(--champagne);
  border: 1px solid rgba(0, 143, 107, 0.4);
}

/* Deep Case Study Modal Details */
.modal-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-alt);
  position: sticky;
  top: 0;
  z-index: 20;
}

.modal-nav-btn {
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-nav-btn:hover {
  background: var(--mint);
  border-color: var(--emerald);
  color: var(--emerald-deep);
}

.modal-body-scrollable {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  max-height: calc(88vh - 70px);
  overflow-y: auto;
}

.modal-header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.modal-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.15;
  color: var(--text-primary);
}

.modal-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
}

.modal-hero-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  background: var(--bg-secondary);
}

.case-study-triple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2.25rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.cs-col-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.cs-col p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-primary);
}

.quality-spec-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--surface-alt);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.spec-badge-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-mono);
}

.spec-val-web {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--emerald-deep);
}

.spec-val-master {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.spec-divider {
  font-size: 1.5rem;
  color: var(--border-emerald);
}

.modal-section-block {
  margin-bottom: 3rem;
}

.modal-section-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.process-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.process-step-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--mint);
  color: var(--emerald-deep);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.process-step-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.process-step-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.modal-media-tile {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0.5rem;
}

.media-caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0.5rem 0.5rem 0.25rem;
}

.modal-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

/* Card Multi-Asset Gallery Strip (4-6 Stills + 2-3 Videos) */
.project-card-gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-light, rgba(5, 150, 105, 0.15));
}

.gallery-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-deep, #047857);
}

.gallery-media-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--mint-light, rgba(5, 150, 105, 0.08));
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-light, rgba(5, 150, 105, 0.2));
}

.gallery-thumbs-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.gallery-thumb-item {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border-light, rgba(5, 150, 105, 0.18));
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb-item:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--emerald, #059669);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.video-reels-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.video-reel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(16, 185, 129, 0.08));
  color: var(--emerald-deep, #047857);
  border: 1px solid rgba(5, 150, 105, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--surface-alt);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.spec-badge-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-mono);
}

.spec-val-web {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--emerald-deep);
}

.spec-val-master {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.spec-divider {
  font-size: 1.5rem;
  color: var(--border-emerald);
}

.modal-section-block {
  margin-bottom: 3rem;
}

.modal-section-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.process-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.process-step-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--mint);
  color: var(--emerald-deep);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.process-step-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.process-step-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.modal-media-tile {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0.5rem;
}

.media-caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0.5rem 0.5rem 0.25rem;
}

.modal-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

/* Card Multi-Asset Gallery Strip (4-6 Stills + 2-3 Videos) */
.project-card-gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-light, rgba(5, 150, 105, 0.15));
}

.gallery-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-deep, #047857);
}

.gallery-media-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--mint-light, rgba(5, 150, 105, 0.08));
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-light, rgba(5, 150, 105, 0.2));
}

.gallery-thumbs-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.gallery-thumbs-row::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbs-row::-webkit-scrollbar-thumb {
  background: var(--border-light, rgba(5, 150, 105, 0.2));
  border-radius: 4px;
}

.gallery-thumb-item {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border-light, rgba(5, 150, 105, 0.18));
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb-item:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--emerald, #059669);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.video-reels-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.video-reel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(16, 185, 129, 0.08));
  color: var(--emerald-deep, #047857);
  border: 1px solid rgba(5, 150, 105, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  font-family: var(--font-mono, monospace);
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-reel-chip:hover {
  background: var(--emerald, #059669);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

/* ==========================================================================
   2026 DIGITAL EXHIBITION & MASTER SHOWROOM ENHANCEMENTS
   ========================================================================== */

/* Section Chapter Number Badges */
.section-chapter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.22);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-chapter-tag .chapter-num {
  color: var(--champagne);
  font-weight: 900;
}

/* Hero Proof Strip (Real verified studio data) */
.hero-stats-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.hero-stats-proof-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), var(--champagne), transparent);
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1px solid var(--border-subtle);
  padding-right: 1.25rem;
}

.hero-proof-item:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-proof-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}

.hero-proof-value .accent-plus {
  color: var(--emerald);
  font-weight: 900;
}

.hero-proof-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Floating Glass Badges in Hero 3D Area */
.hero-glass-badge {
  position: absolute;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.1rem;
  box-shadow: var(--shadow-md), 0 0 20px rgba(5, 150, 105, 0.12);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 5;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.hero-glass-badge.pos-top-left {
  top: 1.5rem;
  left: 1.5rem;
}

.hero-glass-badge.pos-bottom-right {
  bottom: 1.5rem;
  right: 1.5rem;
}

.hero-glass-badge .badge-icon-glow {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(5, 150, 105, 0.14);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-glass-badge .badge-label-sm {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-glass-badge .badge-title-sm {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Editorial Exhibition Grid Layout (Chapter 02) */
.exhibition-disciplines-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

/* 01 + 02: Large Featured Exhibits */
.exhibit-card.featured-large {
  grid-column: span 6;
}

/* 03 + 04 + 05: Balanced Medium Exhibits */
.exhibit-card.balanced-medium {
  grid-column: span 4;
}

/* 06 + 07: Large / Asymmetric Exhibits */
.exhibit-card.asymmetric-large {
  grid-column: span 6;
}

.exhibit-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.exhibit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 16px 36px rgba(5, 150, 105, 0.12);
  border-color: var(--border-emerald);
}

.exhibit-media-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.exhibit-card.featured-large .exhibit-media-wrap,
.exhibit-card.asymmetric-large .exhibit-media-wrap,
.exhibit-card.balanced-medium .exhibit-media-wrap {
  aspect-ratio: 16 / 9;
  height: auto;
}

.exhibit-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.exhibit-card:hover .exhibit-media-img {
  transform: scale(1.05);
}

.exhibit-overlay-chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  z-index: 2;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.exhibit-card:hover .exhibit-overlay-chip {
  border-color: var(--emerald);
  color: var(--emerald-deep);
}

.exhibit-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.exhibit-num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.exhibit-num {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--emerald);
  display: inline-block;
  margin-bottom: 0.45rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.exhibit-card:hover .exhibit-num {
  color: var(--champagne);
  transform: translateX(3px);
}

.exhibit-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.exhibit-desc {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}

.exhibit-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald-deep);
  transition: color 0.3s ease;
}

.exhibit-card:hover .exhibit-footer-cta {
  color: var(--emerald);
}

.exhibit-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 0.95rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.exhibit-card:hover .exhibit-arrow {
  transform: translateX(4px);
  background: var(--emerald);
  color: #FFFFFF;
}

/* Chapter 03 — Curated Selected Work (4-6 projects) */
.curated-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.curated-project-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}

.curated-project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 16px 36px rgba(5, 150, 105, 0.1);
  border-color: var(--border-emerald);
}

.curated-project-media {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.curated-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.curated-project-card:hover .curated-project-media img {
  transform: scale(1.06);
}

.curated-project-discipline-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  color: var(--emerald-deep);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-emerald);
  box-shadow: var(--shadow-xs);
}

.curated-project-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.curated-project-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.curated-project-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex: 1;
}

.curated-project-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--emerald-deep);
  transition: color 0.2s ease, transform 0.2s ease;
}

.curated-project-card:hover .curated-project-cta {
  color: var(--emerald);
  transform: translateX(3px);
}

/* Chapter 04 — Cinematic Motion Layout (1 Large Featured + 3 Supporting) */
.cinematic-motion-container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.featured-motion-hero-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
}

.featured-motion-media {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #000;
}

.featured-motion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.5s ease;
}

.featured-motion-hero-card:hover .featured-motion-media img {
  transform: scale(1.04);
}

.cinematic-play-btn-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 2px solid rgba(254, 243, 199, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(5, 150, 105, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.cinematic-play-btn-large:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--emerald-deep);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 175, 55, 0.6);
}

.featured-motion-body {
  padding: 1.75rem 2rem;
  background: var(--surface);
}

.supporting-motion-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.supporting-motion-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem;
  transition: all 0.3s ease;
}

.supporting-motion-card:hover {
  transform: translateX(4px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-md);
}

.supporting-motion-thumb {
  position: relative;
  width: 140px;
  height: 95px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.supporting-motion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-play-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(6, 78, 59, 0.88);
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.supporting-motion-card:hover .mini-play-chip {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--emerald);
}

.supporting-motion-meta {
  flex: 1;
}

.supporting-motion-category {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.supporting-motion-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Chapter 06 — Studio Capabilities Grid */
.studio-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.studio-capability-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: all 0.3s ease;
}

.studio-capability-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-md);
}

.studio-cap-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.studio-cap-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.studio-cap-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Chapter 07 — 5-Step Process Timeline */
.process-5-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  position: relative;
}

.process-5-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.process-5-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-md);
}

.process-5-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-5-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.process-5-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ==========================================================================
   EXHIBITION FINALE — ULTRA-LUXURY MASTER FINAL CTA (MIDNIGHT OBSIDIAN & AURORA)
   Surgically crafted to elevate the footer CTA into an 8K luxury masterpiece
   ========================================================================== */
.final-cta-luxury-panel {
  background: linear-gradient(145deg, #070e17 0%, #0c1828 35%, #092027 70%, #040911 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: var(--radius-xl);
  padding: 5rem 3.5rem;
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.75),
              0 0 50px rgba(16, 185, 129, 0.14),
              0 0 80px rgba(212, 175, 55, 0.10),
              inset 0 1px 0 rgba(255, 255, 255, 0.28),
              inset 0 -1px 0 rgba(212, 175, 55, 0.18) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

/* Ambient Radiant Aurora Mesh — Top Left (Emerald & Cyan) */
.final-cta-luxury-panel::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -15%;
  width: 130%;
  height: 130%;
  background: radial-gradient(ellipse at 18% 18%, rgba(16, 185, 129, 0.25) 0%, rgba(6, 182, 212, 0.12) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Ambient Radiant Aurora Mesh — Bottom Right (Liquid Gold & Royal Shimmer) */
.final-cta-luxury-panel::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 130%;
  height: 130%;
  background: radial-gradient(ellipse at 82% 82%, rgba(212, 175, 55, 0.18) 0%, rgba(139, 92, 246, 0.12) 40%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure inner content sits securely above atmospheric meshes */
.final-cta-luxury-panel > * {
  position: relative;
  z-index: 2;
}

/* Chapter / Badge Tag */
.final-cta-luxury-panel .section-chapter-tag,
.final-cta-luxury-panel .final-cta-tag {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  color: #FEF3C7 !important;
  margin-bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.final-cta-luxury-panel .section-chapter-tag .chapter-num,
.final-cta-luxury-panel .final-cta-tag .chapter-num {
  color: var(--champagne) !important;
  font-weight: 800;
}

/* Heading: Dual-Tone Titanium Silver & Liquid Gold */
.final-cta-luxury-panel h2,
.final-cta-luxury-panel .final-cta-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.4rem, 5.5vw, 3.8rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  margin-bottom: 1.35rem !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 55%, #CBD5E1 100%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #FFFFFF;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}

/* Gradient Shimmer Highlight on Second Line */
.final-cta-luxury-panel .cta-gradient-highlight {
  background: linear-gradient(135deg, #34D399 0%, #10B981 35%, #FBBF24 75%, #F59E0B 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline;
  filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.4));
}

/* High-Clarity Platinum Subtitle */
.final-cta-luxury-panel p,
.final-cta-luxury-panel .final-cta-subtitle {
  font-size: 1.15rem !important;
  color: #CBD5E1 !important;
  max-width: 660px !important;
  margin: 0 auto 2.6rem !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.final-cta-luxury-panel p strong,
.final-cta-luxury-panel .final-cta-subtitle strong {
  color: #FFFFFF !important;
  font-weight: 600;
}

/* Button Container */
.final-cta-luxury-panel .final-cta-buttons,
.final-cta-luxury-panel > div[style*="justify-content: center"] {
  display: flex !important;
  justify-content: center !important;
  gap: 1.35rem !important;
  flex-wrap: wrap !important;
}

/* Primary CTA Button: Glowing Aurora Emerald & Gold 3D Pill */
.final-cta-luxury-panel .btn-emerald,
.final-cta-luxury-panel .final-cta-btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 0.96rem !important;
  letter-spacing: 0.02em !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45),
              0 4px 12px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  border-radius: 999px !important;
  padding: 1rem 2.4rem !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  cursor: pointer;
}

.final-cta-luxury-panel .btn-emerald:hover,
.final-cta-luxury-panel .final-cta-btn-primary:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 18px 45px -4px rgba(16, 185, 129, 0.65),
              0 0 35px rgba(52, 211, 153, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  color: #FFFFFF !important;
}

/* Secondary CTA Button: Frosted Glass Pill with Gold Aura */
.final-cta-luxury-panel .btn-secondary,
.final-cta-luxury-panel .final-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.96rem !important;
  letter-spacing: 0.02em !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  backdrop-filter: blur(14px) !important;
  border-radius: 999px !important;
  padding: 1rem 2.4rem !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transition: all 0.35s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  cursor: pointer;
}

.final-cta-luxury-panel .btn-secondary:hover,
.final-cta-luxury-panel .final-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(212, 175, 55, 0.7) !important;
  color: #FEF3C7 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25) !important;
}

/* ==========================================================================
   MASTER SHOWROOM ENHANCEMENTS — MOTION SWITCHER, CASE STUDIES & PROOF
   ========================================================================== */

/* Supporting Motion Column Scroll & Active State */
.supporting-motion-column {
  max-height: 590px;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(5, 150, 105, 0.4) transparent;
}

.supporting-motion-column::-webkit-scrollbar {
  width: 5px;
}
.supporting-motion-column::-webkit-scrollbar-track {
  background: transparent;
}
.supporting-motion-column::-webkit-scrollbar-thumb {
  background: rgba(5, 150, 105, 0.35);
  border-radius: var(--radius-full);
}
.supporting-motion-column::-webkit-scrollbar-thumb:hover {
  background: var(--emerald);
}

.supporting-motion-card {
  cursor: pointer;
  position: relative;
}

.supporting-motion-card.active {
  border-color: var(--emerald) !important;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(212, 175, 55, 0.04)) !important;
  box-shadow: 0 0 16px rgba(5, 150, 105, 0.2) !important;
}

.supporting-motion-card.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--emerald);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* 07. Selected Case Study Previews */
.case-study-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.case-study-preview-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.case-study-preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(5, 150, 105, 0.12);
}

.case-study-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.case-study-preview-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.case-study-triad {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.case-study-pillar {
  padding-left: 1rem;
  border-left: 2px solid var(--border-emerald);
}

.case-study-pillar-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald);
  margin-bottom: 0.25rem;
}

.case-study-pillar-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.case-study-card-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-study-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--emerald);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
}

.case-study-card-cta:hover {
  color: var(--champagne);
  transform: translateX(3px);
}

/* 08. The Studio Proof Grid */
.studio-proof-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.studio-proof-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.studio-proof-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-md), 0 0 16px rgba(5, 150, 105, 0.1);
}

.studio-proof-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--emerald);
}

.studio-proof-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.studio-proof-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   MASTER SHOWROOM EDITORIAL REFINEMENTS
   ========================================================================== */

/* Chapter 03 — Curated Selected Work: Alternating Editorial Feature Blocks */
.curated-editorial-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 3rem;
}

.curated-editorial-item {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl, 24px);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.curated-editorial-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-xl), 0 20px 40px rgba(5, 150, 105, 0.12);
}

.curated-editorial-item.reverse {
  grid-template-columns: 1fr 1.15fr;
}

.curated-editorial-item.reverse .curated-editorial-media {
  order: 2;
}

.curated-editorial-item.reverse .curated-editorial-content {
  order: 1;
}

.curated-editorial-media {
  position: relative;
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: var(--bg-secondary);
}

.curated-editorial-media img,
.curated-editorial-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.curated-editorial-item:hover .curated-editorial-media img,
.curated-editorial-item:hover .curated-editorial-media video {
  transform: scale(1.04);
}

.editorial-media-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: rgba(10, 15, 20, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full, 9999px);
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  z-index: 3;
  pointer-events: none;
}

.media-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald, #10B981);
  box-shadow: 0 0 8px var(--emerald, #10B981);
}

.curated-editorial-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.curated-editorial-play-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full, 9999px);
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid var(--border-emerald, rgba(16, 185, 129, 0.35));
  color: var(--emerald-deep, #047857);
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.curated-editorial-play-link:hover {
  background: var(--emerald, #10B981);
  color: #FFFFFF;
  border-color: var(--emerald, #10B981);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}

.curated-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid var(--border-emerald);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.curated-editorial-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.curated-editorial-story {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.curated-editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--emerald-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
}

.curated-editorial-cta:hover {
  color: var(--emerald);
  transform: translateX(4px);
}

/* Chapter 04 — The Work, In Motion: Side-by-Side Cinema Screen + Video Selectors */
.motion-stage-wrapper {
  max-width: 1240px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 992px) {
  .motion-stage-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.motion-cinema-screen {
  position: relative;
  width: 100%;
  border-radius: var(--radius-2xl, 24px);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 35px rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.motion-cinema-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  overflow: hidden;
  background: #050b08;
}

.motion-cinema-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.motion-cinema-screen:hover .motion-cinema-viewport img {
  transform: scale(1.02);
}

.motion-cinema-details {
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}

.motion-cinema-meta-left {
  width: 100%;
}

.motion-cinema-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.motion-cinema-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Side List for Video Selectors */
.motion-selector-bar {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.motion-tab-btn {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg, 12px);
  padding: 0.85rem 1.15rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.motion-tab-btn:hover {
  border-color: var(--border-emerald);
  transform: translateX(4px);
  background: rgba(5, 150, 105, 0.05);
}

.motion-tab-btn.active {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.18), rgba(212, 175, 55, 0.1));
  border-color: var(--emerald);
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.22);
  transform: translateX(5px);
}

.motion-tab-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.motion-tab-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold, #D4AF37);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm, 6px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}

.motion-tab-btn.active .motion-tab-num {
  background: var(--emerald);
  color: #FFFFFF;
  border-color: var(--emerald);
}

.motion-tab-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.motion-tab-name {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.motion-tab-spec {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.motion-tab-play-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.motion-tab-btn:hover .motion-tab-play-indicator,
.motion-tab-btn.active .motion-tab-play-indicator {
  background: var(--emerald);
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Chapter 07 — Selected Work / Case Studies: Dominant Visual Cards */
.case-study-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.case-study-visual-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl, 20px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.case-study-visual-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-xl), 0 16px 36px rgba(5, 150, 105, 0.1);
}

.case-study-visual-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.case-study-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-study-visual-card:hover .case-study-visual-media img {
  transform: scale(1.05);
}

.case-study-visual-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-study-visual-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

/* Chapter 09 — How We Build: Editorial Timeline with Connecting Progression Line */
.process-editorial-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-editorial-timeline::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
  opacity: 0.35;
  z-index: 1;
}

.process-step-editorial {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl, 16px);
  padding: 2rem 1.25rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.process-step-editorial:hover {
  transform: translateY(-5px);
  border-color: var(--border-emerald);
  box-shadow: var(--shadow-md);
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold, #D4AF37);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-step-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Responsive Overrides for Editorial Layouts */
@media (max-width: 992px) {
  .curated-editorial-item,
  .curated-editorial-item.reverse {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .curated-editorial-item.reverse .curated-editorial-media {
    order: 1;
  }
  .curated-editorial-item.reverse .curated-editorial-content {
    order: 2;
  }
  .curated-editorial-media {
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .motion-selector-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .case-study-visual-grid {
    grid-template-columns: 1fr;
  }
  .process-editorial-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-editorial-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .motion-selector-bar {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .motion-tab-btn {
    padding: 0.75rem 1rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .process-editorial-timeline {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   OMNI LUXURY MULTI-COLOR NEON HOVER BORDER SYSTEM (PORTFOLIO & CONTACT)
   Universal 4-sided animated glowing neon border lines on hover
   ========================================================================== */

@keyframes omniNeonFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

:is(
  .omni-neon-box,
  /* Contact Page & Inquiries */
  #consultation-form,
  #direct-channels > div,
  #formReadyOutput,
  .contact-info-card,
  .contact-form-card,
  .c-detail-item,
  .tag-pill,
  /* Portfolio & Showroom Cards */
  .exhibit-card,
  .work-card,
  .cap-card,
  .case-card,
  .proof-card,
  .pipeline-card,
  .cs-box-card,
  .cs-stat-card,
  .cs-outcome-card,
  .workflow-demo-box,
  .project-editorial-card,
  .curated-editorial-item,
  .discipline-card,
  .discipline-stat-item,
  .showroom-card,
  .before-after-frame,
  .studio-capability-card,
  .case-study-visual-card,
  .interactive-spec-card,
  .spec-box,
  .stat-stat-card,
  .timeline-card,
  .step-box,
  .bento-cell,
  .bento-card,
  .showroom-stage-frame,
  .process-pill-card,
  .project-grid-card,
  .deliverable-chip-card,
  .modal-card,
  .modal-8k-content
) {
  --omni-border-flow: linear-gradient(135deg, #00F5D4, #00BBF9, #10B981, #00F5D4);
  --omni-border-glow: rgba(0, 245, 212, 0.4);
  position: relative;
}

/* Alternating Theme 1: Cyber Emerald & Cyan */
:is(
  .omni-neon-box,
  #consultation-form, #direct-channels > div, #formReadyOutput, .contact-info-card, .contact-form-card,
  .exhibit-card, .work-card, .cap-card, .case-card, .proof-card, .pipeline-card,
  .cs-box-card, .cs-stat-card, .cs-outcome-card, .workflow-demo-box, .project-editorial-card,
  .curated-editorial-item, .discipline-card, .discipline-stat-item, .showroom-card,
  .before-after-frame, .studio-capability-card, .case-study-visual-card, .interactive-spec-card,
  .spec-box, .stat-stat-card, .timeline-card, .step-box, .bento-cell, .bento-card,
  .showroom-stage-frame, .process-pill-card, .project-grid-card, .deliverable-chip-card
):nth-child(5n + 1),
.omni-neon-box[data-omni-theme="1"] {
  --omni-border-flow: linear-gradient(135deg, #00F5D4, #00BBF9, #10B981, #00F5D4);
  --omni-border-glow: rgba(0, 245, 212, 0.45);
}

/* Alternating Theme 2: Imperial Liquid Gold & Solar Amber */
:is(
  .omni-neon-box,
  #consultation-form, #direct-channels > div, #formReadyOutput, .contact-info-card, .contact-form-card,
  .exhibit-card, .work-card, .cap-card, .case-card, .proof-card, .pipeline-card,
  .cs-box-card, .cs-stat-card, .cs-outcome-card, .workflow-demo-box, .project-editorial-card,
  .curated-editorial-item, .discipline-card, .discipline-stat-item, .showroom-card,
  .before-after-frame, .studio-capability-card, .case-study-visual-card, .interactive-spec-card,
  .spec-box, .stat-stat-card, .timeline-card, .step-box, .bento-cell, .bento-card,
  .showroom-stage-frame, .process-pill-card, .project-grid-card, .deliverable-chip-card
):nth-child(5n + 2),
.omni-neon-box[data-omni-theme="2"] {
  --omni-border-flow: linear-gradient(135deg, #FFE082, #F59E0B, #D4AF37, #FFE082);
  --omni-border-glow: rgba(245, 158, 11, 0.45);
}

/* Alternating Theme 3: Ultraviolet & Electric Magenta */
:is(
  .omni-neon-box,
  #consultation-form, #direct-channels > div, #formReadyOutput, .contact-info-card, .contact-form-card,
  .exhibit-card, .work-card, .cap-card, .case-card, .proof-card, .pipeline-card,
  .cs-box-card, .cs-stat-card, .cs-outcome-card, .workflow-demo-box, .project-editorial-card,
  .curated-editorial-item, .discipline-card, .discipline-stat-item, .showroom-card,
  .before-after-frame, .studio-capability-card, .case-study-visual-card, .interactive-spec-card,
  .spec-box, .stat-stat-card, .timeline-card, .step-box, .bento-cell, .bento-card,
  .showroom-stage-frame, .process-pill-card, .project-grid-card, .deliverable-chip-card
):nth-child(5n + 3),
.omni-neon-box[data-omni-theme="3"] {
  --omni-border-flow: linear-gradient(135deg, #A855F7, #EC4899, #6366F1, #A855F7);
  --omni-border-glow: rgba(236, 72, 153, 0.45);
}

/* Alternating Theme 4: Sunset Flame & Radiant Coral */
:is(
  .omni-neon-box,
  #consultation-form, #direct-channels > div, #formReadyOutput, .contact-info-card, .contact-form-card,
  .exhibit-card, .work-card, .cap-card, .case-card, .proof-card, .pipeline-card,
  .cs-box-card, .cs-stat-card, .cs-outcome-card, .workflow-demo-box, .project-editorial-card,
  .curated-editorial-item, .discipline-card, .discipline-stat-item, .showroom-card,
  .before-after-frame, .studio-capability-card, .case-study-visual-card, .interactive-spec-card,
  .spec-box, .stat-stat-card, .timeline-card, .step-box, .bento-cell, .bento-card,
  .showroom-stage-frame, .process-pill-card, .project-grid-card, .deliverable-chip-card
):nth-child(5n + 4),
.omni-neon-box[data-omni-theme="4"] {
  --omni-border-flow: linear-gradient(135deg, #FF6B6B, #FF8E53, #FF007A, #FF6B6B);
  --omni-border-glow: rgba(255, 107, 107, 0.45);
}

/* Alternating Theme 5: Prism Aurora / Cosmic Spectrum */
:is(
  .omni-neon-box,
  #consultation-form, #direct-channels > div, #formReadyOutput, .contact-info-card, .contact-form-card,
  .exhibit-card, .work-card, .cap-card, .case-card, .proof-card, .pipeline-card,
  .cs-box-card, .cs-stat-card, .cs-outcome-card, .workflow-demo-box, .project-editorial-card,
  .curated-editorial-item, .discipline-card, .discipline-stat-item, .showroom-card,
  .before-after-frame, .studio-capability-card, .case-study-visual-card, .interactive-spec-card,
  .spec-box, .stat-stat-card, .timeline-card, .step-box, .bento-cell, .bento-card,
  .showroom-stage-frame, .process-pill-card, .project-grid-card, .deliverable-chip-card
):nth-child(5n + 5),
.omni-neon-box[data-omni-theme="5"] {
  --omni-border-flow: linear-gradient(135deg, #00F5D4, #7B2CBF, #FF007A, #F59E0B, #00F5D4);
  --omni-border-glow: rgba(123, 44, 191, 0.45);
}

/* 4-Sided Neon Border Pseudo-Element */
:is(
  .omni-neon-box,
  #consultation-form,
  #direct-channels > div,
  #formReadyOutput,
  .contact-info-card,
  .contact-form-card,
  .c-detail-item,
  .tag-pill,
  .exhibit-card,
  .work-card,
  .cap-card,
  .case-card,
  .proof-card,
  .pipeline-card,
  .cs-box-card,
  .cs-stat-card,
  .cs-outcome-card,
  .workflow-demo-box,
  .project-editorial-card,
  .curated-editorial-item,
  .discipline-card,
  .discipline-stat-item,
  .showroom-card,
  .before-after-frame,
  .studio-capability-card,
  .case-study-visual-card,
  .interactive-spec-card,
  .spec-box,
  .stat-stat-card,
  .timeline-card,
  .step-box,
  .bento-cell,
  .bento-card,
  .showroom-stage-frame,
  .process-pill-card,
  .project-grid-card,
  .deliverable-chip-card,
  .modal-card,
  .modal-8k-content
)::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2.2px;
  background: var(--omni-border-flow);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

/* Hover Illumination */
:is(
  .omni-neon-box,
  #consultation-form,
  #direct-channels > div,
  #formReadyOutput,
  .contact-info-card,
  .contact-form-card,
  .c-detail-item,
  .tag-pill,
  .exhibit-card,
  .work-card,
  .cap-card,
  .case-card,
  .proof-card,
  .pipeline-card,
  .cs-box-card,
  .cs-stat-card,
  .cs-outcome-card,
  .workflow-demo-box,
  .project-editorial-card,
  .curated-editorial-item,
  .discipline-card,
  .discipline-stat-item,
  .showroom-card,
  .before-after-frame,
  .studio-capability-card,
  .case-study-visual-card,
  .interactive-spec-card,
  .spec-box,
  .stat-stat-card,
  .timeline-card,
  .step-box,
  .bento-cell,
  .bento-card,
  .showroom-stage-frame,
  .process-pill-card,
  .project-grid-card,
  .deliverable-chip-card,
  .modal-card,
  .modal-8k-content
):hover::after {
  opacity: 1;
  animation: omniNeonFlow 3s linear infinite;
  filter: drop-shadow(0 0 8px var(--omni-border-glow));
}

/* Direct Multi-Color Glow on Form Inputs */
:is(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  textarea,
  select
) {
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

:is(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  textarea,
  select
):hover,
:is(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  textarea,
  select
):focus {
  outline: none !important;
  border-color: #00F5D4 !important;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.45), inset 0 0 5px rgba(0, 245, 212, 0.15) !important;
}

:is(input, textarea, select):nth-of-type(5n + 2):hover,
:is(input, textarea, select):nth-of-type(5n + 2):focus {
  border-color: #F59E0B !important;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.45), inset 0 0 5px rgba(245, 158, 11, 0.15) !important;
}

:is(input, textarea, select):nth-of-type(5n + 3):hover,
:is(input, textarea, select):nth-of-type(5n + 3):focus {
  border-color: #EC4899 !important;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.45), inset 0 0 5px rgba(236, 72, 153, 0.15) !important;
}

:is(input, textarea, select):nth-of-type(5n + 4):hover,
:is(input, textarea, select):nth-of-type(5n + 4):focus {
  border-color: #FF6B6B !important;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.45), inset 0 0 5px rgba(255, 107, 107, 0.15) !important;
}

:is(input, textarea, select):nth-of-type(5n + 5):hover,
:is(input, textarea, select):nth-of-type(5n + 5):focus {
  border-color: #A855F7 !important;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.45), inset 0 0 5px rgba(168, 85, 247, 0.15) !important;
}




