@charset "utf-8";

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root {
  /* Dark grey background tones */
  --primary-black: #333333;
  --carbon-dark: #333333;
  --carbon-medium: #3b3b3b;
  --carbon-light: #444444;

  /* Accent greys */
  --metal-dark: #555555;
  --metal-light: #777777;

  /* Brand accents: lime + white */
  --accent-red: #c6ff00;
  --accent-blue: #c6ff00;
  --accent-green: #c6ff00;
  --accent-purple: #c6ff00;
  --accent-cyan: #c6ff00;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #d0d0d0;
  --text-dim: #aaaaaa;
}

html {
  scroll-behavior:smooth;
}

body {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background:var(--primary-black);
  color:var(--text-primary);
  overflow-x:hidden;
}

/* Background patterns */
body::before {
  content:'';
  position:fixed;
  inset:0;
  background:
    repeating-linear-gradient(0deg, transparent, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
    linear-gradient(135deg, var(--primary-black) 0%, var(--carbon-dark) 25%, var(--carbon-medium) 50%, var(--carbon-dark) 75%, var(--primary-black) 100%);
  z-index:-2;
}

body::after {
  content:'';
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(198,255,0,0.05) 2px, transparent 2px),
    linear-gradient(90deg, rgba(198,255,0,0.05) 2px, transparent 2px);
  background-size:150px 150px;
  animation:gridMove 20s linear infinite;
  z-index:-1;
  opacity:0.5;
}

@keyframes gridMove {
  0% { transform:translate(0,0); }
  100% { transform:translate(150px,150px); }
}

/* Header */
.header {
  position:fixed;
  top:0;
  width:100%;
  background:linear-gradient(180deg, rgba(18,18,18,0.98) 0%, rgba(18,18,18,0.9) 50%, rgba(18,18,18,0) 100%);
  border-bottom:1px solid rgba(255,255,255,0.1);
  z-index:1000;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  max-width:1400px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 30px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.logo-icon {
  width: 45px;
  height: 45px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-text .text-white {
  color: #ffffff !important;
  font-weight: 900;
}

.logo-text .text-green {
  color: #c6ff00 !important;
  font-weight: 300;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

.nav-menu a {
  color:var(--text-secondary);
  text-decoration:none;
  padding:12px 25px;
  position:relative;
  text-transform:uppercase;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-menu a::before {
  content:'';
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:0;
  height:2px;
  background:linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  transition:width .3s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #c6ff00;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 80%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #c6ff00, #9dcc00);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero / 3D Carousel */
.hero {
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:120px 20px 80px;
  background-color:#333333;
  background:radial-gradient(ellipse at center, rgba(198,255,0,0.08) 0%, transparent 50%);
}

.carousel-container {
  width: 100%;
  max-width: 1600px;
  height: 650px;
  perspective: 1200px;
  position: relative;
  padding-top: 60px;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.carousel-item {
  position: absolute;
  width: 400px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  cursor: pointer;
  transform-origin: center center;
}

.carousel-item .card {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--carbon-medium), var(--carbon-dark));
  border: 2px solid var(--metal-dark);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(198, 255, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 200px;
  background: var(--carbon-dark);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--metal-dark);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.2);
  transition: all 0.5s ease;
}

.carousel-item:hover .card-image img {
  filter: grayscale(0%) contrast(1.3);
  transform: scale(1.1);
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #c6ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-badge {
  padding: 5px 12px;
  background: rgba(198, 255, 0, 0.08);
  border: 1px solid var(--accent-purple);
  border-radius: 20px;
  font-size: 12px;
  color: #c6ff00;
  text-transform: uppercase;
}

.carousel-controls {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 100;
}

.carousel-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--carbon-medium), var(--carbon-dark));
  border: 2px solid var(--metal-dark);
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.carousel-btn:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.carousel-indicators {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
}

.indicator {
  width: 12px;
  height: 12px;
  background: var(--metal-dark);
  border: 1px solid var(--metal-light);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transform: scale(1.3);
}

/* Philosophy Section */
.philosophy-section {
  padding:120px 30px;
  background:linear-gradient(180deg, var(--primary-black) 0%, rgba(198,255,0,0.02) 50%, var(--primary-black) 100%);
  position:relative;
  overflow:hidden;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.prism-line {
  width:100%;
  height:2px;
  margin:0 auto 60px;
  position:relative;
  overflow:hidden;
  background:var(--accent-blue);
}

.prism-line::before {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(51,51,51,0.95) 10%, rgba(198,255,0,1) 60%, transparent);
  animation:prismSweep 4s ease-in-out infinite;
}

@keyframes prismSweep {
  0% { left:-100%; }
  100% { left:100%; }
}

.philosophy-headline {
  font-size:56px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:3px;
  margin-bottom:30px;
  line-height:1.2;
  background:linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 25%, var(--accent-blue) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200% 200%;
  animation:gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}

.philosophy-subheading {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.6;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.pillar {
  position: relative;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.2), rgba(26, 26, 26, 0.3));
  border: 1px solid var(--metal-dark);
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pillar:hover {
  transform: translateY(-10px);
  border-color: var(--accent-purple);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(198, 255, 0, 0.05), rgba(26, 26, 26, 0.3));
}

