.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px dashed #ffffff20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 40%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 40%,
    transparent 100%
  );
  transform-origin: center center;
  transition: transform 0.05s linear;
  z-index: 0;
}

.hero-section.scrolled::before {
  transform: scale(var(--bg-scale, 1));
  opacity: var(--bg-opacity, 1);
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #e10600 30%,
    #e10600 70%,
    transparent
  );
  z-index: 10;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 60% at 15% 50%,
      rgba(225, 6, 0, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 85% 50%,
      rgba(255, 180, 0, 0.05) 0%,
      transparent 70%
    );
  z-index: 0;
  transform-origin: center center;
}

.hero-data-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 3;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

.hero-data-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 100px;
}

.hero-data-item:first-child {
  border-left: none;
}

.hero-deco-left,
.hero-deco-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.8s forwards;
}

.hero-deco-left {
  left: clamp(16px, 4vw, 60px);
}
.hero-deco-right {
  right: clamp(16px, 4vw, 60px);
  align-items: flex-end;
}

.hero-deco-line {
  width: 32px;
  height: 2px;
  background: #e10600;
}

.hero-deco-line:nth-child(2) {
  width: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-deco-line:nth-child(3) {
  width: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  pointer-events: none;
}

.hero-headlines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  overflow: visible;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e10600;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #e10600;
}

.hero-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #e10600;
}

.hero-line {
  display: inline;
  white-space: pre-wrap;
  font-family: Orbitron, sans-serif;
  font-size: clamp(30px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  margin: 0;
  transform-origin: center center;
  letter-spacing: -0.02em;
}

.hero-outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 3px #fff;
  text-shadow: none;
}

.hero-solid-red {
  color: #e10600;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  text-shadow: none;
}

.hero-underline {
  width: 0;
  height: 3px;
  background: #e10600;
  margin-top: 16px;
  animation: expandLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: all;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1s forwards;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: #e10600;
  color: #ffffff;
  font-family: Rajdhani, sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  overflow: hidden;
  transition:
    background 0.2s,
    transform 0.15s;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-btn:hover::before {
  left: 160%;
}

.hero-btn:hover {
  background: #ff0a00;
  transform: translateY(-1px);
}

.hero-btn:active {
  transform: translateY(0px);
}

.hero-btn-arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.2s;
}

.hero-btn:hover .hero-btn-arrow {
  transform: translateX(3px);
}

.hero-sub {
  font-family: Rajdhani, sans-serif;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-transform: uppercase;
}

@keyframes revealLine {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: clamp(60px, 8vw, 120px);
  }
}

.hero-section .hero-bg-gradient {
  transition: opacity 0.1s linear;
}

@media (max-width: 768px) {
  .hero-data-bar {
    bottom: 24px;
    gap: 0;
  }

  .hero-data-item {
    padding: 6px 14px;
    min-width: 70px;
  }

  .hero-data-label {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .hero-data-value {
    font-size: 14px;
  }

  .hero-number {
    right: -5vw;
    opacity: 0.5;
  }

  .hero-deco-left,
  .hero-deco-right {
    display: none;
  }

  .hero-btn {
    padding: 12px 28px;
  }
}
