
::-webkit-scrollbar-track {
  background: transparent;
}

/* Language switcher in nav */

/* NAV */

.dropdown-wrap {
  position: relative;
  display: inline-flex;
}
.dropdown-btn::after {
  content: "▾";
  font-size: 9px;
  margin-left: 4px;
  transition: transform 0.15s;
  opacity: 0.7;
}
.dropdown-wrap:hover .dropdown-btn::after {
  transform: rotate(180deg);
}
/* BUTTONS */

.vee-badge {
  display: inline-block;
}
@keyframes veeBlink {
  0%,
  86%,
  94%,
  100% {
    transform: scaleY(1);
  }
  90% {
    transform: scaleY(0.08);
  }
}

/* SHARED */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
h2.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 18px;
}
h2.section-title .accent {
  background: linear-gradient(135deg, #a78bfa, #ec4899 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
p.section-sub {
  font-size: 17px;
  color: var(--w55);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 48px;
}
section {
  padding: 90px 0;
  position: relative;
}

/* HERO */
.cu-hero {
  min-height: 72vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(
      ellipse at 50% 40%,
      rgba(124, 58, 237, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(96, 165, 250, 0.1) 0%,
      transparent 55%
    ),
    #050208;
}
.cu-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
.cu-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-size: 11px;
  font-weight: 800;
  color: var(--purple-soft);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.cu-hero-badge .vee-badge {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin: -14px 6px -14px -10px;
  animation: veeBadgeIdle 3.8s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(124, 58, 237, 0.5));
}
.cu-hero h1 {
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.98;
  margin-bottom: 22px;
  color: #fff;
}
.cu-hero h1 .accent {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cu-hero p.lede {
  font-size: 19px;
  color: var(--w80);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* 01 · AGGREGATE METRICS */
.cu-metrics {
  background: #0a0712;
  border-top: 1px solid var(--w04);
  padding: 70px 0;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.metric {
  padding: 32px 24px;
  background: var(--dark2);
  border: 1px solid var(--w08);
  border-radius: 18px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.metric:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
}
.metric .n {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.metric .l {
  font-size: 13px;
  color: var(--w55);
  font-weight: 600;
}

/* 02 · FILTERED CASE GRID */
.cu-cases {
  background: var(--dark);
}
.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--dark2);
  border: 1px solid var(--w08);
  color: var(--w55);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.filter-pill:hover {
  color: #fff;
  border-color: rgba(124, 58, 237, 0.3);
}
.filter-pill.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.5);
  color: #fff;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.25);
}

/* Case grid — 9:16 video cards, same system as frontpage */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
/* Default Mixed view — hide any card without data-mix="1" until a filter is clicked */
/* visibility now driven by JS — applyFilter() */
.cu-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-size: cover;
  background-position: center;
  background-color: #0d0a14;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  will-change: transform;
  display: block;
}
.cu-card.hidden {
  display: none;
}
.cu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 10, 20, 0) 0%,
    rgba(13, 10, 20, 0.25) 45%,
    rgba(5, 2, 8, 0.92) 100%
  );
}
.cu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.18;
  pointer-events: none;
}
.cu-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow:
    0 30px 68px rgba(0, 0, 0, 0.75),
    0 0 50px rgba(124, 58, 237, 0.22);
}
/* Per-tint brand colors matching frontpage pattern */
.cu-card[data-tint="teal"]::before {
  background: linear-gradient(
    180deg,
    rgba(30, 70, 65, 0.35) 0%,
    rgba(16, 40, 38, 0.55) 45%,
    rgba(5, 16, 16, 0.95) 100%
  );
}
.cu-card[data-tint="amber"]::before {
  background: linear-gradient(
    180deg,
    rgba(82, 40, 15, 0.35) 0%,
    rgba(52, 24, 10, 0.6) 45%,
    rgba(16, 8, 4, 0.95) 100%
  );
}
.cu-card[data-tint="coral"]::before {
  background: linear-gradient(
    180deg,
    rgba(90, 25, 50, 0.35) 0%,
    rgba(60, 16, 36, 0.6) 45%,
    rgba(20, 6, 14, 0.95) 100%
  );
}
.cu-card[data-tint="purple"]::before {
  background: linear-gradient(
    180deg,
    rgba(50, 28, 86, 0.35) 0%,
    rgba(32, 18, 60, 0.6) 45%,
    rgba(12, 8, 26, 0.95) 100%
  );
}

