/* ============================================
   Aura Vex LLC - Global Styles
   Sci-Fi Blue Theme + Glassmorphism
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --primary: #0066FF;
  --primary-dark: #003399;
  --accent: #00D4FF;
  --accent-glow: rgba(0, 212, 255, 0.5);
  --bg-dark: #0a0f1a;
  --bg-darker: #050810;
  --bg-card: rgba(20, 32, 58, 0.75);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.18);
  --text-primary: #FFFFFF;
  --text-secondary: #a8b8d8;
  --text-muted: #7080a0;
  --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0,102,255,0.18) 0%, rgba(10,15,26,0) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0,102,255,0.35) 0%, rgba(0,212,255,0.15) 100%);
  --shadow-glow: 0 0 50px rgba(0, 212, 255, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 60px rgba(0, 102, 255, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow: 0.6s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0, 212, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-secondary); }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

.container-sm { max-width: 900px; }
.container-lg { max-width: 1400px; }

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); align-items: start; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   Glassmorphism Cards
   ============================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
}

.glass-card {
  padding: 2rem;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-hover);
}

.glass-card:hover .card-glow {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.6rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .main {
  font-size: 1.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-text .sub {
  font-size: 0.6rem;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  font-family: 'Inter', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: white !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.35);
}

.nav-cta:hover {
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
  margin: 0 auto;
}

.hamburger:hover {
  background: rgba(0, 102, 255, 0.2);
  border-color: var(--accent);
}

.hamburger:hover span {
  background: var(--accent);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 8, 16, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-glow {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  position: relative;
}

.btn-glow:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 15, 26, 0.2) 0%, rgba(10, 15, 26, 0.85) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(0, 102, 255, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   Product Cards
   ============================================ */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: var(--shadow-hover);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image {
  transform: scale(1.05);
}

.product-card-image-wrapper {
  overflow: hidden;
  position: relative;
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 102, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-series {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.product-card-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.product-card-arrow {
  width: 36px;
  height: 36px;
  background: rgba(0, 102, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--transition-fast);
}

.product-card:hover .product-card-arrow {
  background: var(--accent);
  color: var(--bg-dark);
}

/* ============================================
   Features Grid
   ============================================ */
.feature-card {
  padding: 2rem;
  position: relative;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 25px rgba(0, 102, 255, 0.4);
}

.feature-card h4 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  background: linear-gradient(180deg, rgba(0,102,255,0.1) 0%, rgba(10,15,26,0) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================
   Tabs / Filter
   ============================================ */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: 'Inter', sans-serif;
}

.filter-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

/* ============================================
   Specs Table
   ============================================ */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition-fast);
}

.specs-table tr:hover {
  background: rgba(0, 102, 255, 0.05);
}

.specs-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}

.specs-table td:first-child {
  color: var(--text-secondary);
  font-weight: 500;
  width: 40%;
}

