/* BACKGROUND VIDEO */
#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: blur(2px) brightness(0.6) saturate(0.9);
}

#video-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.75)
  );
  z-index: -2;
}

/* CUSTOM CURSOR */
#cursor {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(122,162,255,0.25), transparent 60%);
  filter: blur(20px);
  transform: translate(-50%, -50%);
  z-index: 999;
  mix-blend-mode: screen;
}

/* HERO SPLIT */
.hero-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-left {
  max-width: 520px;
}

.hero-right {
  min-width: 300px;
}

.hero-right h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,0.9);
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-4px);
  background: rgba(122,162,255,0.25);
}

.contact-box img {
  width: 22px;
  height: 22px;
}

.contact-box span {
  font-size: 0.9rem;
  color: #fff;
}

/* TEXT */
.label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
}

.panel h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

/* BLUR PANELS */
.blur-panel {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(30px);
  border-left: 1px solid rgba(255,255,255,0.08);
}
