/* Shared custom styles for Aris Telecom (info site) */

body { background-color: #0A0A0A; }

/* Wide, sharp display headings */
.heading-wide {
  font-family: '"Space Grotesk"', sans-serif;
  letter-spacing: -0.02em;
}

/* Soft glowing depth behind feature cards */
.card-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  background: radial-gradient(120% 120% at 50% 0%, rgba(94, 230, 196, 0.22), rgba(94, 230, 196, 0.04) 45%, transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}

.ambient-glow {
  background: radial-gradient(60% 60% at 50% 0%, rgba(94, 230, 196, 0.10), transparent 70%);
}

/* Fine grid texture overlay */
.grid-texture {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

::selection { background: rgba(94, 230, 196, 0.25); }

/* Slim scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #27272a; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #3f3f46; }
