.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 60;
  background: #0f172a;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
}

.nav-link {
  color: var(--color-gray-600);
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--color-gray-900);
}

.nav-link-active {
  color: var(--color-primary-600);
}

.feature-list-item {
  position: relative;
  padding-left: 1.25rem;
}

.feature-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--color-primary-600);
}

body.marketing-luxe {
  background:
    radial-gradient(circle at 20% 5%, rgba(14, 165, 233, 0.14), transparent 34rem),
    radial-gradient(circle at 78% 20%, rgba(20, 184, 166, 0.12), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f6f8fb 100%);
}

.marketing-luxe header {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
}

.marketing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 13, 27, 0.96), rgba(9, 32, 55, 0.94)),
    radial-gradient(circle at 78% 18%, rgba(56, 189, 248, 0.38), transparent 24rem);
  background-attachment: fixed;
}

.marketing-hero::before,
.marketing-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.marketing-hero::before {
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.marketing-hero::after {
  right: -10rem;
  top: 6rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 64%);
  box-shadow: inset 0 0 90px rgba(56, 189, 248, 0.16), 0 0 120px rgba(20, 184, 166, 0.14);
}

.luxe-pill {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.18);
}

.luxe-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.luxe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), transparent 34%, rgba(20, 184, 166, 0.1));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.luxe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.26);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.13);
}

.luxe-card:hover::after {
  opacity: 1;
}

.luxe-card-featured {
  box-shadow: 0 26px 90px rgba(14, 165, 233, 0.16);
}

.luxe-glass {
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
}

@media (max-width: 768px) {
  .marketing-hero {
    background-attachment: scroll;
  }

  .marketing-hero::after {
    right: -18rem;
    top: 4rem;
  }
}
