:root {
	--bg: #09090b;
	--bg-dark: #0d0d0d;
	--surface: #111214;
	--surface-2: #16181d;
	--surface-3: #1d2027;
	--card: #121317;
	--bg-card: #141414;
	--border: rgba(255, 255, 255, 0.09);
	--border-strong: rgba(255, 255, 255, 0.16);
	--border-color: #333333;
	--text: #fafafa;
	--text-primary: #fafafa;
	--muted: #a1a1aa;
	--text-secondary: #a6a6a6;
	--faint: #71717a;
	--primary: #6366f1;
	--primary-2: #8b5cf6;
	--primary-dark: #4f46e5;
	--secondary: #ec4899;
	--background: #0f172a;
	--rich-black: #0a0e27;
	--surface-light: #334155;
	--accent: #06b6d4;
	--blue: #38bdf8;
	--hot-pink: #ff006e;
	--bright-cyan: #00f5ff;
	--violet-purple: #7c00ff;
	--electric-yellow: #ffbe0b;
	--green: #34d399;
	--success: #10b981;
	--amber: #f59e0b;
	--warning: #f59e0b;
	--red: #fb7185;
	--radius: 18px;
	--shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	min-height: 100%;
	background:
		radial-gradient(
			circle at top left,
			rgba(124, 58, 237, 0.14),
			transparent 28%
		),
		radial-gradient(
			circle at top right,
			rgba(56, 189, 248, 0.08),
			transparent 22%
		),
		var(--bg);
	color: var(--text);
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
		Cantarell, sans-serif;
}
body {
	line-height: 1.6;
	overflow-x: hidden;
}
button,
input,
select,
textarea {
	font: inherit;
}
a {
	color: inherit;
	text-decoration: none;
}

/* Header & Navigation */
header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(13, 13, 13, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
}

nav {
	max-width: 1280px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--hot-pink), var(--bright-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

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

.nav-links .cta {
	background: var(--hot-pink);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
}

.nav-links .cta:hover {
	background: var(--hot-pink);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 0, 110, 0.3);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}
.shell {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 250px 1fr;
}
.side {
	position: sticky;
	top: 0;
	height: 100vh;
	padding: 20px 16px;
	border-right: 1px solid var(--border);
	background: rgba(8, 8, 11, 0.92);
	backdrop-filter: blur(18px);
}
.brand {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.04),
		rgba(255, 255, 255, 0.02)
	);
}
.brand-logo {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary), var(--blue));
	display: grid;
	place-items: center;
	font-weight: 800;
}
.nav {
	display: grid;
	gap: 8px;
	margin-top: 24px;
}
.nav a {
	background: transparent;
	color: var(--muted);
	border: 1px solid transparent;
	padding: 14px 16px;
	border-radius: 14px;
	cursor: pointer;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav a.active {
	color: #fff;
	background: rgba(124, 58, 237, 0.16);
	border-color: rgba(124, 58, 237, 0.35);
}
.nav a:hover {
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
}
.content {
	padding: 28px;
}
.page-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 22px;
}
.page-header h1 {
	margin: 0;
	font-size: clamp(28px, 2.4vw, 44px);
}
.muted {
	color: var(--muted);
}
.eyebrow {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c4b5fd;
}
.actions,
.row {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.btn {
	padding: 11px 15px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	cursor: pointer;
}
.btn.primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	border: none;
	box-shadow: 0 12px 22px rgba(124, 58, 237, 0.35);
}
.btn.small {
	padding: 8px 12px;
	font-size: 14px;
}
.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 12px;
	background: rgba(255, 255, 255, 0.04);
}
.grid-2,
.grid-3,
.grid-4 {
	display: grid;
	gap: 18px;
}
.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.035),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 20px;
	box-shadow: var(--shadow);
}
.card h2,
.card h3,
.card h4,
.card p {
	margin-top: 0;
}

