.ffl-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: #0c1016;
  padding-inline: clamp(16px, 4vw, 48px);
}

.ffl-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ffl-hero__slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
  will-change: opacity, transform;
  filter: grayscale(1) contrast(1.05);
}

.ffl-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.ffl-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.5) 0%, rgba(8, 10, 14, 0.35) 40%, rgba(8, 10, 14, 0.65) 100%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.28), transparent 40%, transparent 60%, rgba(8, 10, 14, 0.28));
}

.ffl-hero__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0 72px;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.ffl-hero__title {
  margin: 0 0 14px;
  font-family: var(--ffl-display);
  font-weight: 900;
  font-size: clamp(44px, 8.5vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.ffl-hero__subtitle {
  margin: 0 0 16px;
  font-family: var(--ffl-rounded);
  color: var(--ffl-lime);
  font-weight: 700;
  font-size: clamp(28px, 4.8vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

@media (max-width: 400px) {
  .ffl-hero__subtitle {
    font-size: 26px;
    line-height: 1.08;
  }
}

.ffl-hero__text {
  margin: 0 auto 30px;
  max-width: 860px;
  font-family: var(--ffl-font);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--ffl-lead-size);
  font-weight: var(--ffl-lead-weight);
  line-height: var(--ffl-lead-line);
  letter-spacing: 0;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.ffl-hero__cta {
  display: flex;
  justify-content: center;
}

.ffl-hero__cta .ffl-btn {
  --ffl-btn-h: 48px;
  --ffl-btn-pad: 5px;
}

.ffl-hero__cta .ffl-btn__text {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-right: 4px;
}

.ffl-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.ffl-hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.ffl-hero__dot.is-active {
  width: 26px;
  background: var(--ffl-lime);
}

body.home .ffl-main,
body.ffl-body .ffl-main {
  padding-top: 0;
  margin-top: 0;
}
