.welcome-shell {
  width: min(100%, 520px);
}

.welcome-card {
  gap: 20px;
}

.hero-slider {
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  padding: 4px;
  background: rgba(18, 13, 8, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 223, 166, 0.08);
}

.slider-viewport {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-item.active {
  opacity: 1;
}

.slider-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 20%, rgba(2, 6, 23, 0.85) 100%);
}

.slider-overlay {
  position: relative;
  padding: 24px;
  color: #fff;
  z-index: 2;
}

.slider-overlay h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.slider-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.slider-dots button {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: rgba(212, 175, 55, 0.25);
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-dots button.active {
  background: rgba(243, 210, 122, 0.92);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-kicker {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 210, 122, 0.9);
}

.hero-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  color: #f8fbff;
}

.hero-subtitle {
  margin: 0;
  color: rgba(233, 211, 172, 0.82);
}

.hero-highlights {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(223, 197, 154, 0.84);
}

.cta-row {
  display: flex;
  gap: 12px;
}

.cta-row.split .primary-btn,
.cta-row.split .cta-secondary {
  flex: 1;
}

.cta-row .cta-secondary {
  flex: 1;
  border: 1px solid rgba(212, 175, 55, 0.46);
  background: rgba(212, 175, 55, 0.14);
  color: #f2d79a;
  height: 48px;
}

.cta-row .primary-btn,
.cta-row .cta-secondary {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.cta-row .cta-secondary {
  animation-delay: 0.9s;
}

.cta-row .primary-btn::after,
.cta-row .cta-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -56%;
  width: 42%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 241, 201, 0.58), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  animation: ctaSweep 2.6s ease-in-out infinite;
}

.cta-row .cta-secondary::after {
  animation-delay: 0.9s;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  45% {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
  }
}

@keyframes ctaSweep {
  0%,
  22% {
    left: -56%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  58%,
  100% {
    left: 122%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-row .primary-btn,
  .cta-row .cta-secondary,
  .cta-row .primary-btn::after,
  .cta-row .cta-secondary::after {
    animation: none;
  }
}

@media (min-width: 640px) {
  .slider-viewport {
    height: 280px;
  }
}