.specs-table td:last-child {
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

/* ============================================
   Contact Cards
   ============================================ */
.contact-info-card {
  padding: 2.5rem;
  height: 100%;
  position: relative;
  z-index: 5;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item-content h4 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-item-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-item-content a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item-content a:hover {
  color: white;
}

/* ============================================
   Gallery / Carousel
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 102, 255, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0, 102, 255, 0.3);
}

.gallery-zoom {
  font-size: 2rem;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-fast);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.timeline-year {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section .glass {
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(0,102,255,0.15) 0%, rgba(0,212,255,0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

.footer-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   Page Hero (inner pages)
   ============================================ */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.5) 0%, var(--bg-dark) 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb span {
  color: var(--text-muted);
}

/* ============================================
   Value Cards
   ============================================ */
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.value-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(0,102,255,0.2), rgba(0,212,255,0.1));
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.value-card h4 {
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 102, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 102, 255, 0.5);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {
  .nav-links a {
    padding: 0.5rem 0.6rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .nav-links {
    gap: 0.25rem;
  }
  .nav-links a {
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    gap: 0;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .hero-stat { min-width: 120px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .gallery-item { aspect-ratio: 16/10; }

  .navbar .container {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .filter-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .filter-tab { white-space: nowrap; }
  .spaceship-container { height: 400px; }
  .spaceship { width: 80px; height: 140px; }
  .launch-progress { left: 1rem; right: 1rem; bottom: 1rem; }
  .progress-label { display: none; }
  .launch-status { font-size: 0.6rem; }

  .nav-logo-text {
    max-width: 100px;
    overflow: hidden;
  }
  .nav-logo-text .main {
    font-size: 1rem;
    white-space: nowrap;
  }
  .nav-logo-text .sub {
    display: none;
  }
}

/* ============================================
   Spaceship Launch Animation
   ============================================ */
.spaceship-container {
  height: 500px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0f1a 0%, #0d1525 50%, #0a1520 100%);
}

/* Starfield */
.starfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite;
}

.star:nth-child(odd) { animation-delay: 0.5s; }
.star:nth-child(3n) { animation-delay: 1s; width: 3px; height: 3px; }
.star:nth-child(5n) { animation-delay: 1.5s; opacity: 0.5; }

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

/* Stars positioned randomly */
.star:nth-child(1) { top: 10%; left: 15%; }
.star:nth-child(2) { top: 20%; left: 80%; }
.star:nth-child(3) { top: 35%; left: 25%; }
.star:nth-child(4) { top: 15%; left: 60%; }
.star:nth-child(5) { top: 45%; left: 90%; }
.star:nth-child(6) { top: 25%; left: 40%; }
.star:nth-child(7) { top: 55%; left: 10%; }
.star:nth-child(8) { top: 30%; left: 70%; }
.star:nth-child(9) { top: 65%; left: 35%; }
.star:nth-child(10) { top: 8%; left: 50%; }
.star:nth-child(11) { top: 50%; left: 75%; }
.star:nth-child(12) { top: 40%; left: 5%; }
.star:nth-child(13) { top: 70%; left: 55%; }
.star:nth-child(14) { top: 12%; left: 85%; }
.star:nth-child(15) { top: 60%; left: 20%; }
.star:nth-child(16) { top: 5%; left: 30%; }
.star:nth-child(17) { top: 75%; left: 65%; }
.star:nth-child(18) { top: 38%; left: 92%; }
.star:nth-child(19) { top: 22%; left: 8%; }
.star:nth-child(20) { top: 80%; left: 45%; }

/* Cloud layers */
.cloud {
  position: absolute;
  width: 200%;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03) 50%, transparent);
  border-radius: 50%;
  animation: cloudDrift 20s linear infinite;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 {
  bottom: 20%;
  left: -50%;
  animation-duration: 25s;
}

.cloud-2 {
  bottom: 35%;
  left: -50%;
  animation-duration: 30s;
  animation-delay: -10s;
  opacity: 0.5;
}

.cloud-3 {
  bottom: 50%;
  left: -50%;
  animation-duration: 35s;
  animation-delay: -20s;
  opacity: 0.3;
}

/* ============================================
   Rocket Launch Animation - B&W Sci-Fi
   ============================================ */
.rocket-container {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, rgba(40, 40, 40, 0.8) 0%, #0a0a0a 60%, #000000 100%);
}

.rocket-glow {
  background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

/* Holographic grid */
.holo-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* Rocket stars */
.rocket-stars {
  position: absolute;
  inset: 0;
}

.rocket-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite;
}

.rocket-star:nth-child(1) { top: 8%; left: 10%; animation-delay: 0s; }
.rocket-star:nth-child(2) { top: 15%; left: 25%; animation-delay: 0.3s; }
.rocket-star:nth-child(3) { top: 5%; left: 45%; animation-delay: 0.6s; }
.rocket-star:nth-child(4) { top: 20%; left: 55%; animation-delay: 0.9s; }
.rocket-star:nth-child(5) { top: 12%; left: 85%; animation-delay: 0.2s; }
.rocket-star:nth-child(6) { top: 30%; left: 15%; animation-delay: 1.1s; }
.rocket-star:nth-child(7) { top: 25%; left: 40%; animation-delay: 0.5s; }
.rocket-star:nth-child(8) { top: 18%; left: 70%; animation-delay: 0.8s; }
.rocket-star:nth-child(9) { top: 35%; left: 90%; animation-delay: 1.4s; }
.rocket-star:nth-child(10) { top: 10%; left: 60%; animation-delay: 0.1s; }
.rocket-star:nth-child(11) { top: 22%; left: 30%; animation-delay: 0.7s; }
.rocket-star:nth-child(12) { top: 28%; left: 80%; animation-delay: 1.2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 4px white; }
}

/* Rocket wrapper - vertical launch */
.rocket-wrapper {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 180px;
  transform-origin: center center;
  animation: rocketLaunch 3s ease-in-out infinite;
}

@keyframes rocketLaunch {
  0%, 100% { 
    transform: translateX(-50%) translateY(0); 
    opacity: 0.7;
  }
  10% { 
    transform: translateX(-50%) translateY(-30px); 
    opacity: 1;
  }
  50% { 
    transform: translateX(-50%) translateY(-200px); 
    opacity: 1;
  }
  70% {
    transform: translateX(-50%) translateY(-380px);
    opacity: 0.8;
  }
  85% {
    transform: translateX(-50%) translateY(-520px);
    opacity: 0.3;
  }
}

/* Exhaust smoke */
.exhaust-container {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 100px;
}

.exhaust-fade {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 80px;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(200, 200, 200, 0.2) 50%,
    transparent 100%
  );
  border-radius: 50% 50% 30% 30%;
  animation: exhaustPulse 0.15s infinite alternate;
}

