/* iHussle — PROLIFIC
   Concrete / black / Marathon blue design system. */

:root {
  --concrete-100: #F2F2F0;
  --concrete-300: #D8D8D4;
  --concrete-600: #8E908C;
  --black: #090909;
  --blue: #0757B8;
  --deep-blue: #061B69;
  --light-blue: #BDEBFF;
  --gold: #C6A547;
  --silver: #BFC3C6;
  --font-display: 'bebas-neue', 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--concrete-100);
  color: var(--black);
  font-family: var(--font-body);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(9, 9, 9, .035), transparent 24rem),
    linear-gradient(90deg, rgba(9, 9, 9, .04), transparent 32%);
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(9, 9, 9, .18);
  background: rgba(242, 242, 240, .88);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .02em;
}

.site-header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.site-header nav a { text-decoration: none; }

.nav-button {
  background: var(--black);
  color: var(--concrete-100);
  padding: 10px 14px;
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--black);
  transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 92vh;
  padding: 76px 5vw 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 6vw;
  align-items: end;
}

.eyebrow,
.section-kicker {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--blue);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 20vw, 285px);
  overflow-wrap: break-word;
  line-height: .78;
  letter-spacing: -.05em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

/* PROLIFIC wordmark used as the hero header */
.hero-title { margin: 0 0 26px; line-height: 0; }
.hero-title img { display: block; width: min(760px, 100%); height: auto; }

/* Two videos shown under the hero logo (light background) */
.hero-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 6px 0 28px;
}
.hero-videos .video-card { background: #fff; border: 1px solid rgba(9, 9, 9, .14); }
.hero-videos .video-meta h3 { color: var(--black); }
@media (max-width: 760px) { .hero-videos { grid-template-columns: 1fr; } }

/* Solid button color variants */
.btn-blue { background: var(--blue); color: #fff; border: 0; }
.btn-dark { background: var(--black); color: var(--concrete-100); border: 0; }
.btn-gold { background: var(--gold); color: var(--black); border: 0; }

/* Hero call-to-action buttons — bold, high-contrast, easy to spot */
.hero-cta { gap: 12px; margin: 4px 0 30px; }
.hero-cta .button { padding: 17px 26px; font-size: 14px; box-shadow: 0 6px 18px rgba(9, 9, 9, .14); }
.hero-cta .button:hover { transform: translateY(-1px); }
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .button { width: 100%; }
}

/* Video-card streaming links (brand-coloured icons) + album CTAs */
.brand-icons { position: absolute; width: 0; height: 0; overflow: hidden; }
.track-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.plat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(9, 9, 9, .16);
  background: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--black);
}
.plat .ic { width: 15px; height: 15px; flex: none; }
.plat--yt .ic { fill: #FF0000; }
.plat--sp .ic { fill: #1DB954; }
.plat--am .ic { fill: #FA243C; }
.plat:hover { border-color: var(--black); }
.track-cta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.track-cta .button { padding: 12px 16px; font-size: 11px; }

.hero-line {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.28;
  max-width: 760px;
  margin: 0 0 30px;
}

.hero-actions,
.offer-grid,
.road-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  border: 0;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: 13px;
  padding: 15px 20px;
  display: inline-flex;
  justify-content: center;
  cursor: pointer;
}

.primary { background: var(--blue); color: white; }

.ghost { border: 1px solid var(--black); }

/* Drop card */
.drop-card {
  background: var(--black);
  color: var(--concrete-100);
  padding: 24px;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drop-title,
.drop-meta,
.tag,
.album p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  color: var(--concrete-600);
}

.drop-name {
  font-family: var(--font-display);
  font-size: clamp(46px, 12vw, 78px);
  line-height: .9;
}

.drop-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.drop-meta span {
  border: 1px solid rgba(242, 242, 240, .25);
  padding: 8px;
}

.object-stack {
  height: 250px;
  position: relative;
  margin: 30px 0;
  overflow: hidden;
}

.vinyl {
  position: absolute;
  inset: 30px 40px 20px auto;
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--concrete-100) 0 9%, var(--black) 10% 21%, #1c1c1c 22% 29%, var(--black) 30% 100%);
  border: 1px solid #333;
}

.sleeve {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 205px;
  height: 205px;
  background: linear-gradient(135deg, var(--concrete-300), var(--concrete-100));
  color: var(--black);
  display: grid;
  place-items: center;
  border: 2px solid var(--concrete-100);
}

.sleeve span {
  font-family: var(--font-display);
  font-size: 42px;
  transform: rotate(-90deg);
}

.cassette {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 190px;
  height: 70px;
  border: 2px solid var(--blue);
  background: var(--deep-blue);
}

/* Ticker */
.ticker {
  margin: 70px -5vw 0;
  border-top: 1px solid rgba(9, 9, 9, .2);
  border-bottom: 1px solid rgba(9, 9, 9, .2);
  display: flex;
  overflow: hidden;
}

.ticker span {
  padding: 16px 32px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .15em;
  white-space: nowrap;
}

/* Sections */
.section-dark {
  background: var(--black);
  color: var(--concrete-100);
  padding: 76px 5vw;
}

.road h2,
.story h2,
.offers h2,
.catalog h2,
.join h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .9;
  font-size: clamp(54px, 8vw, 118px);
  margin: 0 0 28px;
}

