/* ── Landing page — glass-morphism & animations ── */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ── Grain overlay ── */
.grain-overlay {
  position: relative;
}
.grain-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.015;
  background-image: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ── Gradient mesh blobs ── */
.gradient-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.gradient-mesh-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 163, 127, 0.08) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}
.gradient-mesh-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 163, 127, 0.05) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
}

/* ── Hero glow ── */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 163, 127, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: hero-pulse 6s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* ── Glass card ── */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  transition: background 0.3s, border-color 0.3s;
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

/* ── Header strip (white) ── */
.header-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: box-shadow 0.3s;
}
.header-strip.scrolled {
  box-shadow: none;
}

/* ── Nav bar (dark rounded pill on light bg) ── */
.nav-pill {
  background: #171717;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.nav-pill a:not(.cta-primary):not(.nav-logo) {
  color: #ececec;
  font-weight: 600;
}
.nav-pill .nav-logo {
  background: none !important;
}
.nav-pill .nav-link,
.nav-pill a:not(.cta-primary):not(.nav-logo) {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: color 0.2s, background-color 0.2s;
}
.nav-pill .nav-link:hover,
.nav-pill a:not(.cta-primary):not(.nav-logo):hover {
  color: #ffffff;
  background-color: #10a37f;
}
.nav-pill button {
  color: #ececec;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* ── CTA primary sweep ── */
.cta-primary {
  position: relative;
  overflow: hidden;
}
.cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.cta-primary:hover::before {
  transform: translateX(100%);
}

/* ── Pricing card glow ── */
.pricing-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.pricing-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(16, 163, 127, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.pricing-card:hover::after {
  opacity: 1;
}
.pricing-card > * {
  position: relative;
  z-index: 1;
}

/* ── Testimonial quote mark ── */
.testimonial-quote {
  position: relative;
}
.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: -4px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(16, 163, 127, 0.25);
  font-family: Georgia, serif;
  pointer-events: none;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

/* ── Mobile menu animation ── */
.mobile-menu-enter {
  animation: slide-down 0.25s ease-out;
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile nav menu (smaller radius, white bold text, green hover) ── */
.nav-pill.mobile-nav-menu {
  border-radius: 10px;
}
.mobile-nav-menu .mobile-nav-link {
  color: #ececec !important;
  font-weight: 600;
}
.mobile-nav-menu .mobile-nav-link:hover {
  color: #ffffff;
  background-color: #10a37f;
}

/* ── Platform logo hover ── */
.platform-logo {
  transition: color 0.3s, filter 0.3s;
}
.platform-logo:hover {
  color: var(--platform-color, #10a37f);
  filter: drop-shadow(0 0 8px var(--platform-color, #10a37f));
}

/* ── Stat card glow ── */
.stat-card-glow {
  position: relative;
}
.stat-card-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(16, 163, 127, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}
.stat-card-glow.revealed::before {
  opacity: 1;
}
.stat-card-glow > * {
  position: relative;
  z-index: 1;
}

/* ── Carousel ── */
.carousel-track {
  will-change: transform;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-card img {
  transition: transform 0.4s ease;
}
.carousel-card:hover img {
  transform: scale(1.05);
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.3s, background 0.3s;
}

.carousel-dot.active {
  width: 24px;
  background: #10a37f;
}

/* ── Performance hints for parallax ── */
.gradient-mesh,
.hero-glow {
  will-change: transform;
}

/* ── Parallax divider ── */
.parallax-divider {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── Logo marquee ── */
@keyframes logo-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-marquee-track {
  animation: logo-marquee-scroll 30s linear infinite;
  will-change: transform;
}
.logo-marquee-track:hover {
  animation-play-state: paused;
}
.logo-marquee-fade-left,
.logo-marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #212121 0%, transparent 100%);
}
.logo-marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #212121 0%, transparent 100%);
}

/* ── Image marquee ── */
.marquee-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  animation: marquee-scroll 40s linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #212121 0%, transparent 100%);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #212121 0%, transparent 100%);
}

/* ── Business marquee (3D rotating cards) ── */
.business-marquee-stage {
  perspective: 1400px;
  perspective-origin: 50% 50%;
}
.business-marquee-track {
  animation: marquee-scroll 34s linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
.business-marquee-track:hover {
  animation-play-state: paused;
}

.business-marquee-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.business-marquee-cardInner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: business-card-wobble 6.5s ease-in-out infinite;
  animation-delay: var(--delay, 0ms);
  transform: rotateX(var(--rx, 6deg)) rotateY(var(--ry, -18deg));
}
@keyframes business-card-wobble {
  0% {
    transform: rotateX(var(--rx, 6deg)) rotateY(calc(var(--ry, -18deg) - 10deg));
  }
  50% {
    transform: rotateX(calc(var(--rx, 6deg) + 2deg)) rotateY(calc(var(--ry, -18deg) + 10deg));
  }
  100% {
    transform: rotateX(var(--rx, 6deg)) rotateY(calc(var(--ry, -18deg) - 10deg));
  }
}

.business-marquee-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.business-marquee-face-front {
  transform: translateZ(14px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.45) inset;
}
.business-marquee-face-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.08) 35%, rgba(0,0,0,0.12) 100%);
  opacity: 0.35;
  pointer-events: none;
}
.business-marquee-face-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.business-marquee-face-back {
  transform: rotateY(180deg) translateZ(14px);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(145deg, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.business-marquee-face-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 163, 127, 0.22), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 6px);
  opacity: 0.35;
}

.business-marquee-cardInner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 163, 127, 0.20), rgba(0, 0, 0, 0.06), rgba(255, 255, 255, 0.16));
  transform: translateZ(0);
  filter: blur(0.2px);
  opacity: 0.65;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .business-marquee-track {
    animation: none;
    transform: translateX(0);
  }
  .business-marquee-cardInner {
    animation: none;
  }
}

