/* Omegaspace - Neubrutalist Design System */
/* Vanilla HTML/CSS/JS Version */

/* Cross-Browser Normalization */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #000000;
  color: #f8fafc;
  
  /* Color Palette */
  --omega-teal: #14b8a6;
  --omega-teal-light: #5eead4;
  --omega-teal-dark: #0d9488;
  --omega-maroon: #800020;
  --omega-maroon-light: #a00030;
  --omega-maroon-dark: #600015;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available; /* Safari fix */
  background: #000000;
  padding-bottom: max(80px, calc(80px + env(safe-area-inset-bottom))); /* Space for fixed nav + notch */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

a {
  color: inherit;
  text-decoration: none;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--omega-teal);
  color: #000000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 3px solid var(--omega-teal);
  box-shadow: 4px 4px 0 var(--omega-maroon);
  -webkit-transition: top 0.2s ease;
  -moz-transition: top 0.2s ease;
  -o-transition: top 0.2s ease;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--omega-teal-light);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
}

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

/* ============================================
   FIXED BOTTOM NAVIGATION
   ============================================ */
.fixed-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000000;
  background-color: rgba(0, 0, 0, 0.95); /* Fallback for browsers without backdrop-filter */
  border-top: 4px solid var(--omega-teal);
  box-shadow: 0 -8px 0px 0px var(--omega-maroon), 0 -16px 0px 0px rgba(20, 184, 166, 0.3);
  padding: 0.5rem 0;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.nav-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  background: #000000;
  border: 3px solid;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-transition: -webkit-transform 0.2s ease, box-shadow 0.2s ease;
  -moz-transition: -moz-transform 0.2s ease, box-shadow 0.2s ease;
  -o-transition: -o-transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 60px;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto;
  z-index: 1;
  will-change: transform;
  -webkit-will-change: transform;
  contain: layout style paint;
}

.nav-link:hover {
  -webkit-transform: translate(-4px, -4px) scale(1.05);
  -moz-transform: translate(-4px, -4px) scale(1.05);
  -ms-transform: translate(-4px, -4px) scale(1.05);
  transform: translate(-4px, -4px) scale(1.05);
  z-index: 10;
}

