/* ===================================
   Process Teaser — CTA to proceso.html
   =================================== */

.process-teaser {
  padding: var(--space-xl) 0;
}

.process-teaser__inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 162, 114, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

/* Gold accent line at top */
.process-teaser__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 162, 114, 0.25), transparent);
}

/* === Moon Strip === */
.process-teaser__phases {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.process-teaser__moon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.process-teaser__moon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Vignette */
.process-teaser__moon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    transparent 48%,
    rgba(10, 10, 10, 0.2) 65%,
    rgba(10, 10, 10, 0.55) 82%,
    var(--color-black) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.process-teaser__moon-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to left,
    var(--color-black) 0%,
    var(--color-black) 30%,
    rgba(10, 10, 10, 0.7) 45%,
    rgba(10, 10, 10, 0.3) 58%,
    transparent 72%
  );
}

/* Phase-specific glows */
.process-teaser__moon:nth-child(1) {
  box-shadow: 0 0 10px 3px rgba(180, 200, 255, 0.04);
}
.process-teaser__moon:nth-child(3) {
  box-shadow: 0 0 14px 4px rgba(180, 200, 255, 0.06);
}
.process-teaser__moon:nth-child(5) {
  box-shadow: 0 0 18px 5px rgba(184, 162, 114, 0.08);
}
.process-teaser__moon:nth-child(7) {
  box-shadow: 0 0 22px 6px rgba(184, 162, 114, 0.12);
}

/* Divider lines between moons */
.process-teaser__divider {
  width: 16px;
  height: 1px;
  background: rgba(184, 162, 114, 0.2);
  flex-shrink: 0;
}

/* === Content === */
.process-teaser__content {
  display: flex;
  flex-direction: column;
}

.process-teaser__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  color: var(--color-ivory);
  line-height: var(--lh-heading);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.process-teaser__desc {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
  max-width: 36ch;
}

.process-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

.process-teaser__cta svg {
  transition: transform 0.3s var(--ease-out);
}

.process-teaser__cta:hover {
  color: var(--color-ivory);
}

.process-teaser__cta:hover svg {
  transform: translateX(4px);
}

/* === Responsive === */
@media (max-width: 900px) {
  .process-teaser__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .process-teaser__content {
    align-items: center;
  }

  .process-teaser__desc {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .process-teaser__moon {
    width: 36px;
    height: 36px;
  }

  .process-teaser__divider {
    width: 10px;
  }

  .process-teaser__title {
    font-size: var(--fs-lg);
  }
}
