/* Hero layout + timer card */

.hero__inner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  width: var(--container);
  margin-inline: auto;
  padding: 3.25rem 0 3.75rem;
}

.hero__content {
  max-width: 38rem;
}

.hero__aside {
  width: 100%;
  max-width: 22rem;
  justify-self: stretch;
}

.hero__deal {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(6, 21, 28, 0.82) 0%, rgba(11, 36, 48, 0.72) 100%);
  border: 1px solid rgba(212, 168, 75, 0.45);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(24px);
  animation: rise-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.hero__deal-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3e6cf;
  text-align: center;
}

.hero__deal-title {
  margin: 0;
  font-family: var(--font-display, "Unbounded", Manrope, sans-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

.timer {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
}

.timer__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 0.55rem 0.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 168, 75, 0.28);
  text-align: center;
}

.timer__num {
  display: block;
  width: 100%;
  font-family: var(--font-display, "Unbounded", Manrope, sans-serif);
  font-size: clamp(1.55rem, 5vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.timer__unit {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 230, 207, 0.85);
}

.timer__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, "Unbounded", Manrope, sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(243, 230, 207, 0.75);
  padding-bottom: 0.85rem;
}

.hero__deal .hero__live {
  margin-top: 0;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.86rem;
  text-align: center;
}

.hero__deal-cta {
  width: 100%;
  margin-top: 0.15rem;
}

@media (min-width: 768px) {
  .hero__inner {
    padding: 4.5rem 0 5rem;
  }

  .hero__aside {
    max-width: 20.5rem;
    justify-self: start;
  }
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 340px);
    gap: 2.5rem;
    align-items: center;
    padding: 5rem 0 5.5rem;
  }

  .hero__aside {
    justify-self: end;
    max-width: none;
    width: 100%;
  }

  .hero__deal {
    padding: 1.45rem 1.35rem 1.5rem;
  }

  .timer__cell {
    min-height: 4.75rem;
  }

  .timer__num {
    font-size: 1.95rem;
  }
}

@media (min-width: 1200px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.2fr) 360px;
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__deal {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
