.sl-hero {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 85% 40%, rgba(240, 162, 2, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(145deg, #12161A 0%, #1A2330 45%, #243040 100%);
  color: #fff;
}
.sl-hero-track { width: 100%; }
.sl-hero-slide {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: min(100% - 2rem, var(--sl-max));
  margin-inline: auto;
  min-height: min(72vh, 560px);
  align-items: center;
  gap: 1.5rem;
  padding: 3.5rem 0 3.25rem;
  position: relative;
}
.sl-hero-brand {
  margin: 0 0 1rem;
  font-family: var(--sl-display);
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: #fff;
  animation: sl-rise 0.8s var(--sl-ease) both;
}
.sl-hero-brand span {
  display: inline-block;
  background: linear-gradient(120deg, #fff 0%, #FFE6A0 55%, var(--sl-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sl-hero-title {
  font-family: var(--sl-font);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.92);
  animation: sl-rise 0.8s var(--sl-ease) 0.08s both;
}
.sl-hero-subtitle {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 36ch;
  font-size: 0.98rem;
  line-height: 1.55;
  animation: sl-rise 0.8s var(--sl-ease) 0.14s both;
}
.sl-hero-cta {
  animation: sl-rise 0.8s var(--sl-ease) 0.2s both;
}
.sl-hero-visual {
  position: relative;
  height: 280px;
  display: grid;
  place-items: center;
}
.sl-hero-sun {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #FFF8E8, #F0A202 52%, #D48600 100%);
  box-shadow:
    0 0 0 18px rgba(240, 162, 2, 0.12),
    0 0 0 40px rgba(240, 162, 2, 0.06),
    0 0 80px rgba(240, 162, 2, 0.4);
  animation: sl-sun-float 7s ease-in-out infinite;
}
.sl-hero-sun::after {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: sl-sun-ring 10s linear infinite;
}
.sl-hero-glow {
  position: absolute;
  inset: 10% auto auto 20%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 162, 2, 0.22), transparent 68%);
  pointer-events: none;
}
@keyframes sl-sun-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.03); }
}
@keyframes sl-sun-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 800px) {
  .sl-hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.75rem 0 2.5rem;
    gap: 1.75rem;
  }
  .sl-hero-visual { height: 160px; order: -1; }
  .sl-hero-sun { width: 110px; height: 110px; }
  .sl-hero-brand { font-size: clamp(2.4rem, 12vw, 3.4rem); }
}
