.hero-stage {
  position: relative;
  z-index: 2;
  width: min(100vw, var(--hero-canvas-width));
  height: min(100svh, var(--hero-canvas-height));
  overflow: hidden;
  flex: 0 0 auto;
}

.hero-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--hero-canvas-width);
  height: var(--hero-canvas-height);
  overflow: hidden;
  background: transparent;
  transform: scale(var(--preview-scale, 1));
  transform-origin: top left;
}

.hero-content {
  position: absolute;
  left: var(--hero-content-x);
  top: var(--hero-content-y);
  width: var(--hero-content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hero-content-gap);
}

.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--hero-copy-gap);
}

.hero-title,
.hero-subtitle {
  margin: 0;
  text-rendering: geometricPrecision;
}

.hero-title {
  width: 100%;
  font-family: var(--text-hero-title-family);
  font-size: var(--text-hero-title-size);
  font-weight: var(--text-hero-title-weight);
  line-height: 1.22;
  text-align: var(--text-hero-title-align);
  text-transform: uppercase;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #f4f1eb;
  -webkit-text-fill-color: #f4f1eb;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title strong {
  font-weight: var(--text-hero-title-strong-weight);
}

.hero-subtitle {
  width: var(--text-hero-subtitle-width);
  font-family: var(--text-hero-subtitle-family);
  font-size: var(--text-hero-subtitle-size);
  font-weight: var(--text-hero-subtitle-weight);
  line-height: 1.25;
  text-align: var(--text-hero-subtitle-align);
  background: none;
  color: #7e7e7e;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--hero-cta-gap);
}

a.btn-plasma-red-link {
  text-decoration: none;
  display: inline-block;
}

.btn-plasma-red {
  max-width: 440px;
  margin: auto;
  padding: 2px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.95),
    rgba(180, 180, 180, 0.65),
    rgba(100, 100, 100, 0.25),
    rgba(50, 50, 50, 0)
  );
  background-size: 300% 300%;
  animation: plasmaFlowRed 6s linear infinite;
}

@keyframes plasmaFlowRed {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.particles-red {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 60%) 12% 22px / 6px 6px,
    radial-gradient(circle, rgba(200, 200, 200, 0.6) 0%, transparent 60%) 68% 80px / 4px 4px,
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%) 40% 150px / 3px 3px,
    radial-gradient(circle, rgba(220, 220, 220, 0.5) 0%, transparent 60%) 80% 40px / 5px 5px,
    radial-gradient(circle, rgba(240, 240, 240, 0.6) 0%, transparent 60%) 20% 190px / 4px 4px;
  animation: particleFloatRed 12s infinite linear;
}

@keyframes particleFloatRed {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

.btn-red-inner {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.88);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.35s ease;
}

.btn-red-label {
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.65px;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.25),
      rgba(150, 150, 150, 0.1),
      transparent 70%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(220, 220, 220, 0.2),
      rgba(100, 100, 100, 0.08),
      transparent 80%
    );
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.35),
    inset 0 0 28px rgba(150, 150, 150, 0.15);
  transition: 0.35s ease;
}

.btn-plasma-red:hover .btn-red-label {
  box-shadow:
    inset 0 0 45px rgba(255, 255, 255, 0.7),
    inset 0 0 80px rgba(200, 200, 200, 0.4);
  filter: brightness(1.25);
}

.inline-svg-red {
  width: 24px;
  height: auto;
  fill: #ffffff !important;
  stroke: #ffffff !important;
  transform: rotate(-45deg);
  opacity: 0.95;
  transition: 0.3s ease;
}

.btn-plasma-red:hover .inline-svg-red {
  transform: rotate(0deg) translateX(4px);
  filter: drop-shadow(0 0 8px #ffffff);
  opacity: 1;
}

.btn-red-arrow {
  opacity: 0;
  width: 24px;
}

.hero-benefits {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: var(--hero-benefits-gap);
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: var(--benefit-item-gap);
  padding: 0 3px;
  color: var(--color-text-gradient-start);
  font-family: var(--text-benefit-family);
  font-size: var(--text-benefit-size);
  font-weight: var(--text-benefit-weight);
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.hero-benefits li span:last-child {
  max-width: none;
  background: var(--gradient-text-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.benefit-icon {
  position: relative;
  width: var(--benefit-icon-width);
  height: var(--benefit-icon-height);
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
  height: 2.148px;
  border-radius: 999px;
  background: var(--color-text-gradient-start);
  transform-origin: left center;
}

.benefit-icon::before {
  left: 1px;
  top: 6.5px;
  width: 8px;
  transform: rotate(42deg);
}

.benefit-icon::after {
  left: 7px;
  top: 10px;
  width: 16px;
  transform: rotate(-45deg);
}
