:root {
  --black: #030303;
  --white: #ffffff;
  --soft: #f6f6f6;
  --ink: #171717;
  --gray: #555555;
  --line: #dedede;
  --blue: #90b4ee;
  --yellow: #ffc84f;
  --red: #fe6161;
  --max: 1120px;
  --sans: Avenir, Montserrat, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 16px clamp(16px, 5vw, 58px);
  background: var(--black);
  color: var(--white);
}

.logo-link {
  width: min(86vw, 680px);
}

.logo-link img {
  width: 100%;
}

.desktop-nav {
  display: none;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  width: 100%;
  min-height: clamp(430px, 70vh, 760px);
  object-fit: cover;
  object-position: center 44%;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 5vw, 76px);
  right: clamp(14px, 6vw, 86px);
  bottom: clamp(24px, 7vw, 96px);
  max-width: 980px;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 10px;
  background: var(--black);
  color: var(--yellow);
  padding: 7px 10px;
  font-size: clamp(0.64rem, 2.4vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin: 16px 0 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 span,
h1 em {
  max-width: 980px;
  background: rgba(0, 0, 0, 0.9);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 6px 12px 8px;
  font-weight: 900;
}

h1 span {
  color: var(--blue);
  font-size: clamp(2.25rem, 7vw, 6.25rem);
  letter-spacing: 0;
}

h1 em {
  color: var(--yellow);
  font-size: clamp(1.08rem, 3.2vw, 2.65rem);
  font-style: normal;
  line-height: 1.02;
  text-transform: none;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
  font-size: clamp(1rem, 3.6vw, 1.18rem);
  font-weight: 700;
}

.hero-actions {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 360px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 0;
  padding: 13px 20px;
  color: var(--black);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--yellow);
}

.button.secondary {
  background: var(--black);
  color: var(--white);
}

.white-section,
.black-section {
  padding: clamp(66px, 10vw, 118px) clamp(18px, 6vw, 70px);
}

.white-section {
  background: var(--white);
}

.black-section {
  background: var(--black);
  color: var(--white);
}

.samples {
  padding-bottom: clamp(24px, 4vw, 44px);
}

.industry {
  padding-top: clamp(24px, 4vw, 44px);
}

.white-section > *,
.black-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label.blue {
  color: var(--blue);
}

