/* AWD Sounds — Home v1 */

.awd-home {
  overflow: hidden;
  background: #080a0c;
  color: #f7f8fa;
}

.awd-home-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 82px));
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 78% 42%, rgba(227,252,2,.12), transparent 30%),
    linear-gradient(180deg, #080a0c 0%, #0b0e11 100%);
}

.awd-home-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 12%;
  right: 9%;
  border-radius: 50%;
  background: rgba(227,252,2,.09);
  filter: blur(110px);
  pointer-events: none;
}

.awd-home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 10vw, 9rem);
}

.awd-home-hero__title {
  max-width: 850px;
  margin: 1rem 0 1.5rem;
  color: #f7f8fa;
  font-size: clamp(3.4rem, 7vw, 7.7rem);
  font-weight: 850;
  line-height: .88;
  letter-spacing: -.065em;
}

.awd-home-hero__title span {
  display: block;
  color: #e3fc02;
}

.awd-home-hero__lead {
  max-width: 610px;
  margin: 0;
  color: #aeb6c1;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.awd-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.awd-home-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #8d96a3;
  font-size: .78rem;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.awd-home-proof li::before {
  content: "✓";
  margin-right: .5rem;
  color: #e3fc02;
}

.awd-home-product-stage {
  position: relative;
  max-width: 530px;
  margin-inline: auto;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
  box-shadow: 0 38px 100px rgba(0,0,0,.48);
}

.awd-home-product-stage__image {
  display: block;
  width: 100%;
  border-radius: 22px;
  filter: drop-shadow(0 25px 32px rgba(0,0,0,.38));
}

.awd-home-product-stage__placeholder {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 22px;
  background: #101419;
  text-align: center;
}

.awd-home-product-stage__placeholder strong {
  color: #e3fc02;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: .8;
}

.awd-home-product-stage__placeholder span {
  margin-top: 1rem;
  letter-spacing: .5em;
}

.awd-home-product-stage__label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

.awd-home-product-stage__label span {
  color: #8d96a3;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.awd-home-product-stage__label strong {
  max-width: 260px;
  color: #f7f8fa;
  text-align: right;
}

.awd-home-products {
  background: #0b0e11;
}

.awd-home-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.awd-home-heading .awd-title {
  margin-top: .75rem;
}

.awd-home-text-link {
  color: #e3fc02;
  font-weight: 800;
  text-decoration: none;
}

.awd-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.awd-product-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: #11151a;
  transition: transform .2s ease, border-color .2s ease;
}

.awd-product-card:hover {
  border-color: rgba(227,252,2,.4);
  transform: translateY(-5px);
}

.awd-product-card__media {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0c0f12;
}

.awd-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.awd-product-card:hover .awd-product-card__media img {
  transform: scale(1.035);
}

.awd-product-card__empty {
  color: #e3fc02;
  font-size: 3rem;
  font-weight: 900;
}

.awd-product-card__body {
  padding: 1.25rem;
}

.awd-product-card h3 {
  min-height: 2.6em;
  margin: 1rem 0 1.5rem;
  color: #f7f8fa;
  font-size: 1.05rem;
  line-height: 1.3;
}

.awd-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.awd-product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.awd-product-card__price {
  color: #e3fc02;
  font-weight: 850;
}

.awd-product-card__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  color: #f7f8fa;
  text-decoration: none;
}

.awd-home-empty {
  padding: 4rem 2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #11151a;
  text-align: center;
}

.awd-home-empty strong,
.awd-home-empty span {
  display: block;
}

.awd-home-empty span {
  margin-top: .5rem;
  color: #8d96a3;
}

.awd-home-values {
  background: #080a0c;
}

.awd-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.09);
}

.awd-value-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #11151a;
}

.awd-value-card > span {
  color: #e3fc02;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.awd-value-card h3 {
  margin: 2rem 0 .8rem;
  color: #f7f8fa;
}

.awd-value-card p {
  margin: 0;
  color: #8d96a3;
  line-height: 1.7;
}

.awd-home-cta {
  padding: clamp(3rem, 8vw, 7rem);
  border: 1px solid rgba(227,252,2,.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 75% 50%, rgba(227,252,2,.15), transparent 35%),
    #11151a;
  text-align: center;
}

.awd-home-cta h2 {
  max-width: 850px;
  margin: 1.2rem auto 2rem;
  color: #f7f8fa;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: .95;
}

@media (max-width: 1024px) {
  .awd-home-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .awd-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .awd-home-hero__grid {
    grid-template-columns: 1fr;
  }

  .awd-home-hero__content {
    text-align: center;
  }

  .awd-home-hero__lead {
    margin-inline: auto;
  }

  .awd-home-hero__actions,
  .awd-home-proof {
    justify-content: center;
  }

  .awd-home-product-stage__label {
    display: block;
  }

  .awd-home-product-stage__label strong {
    display: block;
    margin-top: .35rem;
    text-align: left;
  }

  .awd-home-heading {
    align-items: start;
    flex-direction: column;
  }

  .awd-product-grid,
  .awd-value-grid {
    grid-template-columns: 1fr;
  }
}