/* Road */
.road-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(242, 242, 240, .18);
}

.road article {
  background: var(--black);
  padding: 28px;
  min-height: 230px;
}

.road span { color: var(--blue); font-weight: 900; }

.road h3,
.offer h3,
.album h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1;
  margin: 18px 0 12px;
}

/* Story */
.story {
  padding: 86px 5vw;
}

.story-copy {
  max-width: 900px;
}

.story-copy p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.55;
  max-width: 660px;
}

/* Proof stats: a stacked column on the right, each tied to its cover art */
.proof-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(9, 9, 9, .18);
  border: 1px solid rgba(9, 9, 9, .18);
}

.proof-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--concrete-300);
  padding: 16px 18px;
}

.proof-stat img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  flex: none;
  background: var(--concrete-600);
}

.proof-stat .proof-text {
  min-width: 0;
}

.proof-grid strong {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: .95;
  display: block;
}

.proof-grid span {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .13em;
  color: var(--black);
}

/* Offers */
.section-blue {
  background: var(--deep-blue);
  color: white;
  padding: 76px 5vw;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer {
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 24px;
  min-height: 300px;
}

.offer.featured { background: var(--blue); }

.offer a {
  display: inline-block;
  margin-top: 18px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
}

/* Catalog */
.catalog { padding: 86px 5vw; }

.catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}

.text-link {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.album {
  background: var(--concrete-300);
  min-height: 370px;
  display: flex;
  flex-direction: column;
}

.album img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(.75) contrast(1.08);
}

.album div { padding: 18px; }

.album.hero-album {
  grid-column: span 2;
  grid-row: span 2;
}

.album.text-only {
  justify-content: end;
  background: var(--black);
  color: var(--concrete-100);
}

.album a {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
}

/* Join / lead form */
.join {
  padding: 86px 5vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5vw;
  background: var(--concrete-300);
  border-top: 1px solid rgba(9, 9, 9, .2);
}

.join-copy p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.45;
}

.lead-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  background: var(--concrete-100);
  border: 1px solid rgba(9, 9, 9, .25);
  border-radius: 0;
  font: inherit;
}

.lead-form .sms,
.lead-form .check,
.lead-form button,
.lead-form .fine,
.lead-form .success {
  grid-column: 1 / -1;
}

.check,
.lead-form .check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
  /* Consent language is legal text — sentence case for legibility, overriding
     the uppercase styling field labels inherit from .lead-form label. */
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 13px;
  color: #333;
}