/* Hero Section */
.hero {
	position: relative;
	overflow: hidden;
	padding: 6rem 2rem;
	background: linear-gradient(135deg, var(--rich-black), var(--bg-dark));
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at 20% 50%,
			rgba(255, 0, 110, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(0, 245, 255, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.hero-content {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

.hero h1 {
	font-size: clamp(2.5rem, 8vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero h1 .highlight {
	background: linear-gradient(135deg, var(--hot-pink), var(--bright-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 2rem;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 4rem;
}

.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-primary {
	background: var(--hot-pink);
	color: white;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(255, 0, 110, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--bright-cyan);
	border: 2px solid var(--bright-cyan);
}

.btn-secondary:hover {
	background: rgba(0, 245, 255, 0.1);
	transform: translateY(-2px);
}

/* Stats Section */
.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.stat-item {
	text-align: center;
}

.stat-icon {
	width: 48px;
	height: 48px;
	background: rgba(124, 0, 255, 0.2);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
}

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

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

/* Section Container */
section {
	padding: 4rem 2rem;
	max-width: 1280px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	margin-bottom: 1rem;
}

.section-title h2 .highlight {
	background: linear-gradient(135deg, var(--bright-cyan), var(--hot-pink));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

/* Featured Shows Grid */
.shows-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.show-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 0.75rem;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.show-card:hover {
	transform: translateY(-8px);
	border-color: var(--hot-pink);
	box-shadow: 0 20px 40px rgba(255, 0, 110, 0.2);
}

.show-card-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, var(--violet-purple), var(--hot-pink));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	position: relative;
	overflow: hidden;
}

.show-card-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
}

.play-icon {
	position: absolute;
	width: 60px;
	height: 60px;
	background: var(--hot-pink);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s ease;
	z-index: 2;
}

.show-card:hover .play-icon {
	opacity: 1;
	transform: scale(1);
}

.show-card-content {
	padding: 1.5rem;
}

.show-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.show-category {
	display: inline-block;
	background: rgba(255, 0, 110, 0.2);
	color: var(--hot-pink);
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.8rem;
	margin-bottom: 0.75rem;
}

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

.show-episodes {
	color: var(--text-secondary);
	font-size: 0.85rem;
	display: flex;
	gap: 0.5rem;
}

/* Categories */
.categories {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.category-chip {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	color: var(--text-secondary);
	padding: 0.75rem 1.5rem;
	border-radius: 9999px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	font-weight: 600;
}

.category-chip:hover,
.category-chip.active {
	border-color: var(--hot-pink);
	color: var(--hot-pink);
	background: rgba(255, 0, 110, 0.1);
}

/* Blog Grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.blog-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 0.75rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-4px);
	border-color: var(--bright-cyan);
	box-shadow: 0 12px 32px rgba(0, 245, 255, 0.2);
}

.blog-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(
		135deg,
		var(--electric-yellow),
		var(--bright-cyan)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	position: relative;
}

.blog-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}

.blog-content {
	padding: 1.5rem;
}

.blog-date {
	color: var(--bright-cyan);
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
}

.blog-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

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

.blog-author {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

/* Events */
.events-list {
	display: grid;
	gap: 1.5rem;
}

.event-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 0.75rem;
	padding: 2rem;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 2rem;
	transition: all 0.3s ease;
	align-items: center;
}

.event-card:hover {
	border-color: var(--bright-cyan);
	box-shadow: 0 12px 32px rgba(0, 245, 255, 0.15);
}

.event-date {
	text-align: center;
	padding: 1rem;
	background: rgba(124, 0, 255, 0.2);
	border-radius: 0.5rem;
}

.event-month {
	color: var(--violet-purple);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
}

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

.event-content h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.event-location {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.event-description {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.event-link {
	color: var(--bright-cyan);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.event-link:hover {
	color: var(--hot-pink);
}

/* Sponsors */
.sponsors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.sponsor-card {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 0.75rem;
	padding: 2rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	transition: all 0.3s ease;
	cursor: pointer;
	font-weight: 600;
}

.sponsor-card:hover {
	border-color: var(--hot-pink);
	background: var(--bg-card);
	transform: translateY(-4px);
}

/* Newsletter */
.newsletter {
	background: linear-gradient(
		135deg,
		rgba(255, 0, 110, 0.15),
		rgba(0, 245, 255, 0.15)
	);
	border: 1px solid var(--border-color);
	border-radius: 1rem;
	padding: 3rem 2rem;
	text-align: center;
}

.newsletter h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.newsletter p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	font-size: 1.05rem;
}

.newsletter-form {
	display: flex;
	gap: 1rem;
	max-width: 500px;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: center;
}

.newsletter-form input {
	flex: 1;
	min-width: 250px;
	padding: 1rem;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	color: var(--text-primary);
	font-size: 1rem;
}

.newsletter-form input::placeholder {
	color: var(--text-secondary);
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--hot-pink);
	box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

.newsletter-form button {
	padding: 1rem 2rem;
	background: var(--hot-pink);
	color: white;
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-form button:hover {
	background: var(--bright-cyan);
	transform: translateY(-2px);
}

/* Demo Section */
.demo-section {
	background: var(--surface);
	padding: 4rem 2rem;
	margin: 4rem 0;
}

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

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	text-align: center;
}

.audio-player-demo {
	background: var(--surface-light);
	border: 1px solid rgba(100, 116, 139, 0.3);
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 3rem;
}

.waveform {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0.25rem;
	height: 100px;
	margin: 2rem 0;
	background: rgba(6, 182, 212, 0.05);
	border-radius: 0.5rem;
	padding: 1rem;
}

.waveform-bar {
	width: 4px;
	background: linear-gradient(180deg, var(--accent), var(--primary));
	border-radius: 2px;
	transition: height 0.1s ease;
	cursor: pointer;
}

.waveform-bar:hover {
	background: linear-gradient(180deg, var(--secondary), var(--accent));
	filter: brightness(1.2);
}

.player-controls {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
	margin: 2rem 0;
}

.play-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--primary);
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.play-button:hover {
	background: var(--primary-dark);
	transform: scale(1.1);
}

.time-display {
	color: var(--text-secondary);
	font-size: 0.9rem;
	min-width: 80px;
}

.progress-bar {
	flex: 1;
	height: 6px;
	background: rgba(100, 116, 139, 0.3);
	border-radius: 3px;
	cursor: pointer;
	position: relative;
}

.progress-bar-fill {
	height: 100%;
	background: var(--primary);
	border-radius: 3px;
	transition: width 0.1s linear;
}

/* Comments Section */
.comments-demo {
	margin-top: 3rem;
}

.comment-input {
	background: var(--background);
	border: 1px solid rgba(100, 116, 139, 0.3);
	padding: 1rem;
	border-radius: 0.5rem;
	color: var(--text-primary);
	width: 100%;
	margin-bottom: 1.5rem;
	font-family: inherit;
}

.comment-input::placeholder {
	color: var(--text-secondary);
}

.comments-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.comment-item {
	background: var(--background);
	border: 1px solid rgba(100, 116, 139, 0.3);
	border-radius: 0.5rem;
	padding: 1.5rem;
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.comment-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
}

.comment-meta {
	flex: 1;
}

.comment-name {
	font-weight: 600;
	color: var(--text-primary);
}

.comment-time {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.comment-text {
	color: var(--text-secondary);
	margin-top: 0.5rem;
}

.comment-timestamp {
	font-size: 0.85rem;
	color: var(--accent);
}

/* Features Section */
.features {
	padding: 6rem 2rem;
	background: var(--background);
}

.features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: var(--surface);
	border: 1px solid rgba(100, 116, 139, 0.2);
	border-radius: 1rem;
	padding: 2rem;
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: var(--primary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: rgba(99, 102, 241, 0.1);
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Use Cases Section */
.use-cases {
	padding: 6rem 2rem;
	background: var(--surface);
}

.use-cases-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.use-case-card {
	background: var(--background);
	border: 1px solid rgba(100, 116, 139, 0.2);
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
}

.use-case-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.use-case-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.use-case-card p {
	color: var(--text-secondary);
}

/* How It Works */
.how-it-works {
	padding: 6rem 2rem;
	background: var(--background);
}

.steps {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.step {
	text-align: center;
}

.step-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.5rem;
	margin: 0 auto 1rem;
}

.step h3 {
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
}

.step p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
	padding: 6rem 2rem;
	background: var(--surface);
}

.pricing-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.pricing-card {
	background: var(--background);
	border: 1px solid rgba(100, 116, 139, 0.2);
	border-radius: 1rem;
	padding: 2rem;
	position: relative;
	transition: all 0.3s ease;
}

.pricing-card.featured {
	border-color: var(--primary);
	transform: scale(1.05);
}

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

.pricing-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--primary);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: 0.85rem;
	font-weight: 600;
}

.pricing-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.pricing-subtitle {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.pricing-period {
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

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

.pricing-features li {
	padding: 0.75rem 0;
	color: var(--text-secondary);
	border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

.pricing-features li:before {
	content: "✓ ";
	color: var(--success);
	font-weight: 700;
	margin-right: 0.5rem;
}

.pricing-button {
	width: 100%;
	padding: 1rem;
	border-radius: 0.5rem;
	border: none;
	background: var(--primary);
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pricing-button:hover {
	background: var(--primary-dark);
}

.pricing-card.featured .pricing-button {
	background: var(--secondary);
}

.pricing-card.featured .pricing-button:hover {
	background: #db2777;
}

/* CTA Section */
.cta-final {
	padding: 6rem 2rem;
	background: linear-gradient(
		135deg,
		rgba(99, 102, 241, 0.2),
		rgba(236, 72, 153, 0.2)
	);
	text-align: center;
}

.cta-final h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-final p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.cta-final button {
	padding: 1rem 2.5rem;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 0.75rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cta-final button:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Footer */
footer {
	background: var(--rich-black);
	border-top: 1px solid var(--border-color);
	padding: 3rem 2rem 1rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	margin-bottom: 1rem;
	font-size: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--hot-pink);
}

.footer-bottom {
	max-width: 1280px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	text-align: center;
	color: var(--text-secondary);
}
.headline {
	font-size: clamp(38px, 4vw, 68px);
	line-height: 1.02;
	margin: 12px 0 14px;
	max-width: 9ch;
}
.hero-art {
	border-radius: 28px;
	padding: 20px;
	border: 1px solid var(--border);
	background: linear-gradient(
		160deg,
		rgba(124, 58, 237, 0.16),
		rgba(255, 255, 255, 0.03)
	);
}
.track-card {
	border-radius: 22px;
	padding: 16px;
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid var(--border);
}
.wave {
	height: 148px;
	display: flex;
	gap: 4px;
	align-items: end;
	margin: 18px 0;
	cursor: pointer;
}
.wave span {
	flex: 1;
	border-radius: 999px;
	background: linear-gradient(
		180deg,
		rgba(56, 189, 248, 0.95),
		rgba(124, 58, 237, 0.9)
	);
}
.progress {
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
	position: relative;
}
.progress > span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--blue), var(--primary));
}
.feature {
	min-height: 170px;
}
.stats-value {
	font-size: 34px;
	font-weight: 800;
	margin: 6px 0 4px;
}
.panel-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.filters {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr auto;
	gap: 10px;
}
.input,
.select,
.textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 12px 14px;
}
.textarea {
	min-height: 120px;
	resize: vertical;
}
.folder-list,
.project-list,
.comment-list,
.activity-list,
.metric-list,
.ticket-list,
.track-list {
	display: grid;
	gap: 12px;
}
.folder-item,
.project-item,
.comment-item,
.activity-item,
.metric-item,
.ticket-item,
.track-item,
.collab-item {
	border: 1px solid var(--border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	padding: 14px 16px;
}
.folder-item.active {
	border-color: rgba(56, 189, 248, 0.35);
	background: rgba(56, 189, 248, 0.08);
}
.project-item {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px;
}
.avatars {
	display: flex;
}
.avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin-right: -8px;
	border: 2px solid #111;
	font-size: 12px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--blue), var(--primary));
}
.split {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 18px;
}
.tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.tabs button {
	border: 1px solid var(--border);
	background: transparent;
	color: var(--muted);
	border-radius: 999px;
	padding: 10px 12px;
	cursor: pointer;
}
.tabs button.active {
	background: rgba(124, 58, 237, 0.16);
	color: #fff;
	border-color: rgba(124, 58, 237, 0.35);
}
.timeline {
	position: relative;
	height: 14px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	overflow: hidden;
	cursor: pointer;
}
.playhead {
	position: absolute;
	top: -4px;
	width: 12px;
	height: 22px;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.25);
	transform: translateX(-50%);
}
.circle {
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
}
.circle.play {
	background: linear-gradient(135deg, var(--primary), var(--blue));
}
.modal-wrap {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.55);
}
.modal-wrap.show {
	display: flex;
}
.modal {
	width: min(620px, 100%);
	background: #101115;
	border: 1px solid var(--border-strong);
	border-radius: 24px;
	padding: 22px;
	box-shadow: var(--shadow);
}
.status-approved {
	color: var(--green);
}
.status-needs-review {
	color: var(--amber);
}
.status-in-progress {
	color: var(--blue);
}
.status-archived {
	color: var(--red);
}
.status-draft {
	color: var(--muted);
}
.section-gap {
	margin-top: 20px;
}
/* Responsive */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.nav-links {
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: var(--bg-dark);
		border-bottom: 1px solid var(--border-color);
		flex-direction: column;
		padding: 2rem;
		gap: 1rem;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.nav-links.active {
		max-height: 500px;
	}

	.hero {
		padding: 4rem 2rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.show-card-image {
		height: 150px;
	}

	.stats {
		gap: 1.5rem;
	}

	section {
		padding: 3rem 1.5rem;
	}

	.event-card {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1rem;
	}

	.event-date {
		display: flex;
		gap: 2rem;
		text-align: left;
	}
}

@media (max-width: 1100px) {
	.shell {
		grid-template-columns: 1fr;
	}
	.side {
		position: relative;
		height: auto;
	}
	.grid-2,
	.grid-3,
	.grid-4,
	.split,
	.filters {
		grid-template-columns: 1fr;
	}
	.content {
		padding: 18px;
	}
	.headline {
		max-width: none;
	}
}