.cu-card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background: #0d0a14;
}
.cu-card[data-tint="blue"]::before {
  background: linear-gradient(
    180deg,
    rgba(24, 44, 78, 0.35) 0%,
    rgba(14, 28, 52, 0.6) 45%,
    rgba(6, 12, 22, 0.95) 100%
  );
}
/* Brand badge — floating in a corner, fits brand name */
.cu-card-logo {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #fff;
  color: #0d0a14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.2px;
  white-space: nowrap;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 4;
  animation: cuLogoFloat 3.6s ease-in-out infinite;
}
.cu-card:nth-child(1) .cu-card-logo {
  animation-duration: 4.1s;
  animation-delay: 0s;
  --skew-a: -7deg;
  --skew-b: -4deg;
}
.cu-card:nth-child(2) .cu-card-logo {
  animation-duration: 3.4s;
  animation-delay: -1.7s;
  --skew-a: -5deg;
  --skew-b: -3deg;
}
.cu-card:nth-child(3) .cu-card-logo {
  animation-duration: 4.8s;
  animation-delay: -2.9s;
  --skew-a: -6deg;
  --skew-b: -3deg;
}
.cu-card:nth-child(4) .cu-card-logo {
  animation-duration: 3.7s;
  animation-delay: -0.5s;
  --skew-a: -4deg;
  --skew-b: -6deg;
}
.cu-card:nth-child(5) .cu-card-logo {
  animation-duration: 4.3s;
  animation-delay: -3.1s;
  --skew-a: -8deg;
  --skew-b: -5deg;
}
.cu-card:nth-child(6) .cu-card-logo {
  animation-duration: 3.2s;
  animation-delay: -1.2s;
  --skew-a: -6deg;
  --skew-b: -4deg;
}
.cu-card:nth-child(7) .cu-card-logo {
  animation-duration: 4.6s;
  animation-delay: -2.4s;
  --skew-a: -5deg;
  --skew-b: -2deg;
}
.cu-card:nth-child(8) .cu-card-logo {
  animation-duration: 3.9s;
  animation-delay: -0.8s;
  --skew-a: -3deg;
  --skew-b: -5deg;
}
.cu-card:nth-child(9) .cu-card-logo {
  animation-duration: 4s;
  animation-delay: -3.4s;
  --skew-a: -7deg;
  --skew-b: -4deg;
}
.cu-card:nth-child(10) .cu-card-logo {
  animation-duration: 3.5s;
  animation-delay: -1.5s;
  --skew-a: -5deg;
  --skew-b: -7deg;
}
.cu-card:nth-child(11) .cu-card-logo {
  animation-duration: 4.7s;
  animation-delay: -2.7s;
  --skew-a: -6deg;
  --skew-b: -3deg;
}
.cu-card:nth-child(12) .cu-card-logo {
  animation-duration: 3.3s;
  animation-delay: -0.3s;
  --skew-a: -4deg;
  --skew-b: -2deg;
}
.cu-card:nth-child(13) .cu-card-logo {
  animation-duration: 4.4s;
  animation-delay: -2s;
  --skew-a: -8deg;
  --skew-b: -6deg;
}
.cu-card:nth-child(14) .cu-card-logo {
  animation-duration: 3.8s;
  animation-delay: -1s;
  --skew-a: -6deg;
  --skew-b: -4deg;
}
.cu-card:nth-child(15) .cu-card-logo {
  animation-duration: 4.2s;
  animation-delay: -3.2s;
  --skew-a: -4deg;
  --skew-b: -2deg;
}
.cu-card:nth-child(16) .cu-card-logo {
  animation-duration: 3.6s;
  animation-delay: -0.6s;
  --skew-a: -7deg;
  --skew-b: -5deg;
}
.cu-card:nth-child(17) .cu-card-logo {
  animation-duration: 4.5s;
  animation-delay: -1.9s;
  --skew-a: -6deg;
  --skew-b: -4deg;
}
.cu-card:nth-child(18) .cu-card-logo {
  animation-duration: 3.1s;
  animation-delay: -2.6s;
  --skew-a: -3deg;
  --skew-b: -1deg;
}
.cu-card:nth-child(19) .cu-card-logo {
  animation-duration: 4.9s;
  animation-delay: -1.1s;
  --skew-a: -5deg;
  --skew-b: -3deg;
}
.cu-card:nth-child(20) .cu-card-logo {
  animation-duration: 3.4s;
  animation-delay: -2.8s;
  --skew-a: -5deg;
  --skew-b: -7deg;
}
.cu-card:nth-child(21) .cu-card-logo {
  animation-duration: 4.1s;
  animation-delay: -0.7s;
  --skew-a: -7deg;
  --skew-b: -5deg;
}
.cu-card:nth-child(22) .cu-card-logo {
  animation-duration: 3.7s;
  animation-delay: -2.3s;
  --skew-a: -4deg;
  --skew-b: -6deg;
}
.cu-card:nth-child(23) .cu-card-logo {
  animation-duration: 4.6s;
  animation-delay: -1.6s;
  --skew-a: -6deg;
  --skew-b: -3deg;
}
.cu-card:nth-child(24) .cu-card-logo {
  animation-duration: 3.9s;
  animation-delay: -0.4s;
  --skew-a: -5deg;
  --skew-b: -3deg;
}
@keyframes cuLogoFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: var(--skew-a, -6deg);
  }
  50% {
    translate: 0 -5px;
    rotate: var(--skew-b, -4deg);
  }
}
/* Video-type label — bottom-left, small subtle marker */
.cu-card-type {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  z-index: 4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* Play button — centered, pulsing */
.cu-card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.6);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s,
    background 0.4s ease;
  z-index: 3;
  animation: cuPlayPulse 2.4s ease-in-out infinite;
}
.cu-card-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 14px solid var(--dark);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.cu-card:hover .cu-card-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
  box-shadow: 0 12px 44px rgba(124, 58, 237, 0.8);
}
@keyframes cuPlayPulse {
  0%,
  100% {
    box-shadow:
      0 8px 32px rgba(124, 58, 237, 0.6),
      0 0 0 0 rgba(124, 58, 237, 0.5);
  }
  50% {
    box-shadow:
      0 8px 32px rgba(124, 58, 237, 0.6),
      0 0 0 14px rgba(124, 58, 237, 0);
  }
}
/* Bottom — quote + name + role */
.cu-card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px 18px;
  color: #fff;
  z-index: 3;
}
.cu-card-quote {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.32;
  color: #fff;
  margin: 0 0 10px;
  font-style: italic;
  letter-spacing: -0.1px;
}
.cu-card-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.1px;
}
.cu-card-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* 03 · VIDEO TESTIMONIAL WHEEL */
.cu-testimonials {
  background: var(--dark);
  padding: 80px 0 40px;
}
.cu-testimonials .section-sub {
  font-size: 15px;
  color: var(--w55);
  margin: 10px auto 0;
  max-width: 560px;
  text-align: center;
  line-height: 1.5;
}
.test-wrap {
  position: relative;
  margin: 36px 0 0;
}
.test-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 30px 40px 26px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
}
.test-grid::-webkit-scrollbar {
  display: none;
}
.test-card {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  position: relative;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  background-size: cover;
  background-position: center;
  background-color: #0d0a14;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.test-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 10, 20, 0) 0%,
    rgba(13, 10, 20, 0.25) 45%,
    rgba(5, 2, 8, 0.85) 100%
  );
}
.test-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.18;
  pointer-events: none;
}
.test-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow:
    0 30px 68px rgba(0, 0, 0, 0.75),
    0 0 50px rgba(124, 58, 237, 0.22);
}
/* Tinted dark gradient — fades from transparent at top to deep tint at bottom */
.test-card[data-tint="teal"]::before {
  background: linear-gradient(
    180deg,
    rgba(30, 70, 65, 0) 0%,
    rgba(16, 40, 38, 0.45) 50%,
    rgba(5, 16, 16, 0.92) 100%
  );
}
.test-card[data-tint="amber"]::before {
  background: linear-gradient(
    180deg,
    rgba(82, 40, 15, 0) 0%,
    rgba(52, 24, 10, 0.5) 50%,
    rgba(16, 8, 4, 0.92) 100%
  );
}
.test-card[data-tint="coral"]::before {
  background: linear-gradient(
    180deg,
    rgba(90, 25, 50, 0) 0%,
    rgba(60, 16, 36, 0.5) 50%,
    rgba(20, 6, 14, 0.92) 100%
  );
}
.test-card[data-tint="purple"]::before {
  background: linear-gradient(
    180deg,
    rgba(50, 28, 86, 0) 0%,
    rgba(32, 18, 60, 0.5) 50%,
    rgba(12, 8, 26, 0.92) 100%
  );
}
.test-card[data-tint="blue"]::before {
  background: linear-gradient(
    180deg,
    rgba(24, 44, 78, 0) 0%,
    rgba(14, 28, 52, 0.5) 50%,
    rgba(6, 12, 22, 0.92) 100%
  );
}
.test-card-logo {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #fff;
  color: #0d0a14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.2px;
  white-space: nowrap;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 4;
  animation: cuLogoFloat 3.6s ease-in-out infinite;
}
.test-card:nth-child(1) .test-card-logo {
  animation-duration: 4.1s;
  animation-delay: 0s;
  --skew-a: -7deg;
  --skew-b: -4deg;
}
.test-card:nth-child(2) .test-card-logo {
  animation-duration: 3.4s;
  animation-delay: -1.7s;
  --skew-a: -5deg;
  --skew-b: -3deg;
}
.test-card:nth-child(3) .test-card-logo {
  animation-duration: 4.8s;
  animation-delay: -2.9s;
  --skew-a: -6deg;
  --skew-b: -3deg;
}
.test-card:nth-child(4) .test-card-logo {
  animation-duration: 3.7s;
  animation-delay: -0.5s;
  --skew-a: -4deg;
  --skew-b: -6deg;
}
.test-card:nth-child(5) .test-card-logo {
  animation-duration: 4.3s;
  animation-delay: -3.1s;
  --skew-a: -8deg;
  --skew-b: -5deg;
}
.test-card:nth-child(6) .test-card-logo {
  animation-duration: 3.2s;
  animation-delay: -1.2s;
  --skew-a: -6deg;
  --skew-b: -4deg;
}
/* Video-type label — bottom-left, small uppercase */
.test-card-type {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  z-index: 4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
/* First-frame thumbnail — sits behind gradients, fills card */
.test-card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background: #0d0a14;
}
.test-card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.6);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s,
    background 0.4s ease;
  z-index: 3;
  animation: cuPlayPulse 2.4s ease-in-out infinite;
}
.test-card-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 14px solid var(--dark);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.test-card:hover .test-card-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
  box-shadow: 0 12px 44px rgba(124, 58, 237, 0.8);
}
.test-card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px 18px;
  color: #fff;
  z-index: 3;
}
.test-card-quote {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 10px;
  font-style: italic;
  letter-spacing: -0.1px;
}
.test-card-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.1px;
}
.test-card-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
/* Nav arrows */
.test-nav {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 17, 31, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.test-nav.prev {
  left: 4px;
}
.test-nav.next {
  right: 4px;
}
.test-nav:hover {
  background: rgba(124, 58, 237, 0.24);
  border-color: rgba(124, 58, 237, 0.65);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 32px rgba(124, 58, 237, 0.4);
}

/* 04 · LOGO WALL */
.cu-logos {
  background: #0a0712;
  border-top: 1px solid var(--w04);
  padding: 80px 0;
}
/* Wall = 6-col grid. Each tile is its own card, but its gradient is set by its row —
     so row-by-row the color walks from lavender → main purple → deep purple. */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.logo-tile {
  aspect-ratio: 3/2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: var(--w80);
  transition: all 0.3s;
  position: relative;
  /* Base card style — inner highlight + dark glass. Per-row gradient painted below. */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
/* Row 1 (tiles 1-6) — top of the ramp: lavender */
.logo-tile:nth-child(-n + 6) {
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(196, 181, 253, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(167, 139, 250, 0.1) 0%,
      rgba(124, 58, 237, 0.06) 100%
    ),
    #14111f;
  border-color: rgba(196, 181, 253, 0.16);
}
/* Row 2 (tiles 7-12) — light purple */
.logo-tile:nth-child(n + 7):nth-child(-n + 12) {
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(167, 139, 250, 0.09) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(139, 92, 246, 0.1) 0%,
      rgba(124, 58, 237, 0.08) 100%
    ),
    #14111f;
  border-color: rgba(167, 139, 250, 0.18);
}
/* Row 3 (tiles 13-18) — main brand purple */
.logo-tile:nth-child(n + 13):nth-child(-n + 18) {
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(139, 92, 246, 0.11) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(124, 58, 237, 0.12) 0%,
      rgba(91, 33, 182, 0.09) 100%
    ),
    #14111f;
  border-color: rgba(124, 58, 237, 0.2);
}
/* Row 4 (tiles 19-24) — bottom of the ramp: deep purple */
.logo-tile:nth-child(n + 19) {
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(91, 33, 182, 0.13) 0%,
      rgba(67, 20, 138, 0.11) 100%
    ),
    #14111f;
  border-color: rgba(91, 33, 182, 0.22);
}
.logo-tile:hover {
  border-color: rgba(167, 139, 250, 0.6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(124, 58, 237, 0.28);
}

/* 04 · QUOTES */
.cu-quotes {
  background: var(--dark);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.quote-card {
  padding: 32px 34px;
  background: var(--dark2);
  border: 1px solid var(--w08);
  border-radius: 20px;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.quote-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 96px;
  font-weight: 900;
  color: var(--purple);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}
.quote-card blockquote {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.quote-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--w04);
}
.quote-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  background-size: cover;
  background-position: center;
  border: 1.5px solid rgba(124, 58, 237, 0.3);
  flex-shrink: 0;
}
.quote-card .who .name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.2px;
}
.quote-card .who .role {
  font-size: 12px;
  color: var(--w55);
}