.check input {
  width: auto;
  margin-top: 0;
}

.fine {
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: #444;
}

.success {
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.error {
  font-weight: 700;
  color: #b00020;
  letter-spacing: 0;
  text-transform: none;
}

/* Honeypot — kept in the DOM for bots, hidden from real users.
   Hidden via clip (not off-screen positioning) so it never adds page width. */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Footer */
.footer {
  padding: 28px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--black);
  color: var(--concrete-100);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .story,
  .join {
    grid-template-columns: 1fr;
  }

  .drop-card { min-height: 420px; }

  .road-grid,
  .offer-grid,
  .album-grid {
    grid-template-columns: 1fr;
  }

  .album.hero-album {
    grid-column: auto;
    grid-row: auto;
  }

  .catalog-head,
  .footer { display: block; }

  .lead-form { grid-template-columns: 1fr; }

  .proof-stat { padding: 14px 14px; gap: 14px; }

  .proof-stat img { width: 64px; height: 64px; }

  .proof-grid strong { font-size: clamp(34px, 9vw, 52px); }

  .hero { padding-top: 50px; }

  .video-grid { grid-template-columns: 1fr; }

  .popup-card { padding: 30px 24px; }
}

@media (max-width: 760px) {
  .site-header { padding: 14px 20px; }

  .nav-toggle { display: flex; }

  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0;
    background: var(--concrete-100);
    border-bottom: 1px solid rgba(9, 9, 9, .18);
    box-shadow: 0 18px 32px rgba(9, 9, 9, .22);
  }

  .site-header nav[data-open="true"] { display: flex; }

  .site-header nav a {
    padding: 15px 22px;
    font-size: 14px;
    border-top: 1px solid rgba(9, 9, 9, .08);
  }

  .site-header nav a:first-child { border-top: 0; }

  .site-header nav .nav-button {
    background: none;
    color: inherit;
  }
}

/* Videos */
.videos h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .9;
  font-size: clamp(54px, 8vw, 118px);
  margin: 0 0 28px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.video-card {
  background: rgba(242, 242, 240, .06);
  border: 1px solid rgba(242, 242, 240, .16);
  display: flex;
  flex-direction: column;
}

.video-thumb {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(7, 87, 184, .55), transparent 60%),
    linear-gradient(135deg, #111 0%, #000 100%);
}

.video-thumb span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--concrete-100);
  opacity: .9;
}

.video-meta { padding: 20px; }

.video-meta p {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--concrete-600);
  margin: 0 0 6px;
}

.video-meta h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 30px;
  margin: 0 0 16px;
}

.section-dark .button.ghost { border-color: rgba(242, 242, 240, .5); }

/* All-releases page */
.releases-intro h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .9;
  font-size: clamp(64px, 12vw, 160px);
  margin: 8px 0 22px;
}

.releases-lead {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--concrete-300);
}

.site-header nav a[aria-current="page"] { color: var(--blue); }

/* Pinned catalog badge */
.album { position: relative; }

.pin {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--blue);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 10px;
}

/* Run-a-lap popup */
.popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 9, 9, .72);
  backdrop-filter: blur(4px);
}

.popup[hidden] { display: none; }

.popup-card {
  position: relative;
  max-width: 460px;
  width: 100%;
  background: var(--concrete-100);
  border-top: 6px solid var(--blue);
  padding: 40px 36px;
}

.popup-card h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .92;
  font-size: clamp(40px, 7vw, 60px);
  margin: 6px 0 14px;
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
}