.exhaust-smoke {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 70%);
  animation: smokeExpand 0.4s ease-out infinite;
}

.smoke-1 { width: 20px; height: 30px; left: 50%; top: 10px; transform: translateX(-50%); animation-delay: 0s; }
.smoke-2 { width: 30px; height: 40px; left: 40%; top: 20px; animation-delay: 0.1s; }
.smoke-3 { width: 25px; height: 35px; left: 60%; top: 15px; animation-delay: 0.15s; }
.smoke-4 { width: 35px; height: 45px; left: 30%; top: 30px; animation-delay: 0.2s; }
.smoke-5 { width: 28px; height: 38px; left: 65%; top: 25px; animation-delay: 0.25s; }

@keyframes smokeExpand {
  0% { opacity: 0.6; transform: translateX(-50%) scale(0.5); }
  100% { opacity: 0; transform: translateX(-50%) scale(2) translateY(20px); }
}

@keyframes exhaustPulse {
  0% { transform: translateX(-50%) scaleY(0.9) scaleX(1); }
  100% { transform: translateX(-50%) scaleY(1.1) scaleX(0.9); }
}

/* Flame container */
.flame-container {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 80px;
}

.flame-core {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 50px;
  background: linear-gradient(0deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.9) 20%,
    rgba(255, 255, 255, 1) 50%,
    rgba(220, 220, 220, 0.8) 80%,
    transparent 100%
  );
  border-radius: 50% 50% 40% 40%;
  filter: blur(1px);
  animation: flameFlicker 0.08s infinite alternate;
}

.flame-inner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 60px;
  background: linear-gradient(0deg, 
    rgba(180, 180, 180, 0.4) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    transparent 100%
  );
  border-radius: 50% 50% 30% 30%;
  animation: flameFlicker 0.1s infinite alternate-reverse;
}

.flame-outer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 70px;
  background: linear-gradient(0deg, 
    rgba(100, 100, 100, 0.3) 0%,
    rgba(255, 255, 255, 0.3) 20%,
    transparent 60%
  );
  border-radius: 50% 50% 40% 40%;
  animation: flameFlicker 0.12s infinite alternate;
}

.flame-tip {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(0deg, white 0%, transparent 100%);
  border-radius: 2px;
  animation: flameTip 0.15s infinite alternate;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
}