/* ── Business ring (3D circular carousel) ── */
.business-ring-stage {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  box-shadow: none;
}
.business-ring-scene {
  position: relative;
  height: 540px;
  display: grid;
  place-items: center;
  perspective: 1600px;
  perspective-origin: 50% 100%;
}
@media (min-width: 640px) {
  .business-ring-scene {
    height: 500px;
  }
}

.business-ring {
  --tilt: -10deg;
  --radius: clamp(230px, 34vw, 430px);
  --ring-angle: 0deg;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(var(--tilt)) rotateY(var(--ring-angle));
}

.business-ring-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(110px, 14vw, 160px);
  height: clamp(165px, 20vw, 240px);
  transform-style: preserve-3d;
  will-change: transform;
  transform:
    translate(-50%, -50%)
    rotateY(var(--a))
    translateZ(var(--radius))
    rotateY(var(--an));
}

.business-ring-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  border-radius: 16px;
  transform: rotateY(calc(-1 * var(--ring-angle, 0deg)));
}
.business-ring-face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.business-ring-face-front {
  transform: translateZ(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}
.business-ring-face-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.10) 35%, rgba(0,0,0,0.12) 100%);
  opacity: 0.26;
  pointer-events: none;
}
.business-ring-face-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.business-ring-face-back {
  transform: rotateY(180deg) translateZ(12px);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.12), transparent 62%),
    linear-gradient(145deg, rgba(0,0,0,0.55), rgba(0,0,0,0.88));
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.business-ring-face-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 163, 127, 0.22), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 7px);
  opacity: 0.35;
}

.business-ring-floor {
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: min(1000px, 120%);
  height: 240px;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(0,0,0,0.10), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .business-ring {
    transform: rotateX(-10deg) rotateY(0deg);
  }
  .business-ring-card {
    transform: rotateY(0deg);
  }
}

/* ── Ideas marquee (right-to-left and left-to-right) ── */
@keyframes ideas-marquee-r2l {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ideas-marquee-l2r {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.ideas-marquee-track-r2l {
  animation: ideas-marquee-r2l 35s linear infinite;
  will-change: transform;
}
.ideas-marquee-track-l2r {
  animation: ideas-marquee-l2r 35s linear infinite;
  will-change: transform;
}
.ideas-marquee-track-r2l:hover,
.ideas-marquee-track-l2r:hover {
  animation-play-state: paused;
}
.ideas-marquee-fade-left,
.ideas-marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ideas-marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #212121 0%, transparent 100%);
}
.ideas-marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #212121 0%, transparent 100%);
}

