:root {
  --landing-ink: #101612;
  --landing-paper: #f3efe5;
  --landing-cream: #fffaf0;
  --landing-green: #145b43;
  --landing-green-bright: #2ecf8f;
  --landing-red: #e8583f;
  --landing-yellow: #f3c64f;
  --landing-line: rgba(16, 22, 18, 0.18);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.landing-body,
.register-body {
  color: var(--landing-ink);
  background: var(--landing-paper);
}

.landing-body {
  overflow-x: hidden;
}

.landing-body a,
.register-body a {
  color: inherit;
  text-decoration: none;
}

.landing-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 78px;
  padding: 0 clamp(22px, 4vw, 68px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 180ms ease, background 180ms ease, height 180ms ease, box-shadow 180ms ease;
}

.landing-header.is-scrolled,
.landing-header.menu-open {
  height: 66px;
  color: var(--landing-ink);
  background: rgba(243, 239, 229, 0.96);
  border-bottom-color: var(--landing-line);
  box-shadow: 0 8px 30px rgba(16, 22, 18, 0.08);
  backdrop-filter: blur(14px);
}

.landing-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--landing-ink);
  background: var(--landing-yellow);
  border-radius: 50%;
}

.landing-brand strong {
  font-family: 'Fraunces', serif;
  font-size: 20px;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  font-size: 14px;
  font-weight: 600;
}

.mobile-account-links {
  display: none;
}

.landing-nav a,
.header-text-link {
  position: relative;
}

.landing-nav a::after,
.header-text-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: '';
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.landing-nav a:hover::after,
.header-text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.landing-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.header-join {
  padding: 11px 17px;
  color: var(--landing-ink) !important;
  background: var(--landing-yellow);
  border-radius: 3px;
}

.landing-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  color: inherit;
  background: transparent;
  border: 0;
}

.landing-menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.landing-header.menu-open .landing-menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.landing-header.menu-open .landing-menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.landing-hero {
  position: relative;
  display: flex;
  height: 88svh;
  min-height: 660px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #101612;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% 38%;
  animation: hero-arrive 1.4s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 15, 11, 0.84) 0%, rgba(8, 15, 11, 0.42) 50%, rgba(8, 15, 11, 0.12) 76%),
    linear-gradient(0deg, rgba(8, 15, 11, 0.7) 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 70vw);
  margin-left: clamp(24px, 8vw, 128px);
  padding-top: 6px;
}

.hero-kicker,
.landing-eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-kicker {
  color: var(--landing-yellow);
  animation: content-rise 700ms 180ms ease both;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(74px, 9.2vw, 150px);
  line-height: 0.82;
  letter-spacing: 0;
  animation: content-rise 800ms 260ms ease both;
}

.hero-statement {
  margin: 28px 0 10px;
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1;
  animation: content-rise 800ms 340ms ease both;
}

.hero-summary {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.65;
  animation: content-rise 800ms 420ms ease both;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 12px;
  animation: content-rise 800ms 500ms ease both;
}

.landing-primary,
.landing-secondary,
.landing-dark-button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
}

.landing-primary {
  color: var(--landing-ink) !important;
  background: var(--landing-yellow);
}

.landing-secondary {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-player {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 80px);
  bottom: 42px;
  display: grid;
  width: min(630px, 48vw);
  min-height: 88px;
  padding: 12px;
  grid-template-columns: 48px 64px minmax(150px, 1fr) minmax(90px, 150px) auto;
  align-items: center;
  gap: 13px;
  color: var(--landing-ink);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  animation: content-rise 850ms 620ms ease both;
}

.hero-play,
.release-art,
.dialog-close,
.mini-close {
  cursor: pointer;
}

.hero-play {
  display: grid;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--landing-red);
  border: 0;
  border-radius: 50%;
  place-items: center;
}

