/* ═══════════════════════════════════════════════
   Bandanize Landing — Hero Logo & Floating Cards
   Central logo composition with drifting UI cards
   ═══════════════════════════════════════════════ */

/* ── Hero logo ── */
.hero-logo {
  position: absolute;
  z-index: 3;
  width: 280px;
  height: 280px;
  top: 144px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px #fd87a125);
  animation: logo-breathe 6s ease-in-out infinite;
}

/* ── Highlight hero overrides ── */
.highlight-hero { min-height: 590px !important; }

.highlight-hero .hero-vinyl {
  width: 410px;
  height: 410px;
  left: 50%;
  margin-left: -205px;
  top: 95px;
  opacity: .65;
}

.highlight-hero .riff-card { top: 9px; left: -12px; width: 212px; }
.highlight-hero .set-card { top: 253px; right: -25px; width: 235px; }

.highlight-hero .rehearsal-ticket {
  bottom: 8px;
  left: 1%;
  gap: 13px;
  padding: 12px 18px;
}

/* ── Floating card animations ── */
.hero-tabs {
  top: 20px;
  right: 0;
  width: 218px;
  padding: 18px;
  animation: tabs-drift 8s ease-in-out infinite;
}

.hero-tabs pre {
  font: 12px/1.8 monospace;
  color: #dedee5;
  margin: 17px 0 12px;
}

.hero-tabs small { font-size: 10px; color: #93939e; }

.hero-chat {
  top: 310px;
  left: -27px;
  width: 230px;
  padding: 17px;
  animation: chat-drift 7s ease-in-out infinite;
}

.hero-message {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 17px;
  font-size: 12px;
  line-height: 1.5;
}

.hero-message i {
  display: grid;
  place-items: center;
  background: var(--pink);
  color: #19191d;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  font-size: 11px;
  font-style: normal;
}

.hero-files {
  bottom: 0;
  right: -16px;
  width: 220px;
  padding: 18px;
  animation: files-drift 9s ease-in-out infinite;
}

.file-formats {
  display: flex;
  gap: 8px;
  margin-top: 17px;
}

.file-formats span {
  font-size: 10px;
  padding: 8px 10px;
  border: 1px solid #51515d;
  border-radius: 4px;
  color: var(--pink);
}

.hero .micro-label { font-size: 9px; letter-spacing: .9px; }

.product-showcase { padding-top: 15px; }
.hero { padding-bottom: 105px; }

/* ── Keyframes ── */
@keyframes logo-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.025); }
}

@keyframes tabs-drift {
  0%, 100% { transform: translateY(0) rotate(7deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

@keyframes chat-drift {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50% { transform: translateY(9px) rotate(-4deg); }
}

@keyframes files-drift {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-8px) rotate(8deg); }
}

/* ── Responsive: Mid-desktop ── */
@media (min-width: 1001px) and (max-width: 1200px) {
  .highlight-hero .riff-card { width: 180px; left: 0; }
  .hero-tabs { width: 180px; right: -8px; padding: 15px; }
  .hero-tabs pre { font-size: 10px; }
  .highlight-hero .set-card { width: 196px; right: -8px; top: 265px; }
  .hero-chat { width: 185px; left: -6px; padding: 14px; top: 322px; }
  .hero-files { width: 180px; right: -5px; padding: 13px; bottom: 3px; }

  .highlight-hero .rehearsal-ticket {
    padding: 10px 12px;
    gap: 10px;
    left: -6px;
    bottom: 32px;
  }

  .rehearsal-ticket .ticket-star { display: none; }
  .rehearsal-ticket > span { font-size: 12px; }
}

/* ── Responsive: Tablet ── */
@media (max-width: 1000px) {
  .highlight-hero {
    max-width: 580px !important;
    min-height: 590px !important;
    margin-top: 50px !important;
  }
  .hero { padding-bottom: 65px; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 600px) {
  .highlight-hero {
    min-height: 580px !important;
    margin-top: 42px !important;
  }

  .highlight-hero .hero-vinyl {
    width: 320px;
    height: 320px;
    margin-left: -160px;
    top: 150px;
  }

  .hero-logo { width: 220px; height: 220px; top: 174px; }

  .highlight-hero .riff-card { left: -5px; top: 3px; width: 160px; padding: 14px; }
  .hero-tabs { right: -4px; top: 27px; width: 158px; padding: 13px; }
  .hero-tabs pre { font-size: 9px; line-height: 1.8; margin: 14px 0 10px; }
  .hero .micro-label { font-size: 7px; letter-spacing: .6px; }
  .hero-tabs small { font-size: 8px; }

  .highlight-hero .set-card { right: -5px; top: 346px; width: 175px; padding: 12px; }
  .highlight-hero .set-card > div:not(.micro-label) { font-size: 9px; }

  .hero-chat { top: 310px; left: -6px; width: 155px; padding: 12px; }
  .hero-message { font-size: 10px; gap: 6px; margin-top: 13px; }
  .hero-message i { width: 23px; height: 23px; }

  .hero-files { width: 150px; right: -4px; bottom: 0; padding: 13px; }
  .file-formats { gap: 5px; margin-top: 13px; }
  .file-formats span { font-size: 8px; padding: 6px; }

  .highlight-hero .rehearsal-ticket {
    left: -3px;
    bottom: 10px;
    width: 165px;
    padding: 11px;
    gap: 9px;
  }

  .highlight-hero .rehearsal-ticket > div { padding-right: 8px; }
  .highlight-hero .rehearsal-ticket > div > b { font-size: 28px; }
  .highlight-hero .rehearsal-ticket > span { font-size: 10px; }
  .highlight-hero .rehearsal-ticket small { font-size: 8px; }
  .highlight-hero .ticket-star { display: none; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-logo img,
  .hero-tabs,
  .hero-chat,
  .hero-files {
    animation: none;
  }
}
