.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-black);
}

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

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
}

.hero__diagonal {
  position: absolute;
  inset: 0;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
  background: linear-gradient(160deg, rgba(230, 57, 70, 0.03) 0%, rgba(230, 57, 70, 0.08) 50%, rgba(230, 57, 70, 0.03) 100%);
}

.hero__cursor-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero__left {
  text-align: left;
}

.hero__badge {
  margin-bottom: var(--gap-lg);
}

.hero__title {
  font-size: clamp(2.25rem, 4vw, var(--fs-5xl));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--gap-lg);
}

.hero__title-accent {
  display: inline-block;
  min-height: 1.2em;
  background: linear-gradient(135deg, var(--color-primary) 0%, #FF6B7A 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-gray-500);
  max-width: 520px;
  margin-bottom: var(--gap-2xl);
  line-height: var(--lh-normal);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}

/* Right column - Mockups */
.hero__right {
  position: relative;
  height: 480px;
}

.hero__blob {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(230, 57, 70, 0.1);
  animation: morph-blob 8s ease-in-out infinite;
  filter: blur(40px);
  will-change: border-radius;
}

.hero__mockup {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  will-change: transform;
}

.hero__mockup--1 {
  width: 280px;
  height: 200px;
  top: 10%;
  left: 8%;
  transform: rotate(-3deg);
  z-index: 3;
  animation: float-card-1 6s ease-in-out infinite;
}

.hero__mockup--2 {
  width: 220px;
  height: 160px;
  top: 45%;
  right: 5%;
  transform: rotate(5deg);
  z-index: 2;
  animation: float-card-2 7s ease-in-out infinite;
}

.hero__mockup--3 {
  width: 140px;
  height: 220px;
  bottom: 5%;
  left: 30%;
  transform: rotate(-6deg);
  z-index: 1;
  animation: float-card-3 8s ease-in-out infinite;
}

.hero__mockup-bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero__mockup-dot--red { background: #FF5F57; }
.hero__mockup-dot--yellow { background: #FFBD2E; }
.hero__mockup-dot--green { background: #27C93F; }

.hero__mockup-body {
  padding: 14px;
}

.hero__mockup-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.hero__mockup-line--wide { width: 100%; }
.hero__mockup-line--medium { width: 70%; }
.hero__mockup-line--short { width: 45%; }

.hero__mockup-block {
  height: 50px;
  border-radius: 8px;
  background: rgba(230, 57, 70, 0.12);
  margin-top: 10px;
}

/* Scroll label */
.hero__scroll-label {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.hero__scroll-arrow {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
  animation: scroll-arrow-bounce 1.8s ease-in-out infinite;
  transition: filter 0.4s ease;
}

.hero__scroll-label:hover .hero__scroll-arrow {
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.9))
         drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
  animation: scroll-arrow-bounce-hover 0.8s ease-in-out infinite;
}

.hero__scroll-label:hover span {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

@keyframes scroll-arrow-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

@keyframes scroll-arrow-bounce-hover {
  0%   { transform: translateY(0) scale(1.3); }
  50%  { transform: translateY(10px) scale(1.5); }
  100% { transform: translateY(0) scale(1.3); }
}