.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}

.pillar-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}

.pillar-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-replacement {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-replacement p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.2em;
}

.about-brand {
  color: #b1acac;
  font-weight: 700;
}

.about-ticks {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 18px 0;
}

.about-ticks li {
  position: relative;
  padding-left: 28px;
  margin: 14px 0;
  color: var(--text-secondary);
  font-size: 1.2em;
}

.about-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c6ff00;
  font-weight: 900;
}

.philosophy-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Gallery Section */
.stats-section {
  padding: 80px 30px 120px 30px;
  background: linear-gradient(180deg, var(--primary-black) 0%, var(--carbon-dark) 50%, var(--primary-black) 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff, #c6ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Photo vs Video Menu */
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.gallery-nav-btn {
  padding: 12px 35px;
  background: var(--carbon-medium);
  border: 1px solid var(--metal-dark);
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gallery-nav-btn.active {
  background: #c6ff00;
  color: #333;
  border-color: #c6ff00;
  box-shadow: 0 0 20px rgba(198, 255, 0, 0.4);
}

.gallery-nav-btn:hover:not(.active) {
  border-color: #c6ff00;
  color: #c6ff00;
}

.photo-gallery {
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
}

.gallery-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--metal-dark);
  aspect-ratio: 16 / 9;
  background: rgba(26, 26, 26, 0.5);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(198, 255, 0, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }

.gallery-btn:hover {
  background: rgba(198, 255, 0, 1);
  transform: translateY(-50%) scale(1.1);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(198, 255, 0, 0.4);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

/* Video Gallery Styles */
.video-gallery {
  max-width: 1200px;
  margin: 40px auto 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.video-item {
  background: var(--carbon-medium);
  border: 1px solid var(--metal-dark);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  border-color: #c6ff00;
}

.video-item video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  object-fit: cover;
}

.video-caption {
  padding: 15px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-section {
  padding: 120px 30px;
  background: linear-gradient(180deg, var(--carbon-dark) 0%, var(--primary-black) 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info,
.contact-form {
  padding: 40px;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.3), rgba(26, 26, 26, 0.5));
  border: 1px solid var(--metal-dark);
  border-radius: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--carbon-dark);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
  background: rgba(198, 255, 0, 0.06);
  box-shadow: 0 5px 20px rgba(198, 255, 0, 0.18);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #fff;
  font-size: 20px;
}

.info-text h4 {
  color: #fff;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 16px;
}

.info-text p {
  color: var(--text-secondary);
  font-size: 14px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: var(--carbon-dark);
  border: 1px solid var(--metal-dark);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c6ff00;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #c6ff00;
  border: none;
  border-radius: 8px;
  color: #333333;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e0ff66;
    transform: scale(1.02);
}

/* Footer */
.footer {
  padding: 60px 30px 30px;
  background: var(--primary-black);
  border-top: 1px solid var(--metal-dark);
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--carbon-medium);
  border: 1px solid var(--metal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--metal-dark);
  max-width: 1200px;
  margin: 30px auto 0;
  color: var(--text-dim);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-container { grid-template-columns: 1fr; }
  .philosophy-headline { font-size: 36px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; z-index: 10001; }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 85px;
    flex-direction: column;
    background: rgba(18, 18, 18, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 40px 0;
    z-index: 10000;
  }
  .nav-menu.active { left: 0; }
  .carousel-item {
    width: 90%;
    max-width: 300px;
    height: auto;
  }
  
  .gallery-nav {
      flex-direction: row;
      flex-wrap: wrap;
  }
  
  .video-grid {
      grid-template-columns: 1fr;
  }

  .philosophy-section,
  .stats-section,
  .contact-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero {
    padding: 100px 10px 80px;
  }

  .video-carousel-cell {
    width: 90%;
  }

  .philosophy-headline {
    font-size: 32px;
  }

  .section-title {
    font-size: 36px;
  }
}

/* Video Carousel */
.video-carousel-main {
  width: 100%;
}

.video-carousel-cell {
  width: 60%;
  margin-right: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--carbon-medium);
  border: 1px solid var(--metal-dark);
}

.video-carousel-cell .video-player {
  width: 100%;
  height: 500px;
  max-height: 80vh;
  display: block;
  object-fit: cover;
}

.video-carousel-cell .video-caption {
  padding: 15px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(0,0,0,0.2);
}

/* Flickity overrides */
.flickity-prev-next-button {
  width: 50px;
  height: 50px;
  background: rgba(198, 255, 0, 0.7) !important;
  color: white !important;
}

.flickity-prev-next-button:hover {
  background: rgba(198, 255, 0, 1) !important;
}

.flickity-page-dots .dot {
  background: rgba(198, 255, 0, 0.4) !important;
}

.flickity-page-dots .dot.is-selected {
  background: #fff !important;
}
