:root {
  --black: #050505;
  --white: #f5f5f5;
  --dark: #101010;
  --gray: #bdbdbd;
  --line: rgba(245, 245, 245, 0.15);
  --soft-line: rgba(245, 245, 245, 0.08);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
  --font: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(245, 245, 245, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 245, 0.035) 1px, transparent 1px),
    var(--black);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

#particle-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 300ms ease;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  align-items: center;
  min-height: 100svh;
  gap: clamp(48px, 8vw, 160px);
  padding: clamp(44px, 6vw, 92px) 0 42px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gray);
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 1030px;
  margin-bottom: clamp(34px, 4vw, 68px);
  font-size: clamp(4.25rem, 10.6vw, 13.8rem);
  font-weight: 700;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid rgba(245, 245, 245, 0.72);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.22);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition:
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

.button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  transform: scale(1.035);
}

.logo-orbit {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-height: 380px;
  padding: clamp(28px, 4vw, 72px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(16, 16, 16, 0.42);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatLogo 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.logo-orbit::before,
.logo-orbit::after {
  position: absolute;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 999px;
  content: "";
}

.logo-orbit::before {
  inset: 13%;
}

.logo-orbit::after {
  inset: 27%;
}

.logo-orbit img {
  position: relative;
  z-index: 1;
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.12);
}

.logo-orbit img:not([src]),
.logo-orbit img.broken {
  display: none;
}

.logo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 700;
  line-height: 1;
}

.logo-orbit img:not(.broken) + .logo-fallback {
  opacity: 0;
}

.signed-artists {
  padding: 0 0 clamp(110px, 12vw, 188px);
}

.signed-artists-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.signed-artists-heading h2 {
  max-width: 1120px;
  margin-bottom: 0;
  font-size: clamp(3.25rem, 8.8vw, 11.5rem);
  font-weight: 700;
  line-height: 0.84;
  text-transform: uppercase;
}

.signed-artists-note {
  flex: 0 0 auto;
  margin: 0 0 10px;
  padding: 14px 17px;
  border: 1px solid rgba(245, 245, 245, 0.16);
  border-radius: 999px;
  color: var(--gray);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-carousel {
  position: relative;
  --artist-gap: 22px;
  --artist-offset: 11px;
  overflow: hidden;
  padding: 18px 0 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.artist-track {
  display: flex;
  width: max-content;
  gap: var(--artist-gap);
  animation: artistCarousel 24s linear infinite;
  will-change: transform;
}

.artist-carousel:hover .artist-track {
  animation-play-state: paused;
}

.signed-artist-card {
  display: grid;
  grid-template-columns: 146px minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  width: clamp(360px, 29vw, 500px);
  min-height: 190px;
  padding: 20px 24px;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 18%, rgba(245, 245, 245, 0.1), transparent 32%),
    rgba(16, 16, 16, 0.74);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.32);
  transform: scale(1);
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms cubic-bezier(0.19, 1, 0.22, 1);
}

.signed-artist-card:hover {
  position: relative;
  z-index: 1;
  border-color: rgba(245, 245, 245, 0.7);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.65);
  transform: scale(1.06);
}

.signed-artist-image {
  display: grid;
  place-items: center;
  width: 146px;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 50%;
  background: var(--black);
  overflow: hidden;
}

.signed-artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transition: filter 280ms ease, transform 280ms ease;
}

.signed-artist-card:hover .signed-artist-image img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.08);
}

.signed-artist-copy span {
  display: block;
  margin-bottom: 13px;
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signed-artist-copy h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3.5vw, 4.3rem);
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

@keyframes artistCarousel {
  to {
    transform: translateX(calc(-50% - var(--artist-offset)));
  }
}

.team {
  padding: clamp(110px, 12vw, 188px) 0 clamp(110px, 12vw, 188px);
  border-top: 1px solid var(--soft-line);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  align-items: end;
  gap: clamp(28px, 5vw, 90px);
  margin-bottom: clamp(36px, 5vw, 74px);
}

.team-heading h2 {
  max-width: 960px;
  margin-bottom: 0;
  font-size: clamp(3.25rem, 8.8vw, 11.5rem);
  font-weight: 700;
  line-height: 0.84;
  text-transform: uppercase;
}

.team-heading .eyebrow {
  justify-self: end;
  margin-bottom: 0;
  padding: 15px 18px;
  border: 1px solid rgba(245, 245, 245, 0.16);
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.48);
  backdrop-filter: blur(14px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: space-between;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 245, 245, 0.065), transparent 44%),
    rgba(16, 16, 16, 0.62);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