.hero-player > img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.hero-track-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-track-copy span {
  margin-bottom: 3px;
  color: var(--landing-red);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-track-copy strong,
.hero-track-copy small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-track-copy small {
  margin-top: 2px;
  color: #68716b;
}

.hero-wave,
.mini-wave {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.hero-wave i,
.mini-wave i {
  display: block;
  width: 2px;
  height: var(--wave-height, 14px);
  background: rgba(16, 22, 18, 0.35);
}

.hero-wave i:nth-child(3n + 1) { --wave-height: 8px; }
.hero-wave i:nth-child(3n + 2) { --wave-height: 25px; }
.hero-wave i:nth-child(4n) { --wave-height: 16px; }

.is-playing .hero-wave i,
.landing-player.is-playing .mini-wave i {
  animation: sound-wave 650ms ease-in-out infinite alternate;
}

.is-playing .hero-wave i:nth-child(2n),
.landing-player.is-playing .mini-wave i:nth-child(2n) {
  animation-delay: -300ms;
}

.hero-support,
.mini-support {
  padding: 11px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: var(--landing-green);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  left: clamp(24px, 3.5vw, 58px);
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll span {
  width: 1px;
  height: 38px;
  background: currentColor;
}

.discovery-band,
.events-band,
.faq-band {
  padding: clamp(72px, 9vw, 138px) clamp(24px, 7vw, 112px);
}

.discovery-band {
  background: var(--landing-paper);
}

.landing-section-head {
  display: flex;
  margin-bottom: 42px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.landing-section-head h2,
.support-intro h2,
.lover-copy h2,
.artist-copy h2,
.faq-intro h2,
.closing-band h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.landing-eyebrow {
  color: var(--landing-red);
}

.landing-eyebrow.light {
  color: var(--landing-green-bright);
}

.landing-arrow-link,
.landing-light-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.landing-arrow-link span,
.landing-light-link span {
  display: grid;
  width: 30px;
  height: 30px;
  font-size: 19px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  transition: color 160ms ease, background 160ms ease;
}

.landing-arrow-link:hover span,
.landing-light-link:hover span {
  color: var(--landing-paper);
  background: currentColor;
}

.release-stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 38px);
}

.landing-release:nth-child(even) {
  padding-top: 42px;
}

.release-art {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #d7d1c4;
  border: 0;
  aspect-ratio: 0.84;
}

.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.release-art:hover img {
  transform: scale(1.035);
}

.release-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  color: #fff;
  font-size: 11px;
  background: rgba(16, 22, 18, 0.78);
  border-radius: 50%;
  place-items: center;
}

.release-play {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--landing-ink);
  background: var(--landing-yellow);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  place-items: center;
}

.release-art:hover .release-play,
.release-art:focus-visible .release-play {
  opacity: 1;
  transform: translateY(0);
}

.release-copy {
  display: flex;
  margin-top: 17px;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.release-copy h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.15;
}

.release-copy p,
.release-meta {
  color: #697069;
  font-size: 12px;
}

.release-copy p {
  margin: 0;
  text-align: right;
}

.release-meta {
  display: block;
  margin-top: 8px;
}

.support-story {
  display: grid;
  padding: clamp(80px, 11vw, 160px) clamp(24px, 9vw, 144px);
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
  background: #e9d9d0;
}

.support-intro p,
.lover-copy > p,
.artist-copy > p,
.faq-intro p {
  max-width: 560px;
  margin: 26px 0 0;
  color: #59615c;
  font-size: 16px;
  line-height: 1.75;
}

.price-ledger {
  border-top: 1px solid var(--landing-line);
}

.price-line {
  display: grid;
  padding: 30px 0;
  grid-template-columns: minmax(140px, 0.42fr) 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--landing-line);
}

.price-line > span {
  font-size: 13px;
  font-weight: 700;
}

.price-line > span strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 0.9;
}

.price-line h3 {
  margin: 2px 0 8px;
  font-family: 'Fraunces', serif;
  font-size: 25px;
}

.price-line p {
  margin: 0;
  color: #606762;
  font-size: 14px;
  line-height: 1.55;
}