.nav-link:active {
  -webkit-transform: translate(-2px, -2px) scale(1.02);
  -moz-transform: translate(-2px, -2px) scale(1.02);
  -ms-transform: translate(-2px, -2px) scale(1.02);
  transform: translate(-2px, -2px) scale(1.02);
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.nav-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.nav-link:hover .nav-icon {
  transform: scale(1.2) rotate(5deg);
}

.nav-label {
  font-size: 0.6rem;
  line-height: 1;
  font-weight: 800;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.3s ease;
  display: block;
}

.nav-link:hover .nav-label {
  transform: translateY(-2px);
  letter-spacing: 0.1em;
}

/* Nav: all buttons red (maroon); only current page cyan (teal) */
.nav-link-teal,
.nav-link-maroon {
  border-color: var(--omega-maroon);
  box-shadow: 4px 4px 0px 0px var(--omega-maroon);
  color: var(--omega-maroon);
}

.nav-link-teal:hover,
.nav-link-maroon:hover {
  background: rgba(128, 0, 32, 0.15);
  box-shadow: 8px 8px 0px 0px var(--omega-maroon-light), 0 0 20px rgba(128, 0, 32, 0.5);
  border-color: var(--omega-maroon-light);
  color: var(--omega-maroon-light);
}

/* Only the current page (active) is cyan/teal */
.nav-link-teal.active,
.nav-link-maroon.active {
  background: rgba(20, 184, 166, 0.2);
  border-color: var(--omega-teal);
  box-shadow: 4px 4px 0px 0px var(--omega-teal);
  color: var(--omega-teal);
}

.nav-link-teal.active:hover,
.nav-link-maroon.active:hover {
  background: rgba(20, 184, 166, 0.25);
  border-color: var(--omega-teal-light);
  box-shadow: 6px 6px 0px 0px var(--omega-teal-light);
  color: var(--omega-teal-light);
}

/* ============================================
   HOMEPAGE STYLES
   ============================================ */
.homepage {
  width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  padding: 8rem 2rem 6rem;
  background: #000000;
  border-bottom: 8px solid var(--omega-teal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

/* Pixelated starry background: white stars + diagonally aligned smaller R,G,B pixels */
.hero-stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='%23ffffff' fill-opacity='0.35'%3E%3Crect x='4' y='2' width='2' height='2'/%3E%3Crect x='18' y='8' width='2' height='2'/%3E%3Crect x='44' y='4' width='2' height='2'/%3E%3Crect x='8' y='22' width='2' height='2'/%3E%3Crect x='52' y='14' width='2' height='2'/%3E%3Crect x='28' y='6' width='2' height='2'/%3E%3Crect x='12' y='38' width='2' height='2'/%3E%3Crect x='38' y='28' width='2' height='2'/%3E%3Crect x='56' y='36' width='2' height='2'/%3E%3Crect x='6' y='48' width='2' height='2'/%3E%3Crect x='32' y='44' width='2' height='2'/%3E%3Crect x='22' y='54' width='2' height='2'/%3E%3Crect x='48' y='52' width='2' height='2'/%3E%3Crect x='14' y='16' width='2' height='2'/%3E%3Crect x='42' y='18' width='2' height='2'/%3E%3Crect x='2' y='32' width='2' height='2'/%3E%3Crect x='58' y='48' width='2' height='2'/%3E%3Crect x='24' y='32' width='2' height='2'/%3E%3Crect x='36' y='50' width='2' height='2'/%3E%3C/g%3E%3Cg fill='%23ff0000' fill-opacity='0.6'%3E%3Crect x='0' y='0' width='1' height='1'/%3E%3Crect x='4' y='4' width='1' height='1'/%3E%3Crect x='8' y='8' width='1' height='1'/%3E%3Crect x='12' y='12' width='1' height='1'/%3E%3Crect x='16' y='16' width='1' height='1'/%3E%3Crect x='20' y='20' width='1' height='1'/%3E%3Crect x='24' y='24' width='1' height='1'/%3E%3Crect x='28' y='28' width='1' height='1'/%3E%3Crect x='32' y='32' width='1' height='1'/%3E%3Crect x='36' y='36' width='1' height='1'/%3E%3Crect x='40' y='40' width='1' height='1'/%3E%3Crect x='44' y='44' width='1' height='1'/%3E%3Crect x='48' y='48' width='1' height='1'/%3E%3Crect x='52' y='52' width='1' height='1'/%3E%3Crect x='56' y='56' width='1' height='1'/%3E%3Crect x='60' y='60' width='1' height='1'/%3E%3C/g%3E%3Cg fill='%2300ff00' fill-opacity='0.6'%3E%3Crect x='1' y='1' width='1' height='1'/%3E%3Crect x='5' y='5' width='1' height='1'/%3E%3Crect x='9' y='9' width='1' height='1'/%3E%3Crect x='13' y='13' width='1' height='1'/%3E%3Crect x='17' y='17' width='1' height='1'/%3E%3Crect x='21' y='21' width='1' height='1'/%3E%3Crect x='25' y='25' width='1' height='1'/%3E%3Crect x='29' y='29' width='1' height='1'/%3E%3Crect x='33' y='33' width='1' height='1'/%3E%3Crect x='37' y='37' width='1' height='1'/%3E%3Crect x='41' y='41' width='1' height='1'/%3E%3Crect x='45' y='45' width='1' height='1'/%3E%3Crect x='49' y='49' width='1' height='1'/%3E%3Crect x='53' y='53' width='1' height='1'/%3E%3Crect x='57' y='57' width='1' height='1'/%3E%3Crect x='61' y='61' width='1' height='1'/%3E%3C/g%3E%3Cg fill='%230000ff' fill-opacity='0.6'%3E%3Crect x='2' y='2' width='1' height='1'/%3E%3Crect x='6' y='6' width='1' height='1'/%3E%3Crect x='10' y='10' width='1' height='1'/%3E%3Crect x='14' y='14' width='1' height='1'/%3E%3Crect x='18' y='18' width='1' height='1'/%3E%3Crect x='22' y='22' width='1' height='1'/%3E%3Crect x='26' y='26' width='1' height='1'/%3E%3Crect x='30' y='30' width='1' height='1'/%3E%3Crect x='34' y='34' width='1' height='1'/%3E%3Crect x='38' y='38' width='1' height='1'/%3E%3Crect x='42' y='42' width='1' height='1'/%3E%3Crect x='46' y='46' width='1' height='1'/%3E%3Crect x='50' y='50' width='1' height='1'/%3E%3Crect x='54' y='54' width='1' height='1'/%3E%3Crect x='58' y='58' width='1' height='1'/%3E%3Crect x='62' y='62' width='1' height='1'/%3E%3C/g%3E%3Cg fill='%23ff0000' fill-opacity='0.5'%3E%3Crect x='0' y='8' width='1' height='1'/%3E%3Crect x='4' y='12' width='1' height='1'/%3E%3Crect x='8' y='16' width='1' height='1'/%3E%3Crect x='12' y='20' width='1' height='1'/%3E%3Crect x='16' y='24' width='1' height='1'/%3E%3Crect x='20' y='28' width='1' height='1'/%3E%3Crect x='24' y='32' width='1' height='1'/%3E%3Crect x='28' y='36' width='1' height='1'/%3E%3Crect x='32' y='40' width='1' height='1'/%3E%3Crect x='36' y='44' width='1' height='1'/%3E%3Crect x='40' y='48' width='1' height='1'/%3E%3Crect x='44' y='52' width='1' height='1'/%3E%3Crect x='48' y='56' width='1' height='1'/%3E%3Crect x='52' y='60' width='1' height='1'/%3E%3C/g%3E%3Cg fill='%2300ff00' fill-opacity='0.5'%3E%3Crect x='8' y='0' width='1' height='1'/%3E%3Crect x='12' y='4' width='1' height='1'/%3E%3Crect x='16' y='8' width='1' height='1'/%3E%3Crect x='20' y='12' width='1' height='1'/%3E%3Crect x='24' y='16' width='1' height='1'/%3E%3Crect x='28' y='20' width='1' height='1'/%3E%3Crect x='32' y='24' width='1' height='1'/%3E%3Crect x='36' y='28' width='1' height='1'/%3E%3Crect x='40' y='32' width='1' height='1'/%3E%3Crect x='44' y='36' width='1' height='1'/%3E%3Crect x='48' y='40' width='1' height='1'/%3E%3Crect x='52' y='44' width='1' height='1'/%3E%3Crect x='56' y='48' width='1' height='1'/%3E%3Crect x='60' y='52' width='1' height='1'/%3E%3C/g%3E%3Cg fill='%230000ff' fill-opacity='0.5'%3E%3Crect x='2' y='10' width='1' height='1'/%3E%3Crect x='6' y='14' width='1' height='1'/%3E%3Crect x='10' y='18' width='1' height='1'/%3E%3Crect x='14' y='22' width='1' height='1'/%3E%3Crect x='18' y='26' width='1' height='1'/%3E%3Crect x='22' y='30' width='1' height='1'/%3E%3Crect x='26' y='34' width='1' height='1'/%3E%3Crect x='30' y='38' width='1' height='1'/%3E%3Crect x='34' y='42' width='1' height='1'/%3E%3Crect x='38' y='46' width='1' height='1'/%3E%3Crect x='42' y='50' width='1' height='1'/%3E%3Crect x='46' y='54' width='1' height='1'/%3E%3Crect x='50' y='58' width='1' height='1'/%3E%3Crect x='54' y='62' width='1' height='1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 64px 64px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 auto;
  min-width: 300px;
  text-align: center;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: clamp(2.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--omega-teal);
  margin: 0.5rem 0 0 0;
  text-transform: uppercase;
  text-shadow: 6px 6px 0px var(--omega-maroon);
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-top: 1.5rem;
  text-transform: uppercase;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.hero-subtext {
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.75rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.hero-ctas .link-button { margin: 0; }
.hero-ctas .cta-button { margin: 0; }

.hero-trust {
  margin-top: 2rem;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--omega-teal);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.4);
}

/* Statement Section */
.statement-section {
  padding: 3rem 2rem;
  background: #000000;
  border-bottom: 4px solid var(--omega-maroon);
  position: relative;
  overflow: hidden;
}

.statement-block {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.statement-text {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: #000000;
  border-bottom: 4px solid var(--omega-teal);
  position: relative;
  overflow: hidden;
}

/* Live Video Windows */
.features-video-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

.features-video-section .features-video-wrap {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features-video-heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--omega-teal);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 3px 3px 0 var(--omega-maroon);
}

/* Live Drawings horizontal carousel */
.live-drawings-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 280px;
}

.live-drawings-track {
  display: flex;
  width: 600%;
  min-width: 600%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.live-drawings-slide {
  flex: 0 0 16.666667%;
  width: 16.666667%;
  min-width: 0;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.live-drawings-slide .video-window {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.live-drawings-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 0;
}

.live-drawings-arrow {
  width: 3rem;
  height: 3rem;
  border: 3px solid var(--omega-teal);
  background: rgba(0, 0, 0, 0.9);
  color: var(--omega-teal);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0 var(--omega-maroon);
}

.live-drawings-arrow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--omega-maroon);
  background: var(--omega-teal);
  color: #000;
}

.features-video-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}
.video-window {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  border: 4px solid var(--omega-teal);
  box-shadow: 8px 8px 0 var(--omega-maroon);
  width: 100%;
  max-width: 400px;
  height: 300px;
  min-height: 200px;
  -webkit-transition: -webkit-transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  -moz-transition: -moz-transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  -o-transition: -o-transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.video-window:hover {
  -webkit-transform: translate(-4px, -4px);
  -moz-transform: translate(-4px, -4px);
  -ms-transform: translate(-4px, -4px);
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--omega-maroon);
  border-color: var(--omega-teal-light);
}
.video-window__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-object-fit: contain;
  -moz-object-fit: contain;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.video-window__expand-hint {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.7);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.video-window:hover .video-window__expand-hint {
  opacity: 1;
}