/* ── Hero floating cards ── */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-float-card {
  animation: hero-float 4s ease-in-out infinite;
  will-change: transform;
}

/* ── Snake / S-curve marquee ribbon (SVG) ── */
.snake-ribbon-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.snake-svg-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: #ececec;
}
@media (max-width: 767px) {
  .snake-svg-text {
    font-size: 11px;
    letter-spacing: 0.32em;
  }
  .snake-ribbon-svg .snake-ribbon-stroke {
    stroke-width: 26;
  }
}

/* ── Hero card stack (swipeable) ── */
.hero-card-stack {
  position: relative;
  width: 280px;
  height: 400px;
}
@media (min-width: 640px) {
  .hero-card-stack {
    width: 300px;
    height: 440px;
  }
}
@media (min-width: 1024px) {
  .hero-card-stack {
    margin-top: 40px;
    width: 320px;
    height: 560px;
  }
}
.hero-stack-card {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.hero-stack-card:active {
  cursor: grabbing;
}
.hero-stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ── Bungee hero ── */
.bungee-hero {
  min-height: 140vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
}
/* Global particles — covers entire page */
.global-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* Let content sit above particles */
.grain-overlay > *:not(.global-particles) {
  position: relative;
  z-index: 2;
}
.bungee-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
}
.bungee-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bungee-hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 120px);
  color: #ececec;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  margin: 0;
}
.bungee-hero-title sup {
  font-size: 30%;
  color: #10a37f;
  vertical-align: super;
  line-height: 1;
}
.bungee-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px);
  color: #b4b4b4;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 16px;
}
.bungee-hero-images {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.bungee-hero-marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
  width: max-content;
}
.bungee-hero-card {
  flex-shrink: 0;
  width: 220px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.bungee-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bungee-hero-fade-left,
.bungee-hero-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.bungee-hero-fade-left {
  left: 0;
  background: linear-gradient(to right, #212121 0%, transparent 100%);
}
.bungee-hero-fade-right {
  right: 0;
  background: linear-gradient(to left, #212121 0%, transparent 100%);
}

@media (max-width: 767px) {
  .bungee-hero-card {
    width: 160px;
    height: 220px;
  }
  .bungee-hero {
    padding-top: 120px;
  }
}

/* ── Glass card (dark variant — for colored-accent cards) ── */
.glass-card-dark {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 1rem;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.glass-card-dark::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(16, 163, 127, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.glass-card-dark:hover::after {
  opacity: 1;
}
.glass-card-dark > * {
  position: relative;
  z-index: 1;
}
.glass-card-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 163, 127, 0.25);
}

/* ── Glass pill ── */
.glass-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s;
}
.glass-pill:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(16, 163, 127, 0.3);
  color: #10a37f !important;
  box-shadow: 0 0 16px rgba(16, 163, 127, 0.12);
}

/* ── Contact marquee section — full-width breakout ── */
.contact-marquee-section {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  overflow: visible;
  z-index: 30;
}

/* ── Contact cinematic section ── */
.contact-cine-section {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  z-index: 30;
}
.contact-cine-strip {
  position: relative;
}
.contact-cine-track {
  display: flex;
  gap: 14px;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
  width: max-content;
}
.contact-cine-card {
  flex-shrink: 0;
  width: 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}
.contact-cine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.4s ease;
}
.contact-cine-card:hover img {
  filter: brightness(1) saturate(1);
}
.contact-cine-fade-left,
.contact-cine-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.contact-cine-fade-left {
  left: 0;
  background: linear-gradient(to right, #171717 0%, transparent 100%);
}
.contact-cine-fade-right {
  right: 0;
  background: linear-gradient(to left, #171717 0%, transparent 100%);
}

@media (max-width: 767px) {
  .contact-cine-card {
    width: 140px;
    height: 190px;
  }
}