@keyframes flameFlicker {
  0% { transform: translateX(-50%) scaleY(0.92) scaleX(1.05); opacity: 0.9; }
  100% { transform: translateX(-50%) scaleY(1.08) scaleX(0.95); opacity: 1; }
}

@keyframes flameTip {
  0% { height: 18px; opacity: 0.8; }
  100% { height: 24px; opacity: 1; }
}

/* Flame particles */
.flame-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px white;
  animation: particleBurn 0.2s ease-out infinite;
}

.flame-particle.p1 { bottom: 20px; left: 30%; animation-delay: 0s; }
.flame-particle.p2 { bottom: 30px; left: 60%; animation-delay: 0.05s; }
.flame-particle.p3 { bottom: 15px; left: 45%; animation-delay: 0.1s; }
.flame-particle.p4 { bottom: 40px; left: 55%; animation-delay: 0.08s; }
.flame-particle.p5 { bottom: 25px; left: 40%; animation-delay: 0.03s; }

@keyframes particleBurn {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-30px) scale(0); opacity: 0; }
}

/* Rocket body */
.rocket-body {
  position: relative;
  width: 80px;
  height: 180px;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.rocket-svg {
  width: 100%;
  height: 100%;
}

/* Status lights on rocket */
.status-light {
  animation: lightBlink 1s infinite;
}

.status-light.sl1 { animation-delay: 0s; }
.status-light.sl2 { animation-delay: 0.33s; }
.status-light.sl3 { animation-delay: 0.66s; }

@keyframes lightBlink {
  0%, 100% { opacity: 0.3; fill: rgba(255,255,255,0.3); }
  50% { opacity: 1; fill: white; filter: drop-shadow(0 0 4px white); }
}

/* Speed trails */
.speed-trails {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  animation: showTrails 3s ease-out infinite;
}

.trail {
  position: absolute;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.8) 100%);
  height: 1px;
  animation: trailMove 0.3s linear infinite;
}

.trail.t1 { top: 45%; left: 10%; width: 100px; animation-delay: 0s; }
.trail.t2 { top: 50%; left: 5%; width: 120px; animation-delay: 0.08s; }
.trail.t3 { top: 55%; left: 15%; width: 80px; animation-delay: 0.15s; }
.trail.t4 { top: 60%; left: 8%; width: 110px; animation-delay: 0.05s; }
.trail.t5 { top: 52%; left: 12%; width: 90px; animation-delay: 0.12s; }

@keyframes trailMove {
  0% { transform: translateX(0) scaleX(0.5); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateX(-150px) scaleX(1.2); opacity: 0; }
}

@keyframes showTrails {
  0%, 15% { opacity: 0; }
  30%, 70% { opacity: 1; }
  85%, 100% { opacity: 0; }
}

/* HUD elements */
.rocket-hud {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.rocket-hud.hud-left {
  top: 2rem;
  left: 1.5rem;
}

.rocket-hud.hud-right {
  top: 2rem;
  right: 1.5rem;
}

.hud-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent);
}

.hud-right .hud-line {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
}

.hud-text {
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Launch data */
.launch-data {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  gap: 2rem;
}

.data-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.data-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
}

.data-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Progress indicators - updated for B&W theme */
.launch-progress {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progress-bar {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: white;
  border-radius: 2px;
  animation: progressPulseBW 2s ease-in-out infinite;
}

@keyframes progressPulseBW {
  0%, 100% { opacity: 0.7; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 8px rgba(255, 255, 255, 0.6); }
}

.progress-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  min-width: auto;
  letter-spacing: 0.05em;
}

.progress-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  min-width: auto;
  text-align: right;
}