.team-card::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(245, 245, 245, 0.055);
  border-radius: 20px;
  pointer-events: none;
  content: "";
}

.team-card:hover {
  border-color: rgba(245, 245, 245, 0.38);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.72);
}

.team-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(150px, 12vw, 220px);
  aspect-ratio: 1;
  margin: 0 auto clamp(54px, 6vw, 90px);
  border: 1px solid rgba(245, 245, 245, 0.28);
  border-radius: 50%;
  background: var(--black);
  box-shadow:
    inset 0 0 0 12px rgba(245, 245, 245, 0.025),
    0 26px 80px rgba(0, 0, 0, 0.56);
  overflow: hidden;
}

.team-avatar::before,
.team-avatar::after {
  position: absolute;
  border: 1px solid rgba(245, 245, 245, 0.09);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.team-avatar::before {
  inset: 12%;
}

.team-avatar::after {
  inset: 28%;
}

.team-avatar img {
  position: relative;
  z-index: 1;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.92);
  transition:
    filter 420ms ease,
    transform 420ms ease,
    opacity 240ms ease;
}

.team-card:hover .team-avatar img {
  filter: grayscale(0) contrast(1.05) brightness(1.08);
  transform: scale(1.06);
}

.team-avatar img.broken {
  opacity: 0;
}

.team-avatar span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: clamp(3.2rem, 5vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.team-avatar img:not(.broken) + span {
  opacity: 0;
}

.team-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  text-align: center;
}

.team-copy span {
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 700;
}

.team-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 4.4rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.team-copy p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--gray);
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
  text-transform: uppercase;
}

.effect {
  padding: clamp(110px, 12vw, 190px) 0 clamp(92px, 10vw, 150px);
  border-top: 1px solid var(--soft-line);
}

.section-heading {
  max-width: 1240px;
  margin: 0 auto clamp(48px, 6vw, 86px);
  text-align: center;
}

.section-heading h2,
.strategy-panel h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 8vw, 10.5rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: clamp(72px, 8vw, 128px);
}

.stat-card,
.strategy-panel {
  border: 1px solid rgba(245, 245, 245, 0.2);
  background: rgba(16, 16, 16, 0.66);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.stat-card {
  display: grid;
  min-height: 265px;
  align-content: space-between;
  padding: clamp(24px, 3vw, 44px);
  border-radius: 24px;
}

.stat-card span {
  color: var(--gray);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-card strong {
  font-size: clamp(5.2rem, 10vw, 11.5rem);
  font-weight: 700;
  line-height: 0.82;
}

.strategy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  align-items: start;
  gap: clamp(36px, 8vw, 142px);
  padding: clamp(34px, 6vw, 86px);
  border-radius: 30px;
}

.strategy-panel p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: clamp(1.04rem, 1.45vw, 1.45rem);
  font-weight: 500;
  line-height: 1.62;
}

.footer {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 15px;
  padding: 70px 24px 80px;
  border-top: 1px solid var(--soft-line);
  color: var(--gray);
  text-align: center;
}

.footer p,
.footer span {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 245, 245, 0.42);
  border-radius: 16px;
  transition:
    background 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.socials a:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.05);
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.section-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 1180px) {
  .hero,
  .strategy-panel {
    grid-template-columns: 1fr;
  }

  .logo-orbit {
    width: min(620px, 100%);
    min-height: auto;
    justify-self: center;
  }

  .stats-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-heading {
    grid-template-columns: 1fr;
  }

  .team-heading .eyebrow {
    justify-self: start;
  }

}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 28px, 1760px);
  }

  .hero {
    gap: 38px;
    min-height: auto;
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 7.2rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .logo-orbit {
    border-radius: 24px;
  }

  .signed-artists-heading {
    display: grid;
    align-items: start;
  }

  .signed-artists-note {
    justify-self: start;
    margin-bottom: 0;
  }

  .artist-carousel {
    --artist-gap: 14px;
    --artist-offset: 7px;
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .artist-track {
    gap: var(--artist-gap);
  }

  .signed-artist-card {
    grid-template-columns: 106px minmax(172px, 1fr);
    gap: 18px;
    width: min(330px, calc(100vw - 42px));
    min-height: 150px;
    padding: 16px;
    border-radius: 20px;
  }

  .signed-artist-image {
    width: 106px;
  }

  .section-heading h2,
  .strategy-panel h2,
  .team-heading h2 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .team-card {
    min-height: 360px;
  }

  .stat-card {
    min-height: 215px;
  }

  .strategy-panel {
    padding: 28px;
  }
}

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