* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #000;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.hero-vignette {
  background: #000;
}

.hero-title,
.text-gradient {
  background: linear-gradient(135deg, #ff8c1a 0%, #ff5f2e 28%, #ff2c75 57%, #8a2be2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-bg {
  background:
    radial-gradient(circle at 10% 76%, rgba(255, 95, 46, 0.92), transparent 18rem),
    radial-gradient(circle at 23% 82%, rgba(226, 31, 182, 0.66), transparent 28rem),
    radial-gradient(circle at 92% 20%, rgba(255, 95, 46, 0.78), transparent 20rem),
    radial-gradient(circle at 82% 46%, rgba(138, 43, 226, 0.62), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18rem),
    #000;
}

.services-section {
  background: #000;
}

.services-waves {
  background:
    radial-gradient(circle at 16% 78%, rgba(255, 95, 46, 0.9), transparent 18rem),
    radial-gradient(circle at 24% 92%, rgba(226, 31, 182, 0.68), transparent 26rem),
    radial-gradient(circle at 84% 24%, rgba(255, 95, 46, 0.76), transparent 20rem),
    radial-gradient(circle at 78% 62%, rgba(138, 43, 226, 0.72), transparent 26rem),
    radial-gradient(circle at 52% 44%, rgba(226, 31, 182, 0.24), transparent 24rem),
    #000;
  filter: saturate(1.15);
}

.service-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.36);
}

.service-icon-tile {
  background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.32)),
    linear-gradient(135deg, rgba(255, 95, 46, 0.62), rgba(226, 31, 182, 0.42) 54%, rgba(138, 43, 226, 0.62));
}

.performance-seal {
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.1),
    0 0 26px rgba(255, 255, 255, 0.08);
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: 0.5rem 0;
}

.nav-link::after,
.ghost-portfolio::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, #ff5f2e, #8a2be2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-link:hover::after,
.ghost-portfolio:hover::after {
  transform: scaleX(1);
}

.ghost-portfolio {
  position: relative;
}

.logo-marquee {
  animation: logo-marquee 24s linear infinite;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1023px) {
  .hero-title {
    font-size: clamp(3.5rem, 14vw, 7rem);
  }
}

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