/* =========================================================
   SYNAPTIC CORE LAB — Global Stylesheet
   Cyberpunk / Tech Dark Theme
   ========================================================= */

:root {
  --bg-primary: #050912;
  --bg-secondary: #0a1424;
  --bg-card: rgba(15, 25, 45, 0.65);
  --bg-card-hover: rgba(20, 35, 60, 0.85);
  --neon-cyan: #00e5ff;
  --neon-cyan-dim: #00b4d8;
  --neon-orange: #ff7a18;
  --neon-orange-dim: #ff5722;
  --text-primary: #e8f4ff;
  --text-secondary: #8aa1c1;
  --text-muted: #5a6f8a;
  --border-glow: rgba(0, 229, 255, 0.25);
  --border-glow-strong: rgba(0, 229, 255, 0.6);
  --grid-line: rgba(0, 229, 255, 0.06);

  --font-display: 'Orbitron', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Animated grid background */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow orbs */
body::after {
  content: '';
  position: fixed;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: float-orb 20s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(200px, 100px); }
}

main, header, footer { position: relative; z-index: 1; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 9, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glow);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.brand img { width: 40px; height: 40px; }

.brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-orange));
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: transparent;
  color: var(--neon-cyan) !important;
  border: 1px solid var(--neon-cyan);
  border-radius: 2px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--neon-cyan);
  color: var(--bg-primary) !important;
  box-shadow: 0 0 20px var(--neon-cyan);
}

.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neon-cyan);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 90%),
    linear-gradient(180deg, rgba(5,9,18,0.7) 0%, rgba(5,9,18,0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--neon-cyan);
  border: 1px solid var(--border-glow-strong);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.05);
}

.hero-tag::before { content: '> '; }

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.glow-cyan {
  background: linear-gradient(180deg, #ffffff 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
}

.glow-orange {
  background: linear-gradient(180deg, #ffd4a8 0%, var(--neon-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-cyan-dim) 100%);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.7);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-orange {
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-orange-dim) 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 122, 24, 0.4);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 122, 24, 0.7);
}

/* Steam button */
.btn-steam {
  background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
  color: #66c0f4;
  border: 1px solid #66c0f4;
  box-shadow: 0 0 20px rgba(102, 192, 244, 0.25);
}

.btn-steam:hover {
  background: linear-gradient(135deg, #2a475e 0%, #1b2838 100%);
  color: #ffffff;
  box-shadow: 0 0 35px rgba(102, 192, 244, 0.6);
  transform: translateY(-2px);
}

.btn-steam .steam-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* Pulsing wishlist accent */
.wishlist-pulse {
  position: relative;
}
.wishlist-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid #66c0f4;
  border-radius: 2px;
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* Sim badges */
.sim-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

.sim-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sim-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse-glow 2s ease-in-out infinite;
}

.sim-badge.orange .dot {
  background: var(--neon-orange);
  box-shadow: 0 0 10px var(--neon-orange);
}

/* =========================================================
   STEAM WISHLIST — high-visibility components
   ========================================================= */

/* Sticky top banner */
.wishlist-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #171a21 0%, #1b2838 50%, #171a21 100%);
  border-bottom: 1px solid #66c0f4;
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.92rem;
  flex-wrap: wrap;
  box-shadow: 0 2px 25px rgba(102, 192, 244, 0.3);
}

.wishlist-banner .banner-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.5px;
}

.wishlist-banner .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66c0f4;
  box-shadow: 0 0 12px #66c0f4;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.wishlist-banner .banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: #66c0f4;
  color: #1b2838 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.wishlist-banner .banner-cta:hover {
  background: #ffffff;
  transform: translateX(2px);
  box-shadow: 0 0 20px rgba(102, 192, 244, 0.7);
}

.wishlist-banner .banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.4rem;
  transition: color 0.2s;
}
.wishlist-banner .banner-close:hover { color: #fff; }

/* Push header down when banner present */
body.has-banner .site-header { top: 50px; }
body.has-banner main { padding-top: 0; }

/* Floating Steam button (bottom-right) */
.steam-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.6rem;
  background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid #66c0f4;
  border-radius: 3px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(102, 192, 244, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.steam-floating.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: float-bob 3s ease-in-out infinite;
}

.steam-floating:hover {
  background: linear-gradient(135deg, #66c0f4 0%, #2a475e 100%);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(102, 192, 244, 0.8);
}

.steam-floating .steam-icon {
  width: 22px;
  height: 22px;
  fill: #66c0f4;
}

.steam-floating:hover .steam-icon { fill: #ffffff; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Trailer hero — autoplay overlay */
.trailer-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.trailer-overlay-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0.55) 0%, rgba(5, 9, 18, 0.2) 30%, rgba(5, 9, 18, 0.85) 90%, var(--bg-primary) 100%),
    linear-gradient(90deg, rgba(5, 9, 18, 0.7) 0%, transparent 50%, rgba(5, 9, 18, 0.7) 100%);
}

.trailer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.trailer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 4px;
  color: #66c0f4;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid #66c0f4;
  background: rgba(27, 40, 56, 0.8);
  border-radius: 2px;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(6px);
}

.trailer-eyebrow .live-dot {
  background: #66c0f4;
  width: 8px; height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 10px #66c0f4;
  animation: live-pulse 1.5s ease-in-out infinite;
}