/* Launch status - updated for B&W theme */
.launch-status {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: statusBlinkBW 1s infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes statusBlinkBW {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .rocket-container {
    height: 400px;
  }
  
  .rocket-wrapper {
    width: 60px;
    height: 135px;
    left: 40%;
  }
  
  .rocket-body {
    width: 60px;
    height: 135px;
  }
  
  .rocket-svg {
    viewBox: 0 0 80 180;
  }
  
  .launch-data {
    gap: 1rem;
  }
  
  .data-value {
    font-size: 0.7rem;
  }
  
  .rocket-hud {
    font-size: 0.5rem;
  }
  
  .hud-line {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .rocket-container {
    height: 350px;
  }
  
  .rocket-wrapper {
    width: 50px;
    height: 110px;
    left: 45%;
    bottom: 15%;
  }
  
  .rocket-body {
    width: 50px;
    height: 110px;
  }
  
  .launch-progress {
    display: none;
  }
  
  .launch-data {
    bottom: 1rem;
    left: 1rem;
  }
  
  .rocket-hud {
    display: none;
  }
}

/* ============================================
   Location Section
   ============================================ */
.location-section {
  background: linear-gradient(180deg, rgba(0,102,255,0.06) 0%, #ffffff 30%, #ffffff 100%);
  padding-bottom: 4rem;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-header h2 {
  margin-bottom: 1rem;
}

.location-header p {
  color: rgba(69, 58, 58, 1);
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gradient-text-dark {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.location-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0066FF;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.location-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.location-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(0, 102, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-details h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.location-address {
  color: #556688;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #0066FF;
  font-weight: 500;
}

.location-hours {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 1.5rem 2rem;
}

.location-hours h5 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: #556688;
}

.hours-row span:last-child {
  color: #1a1a2e;
  font-weight: 500;
}

.location-btn {
  margin-top: 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  justify-content: center;
}

.location-btn:hover {
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
  transform: translateY(-2px);
}

.location-map {
  position: relative;
  height: 100%;
  display: flex;
}

.map-wrapper {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 10px rgba(0, 102, 255, 0.4));
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .location-info {
    gap: 1.5rem;
  }

  .location-map {
    height: auto;
  }

  .map-wrapper {
    min-height: 350px;
  }

  .location-card {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding-bottom: 2rem;
  }

  .location-header {
    margin-bottom: 1.5rem;
  }

  .location-header p {
    font-size: 1rem;
  }

  .location-card {
    padding: 1.5rem;
  }

  .location-hours {
    padding: 1.25rem 1.5rem;
  }

  .map-wrapper {
    min-height: 300px;
  }
}

/* ============================================
   Misc Utilities
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   Floating Contact Button
   ============================================ */
.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  text-decoration: none;
  animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInRight {
  0% {
    transform: translateY(-50%) translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}

.contact-glass {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 64px;
  height: 80px;
  margin-right: -12px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: none;
  border-radius: 16px 0 0 16px;
  box-shadow: 
    -4px 0 24px rgba(0, 0, 0, 0.12),
    0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  color: var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.contact-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.contact-glass svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.15)) drop-shadow(-1px -1px 1px rgba(255,255,255,0.5));
  transition: transform 0.3s ease;
}

.contact-glass:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 
    -4px 0 32px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.contact-glass:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2)) drop-shadow(-1px -1px 2px rgba(255,255,255,0.6));
}

/* Ripple effect */
.contact-ripple {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  pointer-events: none;
}

.floating-contact:active .contact-ripple {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-50%) scale(4);
    opacity: 0;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-glass {
    width: 52px;
    height: 68px;
    border-radius: 12px 0 0 12px;
  }

  .contact-glass svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .floating-contact {
    top: auto;
    bottom: 1.5rem;
    transform: translateX(0);
    animation: slideInBottom 0.6s ease-out forwards;
  }

  @keyframes slideInBottom {
    0% {
      transform: translateY(100px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .contact-glass {
    width: auto;
    height: auto;
    padding: 0.75rem 1.25rem;
    flex-direction: row;
    gap: 0.5rem;
    border-radius: 50px;
    margin-right: 0;
    box-shadow: 
      0 4px 24px rgba(0, 0, 0, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .contact-glass::before {
    background: none;
  }
}