/* PROLIFIC design-system upgrade modules */
.prolific-wordmark { display: block; width: min(420px, 100%); margin: 8px 0 18px; filter: drop-shadow(0 14px 32px rgba(255,255,255,.08)); }
.drop-blurb { color: var(--concrete-300); font-size: 15px; line-height: 1.55; margin: 0; max-width: 42ch; }
.offers-lead { max-width: 640px; font-size: 18px; line-height: 1.5; margin: 0 0 6px; color: rgba(255, 255, 255, .82); }
.video-grid--visual { align-items: stretch; }
.video-card--visual { overflow: hidden; }
.video-thumb--image { position: relative; display: block; min-height: 0; aspect-ratio: 16 / 9; background: var(--black); color: white; text-decoration: none; }
.video-thumb--image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.05); }
.video-thumb--image span { position: absolute; left: 16px; bottom: 16px; background: var(--blue); color: white; padding: 10px 12px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.mini-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.mini-actions .button { padding: 11px 13px; font-size: 11px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 26px; }
.product-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); min-height: 100%; display: flex; flex-direction: column; }
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: rgba(255,255,255,.94); padding: 12px; }
.product-card div { padding: 20px; }
.product-card h3 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); line-height: .95; text-transform: uppercase; margin: 10px 0 16px; }
.product-card a { text-transform: uppercase; font-weight: 900; letter-spacing: .12em; }
.offer-grid--lanes { margin-top: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.album-tile { background: var(--concrete-300); min-height: 100%; display: flex; flex-direction: column; }
.album-tile img { aspect-ratio: 1 / 1; object-fit: cover; filter: saturate(.75) contrast(1.08); }
.album-tile__body { padding: 18px; }
.album-tile__kind { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; font-weight: 900; color: var(--concrete-600); }
.album-tile__title { font-family: var(--font-display); text-transform: uppercase; font-size: 34px; line-height: 1; margin: 12px 0; }
.album-tile__links { display: flex; gap: 10px; flex-wrap: wrap; }
.album-tile__action { text-transform: uppercase; font-weight: 900; letter-spacing: .12em; font-size: 12px; }
.album-grid[data-catalog-grid] { align-items: stretch; }
@media(max-width: 1000px){ .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media(max-width: 640px){ .product-grid, .offer-grid--lanes { grid-template-columns: 1fr; } }

/* Next Project package cleanup */
.drop-card--packages { gap: 18px; justify-content: flex-start; }
.drop-card--packages .prolific-wordmark { margin-bottom: 4px; }
.hero-package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 4px 0 6px; }
.hero-package-card { display: flex; flex-direction: column; gap: 8px; padding: 8px; background: rgba(242,242,240,.08); border: 1px solid rgba(242,242,240,.18); color: var(--concrete-100); text-decoration: none; min-width: 0; }
.hero-package-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: rgba(242,242,240,.96); padding: 6px; }
.hero-package-card span { font-size: 10px; line-height: 1.2; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; color: var(--concrete-100); }
@media(max-width: 520px){ .hero-package-grid { grid-template-columns: 1fr; } }

/* Latest videos directly under pre-order packages */
.videos--after-packages { margin-top: 34px; padding: 0; background: transparent; color: white; }
.videos--after-packages .section-kicker { color: var(--light-blue); }
.videos--after-packages h2 { color: white; }
.videos--after-packages .video-grid { margin-top: 20px; }
@media(max-width: 760px) {
  .video-grid,
  .video-grid--visual,
  .product-grid,
  .album-grid[data-catalog-grid] { grid-template-columns: 1fr !important; }
}