/* Fullscreen video overlay */
.video-fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.video-fullscreen-overlay[hidden] {
  display: none;
}

.video-fullscreen-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.video-fullscreen-content {
  position: relative;
  width: 100%;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.video-fullscreen-player {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: #000;
  border: 4px solid var(--omega-teal);
  box-shadow: 8px 8px 0 var(--omega-maroon);
}

.video-fullscreen-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--omega-teal);
  background: rgba(0, 0, 0, 0.9);
  color: var(--omega-teal);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-fullscreen-close:hover {
  background: var(--omega-teal);
  color: #000;
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Features Gallery - Rotating Carousel */
.features-gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-gallery-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
}

.features-gallery-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  width: 100%;
  backface-visibility: hidden;
  perspective: 1000px;
}

.features-gallery-track .feature-block {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 57.14%; /* 16:9 aspect ratio (800/1400) */
  position: relative;
  overflow: hidden;
  border: 6px solid var(--omega-teal);
  box-shadow: 12px 12px 0px 0px var(--omega-maroon);
  background: rgba(0, 0, 0, 0.9);
}

.feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.feature-block:hover .feature-image {
  transform: scale(1.05);
}

.feature-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(128, 0, 32, 0.1) 100%);
  border: 2px dashed var(--omega-teal);
  color: var(--omega-teal);
  gap: 1rem;
}

.feature-image-placeholder .placeholder-text {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.feature-image-placeholder .placeholder-dimensions {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 700;
  font-family: 'Courier New', monospace;
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* Image styling */
.feature-image-wrapper img.feature-image {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-image-wrapper img.feature-image.loaded {
  opacity: 1;
}

/* Hide placeholder when image is loaded (handled by JS) */
.feature-image-wrapper.image-loaded .feature-image-placeholder {
  display: none;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-btn {
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.9); /* Enhanced fallback for browsers without backdrop-filter */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 4px solid var(--omega-teal);
  box-shadow: 6px 6px 0px 0px var(--omega-maroon);
  color: var(--omega-teal);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  will-change: transform;
  line-height: 1;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  -webkit-transform: translate(-3px, -3px);
  -moz-transform: translate(-3px, -3px);
  -ms-transform: translate(-3px, -3px);
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px 0px var(--omega-maroon);
  background: rgba(20, 184, 166, 0.15);
  color: var(--omega-teal-light);
}

.gallery-btn:active {
  -webkit-transform: translate(-1px, -1px);
  -moz-transform: translate(-1px, -1px);
  -ms-transform: translate(-1px, -1px);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px 0px var(--omega-maroon);
}

.gallery-indicators {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.gallery-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--omega-teal);
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 3px 3px 0px 0px var(--omega-maroon);
  padding: 0;
}

.gallery-indicator:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px 0px var(--omega-maroon);
  background: rgba(20, 184, 166, 0.2);
}

.gallery-indicator.active {
  background: var(--omega-teal);
  box-shadow: 4px 4px 0px 0px var(--omega-maroon);
  transform: scale(1.2);
}

.feature-block {
  padding: 2.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.9); /* Enhanced fallback for browsers without backdrop-filter */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 6px solid var(--omega-teal);
  box-shadow: 12px 12px 0px 0px var(--omega-maroon);
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  contain: layout style paint;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.features-grid .feature-block:hover {
  transform: translate(-6px, -6px);
  box-shadow: 18px 18px 0px 0px var(--omega-maroon);
}

.features-gallery-track .feature-block:hover {
  transform: none;
}

.feature-image-wrapper:hover {
  transform: translate(-3px, -3px);
  box-shadow: 15px 15px 0px 0px var(--omega-maroon);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--omega-teal);
  margin-bottom: 1rem;
  font-family: 'Courier New', monospace;
  text-align: center;
}

