@charset "utf-8";
/* CSS Document 

TemplateMo 606 String Master

https://templatemo.com/tm-606-string-master

*/

@font-face {
	font-family: 'Circular Std';
	src: url('Files/fonts/CircularStd-Book.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Circular Std';
	src: url('Files/fonts/CircularStd-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Circular Std';
	src: url('Files/fonts/CircularStd-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-dark: #0d0d0d;
	--bg-card: #1a1a1a;
	--bg-elevated: #242424;
	--accent: #f59e0b;
	--accent-light: #fbbf24;
	--accent-dark: #d97706;
	--text-primary: #fafafa;
	--text-secondary: #a3a3a3;
	--text-muted: #737373;
	--border: #2e2e2e;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Circular Std', sans-serif;
	font-weight: 400;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
}

/* Default weights: H1 = Bold, H2-H4 = Medium, everything else = Book (inherited from body).
   Any more specific selector below can still override these per case. */
h1 {
	font-weight: 700;
}

h2,
h3,
h4 {
	font-weight: 500;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(13, 13, 13, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-right: auto;
}

.logo-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-cta {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s;
}

.nav-cta span {
	display: inline;
	background: transparent;
	padding: 0;
}

.nav-cta:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: clamp(5rem, 13vh, 8rem) 2rem clamp(2rem, 5vh, 4rem);
	position: relative;
	overflow: hidden;
}

.hero-video {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
	pointer-events: none;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 1;
	transform: translateY(2.5rem);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	padding: 0.5rem 1rem;
	border-radius: 100px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.hero-badge span {
	color: var(--accent);
}

.hero h1 {
	font-size: clamp(3.25rem, 6.5vw, 5.2rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	background: linear-gradient(90deg, #f7941d 0%, #ec1e4c 20%, #d6249f 40%, #7b2ff7 60%, #7b2ff7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.hero h1 .highlight {
	color: var(--accent);
}

.hero-description {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-top: 1rem;
	margin-bottom: 2rem;
	max-width: 480px;
	opacity: 0.8;
}

.hero-roles {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hero-roles span:nth-child(1) {
	color: #fafafa;
	font-size: 1.3em;
}

.hero-roles span:nth-child(2) {
	color: #e9e9e9;
	font-size: 1.15em;
}

.hero-roles span:nth-child(3) {
	color: #d7d7d7;
	font-size: 1.08em;
}

.hero-roles span:nth-child(4) {
	color: #c6c6c6;
	font-size: 1.01em;
}

.hero-roles span:nth-child(5) {
	color: #b4b4b4;
	font-size: 0.94em;
}

.hero-roles span:nth-child(6) {
	color: #a3a3a3;
	font-size: 0.87em;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

.btn-primary {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--border);
	transition: all 0.2s;
}

.btn-secondary:hover {
	border-color: var(--text-secondary);
	background: var(--bg-card);
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat {
	text-align: left;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Software Logos */
.hero-logos {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2.5rem;
	margin-top: 1rem;
}

.hero-logos img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.hero-scroll {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: 0.5rem;
}

/* Profile Photo */
.hero-photo {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
}

.profile-photo {
	width: 100%;
	max-width: 300px;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	border: 1px solid var(--border);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.guitar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border);
}

.guitar-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-secondary);
}

.guitar-controls {
	display: flex;
	gap: 0.5rem;
}

.chord-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-primary);
	padding: 0.4rem 0.8rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-family: inherit;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.15s;
}

.chord-btn:hover {
	background: var(--accent);
	color: var(--bg-dark);
	border-color: var(--accent);
}

.chord-btn.active {
	background: var(--accent);
	color: var(--bg-dark);
	border-color: var(--accent);
}

/* Mini Guitar Fretboard */
.guitar-neck {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.fretboard {
	background:
		repeating-linear-gradient(90deg,
			transparent 0px,
			rgba(60, 30, 20, 0.15) 1px,
			transparent 2px,
			transparent 6px),
		linear-gradient(180deg,
			#3d2517 0%,
			#2a1810 20%,
			#1f120b 50%,
			#2a1810 80%,
			#3d2517 100%);
	border-radius: 6px;
	border: 3px solid #1a0f08;
	border-top: none;
}

.nut {
	height: 10px;
	background: linear-gradient(180deg,
			#f5f5dc 0%,
			#d4cba8 50%,
			#c9c098 100%);
	border-radius: 6px 6px 0 0;
}

.fretboard-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: repeat(6, 32px);
	position: relative;
}

.string-labels {
	position: absolute;
	left: -28px;
	top: 0;
	height: calc(6 * 32px);
	display: flex;
	flex-direction: column;
}

.string-label {
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	color: var(--text-muted);
	font-weight: 500;
}

.fret {
	position: relative;
	border-right: 2px solid #c0a080;
	border-bottom: 1px solid rgba(200, 200, 200, 0.4);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.1s;
}

.fret:hover {
	background: rgba(245, 158, 11, 0.15);
}

.fret::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

/* String thickness - thicker for lower strings */
.fret[data-string="0"]::after {
	height: 1px;
	background: linear-gradient(90deg,
			rgba(200, 180, 160, 0.4),
			rgba(240, 220, 200, 0.7),
			rgba(200, 180, 160, 0.4));
}

.fret[data-string="1"]::after {
	height: 1px;
	background: linear-gradient(90deg,
			rgba(200, 180, 160, 0.4),
			rgba(240, 220, 200, 0.7),
			rgba(200, 180, 160, 0.4));
}

.fret[data-string="2"]::after {
	height: 2px;
	background: linear-gradient(90deg,
			rgba(190, 170, 150, 0.5),
			rgba(230, 210, 190, 0.8),
			rgba(190, 170, 150, 0.5));
}

.fret[data-string="3"]::after {
	height: 2px;
	background: linear-gradient(90deg,
			rgba(180, 160, 140, 0.5),
			rgba(220, 200, 180, 0.8),
			rgba(180, 160, 140, 0.5));
}

.fret[data-string="4"]::after {
	height: 3px;
	background: linear-gradient(90deg,
			rgba(160, 140, 120, 0.5),
			rgba(200, 180, 160, 0.85),
			rgba(160, 140, 120, 0.5));
	box-shadow: 0 0 2px rgba(200, 180, 160, 0.3);
}

.fret[data-string="5"]::after {
	height: 4px;
	background: linear-gradient(90deg,
			rgba(150, 130, 110, 0.5),
			rgba(190, 170, 150, 0.9),
			rgba(150, 130, 110, 0.5));
	box-shadow: 0 0 3px rgba(190, 170, 150, 0.4);
}

.note-marker {
	width: 18px;
	height: 18px;
	background: var(--accent);
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 0.5rem;
	font-weight: 700;
	color: var(--bg-dark);
	z-index: 2;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
}

.note-marker.show {
	display: flex;
}

.note-marker.playing {
	animation: notePulse 0.3s ease;
}

@keyframes notePulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
	}

	100% {
		transform: scale(1);
	}
}

.fret-marker {
	position: absolute;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	pointer-events: none;
}

.guitar-footer {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.guitar-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.guitar-hint {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.footer-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.clear-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	padding: 0.3rem 0.6rem;
	border-radius: 5px;
	font-size: 0.7rem;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.15s;
}

.clear-btn:hover {
	background: var(--border);
	color: var(--text-primary);
}

.sound-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.toggle-switch {
	width: 36px;
	height: 20px;
	background: var(--bg-elevated);
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	transition: background 0.2s;
}

.toggle-switch.active {
	background: var(--accent);
}

.toggle-switch::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: var(--text-primary);
	border-radius: 50%;
	top: 2px;
	left: 2px;
	transition: transform 0.2s;
}

.toggle-switch.active::after {
	transform: translateX(16px);
}

/* Song Player */
.song-player {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--bg-elevated);
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
}

.play-btn {
	width: 32px;
	height: 32px;
	background: var(--accent);
	border: none;
	border-radius: 50%;
	color: var(--bg-dark);
	font-size: 0.9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s;
	flex-shrink: 0;
}

.play-btn:hover {
	background: var(--accent-light);
	transform: scale(1.05);
}

.play-btn.playing {
	background: var(--accent-dark);
}

.song-info {
	flex: 1;
	min-width: 0;
}

.song-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.song-progress {
	width: 100%;
	height: 3px;
	background: var(--border);
	border-radius: 2px;
	margin-top: 4px;
	overflow: hidden;
}

.song-progress-bar {
	height: 100%;
	background: var(--accent);
	width: 0%;
	transition: width 0.1s linear;
}

.song-select {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	padding: 0.3rem 0.5rem;
	border-radius: 5px;
	font-size: 0.7rem;
	font-family: inherit;
	cursor: pointer;
}

.song-select:focus {
	outline: none;
	border-color: var(--accent);
}

/* Features Section */
.music-projects {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #2b1a10 0%, var(--bg-card) 100%);
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.releases-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 1.625rem;
	row-gap: 2.75rem;
}

.release-card {
	position: relative;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid var(--border);
	transition: all 0.3s;
	filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
	cursor: pointer;
}

.release-card:hover {
	border-width: 4px;
	border-color: var(--accent);
	transform: scale(1.15);
	filter: drop-shadow(0 270px 405px rgba(0, 0, 0, 0.7));
	z-index: 5;
}

.release-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.release-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.5rem 1rem 1rem;
	background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.95) 75%);
	opacity: 0;
	transition: opacity 0.3s;
}