/* Clean clickable catalog/video cards */
.album-tile,
.album-tile:hover,
.album-tile:focus,
.album-tile:visited,
.video-card--clickable,
.video-card--clickable:hover,
.video-card--clickable:focus,
.video-card--clickable:visited {
  text-decoration: none !important;
}
.album-tile *,
.album-tile:hover *,
.album-tile:focus *,
.video-card--clickable *,
.video-card--clickable:hover *,
.video-card--clickable:focus * {
  text-decoration: none !important;
}
.video-card--clickable { display: block; color: inherit; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.video-card--clickable:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.video-card--clickable:focus-visible { outline: 3px solid var(--blue, #1f7aff); outline-offset: 4px; }
.video-card--clickable .video-meta { display: block; }
.video-card--clickable .video-meta span,
.video-card--clickable .video-meta strong { display: block; }
.social-strip { margin: 56px clamp(18px, 4vw, 56px) 0; padding: 28px; background: var(--black); color: var(--concrete-100); border-top: 4px solid var(--blue); }
.social-strip .eyebrow { color: var(--blue); margin-bottom: 14px; }
.social-strip__links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-strip__links a { color: var(--concrete-100); text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900; border: 1px solid rgba(255,255,255,.24); padding: 10px 12px; }
.social-strip__links a:hover { background: var(--blue); color: #fff; }

/* Desktop polish pass: tighter headers, split hero, integrated footer links */
@media (min-width: 900px) {
  .hero { padding: 72px 5vw 56px; }
  .hero-shell { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr); gap: clamp(32px, 5vw, 76px); align-items: center; }
  .hero-title img { width: 100%; }
  .hero-line { max-width: none; font-size: clamp(16px, 1.35vw, 21px); line-height: 1.55; }
  .hero-videos { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
  .hero-project-card { background: var(--black); color: var(--concrete-100); padding: 18px; border: 1px solid rgba(9,9,9,.16); box-shadow: 0 28px 80px rgba(9,9,9,.22); transform: rotate(1deg); }
  .hero-project-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: var(--concrete-100); padding: 14px; }
  .hero-project-card p { margin: 14px 0 0; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 900; }
  .hero h1, .story h2, .offers h2, .join h2, .catalog h2 { letter-spacing: .045em; }
  .story h2, .offers h2, .join h2, .catalog h2 { font-size: clamp(34px, 4.4vw, 72px); line-height: 1.02; }
}
.video-card--clickable .video-meta strong { font-family: var(--font-display); text-transform: uppercase; font-size: 34px; line-height: 1; letter-spacing: .02em; color: var(--black); margin-top: 8px; }
.video-card--clickable .video-meta span { color: var(--concrete-600); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer, .kit-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-social a { color: inherit; text-decoration: none; border: 1px solid currentColor; border-radius: 999px; min-width: 34px; min-height: 34px; display: inline-flex; align-items: center; justify-content: center; padding: 7px 9px; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-social--icons a { width: 38px; height: 38px; padding: 0; }
.footer-social--icons svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.footer-social .footer-privacy-link { width: auto; min-width: 0; padding: 0 12px; font-size: 11px; letter-spacing: .08em; }
@media (max-width: 899px) { .hero-project { margin-top: 28px; } .hero-project-card { background: var(--black); color: var(--concrete-100); padding: 14px; } .hero-project-card img { background: var(--concrete-100); padding: 10px; } .hero-project-card p { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; } }

/* Hero final layout: copy + album art, videos below */
@media (min-width: 900px) {
  .hero-shell { grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr); align-items: stretch; }
  .hero-copy { display: flex; flex-direction: column; justify-content: center; min-height: 620px; }
  .hero-project { display: flex; align-items: stretch; justify-content: center; min-height: 620px; }
  .hero-album-art { width: 100%; height: 100%; max-height: 680px; object-fit: contain; background: var(--concrete-100); filter: drop-shadow(0 30px 70px rgba(9,9,9,.24)); }
  .hero-videos { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; margin-top: clamp(34px, 5vw, 72px); gap: clamp(18px, 3vw, 34px); }
  .hero-videos .video-thumb--image { min-height: 300px; }
}
@media (max-width: 899px) {
  .hero-videos { grid-template-columns: 1fr; }
  .hero-album-art { width: 100%; object-fit: contain; filter: drop-shadow(0 18px 40px rgba(9,9,9,.18)); }
}

/* Use album art in hero, not fan-pack ecommerce mockup */
.hero-album-art--mobile { display: none; }
@media (min-width: 900px) {
  .hero-album-art--desktop { display: block; }
  .hero-album-art--mobile { display: none !important; }
}
@media (max-width: 899px) {
  .hero-project { display: none; }
  .hero-album-art--mobile { display: block; margin: 18px 0 22px; }
}
@media (max-width: 899px) { .hero-album-art--desktop { display: none !important; } }

.spotify-countdown-note {
  margin-top: 10px;
  max-width: 42rem;
  color: rgba(9,9,9,.68);
  font-size: 13px;
  line-height: 1.45;
}

/* Original iHussle typography mapping */
:root {
  /* Max content width on large screens (backgrounds stay full-bleed) */
  --content-max: 1400px;
}

/* Hero art no-bars spacing */
@media (min-width: 900px) {
  .hero-shell { grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr); }
  .hero-album-art { object-fit: cover; background: transparent; }
}
@media (max-width: 899px) {
  .hero-album-art { object-fit: cover; background: transparent; }
}

.button-disabled {
  opacity: .72;
  cursor: not-allowed;
  pointer-events: none;
}

/* Keep hero album art square and uncropped at every breakpoint */
.hero-album-art {
  aspect-ratio: 1 / 1;
  object-fit: contain !important;
  background: transparent !important;
  width: min(100%, 620px);
  height: auto !important;
  max-height: none !important;
}
@media (min-width: 900px) {
  .hero-project {
    align-items: center;
  }
  .hero-album-art--desktop {
    width: min(100%, 620px);
  }
}
@media (max-width: 899px) {
  .hero-album-art--mobile {
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }
}

/* Normalize preorder/product cards: 4x1 desktop, 2x2 medium, 1x4 mobile */
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch;
}
.product-card,
.product-card--feature {
  grid-column: auto !important;
  height: 100%;
  min-height: 100%;
}
.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.product-card div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card a {
  margin-top: auto;
}
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr !important; }
}
.product-card h3,
.product-card .album-tile__title {
  min-height: 2.1em;
}

