@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --bg: #020203;
  --bg-soft: #080809;
  --panel: rgba(12, 12, 14, 0.72);
  --panel-strong: rgba(18, 18, 20, 0.88);
  --text: #f4f2ee;
  --text-soft: rgba(244, 242, 238, 0.68);
  --muted: rgba(244, 242, 238, 0.44);
  --chrome: #d8d8d2;
  --chrome-deep: #7c8286;
  --accent: #9f1018;
  --accent-bright: #d31d28;
  --accent-soft: rgba(159, 16, 24, 0.18);
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.62);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 240ms cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.035), transparent 31%),
    linear-gradient(180deg, #020203 0%, #080707 47%, #020203 100%);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

body::before {
  opacity: 0.23;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1px);
  background-size: 4px 4px, 7px 7px;
  mix-blend-mode: screen;
}

body::after {
  opacity: 0.55;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent),
    linear-gradient(180deg, transparent 0%, rgba(159, 16, 24, 0.08) 42%, transparent 72%);
}

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 2, 3, 0.78);
  backdrop-filter: blur(24px);
}

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand,
.footer-brand {
  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 0 22px rgba(216, 216, 210, 0.2);
}

.brand::after {
  content: "";
  display: inline-block;
  width: 0.32rem;
  height: 0.32rem;
  margin-left: 0.22rem;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 18px rgba(211, 29, 40, 0.7);
  vertical-align: middle;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(1.1rem, 3vw, 2.7rem);
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a,
.footer-links a,
.text-link,
.section-link,
.button,
.beat-actions button,
.cart-item-actions button,
.player-track,
.player-time,
.section-label,
.breadcrumb,
.trusted-by span,
.beat-meta,
.beat-price,
.contact-card h3,
.info-card span,
.loop-card-label {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.main-nav a,
.footer-links a,
.text-link,
.section-link {
  font-size: 0.58rem;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), border-color var(--transition);
}

.main-nav a {
  color: rgba(244, 242, 238, 0.58);
  font-weight: 400;
}

.main-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-link,
.icon-button,
.play-button {
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.icon-link {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  text-decoration: none;
}

.icon-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.icon-link:hover,
.icon-button:hover,
.play-button:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 216, 210, 0.44);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 28px rgba(216, 216, 210, 0.08);
}

.button {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(178, 181, 182, 0.86) 48%, rgba(255, 255, 255, 0.92));
  color: #040405;
  box-shadow: 0 18px 44px rgba(216, 216, 210, 0.1);
}

.button-primary:hover {
  border-color: var(--text);
  box-shadow: 0 0 34px rgba(216, 216, 210, 0.18);
}

.button-secondary,
.button-outline {
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  border-color: var(--border);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: rgba(211, 29, 40, 0.55);
  color: var(--text);
  box-shadow: 0 0 30px rgba(159, 16, 24, 0.12);
}

.cart-button {
  min-width: 6.8rem;
}

.header-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 216, 210, 0.28), rgba(159, 16, 24, 0.28), transparent);
}

.hero {
  position: relative;
  min-height: calc(100svh - 77px);
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 64px, 64px 100%;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 3, 0.88), rgba(2, 2, 3, 0.34) 45%, rgba(2, 2, 3, 0.92)),
    radial-gradient(ellipse at 74% 44%, rgba(216, 216, 210, 0.14), transparent 48%),
    radial-gradient(ellipse at 30% 76%, rgba(159, 16, 24, 0.12), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(2.4rem, 7vw, 6rem);
  align-items: center;
}

.hero-inner > * {
  min-width: 0;
}

.hero-object-scene {
  justify-self: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.breadcrumb,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(216, 216, 210, 0.62);
  font-size: 0.68rem;
  font-weight: 500;
}

.breadcrumb {
  margin: 0 0 1.45rem;
}

.breadcrumb::before,
.section-label::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(216, 216, 210, 0.42));
}

.hero h1,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  line-height: 0.86;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 6.5rem);
}

.hero-title {
  display: block;
}

.hero-title.chrome,
.hero-title.white {
  color: var(--text);
}