.release-card:hover .release-overlay {
	opacity: 1;
}

.release-title {
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.release-role {
	color: var(--text-secondary);
	font-size: 0.8rem;
}

/* Project Modal */
body.modal-open {
	overflow: hidden;
}

.project-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 2rem 2rem;
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.project-modal.active {
	opacity: 1;
	pointer-events: auto;
}

.project-modal-box {
	position: relative;
	width: 100%;
	max-width: 1100px;
	max-height: 88vh;
	overflow-y: auto;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.project-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(13, 13, 13, 0.7);
	color: var(--text-primary);
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background 0.2s, color 0.2s;
}

.project-modal-close:hover {
	background: var(--accent);
	color: var(--bg-dark);
}

.project-modal-banner {
	position: relative;
	width: 100%;
	height: 100px;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}

.project-modal-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.project-modal-logo {
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	border-radius: 16px;
	background: var(--bg-elevated);
	border: 3px solid var(--bg-card);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-secondary);
}

.project-modal-body {
	padding: 3.5rem 2.5rem 2.5rem;
}

.project-modal-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.project-modal-roles {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.project-modal-description {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
}

.project-modal-description + .project-modal-description {
	margin-top: 1rem;
}

.project-modal-single {
	margin-top: 2rem;
}

.project-modal-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	margin-top: 2rem;
}

