/* Remotiex — shared styles (on top of Tailwind CDN utilities) */

:root {
  --ink: #0a0a0a;
  --accent: #3b82f6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Node/connection motif — subtle dotted background used behind hero + CTA sections */
.node-motif {
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* Card hover lift, used across service/value/project cards */
.lift-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.08);
  border-color: var(--accent);
}

/* Mobile nav drawer */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
#mobile-menu.open {
  max-height: 24rem;
}

/* WhatsApp button pulse — draws the eye without being obnoxious */
.wa-pulse {
  position: relative;
}
.wa-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Placeholder project icon — monogram tile until real logos are supplied */
.project-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}