/* Mobile album art safety: show full artwork with breathing room */
@media (max-width: 899px) {
  .hero-copy {
    overflow: visible;
  }
  .hero-album-art--mobile {
    display: block;
    width: min(88vw, 360px);
    max-width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: contain !important;
    margin: 24px auto 32px;
    padding: 0;
    transform: none !important;
    position: relative;
    z-index: 1;
  }
}

/* Official PROLIFIC album art: preserve full cover, no crop */
.hero-album-art {
  aspect-ratio: 1 / 1;
  object-fit: contain !important;
  background: transparent !important;
}
@media (min-width: 900px) {
  .hero-album-art--desktop {
    width: min(100%, 620px);
    max-width: 620px;
  }
}
@media (max-width: 899px) {
  .hero-album-art--mobile {
    width: min(88vw, 390px);
    height: auto !important;
    object-fit: contain !important;
  }
}

/* Catalog card equal sizing */
.album-grid[data-catalog-grid],
.kit-albumgrid[data-catalog-grid] {
  align-items: stretch;
}
.album-tile {
  height: 100%;
  min-height: 100%;
}
.album-tile__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.album-grid[data-catalog-grid] .album-tile__title,
.kit-albumgrid[data-catalog-grid] .album-tile__title,
.album-grid[data-catalog-grid] .album-tile--feature .album-tile__title,
.kit-albumgrid[data-catalog-grid] .album-tile--feature .album-tile__title {
  font-size: 34px !important;
  line-height: 1;
  margin: 8px 0 10px;
  min-height: 2.1em;
}
.album-tile__kind {
  min-height: 1.25em;
}
.album-tile--feature {
  grid-column: auto !important;
}
.album-tile--feature .album-tile__title {
  font-size: 34px !important;
}
@media (min-width: 900px) {
  .album-tile--feature .album-tile__title {
    font-size: clamp(26px, 2.1vw, 34px) !important;
  }
}
.album-tile--feature img {
  aspect-ratio: 1 / 1 !important;
}
.album-tile--feature {
  min-height: 0 !important;
}
.kit-albumgrid[data-catalog-grid] .album-tile--feature,
.album-grid[data-catalog-grid] .album-tile--feature {
  grid-row: auto !important;
}

