/* ==========================================================
   Void Messenger — Global Styles
   ========================================================== */

body {
  font-family: var(--font-family);
  background-color: var(--void-black);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ── Container ── */
.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

/* ── Sections ── */
section {
  padding: var(--section-padding-y) 0;
  position: relative;
}

/* ── Section Headlines ── */
.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 540px;
}

/* ── Two Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Gradient Text Utility ── */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Neon Divider ── */
.neon-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-neon-horizontal);
  border: none;
  border-radius: 1px;
  margin: 2rem 0;
  opacity: 0.6;
}

/* ── Mouse Glow (global, always visible) ── */
#mouse-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle,
    rgba(255, 45, 120, 0.08) 0%,
    rgba(255, 154, 92, 0.03) 40%,
    transparent 70%
  );
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#mouse-glow.active {
  opacity: 1;
}

/* Ensure content is above the glow */
section, footer, header {
  position: relative;
  z-index: 2;
}

/* ── Link Styles ── */
a.text-link {
  color: var(--neon-magenta);
  transition: color var(--transition-fast);
}

a.text-link:hover {
  color: var(--neon-peach);
}

/* ── Selection ── */
::selection {
  background: rgba(255, 45, 120, 0.3);
  color: var(--text-primary);
}