.trailer-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.trailer-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* MASSIVE Steam CTA */
.steam-mega {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2.8rem;
  background: linear-gradient(135deg, #66c0f4 0%, #4a9fd4 100%);
  color: #1b2838;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow:
    0 10px 40px rgba(102, 192, 244, 0.5),
    0 0 80px rgba(102, 192, 244, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.steam-mega::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.steam-mega:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 15px 50px rgba(102, 192, 244, 0.7),
    0 0 100px rgba(102, 192, 244, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.6);
  background: linear-gradient(135deg, #ffffff 0%, #66c0f4 100%);
}

.steam-mega:hover::before { left: 100%; }

.steam-mega .steam-icon {
  width: 28px;
  height: 28px;
  fill: #1b2838;
}

.steam-mega .arrow {
  font-size: 1.5rem;
  margin-left: 0.3rem;
  transition: transform 0.3s;
}

.steam-mega:hover .arrow { transform: translateX(6px); }

/* Anchor offset for sticky header */
section[id] {
  scroll-margin-top: 130px;
}

/* FAQ accordion */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-glow);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s;
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { color: var(--neon-cyan); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  transition: all 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] .faq-toggle {
  background: var(--neon-cyan);
  color: var(--bg-primary);
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-right: 2.5rem;
}

@media (max-width: 700px) {
  .wishlist-banner { padding: 0.55rem 1rem; gap: 0.7rem; font-size: 0.78rem; }
  .wishlist-banner .banner-cta { padding: 0.35rem 0.8rem; font-size: 0.75rem; }
  body.has-banner .site-header { top: 65px; }
  .steam-floating {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }
  .steam-mega { padding: 1.1rem 1.8rem; font-size: 1rem; letter-spacing: 2px; }
  section[id] { scroll-margin-top: 110px; }
}

/* ===== SECTIONS ===== */
section {
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--neon-orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-eyebrow::before { content: '// '; }

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section-lede {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  padding: 2.2rem 1.8rem;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow-strong);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  color: var(--neon-cyan);
}

.feature-card.orange .feature-icon {
  background: rgba(255, 122, 24, 0.08);
  border-color: rgba(255, 122, 24, 0.3);
  color: var(--neon-orange);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== STATS ===== */
.stats-strip {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.04), transparent);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
  padding: 4rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

/* ===== TWO-COL ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse > *:first-child { order: 2; }

.split-visual {
  position: relative;
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-secondary);
}

.split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), transparent 50%, rgba(255,122,24,0.1));
  z-index: 1;
  pointer-events: none;
}

.split-visual video,
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.split-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.bullet-list {
  list-style: none;
  margin-top: 1.5rem;
}

.bullet-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  color: var(--text-primary);
}

.bullet-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
  font-size: 1.2rem;
}

/* ===== VIDEO SECTION ===== */
.video-showcase {
  background: var(--bg-secondary);
  position: relative;
}

.video-frame {
  max-width: 1100px;
  margin: 3rem auto 0;
  border: 1px solid var(--border-glow-strong);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.2);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--neon-cyan);
  border-style: solid;
  pointer-events: none;
  z-index: 5;
}
.video-corner.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.video-corner.tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.video-corner.bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.video-corner.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

/* ===== CTA SECTION ===== */
.cta-banner {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(0, 229, 255, 0.1), transparent 70%),
    var(--bg-secondary);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
  padding: 6rem 2rem;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.cta-banner p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #020610;
  border-top: 1px solid var(--border-glow);
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--neon-cyan); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.9rem;
}

.social-links a:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(0, 229, 255, 0.1), transparent 60%);
  border-bottom: 1px solid var(--border-glow);
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== FORMS ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  background: var(--bg-card);
}

.contact-detail-icon {
  font-size: 1.3rem;
  color: var(--neon-cyan);
  margin-top: 0.2rem;
}

.contact-detail strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  font-family: var(--font-mono);
}

.contact-detail span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  padding: 2.5rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(5, 9, 18, 0.7);
  border: 1px solid var(--border-glow);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
  background: rgba(5, 9, 18, 0.95);
}

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

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-glow-strong);
  background: rgba(0, 229, 255, 0.08);
  color: var(--neon-cyan);
  border-radius: 2px;
  font-size: 0.9rem;
}
.form-status.show { display: block; }

/* ===== TIMELINE / TECH ===== */
.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tech-item {
  padding: 1.8rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s;
}

.tech-item:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 229, 255, 0.2);
}

.tech-item .tech-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--neon-orange);
  font-weight: 900;
  display: block;
  margin-bottom: 0.5rem;
}

.tech-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.tech-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  transition: all 0.3s;
}

.team-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
}

.team-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes scan-line {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: rgba(5, 9, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.8rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-glow);
  }

  .nav-links.open { right: 0; }

  .menu-toggle { display: block; }

  .split, .split.reverse > *:first-child {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    order: initial;
  }

  .split.reverse > *:first-child { order: 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  section { padding: 4rem 1.2rem; }
  .nav-container { padding: 1rem 1.2rem; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-cta { display: none; }
  .hero { padding-top: 6rem; }
  h1.hero-title { font-size: 2.2rem; }
}

/* Selection */
::selection { background: var(--neon-cyan); color: var(--bg-primary); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-orange));
  border-radius: 5px;
}