.spotify-embed-section {
  margin: 44px clamp(18px, 4vw, 56px);
  padding: clamp(20px, 4vw, 36px);
  background: var(--black);
  color: var(--concrete-100);
  border-top: 4px solid var(--blue);
}
.spotify-embed-section h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .045em;
  font-size: clamp(34px, 4vw, 68px);
  line-height: 1;
  margin: 8px 0 22px;
}
.spotify-embed-section iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #121212;
}

.video-platforms {
  display: flex !important;
  gap: 8px;
  margin-top: 10px;
}
.video-platforms a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--concrete-100);
  border: 1px solid rgba(9,9,9,.18);
  text-decoration: none !important;
}
.video-platforms a:hover {
  background: var(--blue);
  color: #fff;
}
.platform-ic {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.release-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 22px 0 20px;
}
.release-countdown div {
  background: var(--black);
  color: var(--concrete-100);
  border-top: 4px solid var(--blue);
  padding: 14px 10px;
  text-align: center;
}
.release-countdown strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 62px);
  line-height: .9;
  letter-spacing: .03em;
}
.release-countdown span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
@media (max-width: 520px) {
  .release-countdown { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Hero formatting cleanup */
.hero {
  overflow: visible;
}
@media (min-width: 900px) {
  .hero {
    padding-top: 54px;
    padding-bottom: 48px;
  }
  .hero-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
  }
  .hero-copy {
    min-height: 0 !important;
    justify-content: center;
  }
  .hero-project {
    min-height: 0 !important;
    align-items: center;
  }
  .hero-title {
    margin-bottom: 18px;
  }
  .hero-line {
    max-width: none;
    margin-bottom: 16px;
  }
  .release-countdown {
    max-width: none;
    margin: 18px 0 18px;
    gap: 8px;
  }
  .release-countdown div {
    padding: 12px 8px;
  }
  .release-countdown strong {
    font-size: clamp(36px, 3.4vw, 54px);
  }
  .hero-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: none;
  }
  .hero-cta .button {
    justify-content: center;
    text-align: center;
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-album-art--desktop {
    width: min(100%, 560px) !important;
    max-width: 560px !important;
  }
  .hero-videos {
    margin-top: 46px;
  }
}
@media (max-width: 899px) {
  /* Hero mobile: single source of truth for vertical rhythm.
     Consistent ~18px gaps between copy blocks, a clear ~36px break
     before the video cards, and real breathing room top and bottom. */
  .hero {
    min-height: 0;
    padding: 28px 5vw 44px;
  }
  .eyebrow {
    margin-bottom: 14px;
  }
  .hero-title {
    margin-bottom: 18px;
  }
  .hero-album-art--mobile {
    width: 100%;
    margin: 4px 0 22px;
  }
  .hero-line {
    margin: 0 0 20px;
  }
  .release-countdown {
    margin: 0 0 22px;
    gap: 8px;
  }
  .release-countdown div {
    padding: 12px 8px;
  }
  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0;
  }
  .hero-videos {
    margin: 36px 0 0;
  }
}

/* Hero: contain the content on very wide screens so the two columns
   don't stretch apart and leave a dead gulf in the middle. No effect
   below ~1400px (still full-bleed minus the 5vw gutters). */
@media (min-width: 900px) {
  .hero-shell,
  .hero-videos {
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(32px, 3vw, 52px);
    align-items: center;
  }
  .hero-line {
    max-width: none;
  }
  .hero-album-art--desktop {
    width: 100% !important;
    max-width: 600px !important;
  }
}

/* Cap the whole site on large screens: section backgrounds stay
   full-bleed, but their content centers at --content-max. Below the
   cap nothing changes — existing 5vw / 28px gutters are preserved. */