.hero-title.red,
.hero-title.dark {
  color: transparent;
  background: linear-gradient(112deg, #f4f2ee, #848b8f 32%, #f4f2ee 54%, #541015 84%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  max-width: 40rem;
  margin: 2rem 0 2.25rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.trusted-by {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.trusted-by span {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
}

.trusted-list {
  margin-top: 0.32rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-object-scene {
  --mx: 0px;
  --my: 0px;
  --object-drift-x: calc(var(--mx) * 0.06);
  --object-drift-y: calc(var(--my) * 0.06);
  position: relative;
  min-height: clamp(440px, 61vw, 680px);
  display: grid;
  place-items: center;
  perspective: 1400px;
  isolation: isolate;
}

.hero-object-scene::before {
  content: "";
  position: absolute;
  width: min(76vw, 620px);
  height: min(76vw, 620px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  background:
    conic-gradient(from 132deg, transparent, rgba(216, 216, 210, 0.16), transparent 32%, rgba(159, 16, 24, 0.18), transparent 58%),
    radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 62%);
  filter: blur(0.2px);
  transform: translate3d(var(--object-drift-x), var(--object-drift-y), 0);
}

.hero-object-scene::after {
  content: "";
  position: absolute;
  bottom: 6%;
  width: min(56vw, 460px);
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(216, 216, 210, 0.16), rgba(159, 16, 24, 0.09) 34%, transparent 68%);
  filter: blur(12px);
  transform: rotateX(66deg);
}

.logo-orbit {
  position: relative;
  width: clamp(280px, 38vw, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform:
    translate3d(var(--object-drift-x), var(--object-drift-y), 0)
    rotateX(7deg)
    rotateY(-10deg);
  will-change: transform;
}

.logo-orbit::before,
.logo-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.logo-orbit::before {
  inset: 7%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(159, 16, 24, 0.2) 36%, transparent 72%);
  filter: blur(20px);
  opacity: 0.82;
  transform: translateZ(-70px);
}

.logo-orbit::after {
  inset: 18%;
  background: radial-gradient(circle, rgba(216, 216, 210, 0.24), rgba(255, 255, 255, 0.08) 44%, transparent 74%);
  filter: blur(42px);
  opacity: 0.58;
}

.logo-orbit__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.logo-orbit__image {
  display: block;
  width: min(88%, 500px);
  height: auto;
  object-position: center center;
  object-fit: contain;
  transform-origin: 50% 50%;
  transform-box: border-box;
  animation: logoSpin 24s linear infinite;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 26px rgba(255, 255, 255, 0.16))
    drop-shadow(0 0 48px rgba(159, 16, 24, 0.3))
    drop-shadow(0 0 74px rgba(216, 216, 210, 0.16));
  will-change: transform, filter;
}

.chrome-sculpture {
  position: relative;
  width: clamp(270px, 38vw, 510px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: sculptureDrift 24s linear infinite;
  filter:
    drop-shadow(0 48px 70px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 30px rgba(216, 216, 210, 0.14));
}

.chrome-ring,
.chrome-core,
.chrome-blade {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.chrome-ring {
  border-radius: 50%;
  background:
    conic-gradient(from 80deg, #222 0deg, #f7f7f2 32deg, #6f777a 76deg, #f4f2ee 118deg, #1d1d1e 168deg, #bfc4c5 224deg, #5b1016 260deg, #e6e6df 312deg, #242426 360deg);
  mask-image: radial-gradient(circle, transparent 0 48%, #000 49% 58%, transparent 59%);
  -webkit-mask-image: radial-gradient(circle, transparent 0 48%, #000 49% 58%, transparent 59%);
}

.chrome-ring-one {
  transform: rotateX(72deg) rotateZ(-18deg);
}

.chrome-ring-two {
  inset: 7%;
  opacity: 0.78;
  transform: rotateX(72deg) rotateY(18deg) rotateZ(58deg);
  filter: blur(0.2px);
}

.chrome-blade {
  inset: 18% 43%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #0c0c0d, #e9e9e4 22%, #6d7376 38%, #f8f8f4 52%, #2c2c2e 78%, #c2c6c7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -22px 44px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(216, 216, 210, 0.16);
  transform: translateZ(74px) rotateZ(23deg);
}

.chrome-core {
  inset: 31%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.92), rgba(96, 102, 106, 0.84) 24%, rgba(255, 255, 255, 0.88) 48%, rgba(9, 9, 10, 0.9) 72%, rgba(204, 205, 199, 0.78)),
    #b9bdbe;
  color: rgba(3, 3, 4, 0.74);
  font-family: var(--font-display);
  font-size: clamp(5.6rem, 11vw, 11rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  text-indent: -0.1em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateZ(98px);
  box-shadow:
    inset 18px 12px 26px rgba(255, 255, 255, 0.38),
    inset -28px -20px 46px rgba(0, 0, 0, 0.55),
    0 0 54px rgba(216, 216, 210, 0.16);
}

.chrome-core::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.68) 36%, transparent 49%);
  mix-blend-mode: screen;
  transform: translateX(-16%);
  animation: chromeSheen 6.5s ease-in-out infinite;
}

.object-caption {
  position: absolute;
  right: 0;
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(244, 242, 238, 0.5);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transform: translateY(calc(var(--my) * -0.04));
}

.object-caption::before {
  content: "";
  width: 4.2rem;
  height: 1px;
  background: rgba(216, 216, 210, 0.35);
}

.hero-media {
  position: relative;
}

.hero-image,
.hero-page-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #050506;
  box-shadow: var(--shadow);
}

.hero-image img,
.hero-page-media img {
  min-height: 500px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.74) contrast(1.16);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.74)),
    linear-gradient(90deg, rgba(159, 16, 24, 0.18), transparent 48%);
}