/* FINAL CTA */
.cu-final {
  padding: 100px 0 120px;
  text-align: center;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(124, 58, 237, 0.18) 0%,
    transparent 60%
  );
}
.cu-final-vee {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 32px rgba(124, 58, 237, 0.55));
  animation: cuFinalVeeFloat 3.2s ease-in-out infinite;
}
.cu-final-vee svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes cuFinalVeeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}
.cu-final h2 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2.2px;
  line-height: 1.02;
  margin-bottom: 16px;
  color: #fff;
}
.cu-final h2 .accent {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cu-final p {
  font-size: 17px;
  color: var(--w55);
  max-width: 540px;
  margin: 0 auto 40px;
}
.cu-final-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER — 5 cols */

.cal-mock {
  padding: 24px 28px 28px;
}
.cal-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.cal-arrow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--w08);
  color: var(--w55);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.cal-day-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--w35);
  text-align: center;
  padding-bottom: 8px;
}
.cal-d {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--w80);
  border-radius: 8px;
}
.cal-d.empty {
  visibility: hidden;
}
.cal-d.off {
  color: var(--w15);
}
.cal-d.selected {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.5);
}
.cal-times-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.cal-times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.cal-time {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--w08);
  color: var(--w80);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
}
.cal-time.active {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.5);
  color: #fff;
}
.cal-confirm {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--purple);
  border: none;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45);
}

/* RESPONSIVE */
@media (max-width: 1310px) {
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }
  .logo-wall {
    grid-template-columns: repeat(4, 1fr);
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 60px 0;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}
