/* ================================================================
   FILAMEN EVENTS ARCHITECTURE — events.css
   Cyber-Minimalist / Archival New Media Aesthetic
   ================================================================ */

.ev-page-wrap {
  padding: 80px 5vw 6rem;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

/* ── 1. Telemetry Badge & Page Header ─────────────────────────── */
.ev-header {
  border-bottom: 1px solid rgba(191, 255, 0, 0.2);
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
}

.ev-telemetry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
  font-size: 0.68rem;
  color: #bfff00;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.25);
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
}

.ev-telemetry-pulse {
  width: 6px;
  height: 6px;
  background: #bfff00;
  border-radius: 50%;
  box-shadow: 0 0 8px #bfff00;
  animation: ev-pulse 1.8s infinite;
}

@keyframes ev-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.ev-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.ev-main-title {
  font-family: 'Robitrial', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}

.ev-main-title em {
  color: #bfff00;
  font-style: normal;
  display: block;
}

.ev-header-meta {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 380px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 2px solid rgba(191, 255, 0, 0.4);
  padding-left: 1rem;
}

.ev-intro-text {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 860px;
  margin: 0;
}

/* ── 2. Events Hub: 4 Flagship Pillar Cards ───────────────────── */
.ev-pillars-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.ev-pillar-card {
  grid-column: span 6;
  position: relative;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ev-pillar-card:hover,
.ev-pillar-card:focus-visible {
  border-color: #bfff00;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(191, 255, 0, 0.2);
  outline: none;
}

.ev-pillar-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.ev-pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.ev-pillar-card:hover .ev-pillar-img {
  transform: scale(1.04);
  filter: brightness(1.02) contrast(1.1);
}

.ev-pillar-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.4);
  color: #bfff00;
  padding: 0.3rem 0.75rem;
  text-transform: uppercase;
}

.ev-pillar-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ev-pillar-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.ev-pillar-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.ev-pillar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ev-pillar-cta {
  color: #bfff00;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── 3. Edition Filter Bar ────────────────────────────────────── */
.ev-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.25rem;
  margin-bottom: 3.5rem;
  position: sticky;
  top: 70px;
  z-index: 50;
}

.ev-filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ev-filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ev-filter-btn:hover {
  border-color: rgba(191, 255, 0, 0.6);
  color: #fff;
  background: rgba(191, 255, 0, 0.05);
}

.ev-filter-btn.is-active {
  background: #bfff00;
  border-color: #bfff00;
  color: #000;
  font-weight: 700;
}

.ev-filter-info {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

/* ── 4. Detailed Edition Section Block ────────────────────────── */
.ev-edition-section {
  margin-bottom: 5.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4.5rem;
  position: relative;
  z-index: 10;
}

.ev-edition-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.ev-edition-header {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #bfff00;
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 20;
}

.ev-edition-title-block {
  max-width: 720px;
}

.ev-edition-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.ev-edition-year-tag {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: #bfff00;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ev-edition-date-tag {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ev-edition-loc-tag {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: rgba(191, 255, 0, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ev-edition-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.ev-edition-synopsis {
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.ev-edition-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-meta-item {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ev-meta-label {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 0.4rem;
}

.ev-meta-val {
  color: #ffffff;
  font-weight: 600;
}

.ev-edition-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  position: relative;
  z-index: 30;
}

.ev-edition-launch-btn {
  background: #bfff00;
  border: 1px solid #bfff00;
  color: #000000;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  cursor: pointer !important;
  pointer-events: auto !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 15px rgba(191, 255, 0, 0.35);
  transition: all 0.2s ease;
}

.ev-edition-launch-btn:hover,
.ev-edition-launch-btn:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  outline: none;
}

/* ── 5. Edition Image Grid ────────────────────────────────────── */
.ev-edition-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 15;
}

.ev-img-card {
  position: relative;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer !important;
  pointer-events: auto !important;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 20;
}

.ev-img-card:hover,
.ev-img-card:focus-visible {
  border-color: #bfff00;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(191, 255, 0, 0.15);
  outline: none;
}

.ev-span-8 { grid-column: span 8; }
.ev-span-6 { grid-column: span 6; }
.ev-span-4 { grid-column: span 4; }
.ev-span-12 { grid-column: span 12; }

.ev-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
  pointer-events: none;
}

.ev-span-8 .ev-img-wrap { aspect-ratio: 16 / 9; }
.ev-span-6 .ev-img-wrap { aspect-ratio: 16 / 10; }
.ev-span-4 .ev-img-wrap { aspect-ratio: 4 / 3; }
.ev-span-12 .ev-img-wrap { aspect-ratio: 21 / 9; }

