.hero {
  display: flex;
  justify-content: center;
  color: #060400;
  padding: 0px 12px;
}

.hero-shell {
  position: relative;
  width: 100%;
  max-width: 1872px;
  margin: 0 auto;
  padding: 164px 24px 0px 24px;
  background: #f5f5f5 url('../../assets/images/hero-bg.webp') center/cover
    repeat;
  border-radius: 0px 0px 90px 90px;
  border: 12px solid #fff;
  border-top: none;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #060400;
  font-family: 'Instrument Serif', serif;
  font-weight: 500;
  font-size: 68px;
  line-height: 1.08;
}

.hero-line {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Instrument Serif', serif;
  font-weight: 500;
}

.hero-line-chips {
  gap: 16px;
  align-items: center;
}

.accent {
  color: #d32c17;
  font-family: 'Instrument Serif', serif;
  font-weight: 500;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-chip-text {
  font-family: 'Instrument Serif', serif;
  font-size: inherit;
  line-height: inherit;
}

.thumb {
  width: 60px;
  height: 72px;
  border-radius: 6px;
  border: 2px solid #060400;
  overflow: hidden;
  background: #060400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-track {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  animation: slideY 12s ease-in-out infinite;
}

.thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.thumb-websites .thumb-track {
  animation-delay: -2s;
}

.thumb-ecommerces .thumb-track {
  animation-delay: -4s;
}

@keyframes slideY {
  0%,
  22% {
    transform: translateY(0);
  }
  27%,
  49% {
    transform: translateY(-70px);
  }
  54%,
  76% {
    transform: translateY(-136px);
  }
  80%,
  100% {
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(6, 4, 0, 0.9);
  margin: 0;
  letter-spacing: -0.36px;
  margin: 24px 0px 32px 0px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #060400;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: -0.36px;
  font-weight: 500;
  min-height: 59px;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background-color 0.2s ease;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.hero-cta:hover,
.hero-cta:focus {
  background: #1b1b1b;
}

.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2c2c2c;
}

.hero-availability .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2bcb0b;
  box-shadow: 0 0 0 3px rgba(30, 178, 58, 0.18);
}

.hero-showcase {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1440px;
  margin: 72px auto 0px auto;
  gap: 16px;
}

.hero-card {
  background: #ffffff;
  border-radius: 18px 18px 0px 0px;
  padding: 10px 10px 0px 10px;
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px 14px 0px 0px;
  transition: all 0.3s ease;
}

/* Micro-interactions */
.hero-card {
  transition: all 0.3s ease;
}

.hero-card:hover.hero-card img,
.hero-card:focus-within.hero-card img {
  transform: scale(1.02);
}

@media (max-width: 1440px) {
  .hero-shell {
    border-radius: 0px 0px 45px 45px;
    border: 8px solid #fff;
    border-top: none;
  }
}
@media (max-width: 1200px) {
  .hero-shell {
    padding: 134px 24px 0px 24px;
  }
  .hero-heading {
    font-size: 58px;
  }

  .hero-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card:nth-child(3) {
    display: none;
  }
}

@media (max-width: 1050px) {
  .hero-heading {
    font-size: 54px;
  }
}

@media (max-width: 1000px) {
  .hero-heading {
    font-size: 50px;
  }
  .hero-line {
    gap: 6px;
  }

  .hero-line-chips {
    gap: 6px;
  }
  .hero-chip {
    gap: 8px;
  }
  .thumb {
    width: 0px;
    height: 0px;
    display: none;
  }

  .thumb img {
    display: none;
  }
}
@media (max-width: 750px) {
  .hero-heading {
    font-size: 42px;
  }
  .hero-heading {
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .hero-shell {
    background-size: cover;
  }

  .hero-heading {
    font-size: 36px;
    font-weight: 500;
  }

  .hero-subtitle {
    font-size: 16px;
    margin: 16px 0px 32px 0px;
  }
  .hero-showcase {
    grid-template-columns: 1fr;
  }
  .hero-card:nth-child(2) {
    display: none;
  }
  .hero-cta {
    min-height: 53px;
  }

  .hero-cta {
    font-size: 16px;
    padding: 12px 24px;
  }
  .hero-card {
    padding: 8px 8px 0px 8px;
  }
}

@media (max-width: 520px) {
  .hero-heading {
    font-size: 32px;
    gap: 0px;
  }
  .hero-shell {
    padding: 134px 12px 0px 12px;
  }
}

@media (max-width: 440px) {
  .hero-line-chips {
    gap: 0px;
  }
  .hero-heading {
    line-height: 1.2;
  }
}

@media (max-width: 410px) {
  .hero-heading {
    font-size: 30px;
  }
}

@media (max-width: 385px) {
  .hero-heading {
    font-size: 28px;
  }
}

@media (max-width: 365px) {
  .hero-heading {
    font-size: 26px;
  }
  .hero-line {
    gap: 3px;
  }
}
