.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #ffffff;
}

.hero .eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #f5c000;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero .headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 14vw, 10rem);
  line-height: 0.88;
  color: #1a1a3e;
  letter-spacing: 0.03em;
  -webkit-text-stroke: 2px #1a1a3e;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}

.hero .headline .highlight {
  color: #1a1a3e;
  background: #f5c000;
  padding: 0 0.18em;
  display: inline-block;
}

.hero .divider {
  width: 0;
  height: 5px;
  background: #f5c000;
  margin: 1.8rem auto;
  animation: lineGrow 0.7s ease forwards 0.9s;
}

.hero .subline {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.1rem;
  color: #444;
  max-width: 700px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.6s;
}

@media (min-width: 992px) {
  .hero .subline {
    margin-top: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .subline {
    line-height: 1.2;
  }
}

.hero .badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.75s;
}

.hero .badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a3e;
  background: #fff;
  border: 2px solid #1a1a3e;
  padding: 0.45rem 1rem;
  border-radius: 2px;
}

.hero .cta {
  margin-top: 2.2rem;
  display: inline-block;
  background: #f5c000;
  color: #1a1a3e;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.8rem;
  border-radius: 3px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.95s;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero .cta:hover {
  background: #ffd333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 192, 0, 0.4);
}

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

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

body {
}

