.landing {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 75px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.landing-content {
  max-width: 600px;
  text-align: left;
}

.landing-title {
  font-family: 'Audiowide', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--minor-text-color);
}

.landing-title .highlight {
  color: var(--secondary-color);
  font-weight: normal;
}

.landing-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: #B8B8B8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.landing-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #B8342C;
  color: #FFFFFF;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #9A2B24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 52, 44, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  color: var(--secondary-color);
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-image: url('../icons/play-btn.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.dashboard-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.demo-screens {
  position: relative;
  width: 40rem;
  height: 26rem;
}

.demo-screen {
  width: 40rem;
  height: 26rem;
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  transform: rotate(2deg);
  position: absolute;
  background-color: var(--background-color);
}

.demo-screen.back {
  width: 500px;
  height: 358px;
  background: #34161F;
  top: -50px;
  right: -50px;
  z-index: 1;
  opacity: 0.32;
  border: none;
}

.demo-screen.front {
  background-image: url('../images/dashboard.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  left: 0;
  z-index: 2;
}



@media screen and (min-width: 1920px) {
  .landing {
    max-width: 1800px;
    gap: 100px;
  }

  .demo-screens {
    width: 48rem;
    height: 31rem;
  }

  .demo-screen {
    width: 48rem;
    height: 31rem;
  }

  .demo-screen.back {
    width: 600px;
    height: 430px;
    top: -60px;
    right: -60px;
  }
}

@media screen and (max-width: 1024px) {
  .landing {
    gap: 40px;
    padding: 1.5rem;
  }

  .demo-screens {
    width: 30rem;
    height: 20rem;
  }

  .demo-screen {
    width: 30rem;
    height: 20rem;
  }

  .demo-screen.back {
    width: 375px;
    height: 269px;
    top: -40px;
    right: -40px;
  }
}

@media screen and (max-width: 768px) {
  .landing {
    flex-direction: column;
    gap: 40px;
    padding: 1rem;
  }

  .landing-content {
    max-width: 100%;
    text-align: center;
  }

  .landing-subtitle {
    max-width: 100%;
  }

  .landing-buttons {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .dashboard-content {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .demo-screens {
    width: 100%;
    max-width: 22rem;
    height: 14.5rem;
    min-height: 14.5rem;
  }

  .demo-screen {
    width: 100%;
    height: 14.5rem;
  }

  .demo-screen.back {
    width: 70%;
    height: auto;
    aspect-ratio: 500 / 358;
    top: -12%;
    right: -12%;
  }
}

@media screen and (max-width: 480px) {
  .landing {
    gap: 30px;
    padding: 1rem 0.5rem;
  }

  .landing-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .landing-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .landing-buttons {
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .dashboard-content {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .demo-screens {
    width: 100%;
    max-width: 20rem;
    height: 13rem;
    min-height: 13rem;
  }

  .demo-screen {
    width: 100%;
    height: 13rem;
  }

  .demo-screen.back {
    width: 65%;
    height: auto;
    aspect-ratio: 500 / 358;
    top: -15%;
    right: -15%;
  }

  .landing-trust {
    font-size: 0.65rem;
  }
}