body {
  background-color: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.text-gradient {
  background: linear-gradient(to right, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(to right, #0ea5e9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mask-gradient {
  position: relative;
  isolation: isolate;
}

.mask-gradient::before,
.mask-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}

.mask-gradient::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.mask-gradient::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}

.service-card,
.card-shell {
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: radial-gradient(circle at 20% -10%, rgba(255, 255, 255, 0.09), rgba(5, 5, 5, 0.85));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.card-shell {
  background: radial-gradient(circle at 20% -10%, rgba(255, 255, 255, 0.05), rgba(4, 4, 4, 0.92));
  padding: 2rem;
  gap: 1.25rem;
}

.card-shell--compact {
  padding: 1.5rem;
  border-radius: 26px;
  gap: 1rem;
}

.card-shell--pricing {
  background: radial-gradient(circle at 10% -10%, rgba(68, 187, 255, 0.15), rgba(5, 5, 5, 0.92));
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.card-shell--testimonial {
  min-width: 22rem;
  padding: 1.75rem;
  gap: 1rem;
}

.card-shell--muted {
  background: rgba(10, 10, 10, 0.85);
}

.service-card__mockup {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
  .service-card {
    padding: 1.75rem;
  }
  .card-shell {
    padding: 1.5rem;
  }
}

.ticker-track {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.ticker-row {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-row--reverse {
  animation-direction: reverse;
}

.ticker-row:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile headline font size increase */
@media (max-width: 767px) {
  .hero-headline-mobile {
    font-size: 2.5rem !important; /* 40px = 36px (text-4xl) + 4px */
  }
}

.icon-gradient-blue {
  display: inline-block;
}

.icon-gradient-blue svg {
  stroke: url(#blueGradient);
  fill: url(#blueGradient);
}

/* Fallback for browsers that don't support SVG gradients */
@supports not (stroke: url(#blueGradient)) {
  .icon-gradient-blue svg {
    stroke: #0ea5e9;
    fill: #0ea5e9;
  }
}


