/* landing page */

/* Hero section */
.hero-section {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 56px 56px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff5f8 0%, #fdf0f4 55%, #fae8f2 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 22px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-headline em {
  color: var(--pink);
  font-style: italic;
}

.hero-sub {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.btn-hero-primary {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--pink);
  border-radius: 50px;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(224, 122, 154, 0.35);
}

.btn-hero-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 122, 154, 0.45);
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 122, 154, 0.18);
}

.deco-ring-1 {
  width: 320px; height: 320px;
  top: -80px; right: -60px;
}

.deco-ring-2 {
  width: 180px; height: 180px;
  bottom: -40px; left: 5%;
  border-color: rgba(224, 122, 154, 0.12);
}

.deco-star {
  position: absolute;
  font-size: 1rem;
  color: var(--pink);
  opacity: 0.35;
  animation: star-pulse 4s ease-in-out infinite;
}

.deco-star-1 { top: 14%; left: 6%;  font-size: 1.2rem; animation-delay: 0s; }
.deco-star-2 { top: 22%; right: 8%; font-size: 0.8rem; animation-delay: 1.4s; }
.deco-star-3 { bottom: 18%; right: 6%; font-size: 1rem; animation-delay: 0.7s; opacity: 0.25; }

@keyframes star-pulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.2); }
}

.deco-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.12;
}

.deco-dot-1 { width: 10px; height: 10px; top: 30%; left: 12%; }
.deco-dot-2 { width: 6px;  height: 6px;  bottom: 28%; right: 14%; }

.hero-album {
  position: absolute;
}

.album-frame {
  width: 100px; height: 100px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fce4ef, #f5c6d8);
  border: 2px solid rgba(224,122,154,0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(224,122,154,0.15);
  overflow: hidden;
}

.album-frame img { width:100%; height:100%; object-fit:cover; }
.album-placeholder { font-size: 2rem; }

.hero-album-1 {
  top: 12%; right: 8%;
  transform: rotate(6deg);
  animation: float-a 6s ease-in-out infinite;
}

.hero-album-2 {
  bottom: 16%; right: 18%;
  transform: rotate(-5deg);
  animation: float-b 7s ease-in-out infinite;
}

.hero-album-2 .album-frame { width: 76px; height: 76px; border-radius: 12px; }

.hero-album-3 {
  top: 18%; left: 5%;
  transform: rotate(-8deg);
  animation: float-a 8s ease-in-out infinite;
}

.hero-album-3 .album-frame { width: 68px; height: 68px; border-radius: 10px; opacity: 0.6; }

@keyframes float-a {
  0%, 100% { transform: rotate(6deg)  translateY(0); }
  50%       { transform: rotate(6deg)  translateY(-10px); }
}

@keyframes float-b {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%       { transform: rotate(-5deg) translateY(-8px); }
}

/* RIBBON */
.ribbon-wrap {
  overflow: hidden;
  background: var(--pink);
  padding: 11px 0;
}

.ribbon-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ribbon-scroll 35s linear infinite;
}

.ribbon-item {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SECTIONS */
.lp-section {
  padding: 56px 0 72px;
  background: var(--white);
}

.lp-section-alt {
  background: var(--bg);
}

.lp-section-dark {
  background: #c9607e;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.lp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.lp-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 6px;
}

.lp-eyebrow-light { color: rgba(255,255,255,0.7); }

.lp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.lp-title em { color: var(--pink); font-style: italic; }

.lp-title-light { color: var(--white); }
.lp-title-light em { color: rgba(255,255,255,0.8); }

.lp-see-all {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 4px;
}

.lp-see-all:hover { color: var(--pink-dark); }

/* grids */
.lp-grid { display: grid; gap: 24px; }
.lp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.lp-grid-5 { grid-template-columns: repeat(5, 1fr); }

/* card image placeholder */
.card-img-placeholder {
  width: 100%; aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #fdf0f4, #fce4ef);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}

/* Best Seller*/
.lp-list {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}

.lp-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}

.lp-list-item:last-child { border-bottom: none; }
.lp-list-item:hover { background: var(--pink-light); }

.lp-rank {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-mid);
  min-width: 36px;
  line-height: 1;
}

.lp-list-img {
  width: 60px; height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fdf0f4, #fce4ef);
  border: 1.5px solid var(--border);
}

.lp-list-img img { width:100%; height:100%; object-fit:cover; display:block; }

.lp-img-fallback {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
}

.lp-list-info { flex:1; min-width:0; }

.lp-list-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}

.lp-list-artist {
  font-size: 0.75rem; font-weight: 600;
  color: var(--text);
  text-transform: uppercase; letter-spacing: 0.5px;
}

.lp-list-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 4px; flex-shrink: 0;
}

.lp-sold {
  font-size: 0.72rem; font-weight: 700;
  color: var(--pink); background: var(--pink-light);
  border-radius: 50px; padding: 3px 10px;
}

.lp-price {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-dark);
}

/* VERSION CARDS*/
.version-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  padding: 28px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.18);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  text-align: center;
}

.version-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
}

.version-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem; font-weight: 700;
  color: var(--white);
}

.version-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--white); line-height: 1.3;
}

.version-stats {
  display: flex; align-items: center;
  gap: 6px; font-size: 0.72rem;
  color: rgba(255,255,255,0.7); font-weight: 600;
}

.version-dot { color: rgba(255,255,255,0.35); }

.version-highlight {
  color: var(--white); font-weight: 700;
}

/* CTA  */
.cta-section {
  padding: 72px 56px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.cta-eyebrow {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--pink); margin-bottom: 18px;
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.3; margin-bottom: 32px;
}

.cta-inner h2 em { color: var(--pink); font-style: italic; }

/* Tagline */
.tagline { text-align:center; padding:40px 24px 32px; }
.tagline h2 { font-family:'Playfair Display',serif; font-size:clamp(1rem,2vw,1rem); color:var(--text-dark); font-weight:400; }
.tagline h2 span { color:var(--pink); font-style:italic; }

/* resonsive */
@media (max-width: 1024px) {
  .lp-container { padding: 0 32px; }
  .hero-section { padding: 60px 32px 52px; }
  .cta-section { padding: 60px 32px; }
  .hero-album-1 .album-frame { width: 80px; height: 80px; }
  .lp-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 52px 24px 44px; }
  .hero-album-1, .hero-album-3 { display: none; }
  .hero-album-2 { bottom: 12px; right: 12px; }
  .lp-container { padding: 0 20px; }
  .lp-section { padding: 44px 0 56px; }
  .lp-grid-3 { grid-template-columns: 1fr 1fr; }
  .lp-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .lp-section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-section { padding: 52px 24px; }
  .intro-text { padding: 44px 24px 8px; }
  .interlude-text { padding: 40px 24px 8px; }
}

@media (max-width: 480px) {
  .hero-section { padding: 44px 16px 40px; }
  .lp-container { padding: 0 16px; }
  .lp-section { padding: 36px 0 48px; }
  .lp-grid-3 { grid-template-columns: 1fr; }
  .lp-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { justify-content: center; }
  .cta-section { padding: 40px 16px; }
  .hero-album-2 { display: none; }
}