@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/NouvelRRegular.ttf') format('truetype');
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/NouvelRBold.ttf') format('truetype');
  font-weight: 700 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
}

body {
  background: #161616;
}

::selection {
  background: #ff8502;
  color: #161616;
}

.grid-noise {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 95%);
}

.orange-text {
  background: linear-gradient(115deg, #ffb13b 0%, #ff8502 42%, #ff6902 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 133, 2, 0.6), transparent 38%, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-panel {
  max-height: 320px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.nav-link.active {
  color: #ff8502;
}

.text-white\/35,
.text-white\/40,
.text-white\/45,
.text-white\/50,
.text-white\/55 {
  color: rgba(255, 255, 255, 0.68) !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ff8502;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