@media (min-width: 900px) {
  .hero,
  .section-blue,
  .section-dark,
  .story,
  .catalog,
  .join,
  .footer {
    padding-left: max(5vw, calc((100% - var(--content-max)) / 2));
    padding-right: max(5vw, calc((100% - var(--content-max)) / 2));
  }
  .site-header {
    padding-left: max(28px, calc((100% - var(--content-max)) / 2));
    padding-right: max(28px, calc((100% - var(--content-max)) / 2));
  }
  .spotify-embed-section {
    margin-left: max(clamp(18px, 4vw, 56px), calc((100% - var(--content-max)) / 2));
    margin-right: max(clamp(18px, 4vw, 56px), calc((100% - var(--content-max)) / 2));
  }
}

/* Pre-order cards: unify homepage + release/all-releases pages.
   Translucent cards on blue, white "Fan pack" tag, the pre-order link
   as a button, and the whole card clickable. Scoped to .offers so it
   wins over the dark .product-card styling in site.css on subpages. */
.offers .product-card {
  position: relative;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.offers .product-card img {
  object-fit: contain;
  background: rgba(255, 255, 255, .94);
  padding: 12px;
}
.offers .product-card div {
  padding: 20px;
}
.offers .product-card .tag {
  color: #fff;
}
.offers .product-card h3 {
  color: #fff;
}
.offers .product-card a {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: #fff;
  color: var(--deep-blue);
  border: 1px solid #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  border-radius: 0;
  transition: background .15s ease, color .15s ease;
}
/* Stretched link: makes the entire card a click target */
.offers .product-card a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.offers .product-card:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .5);
}
.offers .product-card:hover a {
  background: transparent;
  color: #fff;
}
.offers .product-card a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Hero refinements: countdown sits above a bordered text area, and the
   three CTAs share one clean single row on desktop. */
.hero-line {
  border: 1px solid rgba(9, 9, 9, .14);
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, .55);
  padding: 16px 20px;
}
@media (min-width: 901px) {
  .hero-cta {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .hero-cta .button {
    flex: 1 1 0;
    min-width: 0;
    padding: 15px 12px;
    font-size: 12px;
    letter-spacing: .06em;
    white-space: nowrap;
    text-align: center;
  }
}

/* Unified legal footer — aligned with music.xaviertopfloor.com */
.footer {
  padding: 32px 5vw;
  border-top: 1px solid rgba(255,255,255,.10);
  background: var(--black);
  color: rgba(242,242,240,.62);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer strong,
.footer span {
  color: rgba(242,242,240,.62);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.footer strong::before { content: '© 2026 '; }
.footer strong::after { content: '. All Rights Reserved.'; }
.footer > span { display: none; }

.footer-icons {
  order: -2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242,242,240,.36);
  border-radius: 999px;
  color: rgba(242,242,240,.76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.footer-icons a:hover,
.footer-icons a:focus-visible {
  color: var(--concrete-100);
  border-color: var(--concrete-100);
  background: rgba(255,255,255,.08);
}
.footer-icons svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  text-align: center;
}
.footer-legal a {
  color: rgba(242,242,240,.62);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: color .18s ease;
}
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--concrete-100); }
.osano-cm-widget { display: none !important; }
@media (max-width: 760px) {
  .footer { flex-direction: column; align-items: center; text-align: center; padding: 30px 24px; }
  .footer-legal { flex-direction: column; gap: 8px; }
}

/* Final footer ordering: icons directly above copyright, legal links below. */
.footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-icons {
  order: 1;
  width: 100%;
  margin: 0 0 2px;
}
.footer strong { order: 2; }
.footer-legal { order: 3; }

/* Keep browser overscroll / area below footer the same black as the footer. */
html { background: var(--black); }
body { background-color: var(--concrete-100); }
.footer { margin-bottom: 0; }

