/* Utility Classes */

/* Text Gradient */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Cards */
.card-custom {
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px hsla(210, 100%, 45%, 0.15);
}

.card-stat {
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.card-stat:hover {
  box-shadow: var(--shadow-strong);
}

/* Layout */
.z-10 {
  z-index: 10;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 64rem;
}

.max-w-5xl {
  max-width: 72rem;
}

.max-w-article {
  max-width: 860px;
}

/* Spacing */
.pt-section {
  padding-top: 6rem !important;
}

/* Images */
.img-cover {
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
}

.img-height-200 {
  height: 200px;
}

.img-height-300 {
  height: 300px;
}

/* Backgrounds */
.bg-gradient-subtle {
  background: linear-gradient(180deg, hsl(210, 100%, 99%), hsl(210, 60%, 98%));
}

.bg-gradient-primary {
  background: linear-gradient(135deg, hsl(210, 100%, 45%), hsl(185, 85%, 50%));
}

.bg-gradient-hero {
  background: linear-gradient(90deg, #0d6efd, #0dcaf0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-subtle-light {
  background: rgba(0,0,0,.02);
}

/* Logo */
.logo-container {
  width: 2.5rem;
  height: 2.5rem;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* List */
.list-bullet-offset {
  margin-top: 0.25rem;
}

/* Cards */
.card-clickable {
  cursor: pointer;
}

/* 404 Page */
.error-page {
  min-height: 100vh;
  background-color: hsl(210, 40%, 96%);
}

/* Marquee (Trusted Logos) */
.marquee-container {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  width: max-content;
  gap: 2rem;
}

.marquee-logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.cursor-default {
  cursor: default!important;
}