h2 {
  margin-bottom: 30px;
  max-width: 920px;
  font-size: clamp(2.25rem, 7.2vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  color: var(--red);
  font-size: clamp(1.15rem, 5vw, 1.65rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.proof-strip span {
  border: 2px solid var(--black);
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.success-grid,
.process-grid,
.highlight-grid,
.offer-grid,
.path-grid {
  display: grid;
  gap: 20px;
}

.success-grid article {
  display: grid;
  gap: 14px;
  border-top: 2px solid var(--black);
  padding-top: 18px;
  text-align: left;
}

.success-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 4px;
  border-radius: 0;
  object-fit: cover;
}

.highlight-grid article {
  text-align: left;
}

.highlight-grid img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 0;
  object-fit: cover;
}

.highlight-grid article:first-child img {
  aspect-ratio: 1;
}

.highlight-grid article:not(:first-child) img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.success-grid p,
.highlight-grid p,
.process-grid p,
.philosophy p,
.offer p,
.offer li,
.form-intro p,
.form-note,
.media-layout p {
  color: var(--gray);
}

.black-section .philosophy p,
.black-section p,
.black-section .media-layout p {
  color: rgba(255, 255, 255, 0.82);
}

.philosophy {
  display: grid;
  gap: 20px;
}

.philosophy h2 {
  margin-bottom: 0;
}

.philosophy > p {
  max-width: 660px;
  font-size: 1.08rem;
  font-weight: 700;
}

.accordion {
  display: grid;
  gap: 14px;
  max-width: var(--max);
}

.service-card {
  border: 1px solid var(--black);
  background: var(--white);
  scroll-margin-top: 92px;
}

.service-card.is-open {
  box-shadow: 8px 8px 0 rgba(144, 180, 238, 0.8);
}

.service-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: clamp(18px, 5vw, 30px);
  text-align: left;
}

.service-trigger span {
  display: grid;
  gap: 8px;
}

.service-trigger small {
  color: var(--red);
  font-weight: 900;
}

.service-trigger strong {
  font-size: clamp(1.25rem, 5.8vw, 2.15rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-trigger em {
  max-width: 770px;
  color: var(--gray);
  font-style: normal;
  font-weight: 700;
}

.service-trigger .service-promise {
  color: var(--ink);
  font-size: clamp(1rem, 3.6vw, 1.28rem);
  font-weight: 900;
  line-height: 1.22;
}

.single-offer-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}

.launch-offer,
.crowdfunding-offer {
  max-width: 900px;
}

.monthly-price {
  margin-bottom: 4px;
  font-size: clamp(1.45rem, 4vw, 2.25rem);
}

.monthly-price span {
  font-size: 0.72em;
}

.commitment-line {
  margin-bottom: 24px;
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-note {
  max-width: 680px;
  margin-top: -6px;
  color: var(--gray) !important;
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-section-title {
  margin: 30px 0 10px;
  font-size: clamp(1.08rem, 3.6vw, 1.35rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.portal-copy {
  border-left: 6px solid var(--blue);
  padding-left: 16px;
}

.multi-song-note {
  max-width: 720px;
  color: var(--gray) !important;
  font-weight: 700;
}

.separation-note {
  border-left: 6px solid var(--blue);
  padding-left: 16px;
  font-weight: 800;
}

.funding-pathway {
  margin-top: 10px;
  border-left: 8px solid var(--yellow);
  background: #fffdf6;
}

.funding-pathway.is-open {
  box-shadow: 8px 8px 0 rgba(255, 203, 75, 0.62);
}

.service-trigger b {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.service-trigger b::before,
.service-trigger b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--black);
  content: "";
  transform: translate(-50%, -50%);
}

.service-trigger b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.is-open .service-trigger b::after {
  transform: translate(-50%, -50%);
}

.service-panel {
  padding: 0 clamp(18px, 5vw, 30px) clamp(20px, 6vw, 34px);
}

.offer {
  border-top: 2px solid var(--line);
  padding-top: 20px;
}

.price {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.price span {
  color: var(--black);
}

.price .subprice {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
}

.offer ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
}

.offer a {
  display: inline-flex;
  margin-top: 8px;
  background: var(--black);
  color: var(--yellow);
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-grid button,
.path-grid a {
  display: flex;
  min-height: 78px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--black);
  cursor: pointer;
  padding: 18px;
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}

.path-grid button:nth-child(1),
.path-grid a:nth-child(1) {
  background: #90b4ee;
}

.path-grid button:nth-child(2),
.path-grid a:nth-child(2) {
  background: #ffc84f;
}

.path-grid button:nth-child(3),
.path-grid a:nth-child(3) {
  background: #fe8585;
}

.path-grid button:nth-child(4),
.path-grid a:nth-child(4) {
  background: #bfa7ff;
}

.path-grid button:nth-child(5),
.path-grid a:nth-child(5) {
  background: #80e0d2;
}

.path-grid button:hover,
.path-grid button:focus-visible,
.path-grid a:hover,
.path-grid a:focus-visible {
  filter: brightness(1.06) saturate(1.08);
  transform: translateY(-2px);
}

.fit-grid {
  display: grid;
  gap: 12px;
}

.fit-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2.3vw, 1.28rem);
  font-weight: 800;
}

.fit-grid article {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(16px, 4vw, 22px);
}

.fit-grid h3 {
  color: var(--yellow);
  font-size: clamp(1rem, 4vw, 1.28rem);
}

.fit-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.fit-grid li {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.viewpoint {
  display: grid;
  gap: 22px;
}

.viewpoint h2 {
  max-width: 880px;
}

.viewpoint-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
  border-left: 8px solid var(--blue);
  padding-left: clamp(18px, 4vw, 30px);
}

.viewpoint-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2.4vw, 1.28rem);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: var(--max);
}

.faq-list details {
  border: 2px solid var(--black);
  background: var(--white);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: clamp(16px, 4vw, 22px);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--red);
  content: "+";
  font-size: 1.8rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details[open] summary {
  border-bottom: 2px solid var(--line);
}

.faq-list p {
  max-width: 830px;
  margin: 0;
  padding: 0 clamp(16px, 4vw, 22px) clamp(16px, 4vw, 22px);
  color: var(--gray);
  font-weight: 800;
}

.process-grid article {
  display: grid;
  align-content: start;
  border-top: 2px solid var(--black);
  padding-top: 20px;
}

.process-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 20px;
}