.price-note {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.price-note .ui-icon {
  padding: 3px;
  color: #fff;
  background: var(--landing-green);
  border-radius: 50%;
}

.lover-band {
  display: grid;
  min-height: 720px;
  padding: clamp(80px, 9vw, 140px) clamp(24px, 9vw, 144px);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(70px, 11vw, 180px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 85%, rgba(46, 207, 143, 0.14), transparent 28%),
    var(--landing-green);
}

.lover-meter {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
}

.lover-ring {
  --lover-progress: 70;
  position: relative;
  z-index: 2;
  display: grid;
  width: min(360px, 70vw);
  border-radius: 50%;
  background: conic-gradient(var(--landing-yellow) calc(var(--lover-progress) * 1%), rgba(255, 255, 255, 0.15) 0);
  box-shadow: 0 28px 60px rgba(5, 31, 22, 0.3);
  aspect-ratio: 1;
  place-items: center;
}

.lover-ring::before {
  position: absolute;
  width: 78%;
  content: '';
  background: var(--landing-green);
  border-radius: 50%;
  aspect-ratio: 1;
}

.lover-ring span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lover-ring strong {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 62px;
  line-height: 1;
  letter-spacing: 0;
}

.lover-releases img {
  position: absolute;
  z-index: 3;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 5px solid var(--landing-green);
  border-radius: 50%;
}

.lover-releases img:nth-child(1) { top: 2%; left: 2%; }
.lover-releases img:nth-child(2) { top: 10%; right: 2%; width: 72px; height: 72px; }
.lover-releases img:nth-child(3) { bottom: 5%; left: 10%; width: 70px; height: 70px; }
.lover-releases img:nth-child(4) { right: 0; bottom: 3%; width: 108px; height: 108px; }

.lover-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.lover-copy ul {
  display: grid;
  margin: 30px 0 34px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.lover-copy li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
}

.lover-copy li .ui-icon {
  color: var(--landing-yellow);
}

.artist-band {
  display: grid;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 8vw, 128px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(56px, 9vw, 140px);
  background: var(--landing-cream);
}

.artist-photo {
  position: relative;
  min-height: 650px;
}

.artist-photo > img {
  width: 88%;
  height: 650px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.artist-proof {
  position: absolute;
  right: 0;
  bottom: 48px;
  display: flex;
  width: min(290px, 70%);
  min-height: 200px;
  padding: 26px;
  flex-direction: column;
  color: var(--landing-ink);
  background: var(--landing-yellow);
}

.artist-proof span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.artist-proof strong {
  margin: auto 0 3px;
  font-family: 'Fraunces', serif;
  font-size: 64px;
  line-height: 1;
}

.artist-proof small {
  max-width: 190px;
  font-size: 12px;
  line-height: 1.45;
}

.artist-copy > p {
  margin-bottom: 28px;
}

.artist-capabilities {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--landing-line);
}

.artist-capabilities span {
  padding: 15px 8px 15px 0;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--landing-line);
}

.landing-dark-button {
  color: #fff !important;
  background: var(--landing-ink);
}

.events-band {
  background: #ebe9e2;
}

.landing-events {
  border-top: 1px solid var(--landing-line);
}

.landing-event {
  position: relative;
  display: grid;
  min-height: 154px;
  padding: 22px 0;
  grid-template-columns: 180px 140px 1fr 50px;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--landing-line);
}

.landing-event img {
  width: 180px;
  height: 108px;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter 180ms ease, transform 180ms ease;
}

.landing-event:hover img {
  filter: saturate(1);
  transform: translateX(5px);
}

.event-date {
  font-size: 13px;
  font-weight: 700;
}

.landing-event small {
  color: var(--landing-red);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.landing-event h3 {
  margin: 6px 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.5vw, 35px);
}

.landing-event p {
  margin: 0;
  color: #676e69;
  font-size: 13px;
}

.event-index {
  justify-self: end;
  color: #757a76;
  font-family: 'Fraunces', serif;
  font-size: 18px;
}

.platform-proof {
  display: grid;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 8vw, 128px);
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  background: var(--landing-yellow);
}

.platform-proof > p {
  max-width: 500px;
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
}

.platform-proof dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(16, 22, 18, 0.3);
}

.platform-proof dl div {
  padding: 8px clamp(18px, 3vw, 45px);
  border-right: 1px solid rgba(16, 22, 18, 0.3);
}

.platform-proof dt {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.platform-proof dd {
  margin: 9px 0 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(440px, 1.25fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--landing-paper);
}

.faq-list {
  border-top: 1px solid var(--landing-line);
}

.faq-list details {
  border-bottom: 1px solid var(--landing-line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  border: 1px solid var(--landing-line);
  border-radius: 50%;
  transition: transform 180ms ease;
  place-items: center;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 590px;
  margin: -4px 55px 26px 0;
  color: #5f6761;
  font-size: 14px;
  line-height: 1.65;
}

.closing-band {
  position: relative;
  display: grid;
  min-height: 680px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 9vw, 144px);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.closing-band::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(11, 16, 13, 0.88), rgba(11, 16, 13, 0.2));
}

.closing-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.closing-band > div {
  position: relative;
  z-index: 2;
}

.closing-band span {
  display: block;
  margin-bottom: 18px;
  color: var(--landing-yellow);
  font-size: 13px;
  font-weight: 700;
}

.closing-band h2 {
  margin-bottom: 34px;
  font-size: clamp(50px, 6.5vw, 96px);
}

.landing-footer {
  display: grid;
  padding: 68px clamp(24px, 7vw, 112px);
  grid-template-columns: 1.5fr 0.65fr 0.65fr 0.8fr;
  gap: 46px;
  color: #fff;
  background: var(--landing-ink);
}