.feature-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  padding: 0 0.5rem;
}

.feature-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
}

/* Services Section */
.services-section {
  padding: 6rem 2rem;
  background: #000000;
  border-bottom: 4px solid var(--omega-maroon);
  position: relative;
  overflow: hidden;
}

/* Background Media Elements */
.section-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px) grayscale(100%);
}

.bg-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.bg-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  filter: blur(3px) grayscale(100%) brightness(0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.section-label {
  max-width: 1400px;
  margin: 0 auto 3rem;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--omega-teal);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
}

.in-progress-badge {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: clamp(0.625rem, 1.2vw, 0.75rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #000000;
  background: var(--omega-teal);
  border: 2px solid var(--omega-teal);
  box-shadow: 3px 3px 0 var(--omega-maroon);
  text-transform: uppercase;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .in-progress-badge {
    display: block;
    margin: 0.5rem auto 0;
    width: fit-content;
  }
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.services-grid-3x2 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .services-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-3x2 {
    grid-template-columns: 1fr;
  }
}

.service-block {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.9); /* Enhanced fallback for browsers without backdrop-filter */
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.9); /* Enhanced fallback for browsers without backdrop-filter */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 4px solid var(--omega-maroon);
  box-shadow: 8px 8px 0px 0px var(--omega-teal);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.service-block:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px 0px var(--omega-teal);
}

.service-number {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--omega-maroon);
  margin-bottom: 0.75rem;
  font-family: 'Courier New', monospace;
  text-align: center;
}

.service-name {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
}