.process-grid article:nth-child(1) {
  grid-column: 1 / -1;
}

.process-grid article:nth-child(1) img,
.process-grid article:nth-child(5) img {
  aspect-ratio: 16 / 7;
}

.media-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.media-layout img {
  width: 100%;
  border: 2px solid var(--white);
}

.spotify-embed {
  max-width: 860px;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.industry-photo {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 52% center;
}

.industry .media-layout p {
  max-width: 720px;
  border-left: 8px solid var(--blue);
  padding-left: clamp(16px, 4vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

.project {
  display: grid;
  gap: 28px;
}

.consultation-cta {
  display: grid;
  gap: 12px;
  border: 1px solid var(--black);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--blue);
  padding: clamp(18px, 5vw, 30px);
}

.consultation-cta h3 {
  margin: 0;
  font-size: clamp(1.6rem, 7vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.consultation-cta p {
  max-width: 680px;
  color: var(--gray);
}

.consultation-cta .button {
  width: fit-content;
}

.mix-link {
  width: fit-content;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-form {
  display: grid;
  gap: 16px;
  border: 2px solid var(--black);
  background: var(--soft);
  padding: clamp(18px, 5vw, 30px);
}

.project-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-row {
  display: grid;
  gap: 16px;
}

.guidance-booking {
  display: grid;
  gap: 12px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 16px;
}

.guidance-booking[hidden] {
  display: none;
}

.booking-intro {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.booking-options {
  display: grid;
  gap: 10px;
}

.booking-card {
  display: grid;
  gap: 4px;
  border: 2px solid var(--line);
  background: var(--soft);
  padding: 14px;
}

.booking-card strong {
  color: var(--ink);
  line-height: 1.05;
  text-transform: uppercase;
}

.booking-card span {
  color: var(--gray);
  font-weight: 800;
}

.form-status {
  margin: 0;
  border: 2px solid transparent;
  padding: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.form-status.success,
.form-status.error,
.form-status.info {
  padding: 14px;
}

.form-status.success {
  border-color: #95d5b2;
  background: #effaf3;
}

.form-status.error {
  border-color: #ff9f9f;
  background: #fff0f0;
}

.form-status.info {
  border-color: var(--blue);
  background: #eef4ff;
}

.booking-card em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 13px 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(144, 180, 238, 0.4);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.mix-hero {
  display: grid;
  gap: 18px;
  padding-top: clamp(44px, 8vw, 96px);
}

.mix-hero h1 {
  max-width: 900px;
}

.mix-hero > p:not(.section-label) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 700;
}

.workflow-steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-top: 2px solid var(--black);
  padding-top: 14px;
}

.workflow-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--blue);
  color: var(--black);
  font-weight: 900;
}

.workflow-steps p {
  margin: 0;
  color: var(--gray);
  font-weight: 800;
}

.mix-intake {
  display: grid;
  gap: 28px;
}

.mix-form {
  display: grid;
  gap: 16px;
  border: 2px solid var(--black);
  background: var(--soft);
  padding: clamp(18px, 5vw, 30px);
}

.deposit-panel {
  display: grid;
  gap: 18px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: clamp(16px, 4vw, 24px);
}

.deposit-panel h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 5vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.deposit-panel p {
  color: var(--gray);
}

.payment-element-shell {
  display: grid;
  gap: 12px;
  border: 2px solid var(--line);
  background: var(--soft);
  padding: 16px;
}

.payment-preview-label {
  margin: 0;
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#payment-element {
  min-height: 150px;
  border: 2px dashed var(--line);
  background: var(--white);
  padding: 18px;
}

#payment-element p {
  margin: 0;
  color: var(--gray);
  font-weight: 800;
}

.footer {
  display: grid;
  gap: 18px;
  padding: 42px clamp(18px, 6vw, 70px);
  background: var(--black);
  color: var(--white);
}

.footer img {
  width: min(680px, 86vw);
}

.footer p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.74);
}

