/* ========== CONTACT ========== */
.contact {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background glow */
.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact__header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 9rem);
  color: var(--text);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.contact__title--outline {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
  background: none;
}

.contact__subtitle {
  font-family: var(--font-body);
  color: var(--text-soft);
  font-size: 1rem;
  margin-top: 2rem;
  font-weight: 300;
}

/* Pills */
.contact__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.contact-pill {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-soft);
  background: var(--gradient-subtle);
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.contact-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(108,99,255,0.15);
  background: rgba(108,99,255,0.08);
}
