.mp-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 90% 20%, rgba(191, 240, 0, 0.18), transparent 60%),
    radial-gradient(800px 500px at 10% 90%, rgba(237, 110, 129, 0.12), transparent 60%),
    var(--white);
}

.mp-hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.mp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.mp-hero__badge-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.mp-hero__badge-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  opacity: 0.4;
  animation: mp-pulse-ring 2s ease-out infinite;
}

.mp-hero__title {
  font-size: clamp(46px, 7.4vw, 108px);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.02;
}

.mp-hero__line {
  display: block;
  overflow: hidden;
}

.mp-hero__line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: mp-hero-line-in 0.9s var(--ease-out-quart) forwards;
}

.mp-hero__line:nth-child(2) > span { animation-delay: 0.12s; }
.mp-hero__line:nth-child(3) > span { animation-delay: 0.24s; }

@keyframes mp-hero-line-in {
  to { transform: translateY(0); }
}

.mp-hero__title em { font-style: normal; }

.mp-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
}

.mp-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.mp-hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.mp-hero__meta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mp-hero__meta-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp-hero__meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 2px;
  font-weight: 400;
}

.mp-hero__meta-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.mp-hero__visual {
  position: relative;
  height: 640px;
}

.mp-hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8ead8, #d4d9c0);
}

.mp-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: mp-hero-zoom 8s ease forwards;
}

@keyframes mp-hero-zoom { to { transform: scale(1.1); } }

.mp-hero__card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  animation: mp-float 6s ease-in-out infinite;
}

.mp-hero__card--c1 { top: 30px; left: -40px; width: 240px; }
.mp-hero__card--c2 { bottom: 30px; right: -30px; width: 280px; animation-delay: 1.5s; }
.mp-hero__card--c3 {
  bottom: 140px;
  left: 20px;
  width: 210px;
  animation-delay: 3s;
  background: var(--ink);
  color: var(--white);
}

.mp-hero__card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mp-hero__card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}

.mp-hero__card-avatar--pink { background: var(--pink); color: var(--white); }
.mp-hero__card--c3 .mp-hero__card-avatar { background: var(--pink); color: var(--white); }

.mp-hero__card-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.65;
}

.mp-hero__card-label--lime { color: var(--lime); opacity: 1; }

.mp-hero__card-title {
  font-family: var(--font-display);
  font-size: 15px;
  margin-top: 2px;
  line-height: 1.2;
}

.mp-hero__card p {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.75;
}

.mp-hero__card-bar {
  margin-top: 12px;
  height: 6px;
  background: rgba(46, 46, 46, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.mp-hero__card--c3 .mp-hero__card-bar { background: rgba(255, 255, 255, 0.15); }
.mp-hero__card-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 72%;
  background: var(--lime);
  border-radius: 10px;
  animation: mp-fill-bar 2.5s var(--ease-out-quart) 0.5s both;
}

.mp-hero__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.mp-hero__marquee {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--white);
}

.mp-hero__marquee-track {
  display: flex;
  gap: 60px;
  animation: mp-marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.mp-hero__marquee-track span {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 60px;
}

.mp-hero__marquee-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .mp-hero { padding: 140px 0 60px; }
  .mp-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .mp-hero__visual { height: 500px; }
}

@media (max-width: 640px) {
  .mp-hero { padding: 120px 0 60px; }
  .mp-hero__title { font-size: clamp(38px, 10vw, 64px); }
  .mp-hero__lead { font-size: 16px; }
  .mp-hero__ctas { width: 100%; }
  .mp-hero__ctas .mp-btn { flex: 1; justify-content: center; }
  .mp-hero__visual { height: 420px; }
  .mp-hero__card--c1 { left: -10px; width: 200px; }
  .mp-hero__card--c2 { right: -10px; width: 230px; }
  .mp-hero__card--c3 { display: none; }
  .mp-hero__meta { gap: 18px; }
  .mp-hero__marquee-track span { font-size: 18px; gap: 40px; }
}