.newsletter-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-top: 8px;
  padding: 22px;
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.newsletter-form label {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-form p {
  margin-top: 8px;
  font-size: 0.92rem;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-row input {
  min-width: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 16px;
  font: inherit;
  font-weight: 800;
}

.newsletter-row input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-row button {
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  padding: 14px 18px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-hidden {
  position: absolute;
  left: -5000px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-body {
  background:
    radial-gradient(circle at top right, rgba(144, 180, 238, 0.2), transparent 32rem),
    radial-gradient(circle at 10% 18%, rgba(255, 200, 79, 0.12), transparent 24rem),
    var(--black);
}

.portal-header {
  justify-content: center;
}

.portal-header .desktop-nav button {
  border: 0;
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.login-shell,
.artist-roadmap {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 86px) clamp(18px, 5vw, 54px);
}

.login-card,
.portal-section,
.portal-hero {
  border: 2px solid var(--white);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 12px 12px 0 rgba(144, 180, 238, 0.75);
}

.login-card {
  display: grid;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 7vw, 54px);
}

.login-card h1,
.portal-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 10vw, 5rem);
  line-height: 0.9;
}

.project-chooser {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.project-chooser h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 7vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.project-chooser-list {
  display: grid;
  gap: 12px;
}

.project-chooser-list a {
  display: grid;
  gap: 6px;
  border: 2px solid var(--black);
  background: var(--soft);
  padding: clamp(16px, 4vw, 22px);
}

.project-chooser-list strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 5vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.project-chooser-list span {
  color: var(--gray);
  font-weight: 900;
}

.portal-secondary-button {
  justify-self: start;
  border: 2px solid var(--black);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 10px 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-identity h1 + .portal-lede {
  margin-top: clamp(16px, 3vw, 26px);
}

.portal-lede {
  max-width: 760px;
  color: var(--gray);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 800;
}

.artist-login-form {
  display: grid;
  gap: 16px;
}

.artist-login-form[hidden] {
  display: none !important;
}

.portal-status,
.portal-note {
  margin: 0;
  color: var(--gray);
  font-weight: 800;
}

.portal-status {
  color: var(--red);
}

.portal-status[data-tone="success"] {
  color: #287b5f;
}

.portal-status[data-tone="info"] {
  color: var(--blue);
}

.artist-roadmap {
  display: grid;
  gap: clamp(26px, 5vw, 54px);
}

.portal-hero {
  display: grid;
  gap: 22px;
  align-items: end;
  padding: clamp(24px, 7vw, 58px);
}

.artist-identity {
  display: grid;
  gap: 20px;
  align-items: center;
}

.profile-uploader {
  display: grid;
  width: fit-content;
  gap: 10px;
}

.profile-frame {
  display: grid;
  width: clamp(92px, 26vw, 148px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--yellow);
  box-shadow: 8px 8px 0 rgba(144, 180, 238, 0.75);
  font-size: clamp(1.9rem, 8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-upload,
.profile-actions button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  padding: 8px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-actions button {
  background: var(--white);
}

.profile-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.portal-pulse {
  display: grid;
  gap: 3px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  padding: 20px;
}

.portal-pulse span,
.portal-pulse em {
  color: var(--yellow);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-pulse strong {
  color: var(--blue);
  font-size: clamp(3rem, 14vw, 6rem);
  line-height: 0.95;
}

.portal-section {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 6vw, 44px);
  scroll-margin-top: 96px;
}

.black-section-soft {
  background: var(--black);
  color: var(--white);
}

.black-section-soft h2,
.black-section-soft .phase-grid strong {
  color: var(--white);
}

.portal-section-heading h2 {
  margin-bottom: 0;
}

.portal-field-grid,
.phase-grid,
.song-grid {
  display: grid;
  gap: 16px;
}

.portal-field-grid label,
.song-card label {
  align-self: stretch;
}

.phase-grid article,
.song-card,
.roadmap-block {
  border: 2px solid var(--black);
  background: var(--white);
}

.roadmap-block:nth-child(1) {
  box-shadow: 8px 8px 0 rgba(144, 180, 238, 0.75);
}

.roadmap-block:nth-child(2) {
  box-shadow: 8px 8px 0 rgba(255, 200, 74, 0.78);
}

.roadmap-block:nth-child(3) {
  box-shadow: 8px 8px 0 rgba(248, 98, 104, 0.5);
}

.roadmap-block:nth-child(4) {
  box-shadow: 8px 8px 0 rgba(116, 210, 188, 0.72);
}

.roadmap-block:nth-child(5) {
  box-shadow: 8px 8px 0 rgba(172, 143, 255, 0.55);
}

.roadmap-block:nth-child(1) .roadmap-toggle {
  border-top: 8px solid var(--blue);
}

.roadmap-block:nth-child(2) .roadmap-toggle {
  border-top: 8px solid var(--yellow);
}

.roadmap-block:nth-child(3) .roadmap-toggle {
  border-top: 8px solid var(--red);
}

.roadmap-block:nth-child(4) .roadmap-toggle {
  border-top: 8px solid #74d2bc;
}

.roadmap-block:nth-child(5) .roadmap-toggle {
  border-top: 8px solid #ac8fff;
}

.black-section-soft .phase-grid article {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.phase-grid article,
.song-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.phase-grid span,
.song-card > span {
  color: var(--red);
  font-weight: 900;
}

.phase-grid strong,
.song-card > span {
  color: var(--ink);
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.phase-grid p,
.roadmap-panel p {
  margin: 0;
  color: var(--gray);
  font-weight: 700;
}

.portal-helper {
  max-width: 820px;
  margin: 0;
  color: var(--gray);
  font-weight: 800;
}

.black-section-soft .phase-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.stage-board {
  overflow-x: auto;
  border: 2px solid var(--black);
  background: var(--white);
}

.stage-row {
  display: grid;
  min-width: 980px;
  grid-template-columns: 120px repeat(10, minmax(74px, 1fr));
  border-bottom: 2px solid var(--line);
}

.stage-row:last-child {
  border-bottom: 0;
}

.stage-row > * {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  border-right: 2px solid var(--line);
  padding: 10px;
  text-align: center;
}

.stage-row > *:last-child {
  border-right: 0;
}

.stage-header {
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stage-row strong {
  justify-content: flex-start;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.stage-header strong {
  color: var(--yellow);
}

.stage-row label {
  letter-spacing: 0;
}

.stage-row input,
.portal-checklist input,
.song-milestones input {
  width: 24px;
  height: 24px;
  accent-color: var(--blue);
}

.song-tracker-stack {
  display: grid;
  gap: 16px;
}

.release-prep-stack {
  display: grid;
  gap: 16px;
}

.writing-room {
  display: grid;
  gap: 18px;
}

.writing-room-head {
  display: grid;
  gap: 16px;
  align-items: start;
  border: 2px solid var(--black);
  background: linear-gradient(135deg, rgba(144, 180, 238, 0.22), rgba(255, 200, 74, 0.18));
  padding: 16px;
}

.writing-room-head h3,
.worktape-panel h3 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 4vw, 1.45rem);
}

.writing-room-head p,
.worktape-panel p,
.audio-empty {
  margin: 0;
  color: var(--gray);
  font-weight: 800;
}

.writing-save-status {
  margin-top: 10px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.writing-save-status[data-tone="success"] {
  color: #1c7c45;
}

.writing-save-status[data-tone="error"] {
  color: var(--red);
}

.writing-empty {
  border: 2px dashed var(--line);
  background: var(--soft);
  padding: 18px;
}

.writing-empty strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.writing-empty p {
  margin: 6px 0 0;
  color: var(--gray);
  font-weight: 800;
}

.writing-stack {
  display: grid;
  gap: 18px;
}

.writing-card {
  display: grid;
  gap: 0;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 0;
  box-shadow: 8px 8px 0 rgba(144, 180, 238, 0.7);
}

.writing-card:nth-child(2n) {
  box-shadow: 8px 8px 0 rgba(255, 200, 74, 0.8);
}

.writing-card:nth-child(3n) {
  box-shadow: 8px 8px 0 rgba(248, 98, 104, 0.45);
}

.writing-card-toggle {
  position: relative;
  display: grid;
  width: 100%;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  padding: 16px 54px 16px 16px;
  text-align: left;
}

.writing-card-toggle:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -6px;
}

.writing-card-kicker {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.writing-card-title {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(1.18rem, 5.4vw, 1.85rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: none;
}

.writing-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.writing-card-meta span {
  border: 2px solid var(--black);
  background: var(--soft);
  padding: 6px 9px;
  color: var(--gray);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.writing-card.is-open .writing-card-meta span:first-child,
.writing-card-meta span:last-child {
  background: var(--black);
  color: var(--yellow);
}

.writing-card-plus {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.writing-card-body {
  display: grid;
  gap: 16px;
  border-top: 2px solid var(--black);
  padding: 16px;
}

.writing-card-body[hidden] {
  display: none;
}

.writing-card-head {
  display: grid;
  gap: 12px;
}

.writing-card-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.writing-card-head input {
  font-size: clamp(1.2rem, 6vw, 2rem);
  font-weight: 900;
}

.writing-card-head select {
  min-height: 46px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--yellow);
  padding: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.writing-fields {
  display: grid;
  gap: 14px;
}

.worktape-panel {
  display: grid;
  gap: 14px;
  border: 2px solid var(--line);
  background: var(--soft);
  padding: 14px;
}

.writing-audio {
  display: grid;
  gap: 12px;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  padding: 14px;
}

.audio-topline {
  display: grid;
  gap: 4px;
}

.audio-topline strong {
  overflow-wrap: anywhere;
  color: var(--yellow);
  font-size: 0.94rem;
  font-weight: 900;
}

.audio-topline span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

.audio-controls {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 8px;
}

.audio-controls button,
.worktape-upload,
.audio-remove {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audio-controls button {
  border-color: var(--white);
}

.audio-remove {
  width: fit-content;
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.idea-delete {
  justify-self: start;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idea-delete:hover,
.idea-delete:focus-visible {
  background: var(--red);
  color: var(--white);
}

.upload-status {
  display: grid;
  gap: 8px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 12px;
}

.upload-status[hidden] {
  display: none;
}

.upload-status span {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upload-track {
  position: relative;
  overflow: hidden;
  height: 10px;
  border: 2px solid var(--black);
  background: var(--soft);
}

.upload-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: var(--blue);
  animation: uploadPulse 1.05s infinite ease-in-out;
}

.worktape-upload[data-uploading="true"] {
  opacity: 0.72;
  pointer-events: none;
}

@keyframes uploadPulse {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(250%);
  }
}

.writing-audio input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.worktape-upload {
  width: fit-content;
}

.worktape-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.promote-panel {
  display: grid;
  gap: 12px;
  border-top: 2px solid var(--line);
  padding-top: 14px;
}

.promote-options {
  display: grid;
  gap: 10px;
}

.promote-options select {
  min-height: 48px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 10px;
  font-weight: 900;
}

.promote-options p {
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.song-tracker {
  border: 2px solid var(--black);
  background: var(--white);
}

.release-prep-card {
  border: 2px solid var(--black);
  background: var(--white);
}

.song-tracker:nth-child(1) {
  box-shadow: 8px 8px 0 rgba(144, 180, 238, 0.8);
}

.song-tracker:nth-child(2) {
  box-shadow: 8px 8px 0 rgba(255, 200, 74, 0.85);
}

.song-tracker:nth-child(3) {
  box-shadow: 8px 8px 0 rgba(248, 98, 104, 0.55);
}

.song-tracker:nth-child(4) {
  box-shadow: 8px 8px 0 rgba(116, 210, 188, 0.75);
}

.release-prep-card:nth-child(1) {
  box-shadow: 8px 8px 0 rgba(255, 200, 74, 0.82);
}

.release-prep-card:nth-child(2) {
  box-shadow: 8px 8px 0 rgba(144, 180, 238, 0.75);
}

.release-prep-card:nth-child(3) {
  box-shadow: 8px 8px 0 rgba(248, 98, 104, 0.48);
}

.release-prep-card:nth-child(4) {
  box-shadow: 8px 8px 0 rgba(172, 143, 255, 0.56);
}

.song-toggle {
  background: var(--black);
  color: var(--white);
}

.release-toggle {
  background: var(--yellow);
  color: var(--black);
}

.song-toggle::after {
  color: var(--yellow);
}

.release-toggle::after {
  color: var(--red);
}

.song-panel {
  padding-top: 18px;
}

.release-panel {
  padding-top: 18px;
}

.song-fields,
.song-milestones {
  display: grid;
  gap: 14px;
}

.song-milestones {
  border: 2px solid var(--line);
  background: var(--soft);
  padding: 14px;
}

.song-milestones label {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.content-launch-kit {
  display: grid;
  gap: 16px;
  border: 2px solid var(--black);
  background: linear-gradient(135deg, rgba(144, 180, 238, 0.24), rgba(255, 200, 74, 0.2));
  padding: 16px;
}

.content-launch-kit h3 {
  margin: 0 0 6px;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
}

.content-launch-kit p {
  margin: 0;
  color: var(--gray);
  font-weight: 800;
}

.launch-kit-goal {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  padding: 14px;
  line-height: 1.25;
  text-transform: none;
}

.launch-kit-goal input {
  width: 24px;
  height: 24px;
  accent-color: var(--yellow);
}

.launch-kit-goal strong {
  display: block;
  color: var(--yellow);
  font-size: 0.96rem;
  font-weight: 900;
}

.launch-kit-goal em {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.content-kit-list {
  display: grid;
  gap: 8px;
}

.content-kit-item {
  border: 2px solid rgba(22, 22, 24, 0.16);
  background: rgba(255, 255, 255, 0.84);
}

.content-kit-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 12px;
}

.content-kit-item summary::-webkit-details-marker {
  display: none;
}

.content-kit-item summary label {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.content-kit-item input {
  width: 24px;
  height: 24px;
  accent-color: var(--red);
}

.content-kit-item summary span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-kit-item[open] summary {
  border-bottom: 2px solid rgba(22, 22, 24, 0.12);
}

.content-kit-item p {
  padding: 12px;
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.45;
}

.splits-table {
  display: grid;
  gap: 8px;
  border: 2px solid var(--black);
  padding: 14px;
}

.splits-table h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.split-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 8px;
  align-items: center;
}

.split-head {
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-stack {
  display: grid;
  gap: 14px;
}

.roadmap-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  padding: 18px;
  text-align: left;
  font-size: clamp(1.05rem, 4vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-toggle::after {
  content: "+";
  color: var(--red);
  font-size: 1.8rem;
  line-height: 1;
}

.roadmap-toggle[aria-expanded="true"]::after {
  content: "-";
}

.roadmap-panel {
  display: grid;
  gap: 16px;
  padding: 0 18px 20px;
}

.roadmap-panel[hidden] {
  display: none;
}

.portal-checklist {
  display: grid;
  gap: 10px;
}

.portal-checklist label {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  border-top: 2px solid var(--line);
  padding-top: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
}

.portal-inline-field,
.portal-checklist .checklist-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.portal-checklist .checklist-field {
  grid-template-columns: 1fr;
  border-top: 2px solid var(--line);
  padding-top: 10px;
}

.portal-inline-field textarea,
.portal-checklist .checklist-field textarea {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.moodboard-tool {
  display: grid;
  gap: 14px;
  border: 2px solid var(--black);
  background: var(--soft);
  padding: 14px;
}

.moodboard-head {
  display: grid;
  gap: 14px;
}

.moodboard-head h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.moodboard-head p {
  margin: 0;
}

.moodboard-upload,
.moodboard-clear {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moodboard-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.moodboard-clear {
  background: var(--black);
  color: var(--yellow);
}

.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 120px;
}

.moodboard-grid:empty {
  border: 2px dashed var(--line);
  background: var(--white);
}

.moodboard-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--white);
}

.portal-body {
  background: var(--black);
}

.login-card,
.portal-section,
.portal-hero {
  border-color: var(--black);
  box-shadow: none;
}

.portal-section,
.portal-hero {
  background: var(--white);
}

.profile-frame {
  box-shadow: none;
}

.writing-room-head,
.content-launch-kit {
  background: var(--black);
  color: var(--white);
}

.writing-room-head p,
.content-launch-kit p {
  color: rgba(255, 255, 255, 0.76);
}

.roadmap-block,
.writing-card,
.song-tracker,
.release-prep-card {
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--white);
  box-shadow: none !important;
}

.roadmap-block:nth-child(n) .roadmap-toggle {
  border-top: 0;
}

.roadmap-block:nth-child(5n + 1),
.writing-card:nth-child(5n + 1),
.song-tracker:nth-child(5n + 1),
.release-prep-card:nth-child(5n + 1) {
  border-left: 10px solid var(--blue);
}

.roadmap-block:nth-child(5n + 2),
.writing-card:nth-child(5n + 2),
.song-tracker:nth-child(5n + 2),
.release-prep-card:nth-child(5n + 2) {
  border-left: 10px solid var(--yellow);
}

.roadmap-block:nth-child(5n + 3),
.writing-card:nth-child(5n + 3),
.song-tracker:nth-child(5n + 3),
.release-prep-card:nth-child(5n + 3) {
  border-left: 10px solid #fe8585;
}

.roadmap-block:nth-child(5n + 4),
.writing-card:nth-child(5n + 4),
.song-tracker:nth-child(5n + 4),
.release-prep-card:nth-child(5n + 4) {
  border-left: 10px solid #bfa7ff;
}

.roadmap-block:nth-child(5n + 5),
.writing-card:nth-child(5n + 5),
.song-tracker:nth-child(5n + 5),
.release-prep-card:nth-child(5n + 5) {
  border-left: 10px solid #80e0d2;
}

.writing-card-toggle,
.song-toggle,
.release-toggle,
.roadmap-toggle {
  background: var(--white);
  color: var(--ink);
}

.song-toggle::after,
.release-toggle::after,
.roadmap-toggle::after {
  color: var(--red);
}

.song-panel,
.release-panel,
.roadmap-panel,
.writing-card-body {
  background: var(--white);
}

.song-milestones,
.moodboard-tool,
.worktape-panel {
  border-color: var(--black);
  background: var(--soft);
}

.content-kit-item {
  border-color: var(--black);
  background: var(--white);
}

.content-launch-kit .content-kit-item p {
  color: var(--gray);
}

.portal-pulse {
  border-color: var(--black);
  box-shadow: none;
}

@media (min-width: 680px) {
  .success-grid,
  .process-grid,
  .highlight-grid,
  .path-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .portal-field-grid,
  .song-grid,
  .song-fields,
  .song-milestones,
  .writing-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .writing-room-head,
  .writing-card-head,
  .audio-topline,
  .promote-options {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .moodboard-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

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

  .offer-grid.single {
    grid-template-columns: minmax(0, 0.7fr);
  }
}

@media (min-width: 900px) {
  .portal-hero {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .artist-identity {
    grid-template-columns: auto minmax(0, 1fr);
  }

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

@media (min-width: 461px) and (max-width: 979px) {
  .hero-copy {
    bottom: clamp(16px, 3.5vw, 34px);
    left: clamp(16px, 4vw, 38px);
    right: clamp(16px, 4vw, 38px);
  }

  .hero-kicker {
    font-size: clamp(0.62rem, 1.5vw, 0.75rem);
  }

  h1 span {
    font-size: clamp(2rem, 6.8vw, 3.8rem);
  }

  h1 em {
    font-size: clamp(0.96rem, 2.8vw, 1.55rem);
  }
}

@media (min-width: 980px) {
  .site-header {
    justify-content: space-between;
    min-height: 92px;
  }

  .logo-link {
    width: min(38vw, 720px);
  }

  .desktop-nav {
    display: flex;
  }

  .hero-image {
    min-height: 590px;
    max-height: 760px;
  }

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

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

  .project,
  .media-layout,
  .mix-intake,
  .deposit-panel {
    grid-template-columns: 0.9fr 1fr;
  }

  .workflow-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .workflow-steps article {
    align-content: start;
    grid-template-columns: 1fr;
  }

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

  .feature-offer {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1800px) {
  .hero {
    display: grid;
    justify-items: center;
  }

  .hero-image {
    width: min(100%, 3000px);
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .hero::after,
  .hero-copy {
    width: min(100%, 3000px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-copy {
    padding-left: clamp(28px, 4vw, 82px);
    padding-right: clamp(28px, 4vw, 82px);
  }

  .hero-kicker {
    font-size: clamp(0.9rem, 0.78vw, 1.12rem);
  }

  h1 span {
    font-size: clamp(5rem, 4.6vw, 7rem);
  }

  h1 em {
    font-size: clamp(2.05rem, 2vw, 3rem);
  }
}

@media (max-width: 460px) {
  .site-header {
    min-height: 76px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .logo-link {
    width: 96vw;
  }

  .hero {
    display: grid;
  }

  .hero-image {
    min-height: 0;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero-copy {
    position: static;
    padding: 0 12px 14px;
    background: var(--black);
  }

  .hero-kicker {
    display: none;
  }

  .hero-copy h1 {
    gap: 3px;
    margin-top: 8px;
  }

  h1 span {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
  }

  h1 em {
    font-size: clamp(1rem, 4.5vw, 1.45rem);
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 94%;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .industry-photo {
    aspect-ratio: 1.25;
    object-position: 54% center;
  }

  .footer img {
    width: 94vw;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .content-kit-item summary {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .content-kit-item summary span {
    margin-left: 30px;
  }
}