.ev-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.ev-img-card:hover .ev-card-img {
  transform: scale(1.04);
  filter: brightness(1.02) contrast(1.1);
}

.ev-img-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #bfff00;
  padding: 0.2rem 0.5rem;
  text-transform: uppercase;
}

.ev-img-cue {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.4);
  color: #fff;
  padding: 0.2rem 0.55rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ev-img-card:hover .ev-img-cue {
  opacity: 1;
  transform: translateY(0);
}

.ev-img-info {
  padding: 1rem 1.25rem;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.ev-img-caption {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ev-img-counter-tag {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: #bfff00;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

/* ── 6. Scoped Event Lightbox Viewer ──────────────────────────── */
.ev-viewer {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999999 !important;
  background: rgba(0, 0, 0, 0.96) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

.ev-viewer.is-open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.ev-viewer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.7);
  z-index: 20;
}

.ev-viewer-badge-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ev-viewer-cat-label {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ev-viewer-counter {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #bfff00;
  letter-spacing: 0.15em;
}

.ev-viewer-title-box {
  text-align: center;
  max-width: 600px;
}

.ev-viewer-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.ev-viewer-meta {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.ev-viewer-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ev-viewer-close-btn:hover {
  background: #bfff00;
  border-color: #bfff00;
  color: #000;
}

.ev-viewer-stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  overflow: hidden;
  z-index: 10;
}

.ev-viewer-img {
  max-width: 88vw;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
  pointer-events: auto;
}

.ev-viewer-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(191, 255, 0, 0.4);
  color: #bfff00;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 30;
}

.ev-viewer-nav-btn:hover {
  background: #bfff00;
  color: #000;
  box-shadow: 0 0 20px rgba(191, 255, 0, 0.4);
}

.ev-viewer-nav-btn--prev { left: 2rem; }
.ev-viewer-nav-btn--next { right: 2rem; }

.ev-viewer-bottom {
  padding: 1rem 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  z-index: 20;
}

.ev-viewer-caption {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 700px;
}

.ev-viewer-filmstrip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  max-width: 85vw;
  padding: 0.25rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(191, 255, 0, 0.4) transparent;
}

.ev-viewer-thumb {
  width: 54px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ev-viewer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: filter 0.2s ease;
}

.ev-viewer-thumb.is-active,
.ev-viewer-thumb:hover {
  border-color: #bfff00;
  transform: translateY(-2px);
}

.ev-viewer-thumb.is-active img,
.ev-viewer-thumb:hover img {
  filter: brightness(1);
}

/* ── 7. Responsive Rules ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .ev-pillar-card {
    grid-column: span 12;
  }
  .ev-edition-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .ev-span-8 { grid-column: span 6; }
  .ev-span-6 { grid-column: span 6; }
  .ev-span-4 { grid-column: span 3; }
  .ev-span-12 { grid-column: span 6; }
  .ev-viewer-stage { padding: 1rem 2rem; }
  .ev-viewer-nav-btn--prev { left: 0.75rem; }
  .ev-viewer-nav-btn--next { right: 0.75rem; }
}

@media (max-width: 768px) {
  .ev-edition-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .ev-span-8,
  .ev-span-6,
  .ev-span-4,
  .ev-span-12 {
    grid-column: span 1;
  }
  .ev-img-wrap {
    aspect-ratio: 16 / 10 !important;
  }
  .ev-edition-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .ev-edition-actions {
    align-items: flex-start;
    width: 100%;
  }
  .ev-edition-launch-btn {
    width: 100%;
    justify-content: center;
  }
  .ev-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ev-viewer-top {
    padding: 1rem 1.25rem;
  }
  .ev-viewer-counter {
    font-size: 0.9rem;
  }
  .ev-viewer-stage {
    padding: 0.5rem 1rem;
  }
  .ev-viewer-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
}

/* ================================================================
   DIGITAL TECH INCUBATOR (DTI) STYLING
   ================================================================ */

.dti-page-wrap {
  padding: 80px 5vw 6rem;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.dti-hero-showcase {
  margin-bottom: 4.5rem;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.dti-lead-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 340px;
  background: #000;
  overflow: hidden;
}

.dti-lead-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  filter: brightness(0.85) contrast(1.08);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.dti-lead-img-wrap:hover .dti-lead-img {
  transform: scale(1.025);
  filter: brightness(0.96) contrast(1.12);
}

.dti-lead-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #bfff00;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(191, 255, 0, 0.35);
  padding: 0.4rem 0.9rem;
  text-transform: uppercase;
}

.dti-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dti-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dti-strip-label {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dti-strip-val {
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #ffffff;
}

.dti-pillar-block {
  margin-bottom: 5.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4.5rem;
}

.dti-pillar-header {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #bfff00;
  padding: 2.25rem;
  margin-bottom: 2rem;
}

.dti-pillar-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.dti-pillar-code {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: #bfff00;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dti-pillar-alt {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dti-pillar-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.dti-pillar-venue {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.7rem;
  color: rgba(191, 255, 0, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.dti-pillar-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 900px;
  margin: 0;
}

.dti-pillar-media-card {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  overflow: hidden;
}

.dti-pillar-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dti-pillar-media-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.35);
  padding: 0.35rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dti-projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.dti-proj-card {
  grid-column: span 4;
  position: relative;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer !important;
  pointer-events: auto !important;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dti-proj-card:hover,
.dti-proj-card:focus-visible {
  border-color: #bfff00;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(191, 255, 0, 0.15);
  outline: none;
}

.dti-proj-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #050505;
  overflow: hidden;
}

.dti-proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.dti-proj-card:hover .dti-proj-img {
  transform: scale(1.05);
  filter: brightness(1.02) contrast(1.1);
}

.dti-proj-year {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.6rem;
  color: #bfff00;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.3);
  padding: 0.2rem 0.55rem;
  z-index: 2;
  text-transform: uppercase;
}

.dti-proj-cue {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.4);
  padding: 0.2rem 0.55rem;
  z-index: 2;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.dti-proj-card:hover .dti-proj-cue {
  opacity: 1;
  transform: translateY(0);
}

.dti-proj-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dti-proj-format {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.dti-proj-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.dti-proj-synopsis {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.dti-pillar-venue-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  color: #bfff00;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.dti-pillar-venue-row .venue-icon {
  font-size: 0.85rem;
  color: #bfff00;
}
.dti-pillar-venue-row .venue-text {
  color: rgba(255, 255, 255, 0.7);
}

.dti-filter-bar {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dti-proj-footer {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dti-proj-inspect-btn {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.dti-proj-card:hover .dti-proj-inspect-btn {
  color: #bfff00;
}

.dti-proj-link {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #bfff00;
  text-decoration: none;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 5;
  position: relative;
}

.dti-proj-link:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* ── DTI Dedicated Lightbox & Info Panel ── */
.dti-viewer-modal {
  background: rgba(4, 4, 4, 0.97) !important;
}

.dti-modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.95);
  flex-shrink: 0;
  z-index: 30;
}

.dti-modal-top-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.dti-modal-venue-tag {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: #bfff00;
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.25);
  padding: 0.35rem 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dti-modal-body-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  scrollbar-width: thin;
  scrollbar-color: #bfff00 #111;
}

.dti-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.dti-modal-media-col {
  position: sticky;
  top: 0;
}

.dti-modal-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(191, 255, 0, 0.08);
}

.dti-modal-img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dti-modal-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dti-modal-kicker {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: #bfff00;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.dti-modal-proj-name {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.dti-modal-synopsis {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0;
}

.dti-modal-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem;
}

.dti-modal-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dti-modal-spec-item.full-width {
  grid-column: span 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

.dti-modal-spec-item .spec-label {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dti-modal-spec-item .spec-val {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.dti-modal-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.dti-modal-primary-btn {
  background: #bfff00;
  color: #000000;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  border: 1px solid #bfff00;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(191, 255, 0, 0.25);
  cursor: pointer;
}

.dti-modal-primary-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.dti-modal-secondary-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dti-modal-secondary-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.dti-modal-filmstrip-wrap {
  max-width: 1400px;
  margin: 1.5rem auto 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.dti-filmstrip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.dti-filmstrip-title {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: #bfff00;
  letter-spacing: 0.12em;
}

.dti-filmstrip-hint {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

.dti-filmstrip-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: #bfff00 rgba(255, 255, 255, 0.05);
}

.dti-filmstrip-thumb {
  flex: 0 0 110px;
  height: 80px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.dti-filmstrip-thumb .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: filter 0.2s ease;
}

.dti-filmstrip-thumb .thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.5rem;
  color: #ffffff;
  padding: 0.2rem 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.dti-filmstrip-thumb:hover .thumb-img,
.dti-filmstrip-thumb.is-active .thumb-img {
  filter: brightness(1);
}

.dti-filmstrip-thumb.is-active {
  border-color: #bfff00;
  box-shadow: 0 0 15px rgba(191, 255, 0, 0.4);
}

.dti-filmstrip-thumb.is-active .thumb-label {
  color: #bfff00;
}

@media (max-width: 1024px) {
  .dti-proj-card {
    grid-column: span 6;
  }
  .dti-summary-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dti-modal-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .dti-modal-media-col {
    position: static;
  }
  .dti-modal-top {
    padding: 1rem 1.5rem;
  }
  .dti-modal-body-scroll {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .dti-proj-card {
    grid-column: span 12;
  }
  .dti-lead-img-wrap,
  .dti-pillar-media-card {
    aspect-ratio: 16 / 10;
  }
  .dti-pillar-header {
    padding: 1.5rem;
  }
  .dti-modal-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }
  .dti-modal-top-right {
    width: 100%;
    justify-content: space-between;
  }
  .dti-modal-meta-grid {
    grid-template-columns: 1fr;
  }
  .dti-modal-spec-item.full-width {
    grid-column: span 1;
  }
  .dti-modal-actions {
    flex-direction: column;
    width: 100%;
  }
  .dti-modal-primary-btn,
  .dti-modal-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   GALLERY HUB ARCHITECTURE (.gl-*)
   ================================================================ */
.gl-venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.gl-venue-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gl-venue-card:hover {
  border-color: #bfff00;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(191, 255, 0, 0.15);
}

.gl-venue-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.gl-venue-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.gl-venue-overlay {
  position: relative;
  z-index: 2;
  padding: 2.25rem 2rem 1.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.gl-venue-tag {
  display: inline-block;
  background: #bfff00;
  color: #000;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.gl-venue-name {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.4rem;
}

.gl-vendor-loc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}

.gl-venue-meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.gl-venue-meta strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.gl-artwork-section {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gl-section-label {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  color: #bfff00;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.gl-artwork-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gl-art-card {
  position: relative;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gl-art-card:hover {
  border-color: #bfff00;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.gl-art-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.gl-art-card:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.gl-art-caption {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: rgba(12, 12, 12, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gl-art-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}

.gl-art-sub {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ================================================================
   SERVICES HUB ARCHITECTURE (.sv-*)
   ================================================================ */
.sv-grid-section {
  margin-top: 1rem;
}

.sv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.sv-card {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid transparent;
  padding: 2.5rem 2.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sv-card:hover {
  background: rgba(18, 18, 18, 0.98);
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: #bfff00;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(191, 255, 0, 0.12);
}

.sv-card-index {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: #bfff00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.sv-card-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  line-height: 1.1;
}

.sv-card-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.sv-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: #bfff00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.sv-card:hover .sv-card-cta {
  transform: translateX(4px);
}

/* ================================================================
   PROJECTS HUB ARCHITECTURE (.pj-*)
   ================================================================ */
.pj-grid-section {
  margin-top: 1rem;
}

.pj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pj-card {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid transparent;
  padding: 2.25rem 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pj-card:hover {
  background: rgba(18, 18, 18, 0.98);
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: #bfff00;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(191, 255, 0, 0.12);
}

.pj-card-index {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: #bfff00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.pj-card-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.pj-card-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.pj-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: #bfff00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.pj-card:hover .pj-card-cta {
  transform: translateX(4px);
}

/* ================================================================
   RESPONSIVE BREAKPOINTS FOR HUBS
   ================================================================ */
@media (max-width: 1024px) {
  .pj-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gl-venue-grid,
  .sv-grid {
    grid-template-columns: 1fr;
  }
  .gl-artwork-grid {
    grid-template-columns: 1fr;
  }
  .ev-page-wrap {
    padding: 60px 5vw 4rem;
  }
  .ev-header {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

/* ================================================================
   MEDIA ART HANDLER REDESIGN ARCHITECTURE (.mah-*)
   ================================================================ */

.mah-page-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Telemetry Stats Strip ── */
.mah-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.mah-stat-card {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid #bfff00;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.mah-stat-card:hover {
  background: rgba(18, 18, 18, 0.98);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #bfff00;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(191, 255, 0, 0.1);
}

.mah-stat-value {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.mah-stat-label {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  color: #bfff00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Lead Hero Visual Showcase ── */
.mah-hero-showcase {
  margin-bottom: 4.5rem;
}

.mah-lead-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 380px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.mah-lead-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.mah-lead-media-wrap:hover .mah-lead-img {
  transform: scale(1.03);
  filter: brightness(0.75) contrast(1.15);
}

.mah-lead-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 3rem 3.5rem 2.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 900px;
}

.mah-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: #bfff00;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.mah-lead-heading {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.mah-lead-desc {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* ── Section Headings ── */
.mah-section {
  margin-bottom: 5rem;
}

.mah-section-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.mah-sec-label {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.64rem;
  color: #bfff00;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.mah-sec-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 0.6rem;
}

.mah-sec-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 760px;
  margin: 0;
}

/* ── Core Capabilities Grid ── */
.mah-caps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mah-cap-card {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.mah-cap-card:hover {
  background: rgba(18, 18, 18, 0.98);
  border-color: #bfff00;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(191, 255, 0, 0.15);
}

.mah-cap-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080808;
  overflow: hidden;
}

.mah-cap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.mah-cap-card:hover .mah-cap-img {
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.1);
}

.mah-cap-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #bfff00;
  color: #000000;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.22rem 0.6rem;
  text-transform: uppercase;
  z-index: 2;
}

.mah-cap-cue {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.45);
  color: #bfff00;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.55rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
  z-index: 2;
}

.mah-cap-card:hover .mah-cap-cue {
  opacity: 1;
  transform: translateY(0);
}

.mah-cap-body {
  padding: 2rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mah-cap-code {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: #bfff00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mah-cap-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.mah-cap-synopsis {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.mah-cap-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mah-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
}

.mah-spec-key {
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  flex-shrink: 0;
}

.mah-spec-val {
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

/* ── Workflow Protocol Timeline ── */
.mah-wf-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.mah-wf-node {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(191, 255, 0, 0.4);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.mah-wf-node:hover {
  background: rgba(18, 18, 18, 0.98);
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #bfff00;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.mah-wf-num {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #bfff00;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.mah-wf-phase {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
}

.mah-wf-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.mah-wf-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0;
}

/* ── Deployment Logs / Case Studies ── */
.mah-cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mah-cs-card {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mah-cs-card:hover {
  background: rgba(18, 18, 18, 0.98);
  border-color: #bfff00;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(191, 255, 0, 0.15);
}

.mah-cs-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #080808;
  overflow: hidden;
}

.mah-cs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.mah-cs-card:hover .mah-cs-img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.mah-cs-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.4);
  color: #bfff00;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.22rem 0.55rem;
  text-transform: uppercase;
}

.mah-cs-body {
  padding: 2rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mah-cs-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  line-height: 1.15;
}

.mah-cs-venue {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.mah-cs-details {
  font-family: 'Roboto', sans-serif;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.mah-cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.66rem;
  font-weight: 700;
  color: #bfff00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.mah-cs-card:hover .mah-cs-cta {
  transform: translateX(4px);
}

/* ── Hardware Inventory Callout ── */
.mah-gear-callout {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(191, 255, 0, 0.25);
  padding: 3.5rem 3rem;
  margin-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mah-gear-content {
  max-width: 680px;
  margin: 0 auto;
}

.mah-gear-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.85rem;
  line-height: 1.15;
}

.mah-gear-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.mah-gear-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #bfff00;
  color: #000000;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  transition: all 0.25s ease;
}

.mah-gear-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(191, 255, 0, 0.3);
}

/* ── Service Dispatch & Consultation Form ── */
.mah-inquiry-section {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem 3.5rem 3rem;
  margin-bottom: 2rem;
}

.mah-inq-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}

.mah-inq-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0.35rem 0 0.85rem;
  line-height: 1.1;
}

.mah-inq-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.mah-inq-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mah-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mah-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mah-field label {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mah-input {
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  border-radius: 0;
  outline: none;
}

.mah-input:focus {
  border-color: #bfff00;
  box-shadow: 0 0 15px rgba(191, 255, 0, 0.15);
}

.mah-select {
  cursor: pointer;
}

.mah-select option {
  background: #111111;
  color: #ffffff;
}

.mah-textarea {
  resize: vertical;
  min-height: 90px;
}

.mah-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #bfff00;
  color: #000000;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  padding: 0.9rem 1.75rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.25s ease;
}

.mah-submit-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(191, 255, 0, 0.3);
}

.mah-success-msg {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  color: #bfff00;
  letter-spacing: 0.1em;
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.3);
  padding: 0.85rem 1rem;
  margin-top: 0.5rem;
}

/* ── Interactive Inspection Modal ── */
.mah-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mah-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mah-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
}

.mah-modal-container {
  position: relative;
  z-index: 2;
  background: #0c0c0c;
  border: 1px solid rgba(191, 255, 0, 0.35);
  max-width: 900px;
  width: 90vw;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(191, 255, 0, 0.15);
}

.mah-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
}

.mah-modal-close:hover {
  color: #bfff00;
}

.mah-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mah-modal-media-wrap {
  position: relative;
  background: #000;
  min-height: 320px;
}

.mah-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mah-modal-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.mah-modal-badge {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: #bfff00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mah-modal-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.mah-modal-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.mah-modal-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

/* ── Responsive Breakpoints ── */
@media (max-width: 1024px) {
  .mah-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .mah-wf-grid {
    grid-template-columns: 1fr;
  }
  .mah-inq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mah-modal-content {
    grid-template-columns: 1fr;
  }
  .mah-modal-media-wrap {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .mah-stats-strip {
    grid-template-columns: 1fr;
  }
  .mah-caps-grid,
  .mah-cs-grid {
    grid-template-columns: 1fr;
  }
  .mah-lead-overlay {
    padding: 1.75rem;
  }
  .mah-inquiry-section {
    padding: 2rem 1.5rem;
  }
  .mah-modal-info {
    padding: 1.5rem;
  }
}

/* ═════════════════════════════════════════════════════════════════════
   FILAMEN MERCHANDISE & COMING SOON NEWSLETTER COMPONENT (.mch-*)
   ═════════════════════════════════════════════════════════════════════ */

/* ── Physical GMBB Retail Store Banner ── */
.mch-gmbb-banner {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(191, 255, 0, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(191, 255, 0, 0.12);
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  overflow: hidden;
  position: relative;
}

.mch-gmbb-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.mch-gmbb-left {
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mch-gmbb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #bfff00;
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.3);
  padding: 0.3rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.mch-gmbb-heading {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.mch-gmbb-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.mch-gmbb-desc strong {
  color: #bfff00;
}

.mch-gmbb-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.mch-gmbb-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mch-gmbb-meta-item .meta-lbl {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mch-gmbb-meta-item .meta-val {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.mch-gmbb-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.mch-gmbb-primary-btn {
  background: #bfff00;
  color: #000000;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 1px solid #bfff00;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(191, 255, 0, 0.3);
}

.mch-gmbb-primary-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

.mch-gmbb-secondary-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mch-gmbb-secondary-btn:hover {
  border-color: #bfff00;
  color: #bfff00;
}

.mch-gmbb-right {
  position: relative;
  min-height: 100%;
}

.mch-gmbb-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
}

.mch-gmbb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

.mch-gmbb-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 0.6rem 1rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: #bfff00;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .mch-gmbb-grid {
    grid-template-columns: 1fr;
  }
  .mch-gmbb-img-wrap {
    aspect-ratio: 16 / 9;
  }
  .mch-gmbb-meta-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .mch-gmbb-left {
    padding: 1.5rem;
  }
  .mch-gmbb-actions {
    flex-direction: column;
    width: 100%;
  }
  .mch-gmbb-primary-btn,
  .mch-gmbb-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── 1. Hero Newsletter & Early Access Box ── */
.mch-newsletter-section {
  margin-top: 1rem;
  margin-bottom: 4.5rem;
}

.mch-nl-card {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(191, 255, 0, 0.06) 0%, rgba(10, 10, 10, 0.95) 70%);
  border: 1px solid rgba(191, 255, 0, 0.3);
  box-shadow: 0 0 40px rgba(191, 255, 0, 0.04), inset 0 0 20px rgba(191, 255, 0, 0.02);
  padding: 3rem;
  overflow: hidden;
}

.mch-nl-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(191, 255, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mch-nl-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left: Info */
.mch-nl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #bfff00;
  background: rgba(191, 255, 0, 0.1);
  border: 1px solid rgba(191, 255, 0, 0.3);
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.mch-nl-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bfff00;
  box-shadow: 0 0 8px #bfff00;
  animation: pulse-beacon 1.8s infinite;
}

.mch-nl-heading {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.6rem 0;
}

.mch-nl-tagline {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.82rem;
  color: #bfff00;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.2rem 0;
}

.mch-nl-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.8rem 0;
}

.mch-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mch-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mch-benefit-code {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  color: #bfff00;
  font-weight: 700;
  margin-top: 0.15rem;
}

.mch-benefit-title {
  display: block;
  font-family: 'Robitrial', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mch-benefit-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.15rem 0 0 0;
  line-height: 1.4;
}

/* Right: Form Module */
.mch-form-box {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  position: relative;
}

.mch-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.mch-form-terminal-title {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.mch-form-status {
  color: #bfff00;
  text-transform: uppercase;
}

.mch-input-label {
  display: block;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.mch-input-group {
  display: flex;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mch-input-group:focus-within {
  border-color: #bfff00;
  box-shadow: 0 0 16px rgba(191, 255, 0, 0.2);
}

.mch-input-prefix {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.9rem;
  color: #bfff00;
}

.mch-email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.85rem;
  padding: 0.9rem 0.85rem;
}

.mch-email-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.mch-email-input.input-error {
  border: 1px solid #ff3b30 !important;
}

.mch-submit-btn {
  background: #bfff00;
  color: #000000;
  border: none;
  padding: 0.9rem 1.4rem;
  font-family: 'Robitrial', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.mch-submit-btn:hover:not(:disabled) {
  background: #ffffff;
  color: #000000;
}

.mch-submit-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.mch-submit-btn.is-confirmed {
  background: #ffffff;
  color: #000000;
}

.mch-feedback {
  margin-top: 1rem;
  min-height: 24px;
}

.feedback-error {
  display: block;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  color: #ff5555;
  letter-spacing: 0.04em;
}

.feedback-hint {
  display: block;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  color: #bfff00;
  letter-spacing: 0.04em;
}

.feedback-success-card {
  display: flex;
  gap: 0.75rem;
  background: rgba(191, 255, 0, 0.08);
  border: 1px solid rgba(191, 255, 0, 0.35);
  padding: 0.85rem 1rem;
}

.feedback-success-card .fb-icon {
  color: #bfff00;
  font-weight: 900;
  font-size: 1.1rem;
}

.feedback-success-card .fb-msg strong {
  display: block;
  font-family: 'Robitrial', sans-serif;
  font-size: 0.78rem;
  color: #bfff00;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-success-card .fb-msg p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.25rem 0 0 0;
  line-height: 1.4;
}

.feedback-success {
  display: block;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  color: #bfff00;
  letter-spacing: 0.04em;
}

.mch-form-privacy {
  margin-top: 1.1rem;
  font-size: 0.7rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.35);
}

.mch-form-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mch-stat-mini {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mch-stat-mini .stat-num {
  font-family: 'Robitrial', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.mch-stat-mini .stat-lbl {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── 2. Upcoming Capsule Preview Grid ── */
.mch-capsule-section,
.mch-faq-section {
  margin-bottom: 4.5rem;
}

.mch-section-heading {
  margin-bottom: 2.25rem;
}

.mch-sec-badge {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #bfff00;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mch-sec-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem 0;
}

.mch-sec-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.mch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mch-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
  overflow: hidden;
}

.mch-card:hover {
  transform: translateY(-6px);
  border-color: #bfff00;
}

.mch-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000000;
  overflow: hidden;
}

.mch-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.mch-card:hover .mch-card-img {
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.12);
}

.mch-card-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.4);
  color: #bfff00;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

.mch-card-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.85rem;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.2rem 0.5rem;
}

.mch-card-ed {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.mch-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mch-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.mch-card-code {
  color: #bfff00;
}

.mch-card-cat {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.mch-card-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}

.mch-card-spec {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.mch-card-notify-btn {
  background: transparent;
  border: 1px solid rgba(191, 255, 0, 0.3);
  color: #bfff00;
  padding: 0.65rem 0.85rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mch-card-notify-btn:hover {
  background: #bfff00;
  color: #000000;
}

/* ── 3. FAQs Grid ── */
.mch-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mch-faq-card {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
}

.mch-faq-num {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: #bfff00;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.mch-faq-q {
  font-family: 'Robitrial', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.35;
  margin: 0 0 0.75rem 0;
}

.mch-faq-a {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .mch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mch-nl-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mch-nl-card {
    padding: 2rem;
  }
  .mch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mch-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .mch-nl-card {
    padding: 1.5rem;
  }
  .mch-input-group {
    flex-direction: column;
  }
  .mch-submit-btn {
    width: 100%;
    padding: 0.85rem;
  }
  .mch-form-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .mch-grid {
    grid-template-columns: 1fr;
  }
}




/* ================================================================
   ABOUT US PAGE ARCHITECTURE (.ab-*)
   ================================================================ */
.ab-page-wrap {
  width: 100%;
  padding-bottom: 5rem;
}

.ab-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 3.5rem;
  padding: 1.5rem 2rem;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #bfff00;
}

.ab-stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ab-stat-val {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.ab-stat-val em {
  color: #bfff00;
  font-style: normal;
}

.ab-stat-lbl {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ab-hero-showcase {
  margin-bottom: 4.5rem;
}

.ab-lead-wrap {
  position: relative;
  width: 100%;
  min-height: 380px;
  max-height: 520px;
  background: #050505;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ab-lead-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.8) contrast(1.08);
}

.ab-lead-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 90%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
  z-index: 2;
}

.ab-lead-badge {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #bfff00;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.ab-lead-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  max-width: 820px;
  margin: 0 0 0.5rem;
}

.ab-lead-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  max-width: 760px;
  margin: 0;
}

.ab-section-block {
  margin-bottom: 4.5rem;
  scroll-margin-top: 100px;
}

.ab-editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.ab-editorial-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ab-sec-tag {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  color: #bfff00;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ab-sec-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
}

.ab-paragraph {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin: 0;
}

.ab-paragraph strong {
  color: #ffffff;
  font-weight: 600;
}

.ab-sidebar-card {
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ab-sidebar-header {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  color: #bfff00;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

.ab-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ab-sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.ab-sidebar-item .lbl {
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}

.ab-sidebar-item .val {
  color: #ffffff;
  font-weight: 600;
}

.ab-feature-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.ab-feature-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: all 0.3s ease;
}

.ab-feature-pill:hover {
  border-color: #bfff00;
  transform: translateY(-3px);
  background: rgba(191, 255, 0, 0.02);
}

.ab-pill-icon {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.75rem;
  color: #bfff00;
}

.ab-pill-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.ab-pill-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

.ab-initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.ab-init-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-init-card:hover {
  border-color: #bfff00;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(191, 255, 0, 0.15);
}

.ab-init-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000;
  overflow: hidden;
}

.ab-init-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.ab-init-card:hover .ab-init-img {
  transform: scale(1.05);
  filter: brightness(1);
}

.ab-init-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.35);
  color: #bfff00;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  padding: 0.2rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ab-init-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.ab-init-node {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.ab-init-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.5rem;
}

.ab-init-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}

.ab-init-cta {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #bfff00;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.ab-init-card:hover .ab-init-cta {
  color: #ffffff;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .ab-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .ab-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ab-initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ab-stats-strip {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .ab-lead-overlay {
    padding: 1.5rem;
  }
  .ab-feature-pills-grid {
    grid-template-columns: 1fr;
  }
  .ab-initiatives-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   EQUIPMENT INVENTORY ARCHITECTURE (.eq-*)
   ================================================================ */
.eq-page-wrap {
  width: 100%;
  padding-bottom: 5rem;
}

.eq-filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.eq-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.eq-filter-btn:hover {
  border-color: #bfff00;
  color: #bfff00;
}

.eq-filter-btn.is-active {
  background: #bfff00;
  border-color: #bfff00;
  color: #000000;
  box-shadow: 0 0 16px rgba(191, 255, 0, 0.25);
}

.eq-grid-section {
  margin-top: 2.5rem;
  margin-bottom: 4.5rem;
}

.eq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.eq-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eq-card:hover {
  border-color: #bfff00;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(191, 255, 0, 0.15);
}

.eq-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.eq-card-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.eq-card:hover .eq-card-img {
  transform: scale(1.08);
}

.eq-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(191, 255, 0, 0.4);
  color: #bfff00;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.eq-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.eq-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eq-card-title {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0;
  flex: 1;
}

.eq-price-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}

.eq-price-amount {
  font-family: 'Robitrial', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #bfff00;
  letter-spacing: 0.02em;
  line-height: 1;
}

.eq-price-sub {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.eq-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.eq-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.eq-spec-lbl {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eq-spec-val {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffffff;
}

.eq-features-wrap {
  margin-bottom: 1.5rem;
  flex: 1;
}

.eq-features-title {
  display: block;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.6rem;
  color: rgba(191, 255, 0, 0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.eq-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.eq-features-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  position: relative;
  padding-left: 1rem;
}

.eq-features-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #bfff00;
  font-weight: 700;
}

.eq-card-actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.eq-reserve-btn {
  background: #bfff00;
  color: #000000;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #bfff00;
  transition: all 0.2s ease;
}

.eq-reserve-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
}

.eq-support-banner {
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(191, 255, 0, 0.3);
  padding: 2.25rem 2.5rem;
  margin-bottom: 3.5rem;
}

.eq-support-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.eq-sup-badge {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.65rem;
  color: #bfff00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.eq-sup-title {
  font-family: 'Robitrial', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.eq-sup-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  max-width: 700px;
  margin: 0;
}

.eq-sup-desc strong {
  color: #bfff00;
}

.eq-sup-link {
  background: transparent;
  border: 1px solid rgba(191, 255, 0, 0.4);
  color: #bfff00;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.eq-sup-link:hover {
  background: #bfff00;
  color: #000000;
}

@media (max-width: 900px) {
  .eq-support-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .eq-grid {
    grid-template-columns: 1fr;
  }
}