.landing-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-brand p,
.landing-footer a,
.landing-footer span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.landing-footer strong,
.landing-footer .landing-brand strong {
  color: #fff;
}

.landing-footer .brand-mark {
  color: var(--landing-ink);
}

.footer-note {
  justify-self: end;
  text-align: right;
}

.landing-player {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(520px, calc(100vw - 44px));
  min-height: 74px;
  padding: 9px;
  grid-template-columns: 56px minmax(110px, 1fr) 60px auto 34px;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: rgba(16, 22, 18, 0.96);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.landing-player[hidden] {
  display: none;
}

.landing-player > img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.landing-player > div:nth-of-type(1) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.landing-player strong,
.landing-player span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.landing-player span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.landing-player .mini-wave i {
  background: var(--landing-green-bright);
}

.mini-close {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  place-items: center;
}

.landing-purchase {
  width: min(460px, calc(100vw - 32px));
  padding: 34px;
  color: var(--landing-ink);
  background: var(--landing-cream);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.landing-purchase::backdrop {
  background: rgba(8, 12, 10, 0.72);
  backdrop-filter: blur(4px);
}

.landing-purchase > img {
  width: 96px;
  height: 96px;
  margin-bottom: 25px;
  object-fit: cover;
}

.landing-purchase h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 36px;
}

.landing-purchase > p,
.landing-purchase > small {
  color: #626a64;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--landing-ink);
  background: transparent;
  border: 1px solid var(--landing-line);
  border-radius: 50%;
  place-items: center;
}

.purchase-options {
  display: grid;
  margin: 28px 0 18px;
  gap: 10px;
}

.purchase-options button {
  display: flex;
  min-height: 64px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--landing-ink);
  background: transparent;
  border: 1px solid var(--landing-line);
  border-radius: 3px;
  cursor: pointer;
}

.purchase-options button:hover {
  color: #fff;
  background: var(--landing-green);
  border-color: var(--landing-green);
}

.purchase-options button span {
  font-size: 13px;
  font-weight: 600;
}

.register-layout {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(420px, 0.92fr) minmax(540px, 1.08fr);
}

.register-visual {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: 40px clamp(28px, 4.5vw, 72px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
  background: #101612;
}

.register-visual::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(8, 13, 10, 0.88), rgba(8, 13, 10, 0.1) 75%);
}

.register-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register-visual > *:not(img) {
  position: relative;
  z-index: 2;
}

.light-brand strong {
  color: #fff;
}

.register-visual > div {
  max-width: 600px;
  padding-bottom: 28px;
}

.register-visual > div span {
  color: var(--landing-yellow);
  font-size: 13px;
  font-weight: 700;
}

.register-visual h1 {
  margin: 16px 0 22px;
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 5vw, 84px);
  line-height: 0.96;
}

.register-visual p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.register-panel {
  display: grid;
  min-height: 100svh;
  padding: 56px clamp(30px, 7vw, 110px);
  background:
    linear-gradient(rgba(16, 22, 18, 0.035) 1px, transparent 1px),
    var(--landing-paper);
  background-size: 100% 40px;
  place-items: center;
}

.register-panel-inner {
  width: min(650px, 100%);
}

.register-panel h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.register-lead {
  max-width: 520px;
  margin: 16px 0 28px;
  color: #646c66;
  font-size: 14px;
  line-height: 1.6;
}

.register-errors {
  margin-bottom: 20px;
  padding: 12px 16px;
  color: #8b251a;
  font-size: 13px;
  background: #f8d8d0;
  border-left: 3px solid var(--landing-red);
}

.register-errors p {
  margin: 3px 0;
}

.register-form {
  display: grid;
  gap: 18px;
}

.register-form fieldset,
.register-form label {
  margin: 0;
}

.register-form > label,
.register-passwords label {
  display: grid;
  gap: 7px;
  color: #353c37;
  font-size: 12px;
  font-weight: 700;
}

.register-form input[type='text'],
.register-form input[type='email'],
.register-form input[type='password'] {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 22, 18, 0.25);
  border-radius: 2px;
}

.register-form input:focus {
  background: #fff;
  border-color: var(--landing-green);
}

.role-picker {
  display: grid;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border: 0;
}

.role-picker legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.role-picker label {
  position: relative;
  cursor: pointer;
}

.role-picker input {
  position: absolute;
  opacity: 0;
}