.service-desc {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

.services-grid-detail {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .services-grid-detail {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-grid-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-category .service-name {
  text-align: left;
}

.service-category-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: left;
}

.service-category-list li {
  padding: 0.35rem 0;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-category-list li:last-child {
  border-bottom: none;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 800;
  color: var(--omega-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 2px solid var(--omega-teal);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.service-link:hover {
  color: var(--omega-teal-light);
  border-bottom-color: var(--omega-teal-light);
}

.section-link {
  max-width: 1400px;
  margin: 2rem auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.link-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--omega-teal);
  color: #000000;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 4px solid var(--omega-teal);
  box-shadow: 6px 6px 0px 0px var(--omega-maroon);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  text-align: center;
}

.link-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px 0px var(--omega-maroon);
}

/* CTA Section */
.cta-section {
  padding: 8rem 2rem;
  background: #000000;
  border-bottom: 8px solid var(--omega-teal);
}

.cta-block {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.cta-button {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: #000000;
  color: var(--omega-teal);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 6px solid var(--omega-teal);
  box-shadow: 10px 10px 0px 0px var(--omega-maroon);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  will-change: transform;
  text-align: center;
}

.cta-button:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0px 0px var(--omega-maroon);
  background: var(--omega-teal);
  color: #000000;
}

.cta-button-secondary {
  display: inline-block;
  margin-top: 0.5rem;
}

.cta-note {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Why OmegaSpace / Value list / Service areas */
.section-heading-alt {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.value-list li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
  border: 3px solid var(--omega-maroon);
  box-shadow: 4px 4px 0 var(--omega-teal);
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.value-list li strong {
  color: var(--omega-teal);
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.service-area-pill {
  padding: 0.5rem 1.25rem;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid var(--omega-teal);
  box-shadow: 4px 4px 0 var(--omega-maroon);
  background: #000000;
  color: var(--omega-teal);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-area-pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--omega-maroon);
}

/* ============================================
   PAGE HEADER STYLES (Shared)
   ============================================ */
.page-header {
  padding: 6rem 2rem 4rem;
  background: #000000;
  border-bottom: 8px solid var(--omega-teal);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.page-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.page-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.section-label {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--omega-teal);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--omega-teal);
  margin-bottom: 1rem;
  font-family: 'Courier New', monospace;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-row-two .form-group {
  flex: 1;
  min-width: 200px;
}

.form-hint {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: -0.25rem 0 0.5rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* Service interests collapsible */
.service-interests-collapsible {
  margin-top: 0.25rem;
}
.service-interests-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  appearance: none;
}
.service-interests-trigger .service-interests-trigger-icon {
  transition: transform 0.2s ease;
  opacity: 0.8;
}
.service-interests-collapsible.is-open .service-interests-trigger .service-interests-trigger-icon {
  transform: rotate(180deg);
}
.service-interests-panel {
  margin-top: 0.5rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 4px solid var(--omega-teal);
  border-top: none;
  box-shadow: 6px 6px 0px 0px var(--omega-maroon);
}
.service-interests-panel[hidden] {
  display: none;
}
.service-interests-group {
  margin-bottom: 1.25rem;
}
.service-interests-group:last-child {
  margin-bottom: 0;
}
.service-interests-group-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--omega-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid rgba(20, 184, 166, 0.3);
}
.service-interests-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}
.service-interests-option:hover {
  color: var(--omega-teal-light);
}
.service-interests-option input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--omega-teal);
  cursor: pointer;
  flex-shrink: 0;
}
.form-error {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--omega-maroon-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-label {
  display: block;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  color: var(--omega-teal);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1.5rem 2rem;
  background: #000000;
  border: 4px solid var(--omega-teal);
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 6px 6px 0px 0px var(--omega-maroon);
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--omega-teal-light);
  box-shadow: 8px 8px 0px 0px var(--omega-maroon);
  transform: translate(-2px, -2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-button {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  background: var(--omega-teal);
  color: #000000;
  border: 4px solid var(--omega-teal);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  box-shadow: 8px 8px 0px 0px var(--omega-maroon);
  transition: all 0.2s ease;
  text-align: center;
}

.form-button:hover:not(:disabled) {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px 0px var(--omega-maroon);
  background: var(--omega-teal-light);
  will-change: transform;
}

.form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.status-message {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid;
  box-shadow: 4px 4px 0px 0px;
}

.status-success {
  color: var(--omega-teal);
  border-color: var(--omega-teal);
  background: rgba(20, 184, 166, 0.1);
}

.status-error {
  color: var(--omega-maroon-light);
  border-color: var(--omega-maroon-light);
  background: rgba(160, 0, 48, 0.1);
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */
.info-section {
  padding: 4rem 2rem;
  background: #000000;
  border-bottom: 4px solid var(--omega-teal);
}

.info-block {
  max-width: 1400px;
  margin: 0 auto;
}

.content-prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.content-prose h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--omega-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2rem 0 0.75rem;
}
.content-prose p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.content-prose a {
  color: var(--omega-teal);
  font-weight: 700;
  text-decoration: none;
}
.content-prose a:hover {
  color: var(--omega-teal-light);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-strip-item {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-strip-item strong {
  color: var(--omega-teal);
  margin-right: 0.5rem;
}

.contact-strip-item a {
  color: var(--omega-teal);
  text-decoration: none;
  border-bottom: 2px solid var(--omega-teal);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-strip-item a:hover {
  color: var(--omega-teal-light);
  border-bottom-color: var(--omega-teal-light);
}

.contact-hours {
  text-align: center;
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1.5rem;
}

.info-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.info-text p {
  margin-bottom: 1.5rem;
}

.signup-section {
  padding: 4rem 2rem 6rem;
  background: #000000;
  border-bottom: 8px solid var(--omega-teal);
}

.signup-block {
  max-width: 800px;
  margin: 0 auto;
}

.signup-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.signup-input {
  width: 100%;
  padding: 1.5rem 2rem;
  background: #000000;
  border: 4px solid var(--omega-teal);
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 6px 6px 0px 0px var(--omega-maroon);
  transition: all 0.2s ease;
  font-family: inherit;
}

.signup-input:focus {
  outline: none;
  border-color: var(--omega-teal-light);
  box-shadow: 8px 8px 0px 0px var(--omega-maroon);
  transform: translate(-2px, -2px);
}

.signup-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.signup-button {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  background: var(--omega-teal);
  color: #000000;
  border: 4px solid var(--omega-teal);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  box-shadow: 8px 8px 0px 0px var(--omega-maroon);
  transition: all 0.2s ease;
  text-align: center;
}

.signup-button:hover:not(:disabled) {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px 0px var(--omega-maroon);
  background: var(--omega-teal-light);
  will-change: transform;
}

.signup-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.market-page,
.services-page,
.about-page,
.contact-page,
.members-only-page,
.profile-page {
  width: 100%;
  overflow-x: hidden;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
  padding: 6rem 2rem 5rem;
  background: #000000;
  border-bottom: 6px solid var(--omega-teal);
}

.about-hero-with-stars {
  position: relative;
  overflow: hidden;
}

.about-hero-with-stars .hero-stars-bg {
  z-index: 0;
}

.about-hero-with-stars .about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-two-col {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-col {
  flex: 1 1 42%;
  min-width: 280px;
}

.about-hero-col-mission {
  text-align: left;
  background: #000000;
  padding: 1.5rem;
  box-sizing: border-box;
}

.about-hero-col-mission .about-section-heading {
  margin-bottom: 1rem;
}

.about-hero-col-mission .about-mission-quote {
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
}

.about-hero-col-javon {
  text-align: left;
}

.about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-hero-text {
  flex: 1 1 min(100%, 560px);
}

.about-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--omega-teal);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.about-hero-subtitle {
  font-size: clamp(0.8125rem, 1.4vw, 1rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.about-hero-description {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
}

.about-hero-logo {
  flex-shrink: 0;
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 4px 16px rgba(20, 184, 166, 0.25));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-hero-logo:hover .about-logo-image {
  opacity: 1;
  transform: scale(1.03);
}

.about-content-section {
  padding: 4rem 2rem;
  background: #000000;
  border-bottom: 4px solid var(--omega-maroon);
}

.about-content-section:nth-child(even) {
  border-bottom-color: var(--omega-teal);
}

.about-mission-intro {
  padding: 5rem 2rem;
  border-bottom: 6px solid var(--omega-teal);
}

/* Learn More: single card, gallery switcher */
.about-learn-more-section {
  padding: 4rem 2rem;
}

.about-learn-more-card {
  max-width: 640px;
  margin: 2rem auto 0;
  background: rgba(0, 0, 0, 0.8);
  border: 4px solid var(--omega-teal);
  box-shadow: 8px 8px 0 var(--omega-maroon);
  overflow: hidden;
}

.about-learn-more-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid rgba(20, 184, 166, 0.3);
  padding: 0;
}

.about-learn-more-tab {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 0.75rem;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.about-learn-more-tab:hover {
  background: rgba(20, 184, 166, 0.1);
  color: var(--omega-teal-light);
}

.about-learn-more-tab.active {
  background: rgba(20, 184, 166, 0.15);
  color: var(--omega-teal);
  border-bottom: 3px solid var(--omega-teal);
  margin-bottom: -2px;
}

.about-learn-more-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 200px;
}

.about-learn-more-track {
  display: flex;
  width: 300%;
  min-width: 300%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.about-learn-more-slide {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  min-width: 0;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.about-learn-more-icon {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--omega-teal);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.about-learn-more-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 900;
  color: var(--omega-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.about-learn-more-desc {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.about-learn-more-link {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 700;
  color: var(--omega-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.about-learn-more-link:hover {
  color: var(--omega-teal-light);
  transform: translateX(4px);
}

.about-learn-more-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(20, 184, 166, 0.3);
}

.about-learn-more-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--omega-teal);
  background: rgba(0, 0, 0, 0.8);
  color: var(--omega-teal);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0 var(--omega-maroon);
}

.about-learn-more-arrow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--omega-maroon);
  background: var(--omega-teal);
  color: #000;
}

/* About Gallery Cards (legacy / other uses) */
.about-gallery-section {
  padding: 4rem 2rem;
}

.about-gallery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .about-gallery-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.about-gallery-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  border: 4px solid var(--omega-teal);
  box-shadow: 8px 8px 0 var(--omega-maroon);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 100%;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.about-gallery-card:hover {
  -webkit-transform: translate(-4px, -4px);
  -moz-transform: translate(-4px, -4px);
  -ms-transform: translate(-4px, -4px);
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--omega-maroon);
  border-color: var(--omega-teal-light);
}

.about-gallery-card-icon {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--omega-teal);
  margin-bottom: 1.5rem;
  line-height: 1;
  width: 100%;
  text-align: left;
}

.about-gallery-card-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 900;
  color: var(--omega-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  line-height: 1.3;
  width: 100%;
}

.about-gallery-card-desc {
  font-size: clamp(0.9375rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  flex-grow: 1;
  margin-bottom: 1.5rem;
  width: 100%;
}

.about-gallery-card-link {
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  font-weight: 700;
  color: var(--omega-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: auto;
  width: 100%;
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  -moz-transition: color 0.2s ease, -moz-transform 0.2s ease;
  -o-transition: color 0.2s ease, -o-transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease;
}

.about-gallery-card:hover .about-gallery-card-link {
  color: var(--omega-teal-light);
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

.about-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.about-section-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--omega-teal);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.about-content-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.about-content-text p {
  margin-bottom: 1.25rem;
}

.about-content-text p:last-child {
  margin-bottom: 0;
}

.about-mission-quote {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--omega-teal);
  line-height: 1.6;
  font-style: italic;
  padding: 0.5rem 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 0.5rem;
}

.about-value-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-value-item:last-child {
  border-bottom: none;
}

.about-value-title {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  color: var(--omega-teal);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-value-text {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.about-gallery-item {
  position: relative;
  /* Fallback for browsers without aspect-ratio support */
  height: 0;
  padding-bottom: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  border: 3px solid var(--omega-teal);
  box-shadow: 6px 6px 0 var(--omega-maroon);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-gallery-item:hover {
  transform: translate(-4px, -4px);
  border-color: var(--omega-teal-light);
  box-shadow: 10px 10px 0 var(--omega-maroon);
}

.about-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Music section (collapsible) */
.about-music-collapsible-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
}

.about-music-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 3px solid var(--omega-teal);
  background: rgba(0, 0, 0, 0.8);
  color: var(--omega-teal);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-shadow: 4px 4px 0 var(--omega-maroon);
}

.about-music-toggle:hover {
  background: rgba(20, 184, 166, 0.15);
  color: var(--omega-teal-light);
}

.about-music-toggle:focus {
  outline: 2px solid var(--omega-teal);
  outline-offset: 2px;
}

.about-music-toggle-icon {
  display: inline-block;
  transition: transform 0.25s ease;
}

.about-music-toggle[aria-expanded="true"] .about-music-toggle-icon {
  transform: rotate(180deg);
}

.about-music-details {
  margin-top: 1.25rem;
}

.about-music-details[hidden] {
  display: none;
}

/* Online Presence section */
.about-online-presence-section .about-music-grid {
  margin-top: 0.5rem;
}

.about-music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.about-music-grid .music-card {
  max-width: 100%;
}

.about-link {
  color: var(--omega-teal);
  text-decoration: none;
  border-bottom: 2px solid var(--omega-teal);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about-link:hover {
  color: var(--omega-teal-light);
  border-bottom-color: var(--omega-teal-light);
}

.about-linkedin-cta {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(20, 184, 166, 0.06);
  border: 4px solid var(--omega-teal);
  box-shadow: 8px 8px 0 var(--omega-maroon);
  text-align: center;
}

.about-linkedin-cta .about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.competencies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.competency-tag {
  padding: 0.5rem 1rem;
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid var(--omega-teal);
  box-shadow: 4px 4px 0 var(--omega-maroon);
  background: #000000;
  color: var(--omega-teal);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.competency-tag:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--omega-maroon);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 10ch 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 3px solid var(--omega-maroon);
  box-shadow: 4px 4px 0 var(--omega-teal);
  background: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-period {
  color: var(--omega-teal);
  font-family: 'Courier New', monospace;
}

.timeline-role {
  color: #ffffff;
}

.timeline-company {
  color: var(--omega-teal);
  text-align: right;
}

.about-value-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.about-value-list li {
  padding: 0.75rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-value-list li:last-child {
  border-bottom: none;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 0.5rem;
}

.tech-stack-group {
  padding: 1.5rem;
  border: 4px solid var(--omega-maroon);
  box-shadow: 6px 6px 0 var(--omega-teal);
  background: rgba(0, 0, 0, 0.5);
}

.tech-stack-heading {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 800;
  color: var(--omega-teal);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-stack-group .competencies-grid {
  margin-top: 0;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1.5rem 3rem;
  }
  .about-hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .about-hero-two-col .about-hero-col {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .about-hero-two-col .about-hero-col-mission,
  .about-hero-two-col .about-hero-col-javon {
    text-align: left;
  }
  .about-hero-text {
    text-align: center;
  }
  .about-hero-description {
    max-width: none;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .timeline-company {
    text-align: left;
  }
}

/* ============================================
   PROFILE PAGE STYLES (Javon Omega)
   ============================================ */
.profile-link {
  color: var(--omega-teal);
  text-decoration: none;
  border-bottom: 2px solid var(--omega-teal);
  transition: all 0.2s ease;
}

.profile-link:hover {
  color: var(--omega-teal-light);
  border-color: var(--omega-teal-light);
  transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 2rem;
  background: #000000;
  border-bottom: 4px solid var(--omega-maroon);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  /* Fallback for browsers without aspect-ratio support */
  height: 0;
  padding-bottom: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(20, 184, 166, 0.1);
  border: 4px solid var(--omega-teal);
  box-shadow: 8px 8px 0px 0px var(--omega-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.gallery-item:hover .gallery-placeholder {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px 0px var(--omega-maroon);
  background: rgba(20, 184, 166, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid var(--omega-teal);
  box-shadow: 8px 8px 0px 0px var(--omega-maroon);
  transition: all 0.2s ease;
}

.gallery-item:hover img {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px 0px var(--omega-maroon);
}

/* Links Section */
.links-section {
  padding: 6rem 2rem;
  background: #000000;
  border-bottom: 4px solid var(--omega-teal);
}

.links-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.link-block {
  padding: 1.75rem 1.5rem;
  background: #000000;
  border: 2px solid;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  text-decoration: none;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  will-change: transform;
  contain: layout style paint;
  position: relative;
  overflow: hidden;
}

.link-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.link-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.link-block-teal {
  border-color: var(--omega-teal);
  color: var(--omega-teal);
}

.link-block-teal::before {
  background: rgba(20, 184, 166, 0.03);
}

.link-block-teal:hover {
  border-color: var(--omega-teal);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15), 0 0 0 1px rgba(20, 184, 166, 0.2);
  background: rgba(20, 184, 166, 0.02);
}

.link-block-teal:hover::before {
  opacity: 1;
}

.link-block-maroon {
  border-color: var(--omega-maroon);
  color: var(--omega-maroon);
}

.link-block-maroon::before {
  background: rgba(128, 0, 32, 0.03);
}

.link-block-maroon:hover {
  border-color: var(--omega-maroon);
  box-shadow: 0 4px 12px rgba(128, 0, 32, 0.15), 0 0 0 1px rgba(128, 0, 32, 0.2);
  background: rgba(128, 0, 32, 0.02);
}

.link-block-maroon:hover::before {
  opacity: 1;
}

.link-icon {
  font-size: 2.5rem;
  line-height: 1;
  transition: transform 0.25s ease;
  filter: grayscale(0.2);
}

.link-block:hover .link-icon {
  transform: scale(1.05);
  filter: grayscale(0);
}

.link-title {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 800;
  color: inherit;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.link-desc {
  font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.link-block:hover .link-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   MUSIC SECTION
   ============================================ */
.music-section {
  padding: 6rem 2rem;
  background: #000000;
  border-bottom: 4px solid var(--omega-maroon);
}

.music-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.music-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 1.75rem;
  background: #000000;
  border: 2px solid var(--omega-teal);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.1);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  will-change: transform;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.music-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, rgba(128, 0, 32, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.music-card:hover {
  transform: translateY(-2px);
  border-color: var(--omega-teal);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15), 0 0 0 1px rgba(20, 184, 166, 0.2);
  background: rgba(20, 184, 166, 0.02);
}

.music-card:hover::before {
  opacity: 1;
}

.music-card:hover .music-artwork-placeholder {
  transform: scale(1.02);
}

/* Platform-specific card styles */
.music-card-spotify {
  border-color: #1DB954;
}

.music-card-spotify:hover {
  border-color: #1DB954;
  box-shadow: 0 4px 12px rgba(29, 185, 84, 0.2), 0 0 0 1px rgba(29, 185, 84, 0.3);
  background: rgba(29, 185, 84, 0.03);
}

.music-card-youtube {
  border-color: #FF0000;
}

.music-card-youtube:hover {
  border-color: #FF0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2), 0 0 0 1px rgba(255, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.03);
}

.music-card-soundcloud {
  border-color: #FF5500;
}

.music-card-soundcloud:hover {
  border-color: #FF5500;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.2), 0 0 0 1px rgba(255, 85, 0, 0.3);
  background: rgba(255, 85, 0, 0.03);
}

.music-card-apple {
  border-color: #FA243C;
}

.music-card-apple:hover {
  border-color: #FA243C;
  box-shadow: 0 4px 12px rgba(250, 36, 60, 0.2), 0 0 0 1px rgba(250, 36, 60, 0.3);
  background: rgba(250, 36, 60, 0.03);
}

.music-card-tidal {
  border-color: #00FFFF;
}

.music-card-tidal:hover {
  border-color: #00FFFF;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2), 0 0 0 1px rgba(0, 255, 255, 0.3);
  background: rgba(0, 255, 255, 0.03);
}

.music-card-amazon {
  border-color: #FF9900;
}

.music-card-amazon:hover {
  border-color: #FF9900;
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2), 0 0 0 1px rgba(255, 153, 0, 0.3);
  background: rgba(255, 153, 0, 0.03);
}

.music-card-facebook {
  border-color: #1877F2;
}

.music-card-facebook:hover {
  border-color: #1877F2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2), 0 0 0 1px rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.03);
}

.music-artwork {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.music-artwork-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
}

.music-artwork-spotify {
  background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
}

.music-artwork-youtube {
  background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

.music-artwork-soundcloud {
  background: linear-gradient(135deg, #FF5500 0%, #ff7700 100%);
}

.music-artwork-apple {
  background: linear-gradient(135deg, #FA243C 0%, #ff4d6d 100%);
}

.music-artwork-tidal {
  background: linear-gradient(135deg, #00FFFF 0%, #00CCCC 100%);
}

.music-artwork-amazon {
  background: linear-gradient(135deg, #FF9900 0%, #ffaa33 100%);
}

.music-artwork-facebook {
  background: linear-gradient(135deg, #1877F2 0%, #3b82f6 100%);
}

.music-platform-icon {
  width: 56px;
  height: 56px;
  color: #000000;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s ease;
}

.music-card:hover .music-platform-icon {
  transform: scale(1.05);
}

.music-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  color: var(--omega-teal);
}

.music-artist {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--omega-teal);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.music-card-youtube .music-artist {
  color: #FF0000;
}

.music-card-soundcloud .music-artist {
  color: #FF5500;
}

.music-card-apple .music-artist {
  color: #FA243C;
}

.music-card-tidal .music-artist {
  color: #00FFFF;
}

.music-card-amazon .music-artist {
  color: #FF9900;
}

.music-card-facebook .music-artist {
  color: #1877F2;
}

.music-platform {
  font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.music-card-spotify .music-platform {
  color: #1DB954;
}

.music-card-youtube .music-platform {
  color: #FF0000;
}

.music-card-soundcloud .music-platform {
  color: #FF5500;
}

.music-card-apple .music-platform {
  color: #FA243C;
}

.music-card-tidal .music-platform {
  color: #00FFFF;
}

.music-card-amazon .music-platform {
  color: #FF9900;
}

.music-card-facebook .music-platform {
  color: #1877F2;
}

.music-tagline {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.music-card:hover .music-tagline {
  opacity: 1;
  transform: translateX(2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .bg-video {
    opacity: 0.1;
    filter: blur(3px) grayscale(100%);
  }

  .bg-image-placeholder {
    opacity: 0.08;
    filter: blur(4px) grayscale(100%) brightness(0.4);
  }

  .hero-section,
  .page-header {
    padding: 4rem 1.5rem 3rem;
    border-bottom-width: 4px;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-subtitle {
    text-shadow: 4px 4px 0px var(--omega-maroon);
  }

  .statement-section,
  .features-section,
  .services-section,
  .cta-section,
  .info-section,
  .signup-section,
  .gallery-section,
  .links-section {
    padding: 4rem 1.5rem;
  }
  .features-video-section {
    padding: 4rem 1.5rem;
  }
  .features-video-section .features-video-wrap {
    max-width: 100%;
    padding: 0 1rem;
    width: 100%;
  }
  .features-video-heading {
    margin-bottom: 2rem;
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
  .video-window {
    max-width: 100%;
    height: 250px;
    min-height: 180px;
  }

  .music-section {
    padding: 4rem 1.5rem;
  }

  .music-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 300px;
  }

  .music-card {
    gap: 1.125rem;
    padding: 1.5rem 1.25rem;
    border-width: 2px;
    max-width: 100%;
  }

  .music-card:hover {
    transform: translateY(-2px);
  }

  .music-artwork {
    width: 150px;
    height: 150px;
    border-width: 1px;
  }

  .music-platform-icon {
    width: 55px;
    height: 55px;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-gallery-container {
    padding: 0 1rem;
  }

  .feature-image-wrapper {
    border-width: 4px;
    box-shadow: 8px 8px 0px 0px var(--omega-maroon);
  }

  .feature-image-wrapper:hover {
    box-shadow: 12px 12px 0px 0px var(--omega-maroon);
  }

  .feature-image-placeholder .placeholder-text {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .gallery-controls {
    gap: 1rem;
  }

  .gallery-btn {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    min-width: 50px;
    border-width: 3px;
    box-shadow: 4px 4px 0px 0px var(--omega-maroon);
  }

  .gallery-indicator {
    width: 12px;
    height: 12px;
    border-width: 2px;
    box-shadow: 2px 2px 0px 0px var(--omega-maroon);
  }

  .feature-block,
  .service-block {
    border-width: 4px;
    box-shadow: 8px 8px 0px 0px;
    padding: 2rem 1.25rem;
  }

  .feature-title {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    padding: 0 0.25rem;
  }

  .feature-block {
    box-shadow: 8px 8px 0px 0px var(--omega-maroon);
  }

  .cta-button,
  .form-button {
    border-width: 4px;
    box-shadow: 6px 6px 0px 0px var(--omega-maroon);
    padding: 1.25rem 2rem;
  }

  .nav-link {
    padding: 0.5rem 0.4rem;
    min-width: 50px;
    border-width: 2px;
  }

  .nav-link-teal,
  .nav-link-maroon {
    box-shadow: 3px 3px 0px 0px var(--omega-maroon);
  }

  .nav-link-teal.active,
  .nav-link-maroon.active {
    box-shadow: 3px 3px 0px 0px var(--omega-teal);
  }

  .nav-label {
    font-size: 0.55rem;
  }

  .nav-icon {
    font-size: 1.25rem;
  }

  .fixed-bottom-nav {
    border-top-width: 3px;
    box-shadow: 0 -6px 0px 0px var(--omega-maroon), 0 -12px 0px 0px rgba(20, 184, 166, 0.3);
  }
}

@media (max-width: 480px) {
  .bg-video {
    opacity: 0.08;
  }

  .bg-image-placeholder {
    opacity: 0.06;
  }

  .hero-section {
    padding: 3rem 1rem 2rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .statement-section,
  .features-section,
  .services-section,
  .cta-section,
  .info-section,
  .signup-section,
  .gallery-section,
  .links-section {
    padding: 3rem 1rem;
  }
  .about-mission-intro {
    padding: 4rem 1.5rem;
  }
  .about-gallery-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .about-gallery-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }
  .features-video-section {
    padding: 3rem 1rem;
  }
  .features-video-section .features-video-wrap {
    padding: 0 0.5rem;
    width: 100%;
  }
  .features-video-heading {
    margin-bottom: 1.5rem;
    font-size: clamp(1.125rem, 6vw, 1.75rem);
  }
  .features-video-grid {
    gap: 1.25rem;
  }
  .video-window {
    max-width: 100%;
    height: 200px;
    min-height: 160px;
  }

  .music-section {
    padding: 3rem 1rem;
  }

  .music-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 280px;
  }

  .music-card {
    padding: 1.25rem 1rem;
    border-width: 2px;
    gap: 0.875rem;
    max-width: 100%;
  }

  .music-card:hover {
    transform: translateY(-1px);
  }

  .music-artwork {
    width: 130px;
    height: 130px;
    border-width: 1px;
  }

  .music-platform-icon {
    width: 45px;
    height: 45px;
  }

  .music-artist {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .gallery-grid,
  .links-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .link-block {
    padding: 1.5rem 1.25rem;
    border-width: 2px;
    gap: 0.75rem;
  }

  .link-icon {
    font-size: 2.25rem;
  }

  .feature-block,
  .service-block {
    padding: 1.5rem;
    border-width: 3px;
    box-shadow: 6px 6px 0px 0px;
  }
}

