.brand-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: 80px 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0f0f0f 0%, #000 100%);
}

.brand-hero .hero-smoke {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.brand-hero .smoke-wisp {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  filter: blur(90px);
  opacity: 0;
  will-change: transform, opacity;
}

.brand-hero .smoke-wisp:nth-child(1) {
  top: 15%;
  left: -30%;
  width: 600px;
  height: 300px;
  animation: brand-smoke-drift-right 28s ease-in-out infinite;
}

.brand-hero .smoke-wisp:nth-child(2) {
  top: 40%;
  left: -20%;
  width: 500px;
  height: 250px;
  animation: brand-smoke-drift-right 35s ease-in-out 8s infinite;
}

.brand-hero .smoke-wisp:nth-child(3) {
  top: 60%;
  left: -40%;
  width: 700px;
  height: 280px;
  animation: brand-smoke-drift-right 42s ease-in-out 4s infinite;
}

.brand-hero .smoke-wisp:nth-child(4) {
  top: 25%;
  right: -20%;
  width: 450px;
  height: 220px;
  animation: brand-smoke-drift-left 32s ease-in-out 14s infinite;
}

.brand-hero .smoke-wisp:nth-child(5) {
  top: 50%;
  right: -30%;
  width: 550px;
  height: 260px;
  animation: brand-smoke-drift-left 38s ease-in-out 20s infinite;
}

@keyframes brand-smoke-drift-right {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }
  20% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.035;
    transform: translateX(85vw) translateY(-8%);
  }
  100% {
    opacity: 0;
    transform: translateX(145vw) translateY(-5%);
  }
}

@keyframes brand-smoke-drift-left {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }
  20% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.035;
    transform: translateX(-85vw) translateY(8%);
  }
  100% {
    opacity: 0;
    transform: translateX(-145vw) translateY(5%);
  }
}

.brand-hero .hero-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    transparent 30%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

.brand-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-hero__content--stacked {
  gap: 40px;
}

.brand-hero .brand-hero__title {
  max-width: 800px;
  margin: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0%,
    #fff 25%,
    #fff 75%,
    rgba(255, 255, 255, 0.4) 100%
  );
  color: transparent;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 768px) {
  .brand-hero {
    min-height: 100svh;
    padding: 80px 24px;
  }

  .brand-hero .brand-hero__title {
    max-width: 520px;
    font-size: clamp(32px, 8vw, 52px);
    line-height: 1.08;
  }

  .brand-hero__content--stacked {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero .smoke-wisp {
    animation: none;
  }
}