.role-picker label > span {
  display: grid;
  min-height: 84px;
  padding: 15px;
  grid-template-columns: 28px 1fr;
  align-content: center;
  border: 1px solid rgba(16, 22, 18, 0.22);
  border-radius: 3px;
}

.role-picker label > span .ui-icon {
  grid-row: 1 / 3;
  align-self: center;
}

.role-picker strong {
  font-size: 14px;
}

.role-picker small {
  color: #687069;
  font-size: 11px;
}

.role-picker input:checked + span {
  color: #fff;
  background: var(--landing-green);
  border-color: var(--landing-green);
}

.role-picker input:checked + span small {
  color: rgba(255, 255, 255, 0.7);
}

.role-picker input:focus-visible + span {
  outline: 3px solid rgba(20, 91, 67, 0.25);
  outline-offset: 2px;
}

.register-passwords {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.password-note {
  margin: -9px 0 0;
  color: #6a716c;
  font-size: 11px;
}

.register-submit {
  min-height: 52px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: var(--landing-ink);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.register-submit:hover {
  background: var(--landing-green);
}

.register-signin {
  margin: 20px 0 0;
  color: #687069;
  font-size: 13px;
  text-align: center;
}

.register-signin a {
  color: var(--landing-green);
  font-weight: 700;
}

.landing-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.landing-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-arrive {
  from { opacity: 0.45; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes content-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sound-wave {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1.15); }
}

@media (max-width: 1100px) {
  .landing-header {
    grid-template-columns: 1fr auto;
  }

  .landing-header .landing-nav {
    display: none;
  }

  .hero-content {
    width: min(690px, 78vw);
  }

  .hero-player {
    width: min(600px, 68vw);
  }

  .support-story,
  .faq-band {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .artist-photo,
  .artist-photo > img {
    min-height: 560px;
    height: 560px;
  }

  .register-layout {
    grid-template-columns: minmax(360px, 0.76fr) minmax(520px, 1.24fr);
  }
}

@media (max-width: 820px) {
  .landing-header {
    height: 66px;
    padding: 0 22px;
    grid-template-columns: 1fr auto;
  }

  .landing-header .landing-actions {
    display: none;
  }

  .landing-menu-button {
    display: block;
  }

  .landing-header .landing-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    padding: 0 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    color: var(--landing-ink);
    background: var(--landing-paper);
    box-shadow: 0 18px 34px rgba(16, 22, 18, 0.12);
    transition: max-height 240ms ease, padding 240ms ease;
  }

  .landing-header.menu-open .landing-nav {
    max-height: 380px;
    padding-top: 10px;
    padding-bottom: 18px;
  }

  .landing-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--landing-line);
  }

  .mobile-account-links {
    display: grid;
    margin-top: 12px;
    grid-template-columns: 1fr 1.5fr;
    gap: 8px;
  }

  .mobile-account-links a {
    display: flex;
    min-height: 46px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--landing-line);
    border-radius: 3px;
  }

  .mobile-account-links .mobile-join {
    color: var(--landing-ink);
    background: var(--landing-yellow);
    border-color: var(--landing-yellow);
  }

  .mobile-account-links .mobile-join:only-child {
    grid-column: 1 / -1;
  }

  .landing-hero {
    height: auto;
    min-height: 780px;
    padding: 116px 0 166px;
    align-items: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 15, 11, 0.78), rgba(8, 15, 11, 0.25)),
      linear-gradient(0deg, rgba(8, 15, 11, 0.88), transparent 55%);
  }

  .hero-content {
    width: auto;
    margin: 0 24px;
  }

  .hero-content h1 {
    font-size: clamp(64px, 15vw, 98px);
  }

  .hero-summary {
    max-width: 520px;
  }

  .hero-player {
    right: 24px;
    bottom: 24px;
    left: 24px;
    width: auto;
  }

  .hero-scroll {
    display: none;
  }

  .release-stage {
    grid-template-columns: 1fr 1fr;
  }

  .support-story,
  .lover-band,
  .artist-band,
  .faq-band,
  .platform-proof {
    grid-template-columns: 1fr;
  }

  .support-story,
  .faq-band,
  .platform-proof {
    gap: 54px;
  }

  .lover-band {
    gap: 62px;
  }

  .artist-band {
    gap: 68px;
  }

  .artist-photo > img {
    width: 91%;
  }

  .landing-event {
    grid-template-columns: 150px 110px 1fr 30px;
    gap: 18px;
  }

  .landing-event img {
    width: 150px;
    height: 96px;
  }

  .platform-proof dl {
    border-left: 0;
    border-top: 1px solid rgba(16, 22, 18, 0.3);
  }

  .platform-proof dl div:first-child {
    padding-left: 0;
  }

  .register-layout {
    grid-template-columns: 1fr;
  }

  .register-visual {
    min-height: 500px;
  }

  .register-panel {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .landing-brand strong {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .landing-hero {
    min-height: 760px;
    padding-top: 104px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-content h1 {
    font-size: clamp(58px, 20vw, 82px);
    line-height: 0.86;
  }

  .hero-statement {
    margin-top: 20px;
    font-size: 25px;
  }

  .hero-summary {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .landing-primary,
  .landing-secondary,
  .landing-dark-button {
    width: 100%;
  }

  .hero-player {
    grid-template-columns: 44px 50px 1fr;
    min-height: 74px;
    padding: 9px;
    gap: 9px;
  }

  .hero-play {
    width: 42px;
    height: 42px;
  }

  .hero-player > img {
    width: 50px;
    height: 50px;
  }

  .hero-wave,
  .hero-support {
    display: none;
  }

  .discovery-band,
  .events-band,
  .faq-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  .landing-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-section-head h2,
  .support-intro h2,
  .lover-copy h2,
  .artist-copy h2,
  .faq-intro h2 {
    font-size: 42px;
  }

  .release-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .landing-release:nth-child(even) {
    padding-top: 0;
  }

  .release-art {
    aspect-ratio: 1.04;
  }

  .release-play {
    opacity: 1;
    transform: none;
  }

  .support-story,
  .lover-band,
  .artist-band,
  .platform-proof {
    padding-right: 20px;
    padding-left: 20px;
  }

  .price-line {
    grid-template-columns: 105px 1fr;
    gap: 18px;
  }

  .price-line > span strong {
    font-size: 48px;
  }

  .price-line h3 {
    font-size: 21px;
  }

  .lover-meter {
    min-height: 360px;
  }

  .lover-ring {
    width: 260px;
  }

  .lover-ring strong {
    font-size: 50px;
  }

  .lover-releases img {
    width: 68px;
    height: 68px;
    border-width: 4px;
  }

  .lover-releases img:nth-child(2),
  .lover-releases img:nth-child(3) { width: 58px; height: 58px; }
  .lover-releases img:nth-child(4) { width: 76px; height: 76px; }

  .artist-photo,
  .artist-photo > img {
    min-height: 460px;
    height: 460px;
  }

  .artist-proof {
    bottom: -28px;
    width: 220px;
    min-height: 165px;
    padding: 20px;
  }

  .artist-proof strong {
    font-size: 50px;
  }

  .artist-capabilities {
    grid-template-columns: 1fr;
  }

  .landing-event {
    padding: 24px 0;
    grid-template-columns: 92px 1fr 26px;
    align-items: start;
    gap: 14px;
  }

  .landing-event img {
    width: 92px;
    height: 104px;
    grid-row: 1 / 3;
  }

  .event-date {
    display: none;
  }

  .event-index {
    grid-column: 3;
    grid-row: 1;
  }

  .landing-event h3 {
    font-size: 22px;
  }

  .platform-proof dl {
    grid-template-columns: 1fr;
  }

  .platform-proof dl div,
  .platform-proof dl div:first-child {
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 22, 18, 0.3);
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 18px;
  }

  .closing-band {
    min-height: 600px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .closing-band::after {
    background: linear-gradient(90deg, rgba(11, 16, 13, 0.85), rgba(11, 16, 13, 0.35));
  }

  .closing-band h2 {
    font-size: 48px;
  }

  .landing-footer {
    padding: 54px 22px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-note {
    justify-self: start;
    text-align: left;
  }

  .landing-player {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    grid-template-columns: 48px minmax(100px, 1fr) auto 32px;
    gap: 9px;
  }

  .landing-player > img {
    width: 48px;
    height: 48px;
  }

  .landing-player .mini-wave {
    display: none;
  }

  .mini-support {
    padding: 10px;
    font-size: 0;
  }

  .mini-support::after {
    font-size: 11px;
    content: '50 RWF';
  }

  .landing-purchase {
    padding: 26px 22px;
  }

  .register-visual {
    min-height: 410px;
    padding: 24px 22px 32px;
  }

  .register-visual h1 {
    font-size: 48px;
  }

  .register-panel {
    padding: 60px 20px;
  }

  .register-panel h2 {
    font-size: 38px;
  }

  .role-picker,
  .register-passwords {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}