.hero-tag {
  position: absolute;
  right: -4.5rem;
  top: 2.5rem;
  width: 330px;
  color: rgba(244, 242, 238, 0.48);
  font-size: 0.63rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: center;
}

.hero-page {
  min-height: auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.hero-page .hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
}

.hero-page .page-title {
  font-size: clamp(3.45rem, 7.4vw, 7.4rem);
}

.hero-page .hero-subtitle {
  font-size: 0.98rem;
}

.about-hero .hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
}

.about-hero-object {
  min-height: 360px;
}

.about-hero-object .logo-orbit {
  width: min(100%, 460px);
}

.page-title {
  max-width: 13ch;
  font-size: clamp(3.2rem, 6.8vw, 6.8rem);
}

.player-strip {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(22px);
}

.player-inner {
  display: grid;
  grid-template-columns: 1.18fr 1.8fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.player-meta {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.player-thumb {
  position: relative;
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background:
    conic-gradient(from 40deg, #080809, #d8d8d2, #697176, #120507, #f5f5ef, #080809);
  box-shadow: inset 0 0 0 12px #050506, 0 0 28px rgba(216, 216, 210, 0.1);
}

.player-track {
  color: var(--text);
  font-size: 0.62rem;
  font-weight: 500;
  white-space: nowrap;
}

.player-subtitle {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.player-waveform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.player-time {
  color: var(--muted);
  font-size: 0.62rem;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.58rem;
}

.icon-button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.icon-button svg,
.play-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 3.6rem 0 1.35rem;
}

.section-link {
  color: rgba(244, 242, 238, 0.6);
  border-bottom: 1px solid transparent;
}

.section-link:hover {
  color: var(--text);
  border-color: rgba(216, 216, 210, 0.42);
}

.beats-section,
.loops-section {
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.beats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.beat-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 42%, rgba(159, 16, 24, 0.035)),
    rgba(8, 8, 9, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.beat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.12) 36%, transparent 48%),
    radial-gradient(ellipse at top, rgba(216, 216, 210, 0.12), transparent 58%);
  transform: translateX(-18%);
  transition: opacity var(--transition), transform 620ms cubic-bezier(.2, .8, .2, 1);
}

.beat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 216, 210, 0.32);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48), 0 0 44px rgba(159, 16, 24, 0.1);
}

.beat-card:hover::before {
  opacity: 1;
  transform: translateX(16%);
}

.beat-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    #050506;
}

.beat-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.56)),
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.13) 48%, transparent 58%);
  opacity: 0.52;
  transition: opacity var(--transition);
}

.beat-card:hover .beat-image::after {
  opacity: 0.75;
}

.beat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform 720ms cubic-bezier(.2, .8, .2, 1), filter var(--transition);
}

.beat-card:hover .beat-image img {
  transform: scale(1.048);
  filter: brightness(1.08) contrast(1.06);
}

.beat-image img[hidden] {
  display: none;
}

.beat-details {
  position: relative;
  z-index: 1;
  padding: 1.05rem 0.15rem 0.1rem;
}

