.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  background: var(--yellow);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  padding: 0 var(--pad) clamp(120px, 16vw, 190px);
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(96px, 18vw, 260px);
  line-height: 0.82;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero__line {
  display: block;
}

.hero__line--italic {
  font-style: italic;
}

.hero__subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
  color: rgba(18, 17, 15, 0.76);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

@media (max-width: 720px) {
  .hero__inner {
    width: 100%;
    padding: 0 20px 120px;
  }

  .hero__title {
    font-size: clamp(72px, 22vw, 140px);
  }

  .hero__subtitle {
    max-width: 32rem;
  }
}
}
.hero__blob--2 {
  width: clamp(120px, 16vw, 240px);
  height: clamp(120px, 16vw, 240px);
  background: var(--orange);
  opacity: 0.45;
  bottom: 60px;
  right: clamp(60px, 8vw, 120px);
  animation: blobFloat 11s ease-in-out 2s infinite reverse;
}
.hero__blob--3 {
  width: 80px;
  height: 80px;
  background: var(--navy);
  opacity: 0.15;
  bottom: 120px;
  left: 20%;
  animation: blobFloat 7s ease-in-out 1s infinite;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.03);
  }
}

/* ── Sticker cluster ── */
.hero__stickers {
  position: absolute;
  top: 32px;
  right: var(--pad);
  z-index: 5;
  opacity: 0;
  animation: stickersIn 0.6s var(--expo) 0.9s forwards;
}
@keyframes stickersIn {
  from {
    opacity: 0;
    transform: scale(0.75) rotate(-4deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Content ── */
.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-5);
  opacity: 0;
  animation: heroItemIn 0.6s var(--expo) 0.3s forwards;
}

.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(72px, 14vw, 196px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ink);
  position: relative;
}
.hero__h1-line {
  display: block;
  opacity: 0;
}
.hero__h1-line--1 {
  animation: heroItemIn 0.65s var(--expo) 0.42s forwards;
}
.hero__h1-line--2 {
  font-style: italic;
  color: var(--white);
  animation: heroItemIn 0.65s var(--expo) 0.52s forwards;
}
.hero__h1-line--3 {
  color: var(--navy);
  font-style: normal;
  animation: heroItemIn 0.65s var(--expo) 0.62s forwards;
}

/* underline squiggle on last word */
.hero__h1-line--2 .squiggle {
  position: relative;
  display: inline-block;
}
.hero__h1-line--2 .squiggle::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0 6 Q25 1 50 6 Q75 11 100 6 Q125 1 150 6 Q175 11 200 6' stroke='%23FFD932' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x center / auto 100%;
}

.hero__sub {
  margin-top: var(--s-6);
  max-width: 480px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0;
  animation: heroItemIn 0.65s var(--expo) 0.75s forwards;
}

.hero__actions {
  margin-top: var(--s-7);
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  opacity: 0;
  animation: heroItemIn 0.65s var(--expo) 0.85s forwards;
}

/* ── Stats bar ── */
.hero__stats {
  background: var(--yellow);
  border-top: var(--border);
  border-bottom: var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero__stat {
  padding: clamp(20px, 3vw, 36px) var(--pad);
  border-right: var(--border);
  opacity: 0;
  animation: heroItemIn 0.6s var(--expo) forwards;
}
.hero__stat:nth-child(1) {
  animation-delay: 1s;
}
.hero__stat:nth-child(2) {
  animation-delay: 1.08s;
}
.hero__stat:nth-child(3) {
  animation-delay: 1.16s;
  border-right: none;
}

.hero__stat-n {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--s-1);
}
.hero__stat-l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

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