/* Explosion Icons Animation - CSS */
/* Prefixed with exi- to avoid WordPress/theme conflicts */

/* Reset only within our component */
.exi-container * {
  box-sizing: border-box;
}

.exi-container {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.exi-hero-section {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.exi-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  margin-bottom: 2rem;  
  padding: 0 1rem;
  text-align: center;
  max-width: 280px;
}

.exi-hero-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem;
  list-style: none;
  margin: 0;
}

.exi-hero-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.exi-hero-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exi-hero-icon img {
  width: 24px;
  height: 24px;
}

.exi-hero-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.exi-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.exi-scroll-indicator span {
  font-size: 0.875rem;
}

.exi-scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid #999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.25rem;
}

.exi-scroll-dot {
  width: 0.375rem;
  height: 0.625rem;
  background: #333;
  border-radius: 9999px;
  animation: exi-pulse 2s infinite;
}

@keyframes exi-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Company List Section */
.exi-list-section {
  position: relative;
  z-index: 10;
  padding: 8rem 1rem 8rem 1rem;
}

.exi-list-title {
  font-size: clamp(1.5rem, 3.5rem, 2rem);
  font-weight: 600;
  margin-bottom: 4rem;  
}

.exi-company-list {
  max-width: 24rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
}

.exi-company-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  height: 1.25rem;
}

.exi-placeholder {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  position: relative;
}

.exi-company-item span:last-child {
  font-size: 0.875rem;
  display: block;
  line-height: 1;  
}

/* Floating Icons - FIXED positioning so they work regardless of parent context */
.exi-bullet-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
}

.exi-bullet-icon img {
  width: 16px;
  height: 16px;
}

/* End Section */
.exi-end-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.exi-end-section p {
  color: #666;
  font-size: 1.125rem;
  text-align: center;
  padding: 0 1rem;
}

/* Icon Colors */
.exi-icon-pink { color: #ec4899; }
.exi-icon-purple { color: #a855f7; }
.exi-icon-blue { color: #3b82f6; }
.exi-icon-green { color: #22c55e; }
.exi-icon-orange { color: #f97316; }

/* Bullet Icons Container - appended to body */
#exiBulletIconsContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
}