.beat-title {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beat-meta {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.7;
}

.beat-player {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0.95rem 0 1.05rem;
}

.play-button {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border-radius: 999px;
  cursor: pointer;
}

.play-button.is-playing,
.icon-button.is-playing {
  border-color: rgba(211, 29, 40, 0.5);
  color: #fff;
  box-shadow: 0 0 30px rgba(159, 16, 24, 0.16);
}

.beat-waveform.mini {
  display: flex;
  align-items: flex-end;
  gap: 0.22rem;
  width: 100%;
  min-width: 0;
  height: 2.2rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

.beat-waveform.mini .bar {
  flex: 1 1 0;
  width: auto;
  min-width: 3px;
  border-radius: 999px;
  background: rgba(244, 242, 238, 0.18);
}

.beat-waveform.mini .h1 { height: 8px; }
.beat-waveform.mini .h2 { height: 12px; background: rgba(216, 216, 210, 0.38); }
.beat-waveform.mini .h3 { height: 16px; }
.beat-waveform.mini .h4 { height: 20px; background: rgba(159, 16, 24, 0.48); }
.beat-waveform.mini .h5 { height: 24px; background: rgba(244, 242, 238, 0.72); }

.beat-player audio {
  display: none;
}

.beat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.beat-price {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
}

.beat-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.beat-actions button {
  min-height: 2.25rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 242, 238, 0.82);
  font-size: 0.58rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.beat-actions button:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 216, 210, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.page-content {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-section {
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy h2 {
  max-width: 12ch;
  margin: 1rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.about-copy p {
  max-width: 42rem;
  margin: 0 0 1.4rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.text-link {
  color: rgba(244, 242, 238, 0.74);
}

.text-link:hover {
  color: var(--text);
}

.about-image {
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #050506;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(0.1) brightness(0.76) contrast(1.12);
}

.about-details,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.info-card,
.contact-card,
.cart-item,
.cart-summary,
.empty-cart,
.license-section,
.beat-audio {
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 9, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.info-card,
.contact-card {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.info-card span,
.contact-card h3 {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
}

.info-card p,
.contact-card p,
.contact-card a {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
}

.cart-page {
  min-height: 58vh;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item,
.empty-cart {
  padding: 1.25rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item h2,
.empty-cart h2,
.license-section h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.cart-item-actions span {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.cart-item-actions button {
  min-height: 2.5rem;
  padding: 0.68rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.6rem;
  cursor: pointer;
}

.cart-item-actions button:hover {
  color: var(--text);
  border-color: rgba(216, 216, 210, 0.34);
}

.cart-summary {
  position: sticky;
  top: 6.4rem;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-soft);
}

.cart-summary-row.total {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-size: 1.08rem;
}

.purchase-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.empty-cart {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
}

.beat-audio {
  padding: 1rem;
}

.beat-audio audio {
  width: 100%;
}

.license-section {
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.license-section p {
  color: var(--text-soft);
  line-height: 1.9;
}

.contact-cta {
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse at 70% 28%, rgba(216, 216, 210, 0.1), transparent 42%),
    radial-gradient(ellipse at 24% 72%, rgba(159, 16, 24, 0.09), transparent 38%),
    rgba(3, 3, 4, 0.72);
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
  justify-items: center;
}

.contact-cta h2 {
  max-width: 20ch;
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 5.8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cta p {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--text-soft);
  line-height: 1.9;
}

.site-footer {
  padding: 2.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 2, 3, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  text-align: left;
  font-size: 1.25rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.62rem;
}

.footer-links a:hover {
  color: var(--text);
}

@keyframes sculptureDrift {
  0% { transform: rotateX(58deg) rotateY(-24deg) rotateZ(0deg); }
  50% { transform: rotateX(62deg) rotateY(18deg) rotateZ(180deg); }
  100% { transform: rotateX(58deg) rotateY(-24deg) rotateZ(360deg); }
}

@keyframes chromeSheen {
  0%, 24% { opacity: 0; transform: translateX(-44%) rotate(8deg); }
  42%, 58% { opacity: 0.78; }
  78%, 100% { opacity: 0; transform: translateX(44%) rotate(8deg); }
}

@keyframes logoSpin {
  from {
    transform: rotateZ(0deg);
  }

  to {
    transform: rotateZ(360deg);
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .hero-page .hero-inner,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-title {
    max-width: 11ch;
  }

  .hero-object-scene {
    min-height: 460px;
  }

  .logo-orbit {
    width: min(72vw, 420px);
  }

  .about-hero-object .logo-orbit {
    width: min(72vw, 420px);
  }

  .player-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .player-meta,
  .player-controls {
    justify-content: center;
  }

  .beats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

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

  .contact-cta-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(1400px, calc(100% - 72px));
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1.16fr);
    gap: clamp(4rem, 7vw, 8rem);
  }

  .hero-copy {
    padding-top: 0.5rem;
  }

  .hero h1 {
    max-width: 10.5ch;
  }

  .hero-object-scene {
    justify-self: end;
  }
}

@media (max-width: 860px) {
  .topbar {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .beats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-by {
    grid-template-columns: 1fr;
  }

  .player-waveform {
    flex-direction: column;
  }

  .hero-tag {
    right: 1rem;
    top: auto;
    bottom: -3rem;
    width: auto;
    transform: rotate(0);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 20px, 1220px);
  }

  .site-header {
    position: relative;
  }

  .header-actions {
    margin-left: auto;
  }

  .icon-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-copy {
    max-width: calc(100vw - 44px);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.4vw, 3.55rem);
    letter-spacing: 0.03em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .page-title {
    font-size: clamp(2.45rem, 10.8vw, 4.35rem);
    letter-spacing: 0.045em;
  }

  .hero-subtitle {
    width: min(100%, calc(100vw - 92px));
    max-width: calc(100vw - 92px);
  }

  .hero-object-scene {
    min-height: 340px;
  }

  .logo-orbit {
    width: min(78vw, 330px);
  }

  .about-image,
  .about-hero-object {
    min-height: 300px;
  }

  .about-hero-object .logo-orbit {
    width: min(78vw, 330px);
  }

  .object-caption {
    left: 0;
    right: auto;
    bottom: 1%;
  }

  .section-header,
  .cart-item,
  .cart-item-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .beat-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .beat-actions,
  .cart-item-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
