* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background: #07080f;
  color: #f8f8fb;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(6, 10, 24, 0.88), rgba(0, 0, 0, 0.82)),
    url("./assets/litvybe-logo.png") center/cover no-repeat;
  filter: blur(0px);
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1080px, 92%);
  margin: 0 auto;
  padding: 36px 0 56px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  text-align: center;
  padding: 14px 0 24px;
}

.wordmark {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #fff 30%, #f3a84a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro {
  margin: 0 auto 24px;
  max-width: 660px;
  color: #d1d5e5;
  font-size: 1.05rem;
}

.coming-soon {
  margin: -8px auto 18px;
  max-width: 660px;
  color: #f3d27d;
  font-size: 0.98rem;
  font-weight: 600;
}

.store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  width: 210px;
  text-decoration: none;
  color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 16, 29, 0.82);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0.86;
}

.store-btn span {
  font-size: 1.55rem;
  width: 30px;
  text-align: center;
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  color: #afb6cb;
}

.store-btn strong {
  display: block;
  font-size: 1rem;
}

.shots {
  margin-top: 48px;
}

.shots h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 1.25rem;
  color: #e7e9f6;
}

.grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
}

.phone-frame {
  flex: 0 0 auto;
  width: 200px;
  background: #0d1020;
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 0 6px #0a0c18,
    0 0 0 8px rgba(255, 255, 255, 0.08),
    0 32px 64px rgba(0, 0, 0, 0.7);
  padding: 14px 8px;
  position: relative;
  transition: transform 0.3s ease;
}

.phone-frame::before {
  content: '';
  display: block;
  width: 60px;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  margin: 0 auto 10px;
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.phone-frame:nth-child(1) {
  transform: rotate(-4deg) translateY(20px);
}

.phone-frame:nth-child(2) {
  transform: rotate(0deg) translateY(0);
  z-index: 2;
  width: 220px;
}

.phone-frame:nth-child(3) {
  transform: rotate(4deg) translateY(20px);
}

.phone-frame:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  z-index: 3;
}

@media (max-width: 680px) {
  .grid {
    gap: 12px;
  }

  .phone-frame {
    width: 28vw;
    border-radius: 20px;
    padding: 8px 5px;
  }

  .phone-frame::before {
    width: 40px;
    height: 6px;
    margin-bottom: 6px;
  }

  .phone-frame img {
    border-radius: 14px;
  }

  .phone-frame:nth-child(2) {
    width: 32vw;
  }
}

.site-footer {
  margin-top: 80px;
  padding: 24px 0 16px;
  text-align: center;
  width: 100%;
}

.site-footer p {
  margin: 0;
  color: #aeb4c6;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
