/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  overflow: hidden;
  color: #ffffff;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(9, 15, 12, 0.25) 0%, rgba(9, 15, 12, 0.75) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-family: var(--font-mono);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent-gold);
  border-radius: 50%;
}
.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero-title-italic {
  font-family: var(--font-display);
  color: var(--color-accent-gold);
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.hero-btn-group { display: flex; gap: 16px; justify-content: center; }
.btn-primary {
  background: var(--color-accent-gold);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s var(--transition-timing), box-shadow 0.3s var(--transition-timing);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(208, 62, 39, 0.3);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Sections */
.section {
  padding: 100px 8%;
  position: relative;
  z-index: 10;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.section-pre {
  font-size: 11px;
  color: var(--color-accent-gold);
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: 36px;
  font-family: var(--font-display);
  font-weight: 500;
}
.filter-group {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 4px;
  border-radius: 30px;
}
.filter-btn {
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn.active {
  background: var(--color-accent-gold);
  color: #090f0c;
  font-weight: 700;
}

/* Responsive Home Page Layout and Typography Overrides */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 140px 5% 60px 5% !important;
    display: flex;
    align-items: center;
  }
  .hero-title {
    font-size: 38px !important;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 28px;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-btn-group button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 32px !important;
  }
}

/* Gear Matrix Section Layouts */
.gear-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .gear-matrix-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