.project-modal-column-title {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.project-modal-separator {
	width: 100%;
	height: 2px;
	background: var(--border);
	margin-bottom: 1.25rem;
}

.project-modal-videos {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.sc-track-btn {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
	padding: 0.9rem 1.1rem;
	margin-bottom: 0.75rem;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
}

.sc-track-btn:hover {
	background: var(--bg-card);
	border-color: var(--accent);
}

.sc-track-btn-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--bg-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sc-track-btn-icon svg {
	width: 18px;
	height: 18px;
}

.project-modal-spotify {
	width: 100%;
	height: 660px;
}

/* Custom audio player */
.audio-player {
	--player-accent: #f59e0b;
	--player-accent-2: #ffb347;
	background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-dark) 100%);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.audio-player.theme-hlr {
	--player-accent: #ff3b30;
	--player-accent-2: #ff9f45;
	background: linear-gradient(135deg, #3d1416 0%, #232323 100%);
}

.audio-player.theme-orion {
	--player-accent: #6c4fd1;
	--player-accent-2: #a78bfa;
	background: linear-gradient(135deg, #1c1433 0%, #232323 100%);
}

.audio-player.theme-wys {
	--player-accent: #3fae8a;
	--player-accent-2: #8fd9c4;
	background: linear-gradient(135deg, #122321 0%, #232323 100%);
}

.audio-player.theme-tdk {
	--player-accent: #2d6a8f;
	--player-accent-2: #e8963c;
	background: linear-gradient(135deg, #0f1b24 0%, #232323 100%);
}

.audio-player.theme-sr {
	--player-accent: #ff3fa4;
	--player-accent-2: #3fd9ff;
	background: linear-gradient(135deg, #23093a 0%, #232323 100%);
}

.audio-player-now-playing {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-player-art {
	width: 168px;
	height: 168px;
	border-radius: 14px;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--bg-dark);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.audio-player-art img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.audio-player-info {
	flex: 1;
	min-width: 0;
	padding-top: 0.5rem;
}

.audio-player-track-title {
	font-weight: 700;
	font-size: 1.3rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.audio-player-track-index {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 0.25rem;
	margin-bottom: 1.25rem;
}

.audio-player-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 0.35rem;
}

/* Wide single-column layout (e.g. WYS): controls align with the info block instead of centering */
.project-modal-single .audio-player-controls {
	justify-content: flex-start;
}

.audio-player-play {
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: linear-gradient(135deg, var(--player-accent) 0%, var(--player-accent-2) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.audio-player-play:hover {
	transform: scale(1.07);
}

.audio-player-play svg {
	width: 24px;
	height: 24px;
}

.audio-player-prev,
.audio-player-next {
	flex-shrink: 0;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}

.audio-player-prev:hover,
.audio-player-next:hover {
	background: rgba(255, 255, 255, 0.16);
	color: var(--text-primary);
}

.audio-player-prev svg,
.audio-player-next svg {
	width: 19px;
	height: 19px;
}

.audio-player-prev:disabled,
.audio-player-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-secondary);
}

.audio-player-progress {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.9rem 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-player-time {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
	width: 32px;
}

.audio-player-time-duration {
	text-align: right;
}

.audio-player-bar {
	position: relative;
	flex: 1;
	height: 100px;
	cursor: pointer;
}

.audio-player-bar-bg,
.audio-player-bar-fill {
	position: absolute;
	inset: 0;
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
}

.audio-player-bar-bg {
	background: rgba(255, 255, 255, 0.18);
}

.audio-player-bar-fill {
	background: linear-gradient(90deg, var(--player-accent) 0%, var(--player-accent-2) 100%);
	clip-path: inset(0 100% 0 0);
}

.audio-player-tracklist {
	list-style: none;
	max-height: 650px;
	overflow-y: auto;
}

.audio-player-track {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 1.25rem;
	cursor: pointer;
	transition: background 0.15s;
}

.audio-player-track:hover {
	background: rgba(255, 255, 255, 0.04);
}

.audio-player-track-num {
	font-size: 0.75rem;
	color: var(--text-muted);
	width: 18px;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}

.audio-player-track-name {
	flex: 1;
	min-width: 0;
	font-size: 0.85rem;
	color: var(--text-secondary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.audio-player-track-duration {
	font-size: 0.75rem;
	color: var(--text-muted);
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}

.audio-player-track.active .audio-player-track-num {
	color: var(--player-accent);
}

.audio-player-track.active .audio-player-track-name {
	color: var(--text-primary);
	font-weight: 600;
}

/* Persistent bottom audio bar */
.audio-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 72px;
	z-index: 500;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-dark) 100%);
	border-top: 1px solid var(--border);
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
	transform: translateY(100%);
	transition: transform 0.3s ease, background 0.3s ease;
	--player-accent: #f59e0b;
	--player-accent-2: #ffb347;
}

.audio-bar.active {
	transform: translateY(0);
}

.audio-bar-queue-toggle {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	background: transparent;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}

.audio-bar-queue-toggle:hover,
.audio-bar-queue-toggle.active {
	background: var(--bg-card);
	color: var(--text-primary);
}

.audio-bar-queue-toggle svg {
	width: 18px;
	height: 18px;
}

.audio-bar-queue {
	position: absolute;
	left: 1.5rem;
	bottom: calc(100% + 12px);
	width: min(320px, calc(100vw - 3rem));
	max-height: 60vh;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.audio-bar-queue.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.audio-bar-queue-header {
	flex-shrink: 0;
	padding: 0.85rem 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.audio-bar-queue-list {
	list-style: none;
	overflow-y: auto;
	padding: 0.4rem 0;
}

.audio-bar-queue-track {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.55rem 1.1rem;
	cursor: pointer;
	transition: background 0.15s;
}

.audio-bar-queue-track:hover {
	background: rgba(255, 255, 255, 0.05);
}

.audio-bar-queue-track-num {
	font-size: 0.7rem;
	color: var(--text-muted);
	width: 16px;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}

.audio-bar-queue-track-name {
	flex: 1;
	font-size: 0.8rem;
	color: var(--text-secondary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.audio-bar-queue-track-duration {
	font-size: 0.7rem;
	color: var(--text-muted);
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}

.audio-bar-queue-track.active .audio-bar-queue-track-num {
	color: var(--player-accent);
}

.audio-bar-queue-track.active .audio-bar-queue-track-name {
	color: var(--text-primary);
	font-weight: 600;
}

.audio-bar-art {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	margin: -0.75rem 0;
	border-radius: 0;
	overflow: hidden;
	background: var(--bg-dark);
}

.audio-bar-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.audio-bar-info {
	flex-shrink: 0;
	width: 180px;
	min-width: 0;
}

.audio-bar-title {
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.audio-bar-project {
	font-size: 0.75rem;
	color: var(--text-secondary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.audio-bar-controls {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.audio-bar-play {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: linear-gradient(135deg, var(--player-accent) 0%, var(--player-accent-2) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
}

.audio-bar-play:hover {
	transform: scale(1.07);
}

.audio-bar-play svg {
	width: 16px;
	height: 16px;
}

.audio-bar-prev,
.audio-bar-next {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: transparent;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}

.audio-bar-prev:hover,
.audio-bar-next:hover {
	background: var(--bg-card);
	color: var(--text-primary);
}

.audio-bar-prev svg,
.audio-bar-next svg {
	width: 14px;
	height: 14px;
}

.audio-bar-prev:disabled,
.audio-bar-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.audio-bar-time {
	flex-shrink: 0;
	font-size: 0.75rem;
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
	width: 32px;
}

.audio-bar-time:last-of-type {
	text-align: right;
}

.audio-bar-waveform {
	position: relative;
	flex: 1;
	height: 48px;
	cursor: pointer;
}

.audio-bar-waveform-bg,
.audio-bar-waveform-fill {
	position: absolute;
	inset: 0;
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
}

.audio-bar-waveform-bg {
	background: rgba(255, 255, 255, 0.18);
}

.audio-bar-waveform-fill {
	background: linear-gradient(90deg, var(--player-accent) 0%, var(--player-accent-2) 100%);
	clip-path: inset(0 100% 0 0);
}

.audio-bar-close {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: var(--text-muted);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.audio-bar-close:hover {
	background: var(--bg-card);
	color: var(--text-primary);
}

.audio-player-art img,
.audio-bar-art img {
	cursor: pointer;
}

.cover-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	z-index: 3000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.cover-lightbox.active {
	opacity: 1;
	pointer-events: auto;
}

.cover-lightbox-img {
	max-width: min(90vw, 600px);
	max-height: 90vh;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transform: scale(0.92);
	transition: transform 0.3s ease;
}

.cover-lightbox.active .cover-lightbox-img {
	transform: scale(1);
}

.cover-lightbox-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(13, 13, 13, 0.7);
	color: var(--text-primary);
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}

.cover-lightbox-close:hover {
	background: var(--accent);
	color: var(--bg-dark);
}

.project-modal-video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	overflow: hidden;
	background: var(--bg-elevated);
}

.project-modal-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Pricing Section */
.guitar-teaching {
	padding: 6rem 2rem;
	background: var(--bg-dark);
}

.section-rework {
	padding: 6rem 2rem;
	text-align: center;
}

.section-rework p {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
}

.billing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 3rem;
	background: var(--bg-card);
	padding: 0.5rem;
	border-radius: 12px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid var(--border);
}

.billing-option {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	background: transparent;
	border: none;
	font-family: inherit;
}

.billing-option:hover {
	color: var(--text-primary);
}

.billing-option.active {
	background: var(--accent);
	color: var(--bg-dark);
}

.billing-option .discount-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #22c55e;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	transition: all 0.3s;
}

.pricing-card:hover {
	transform: translateY(-4px);
}

.pricing-card.featured {
	border-color: var(--accent);
	box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}

.pricing-card.featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.3rem 1rem;
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
}

.pricing-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}

.pricing-price .currency {
	font-size: 1.5rem;
	font-weight: 600;
}

.pricing-price .period {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-muted);
}

.pricing-billed {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
	min-height: 1.2rem;
}

.pricing-savings {
	display: inline-block;
	background: rgba(34, 197, 94, 0.15);
	color: #22c55e;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 100px;
	margin-bottom: 1rem;
	min-height: 1.5rem;
}

.pricing-savings:empty {
	visibility: hidden;
}

.pricing-description {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border);
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.pricing-features li::before {
	content: '✓';
	color: var(--accent);
	font-weight: 700;
}

.pricing-btn {
	display: block;
	text-align: center;
	padding: 1rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s;
}

.pricing-card .pricing-btn {
	background: var(--bg-elevated);
	color: var(--text-primary);
	border: 1px solid var(--border);
}

.pricing-card .pricing-btn:hover {
	background: var(--text-primary);
	color: var(--bg-dark);
}

.pricing-card.featured .pricing-btn {
	background: var(--accent);
	color: var(--bg-dark);
	border: none;
}

.pricing-card.featured .pricing-btn:hover {
	background: var(--accent-light);
}

/* Q&A Section */
.qa {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.qa-list {
	max-width: 800px;
	margin: 0 auto;
}

.qa-item {
	border-bottom: 1px solid var(--border);
	border-left: 3px solid transparent;
	padding-left: 1.25rem;
	transition: border-color 0.3s ease, border-left-width 0.3s ease, opacity 0.3s ease;
}

.qa-item:last-child {
	border-bottom: none;
}

.qa-item:hover,
.qa-item[open] {
	border-left-width: 4px;
}

.qa-item.block-vision {
	border-left-color: #a855f7;
}

.qa-item.block-process {
	border-left-color: #3b82f6;
}

.qa-item.block-tech {
	border-left-color: #10b981;
}

.qa-item.block-budget {
	border-left-color: #f59e0b;
}

.qa-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.75rem 0;
	cursor: pointer;
	list-style: none;
}

.qa-item:first-child .qa-summary {
	padding-top: 0;
}

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

.qa-question {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0;
}

.qa-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--bg-elevated);
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	transition: transform 0.2s, background 0.2s, color 0.2s;
}

.qa-item[open] .qa-icon {
	transform: rotate(45deg);
	background: var(--accent);
	color: var(--bg-dark);
}

.qa-answer-wrap {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: height 0.3s ease, opacity 0.3s ease;
}

.qa-answer-inner {
	padding-bottom: 2.5rem;
}

.qa-answer {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}

.qa-answer + .qa-answer {
	margin-top: 1rem;
}

/* Contact Section */
.contact {
	padding: 6rem 2rem;
	background: rgba(26, 26, 26, 0.7);
}

.contact-form {
	max-width: 700px;
	margin: 0 auto;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
	width: 100%;
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 0.85rem 1rem;
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.form-group textarea {
	resize: vertical;
	min-height: 140px;
}

.file-upload {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.file-upload-btn {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	color: var(--text-primary);
	padding: 0.7rem 1.4rem;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.2s;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.file-upload-btn:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.file-upload-hint {
	color: var(--text-muted);
	font-size: 0.8rem;
}

.file-upload-error {
	color: #ef4444;
	font-size: 0.8rem;
	font-weight: 600;
	display: none;
}

.file-upload-error.show {
	display: inline;
}

.contact-form-footer {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-top: 0.5rem;
}

.contact-submit {
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.95rem;
}

.contact-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.contact-form-error {
	color: #ef4444;
	font-size: 0.85rem;
	display: none;
}

.contact-form-error.show {
	display: inline;
}

.contact-success {
	display: none;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-primary);
	font-weight: 600;
	font-size: 1.05rem;
	margin-top: 0.5rem;
}

.contact-success.show {
	display: flex;
}

.contact-success-icon {
	width: 28px;
	height: 28px;
	color: #15803d;
	flex-shrink: 0;
}

/* Testimonials */
.testimonials {
	padding: 6rem 2rem;
	background: var(--bg-dark);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
}

.testimonial-stars {
	color: var(--accent);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.testimonial-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.testimonial-title {
	color: var(--text-muted);
	font-size: 0.8rem;
}

/* CTA Section */
.cta {
	padding: 6rem 2rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer */
footer {
	padding: 4rem 2rem 2rem;
	border-top: 1px solid var(--border);
	background: var(--bg-dark);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-brand {
	text-align: center;
	max-width: 480px;
	margin: 0 auto 3rem;
}

.footer-logo {
	font-size: 2.25rem;
	font-weight: 700;
	justify-content: center;
	background: linear-gradient(90deg, #f7941d 0%, #ec1e4c 20%, #d6249f 40%, #7b2ff7 60%, #7b2ff7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 1rem auto 0;
}

.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.footer-social-divider {
	width: 1px;
	height: 24px;
	background: var(--border);
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg-elevated);
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.social-icon svg {
	width: 18px;
	height: 18px;
}

.social-icon:hover {
	background: var(--accent);
	color: var(--bg-dark);
	transform: translateY(-2px);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.footer-bottom a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom a:hover {
	color: var(--accent-light);
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		order: 1;
	}

	.hero-photo {
		order: 0;
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-logos {
		order: 2;
	}

	.hero-scroll {
		order: 3;
	}

	.hero-description {
		margin: 0 auto 2rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.pricing-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

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

	.billing-toggle {
		flex-wrap: wrap;
		justify-content: center;
	}

	.billing-option {
		padding: 0.6rem 1.2rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 880px) {

	/* A position:fixed, always-decoding autoplay video behind the whole page
	   is a common cause of iOS Safari killing/reloading the tab under memory
	   pressure while scrolling. Scope it back to the hero on small screens. */
	.hero-video {
		position: absolute;
	}

	.hero-logos {
		gap: 1.25rem;
	}

	.hero-logos img {
		width: 36px;
		height: 36px;
	}

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

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

	.project-modal {
		padding: 0;
	}

	.project-modal-box {
		max-width: 100%;
		max-height: 100%;
		height: 100%;
		border-radius: 0;
	}

	.project-modal-banner {
		border-radius: 0;
	}

	.project-modal-columns {
		grid-template-columns: 1fr;
	}

	.project-modal-box {
		overflow-x: hidden;
	}

	.project-modal-body {
		padding: 2.5rem 1.25rem 1.5rem;
	}

	.audio-player-now-playing {
		gap: 0.85rem;
		padding: 1rem;
	}

	.audio-player-art {
		width: 84px;
		height: 84px;
		border-radius: 10px;
	}

	.audio-player-track-title {
		font-size: 1.05rem;
	}

	.audio-player-bar {
		height: 60px;
	}

	/* Compact mobile bottom player: drop the project subtitle, prev/next,
	   and time labels, and turn the waveform into a thin full-width
	   progress line on its own row instead of squeezing everything in. */
	.audio-bar {
		height: auto;
		flex-wrap: wrap;
		padding: 0.6rem 0.85rem 0.5rem;
		gap: 0.6rem;
	}

	.audio-bar-art {
		width: 44px;
		height: 44px;
		margin: 0;
		border-radius: 8px;
	}

	.audio-bar-info {
		width: auto;
		flex: 1;
	}

	.audio-bar-project,
	.audio-bar-time,
	.audio-bar-prev,
	.audio-bar-next {
		display: none;
	}

	.audio-bar-play {
		width: 38px;
		height: 38px;
	}

	.audio-bar-queue-toggle,
	.audio-bar-close {
		width: 32px;
		height: 32px;
	}

	.audio-bar-queue {
		left: 0.85rem;
		right: 0.85rem;
		width: auto;
	}

	.audio-bar-waveform {
		order: 10;
		flex-basis: 100%;
		height: 14px;
		margin-top: 0.1rem;
	}

	.audio-bar-waveform-bg,
	.audio-bar-waveform-fill {
		top: 50%;
		bottom: auto;
		height: 3px;
		transform: translateY(-50%);
	}

	.nav-links,
	.nav-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	/* Mobile Menu */
	.nav-links.active {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(13, 13, 13, 0.98);
		backdrop-filter: blur(20px);
		padding: 0.5rem 0 0 0;
		gap: 0;
	}

	.nav-links.active li {
		border-bottom: 1px solid var(--border);
	}

	.nav-links.active li:last-child {
		border-bottom: none;
	}

	.nav-links.active a {
		display: block;
		padding: 1.35rem 2rem;
		font-size: 1.1rem;
	}

	.nav-cta.active {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		text-align: center;
		background: var(--bg-dark);
		padding: 1.5rem 2rem;
		border-top: 1px solid var(--border);
	}

	.nav-cta.active span {
		display: block;
		background: var(--accent);
		color: var(--bg-dark);
		padding: 1rem;
		border-radius: 8px;
		font-weight: 600;
	}

	.hero {
		padding: 6rem 1rem 3rem;
	}

	.hero h1 {
		font-size: 3.38rem;
		margin: 0 0 1.5rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.stat {
		text-align: center;
	}

	.fretboard-grid {
		grid-template-rows: repeat(6, 28px);
	}

	.string-labels {
		height: calc(6 * 28px);
		left: -24px;
	}

	.string-label {
		height: 28px;
		font-size: 0.6rem;
	}

	.note-marker {
		width: 14px;
		height: 14px;
		font-size: 0.4rem;
	}
}

/* Persistent SoundCloud player bar */
.sc-player-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500;
	background: var(--bg-card);
	border-top: 1px solid var(--border);
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.sc-player-bar.active {
	transform: translateY(0);
}

.sc-player-progress {
	width: 100%;
	height: 4px;
	background: var(--border);
	cursor: pointer;
}

.sc-player-progress-fill {
	height: 100%;
	width: 0%;
	background: var(--accent);
}

.sc-player-inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.sc-player-info {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
	flex: 1;
}

.sc-player-artwork {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--bg-elevated);
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.2s;
}

.sc-player-text {
	min-width: 0;
}

.sc-player-title {
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sc-player-artist {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.sc-player-playpause {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--bg-dark);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
}

.sc-player-playpause:hover {
	background: var(--accent-light);
}

.sc-player-playpause svg {
	width: 20px;
	height: 20px;
}

.sc-player-playpause .icon-pause {
	display: none;
}

.sc-player-playpause.is-playing .icon-play {
	display: none;
}

.sc-player-playpause.is-playing .icon-pause {
	display: block;
}

.sc-player-close {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: transparent;
	color: var(--text-secondary);
	border: none;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}

.sc-player-close:hover {
	background: var(--bg-elevated);
	color: var(--text-primary);
}

.sc-widget-frame {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 600px) {
	.sc-player-artist {
		display: none;
	}

	.sc-player-inner {
		padding: 0.65rem 1rem;
	}
}