:root {
	--ag-bg: #05070d;
	--ag-bg-soft: #09111f;
	--ag-surface: #0d1728;
	--ag-surface-strong: #111e33;
	--ag-text: #f6f9ff;
	--ag-muted: #a7b4c8;
	--ag-line: rgba(116, 166, 255, 0.22);
	--ag-blue: #1f8cff;
	--ag-blue-bright: #4bb3ff;
	--ag-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	--ag-radius: 8px;
	--ag-container: 1140px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(31, 140, 255, 0.17), transparent 36rem),
		linear-gradient(180deg, #07101d 0%, var(--ag-bg) 48%, #02040a 100%);
	color: var(--ag-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

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

a:hover,
a:focus {
	color: var(--ag-blue-bright);
}

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

.screen-reader-text,
.ag-skip-link {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	width: 1px;
}

.ag-skip-link:focus {
	clip: auto;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 1000;
	background: var(--ag-blue);
	color: #fff;
}

.ag-container {
	margin: 0 auto;
	max-width: var(--ag-container);
	padding: 0 1.25rem;
	width: 100%;
}

.ag-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(5, 7, 13, 0.86);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--ag-line);
}

.ag-header-inner {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	min-height: 76px;
}

.ag-brand {
	align-items: center;
	display: inline-flex;
	gap: 0.8rem;
	min-width: max-content;
}

.ag-brand-mark {
	align-items: center;
	background: linear-gradient(135deg, var(--ag-blue), var(--ag-blue-bright));
	border-radius: var(--ag-radius);
	box-shadow: 0 0 30px rgba(31, 140, 255, 0.35);
	color: #fff;
	display: inline-flex;
	font-weight: 900;
	height: 44px;
	justify-content: center;
	letter-spacing: 0.04em;
	width: 44px;
}

.ag-brand-text {
	display: grid;
	line-height: 1.1;
}

.ag-brand-name {
	font-weight: 800;
}

.ag-brand-kicker,
.ag-eyebrow,
.ag-card-meta {
	color: var(--ag-blue-bright);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ag-primary-nav {
	align-items: center;
	display: flex;
}

.ag-menu,
.ag-footer-menu {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ag-menu a {
	border-radius: 999px;
	color: var(--ag-muted);
	display: inline-flex;
	font-size: 0.95rem;
	padding: 0.55rem 0.75rem;
	transition: background 180ms ease, color 180ms ease;
}

.ag-menu a:hover,
.ag-menu a:focus {
	background: rgba(31, 140, 255, 0.12);
	color: var(--ag-text);
}

.ag-nav-toggle {
	display: none;
}

.ag-hero {
	padding: 6rem 0 4rem;
}

.ag-hero-grid {
	align-items: center;
	display: grid;
	gap: 3rem;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.ag-hero h1 {
	font-size: clamp(3.4rem, 9vw, 6.5rem);
	line-height: 0.95;
	margin: 0.25rem 0;
}

.ag-hero-subtitle {
	color: var(--ag-text);
	font-size: clamp(1.4rem, 4vw, 2.1rem);
	font-weight: 800;
	margin: 0;
}

.ag-hero-text {
	color: var(--ag-muted);
	font-size: 1.08rem;
	max-width: 58ch;
}

.ag-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.ag-button {
	align-items: center;
	background: linear-gradient(135deg, var(--ag-blue), var(--ag-blue-bright));
	border: 1px solid transparent;
	border-radius: var(--ag-radius);
	box-shadow: 0 14px 34px rgba(31, 140, 255, 0.22);
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 46px;
	padding: 0.8rem 1rem;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ag-button:hover,
.ag-button:focus {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(31, 140, 255, 0.32);
}

.ag-button--secondary,
.ag-button--ghost {
	background: rgba(13, 23, 40, 0.86);
	border-color: var(--ag-line);
	box-shadow: none;
}

.ag-button--ghost {
	color: var(--ag-blue-bright);
}

.ag-hero-panel,
.ag-about-band,
.ag-card,
.ag-empty-state {
	background: linear-gradient(180deg, rgba(17, 30, 51, 0.92), rgba(9, 17, 31, 0.92));
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	box-shadow: var(--ag-shadow);
}

.ag-hero-panel {
	padding: 1rem;
}

.ag-avatar-card {
	display: grid;
	gap: 1.25rem;
}

.ag-avatar-placeholder {
	align-items: center;
	aspect-ratio: 16 / 11;
	background:
		linear-gradient(135deg, rgba(31, 140, 255, 0.22), rgba(75, 179, 255, 0.06)),
		var(--ag-surface);
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.ag-stream-preview {
	aspect-ratio: 16 / 11;
	background: var(--ag-surface);
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	overflow: hidden;
}

.ag-stream-preview img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ag-avatar-placeholder span {
	color: rgba(246, 249, 255, 0.95);
	font-size: clamp(4rem, 12vw, 7rem);
	font-weight: 950;
}

.ag-live-pill {
	align-items: center;
	color: var(--ag-muted);
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.5rem;
	margin: 0;
}

.ag-live-pill span {
	background: var(--ag-blue-bright);
	border-radius: 999px;
	box-shadow: 0 0 20px rgba(75, 179, 255, 0.85);
	display: inline-block;
	height: 0.65rem;
	width: 0.65rem;
}

.ag-section {
	padding: 4rem 0;
}

.ag-section--muted {
	background: rgba(9, 17, 31, 0.55);
	border-block: 1px solid rgba(116, 166, 255, 0.1);
}

.ag-section-heading {
	margin-bottom: 1.5rem;
	max-width: 720px;
}

.ag-section-heading h1,
.ag-section-heading h2 {
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.05;
	margin: 0.25rem 0 0;
}

.ag-card-grid {
	display: grid;
	gap: 1rem;
}

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

.ag-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ag-card {
	padding: 1.1rem;
	transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.ag-card:hover {
	border-color: rgba(75, 179, 255, 0.65);
	transform: translateY(-3px);
}

.ag-card h2,
.ag-card h3 {
	margin: 0.25rem 0 0.5rem;
}

.ag-card p,
.ag-about-band p,
.ag-hero-panel p {
	color: var(--ag-muted);
}

.ag-card a {
	color: var(--ag-blue-bright);
	font-weight: 800;
}

.ag-card-icon {
	align-items: center;
	background: rgba(31, 140, 255, 0.14);
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	color: var(--ag-blue-bright);
	display: inline-flex;
	font-weight: 900;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.ag-card-icon--image {
	overflow: hidden;
}

.ag-card-icon--image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ag-card-icon--image span {
	display: none;
}

.ag-card-icon--image.is-missing-image span {
	display: inline;
}

.ag-card-image {
	aspect-ratio: 16 / 10;
	background: var(--ag-surface-strong);
	border-radius: var(--ag-radius);
	display: block;
	margin-bottom: 1rem;
	overflow: hidden;
}

.ag-card-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ag-about-band {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	padding: 2rem;
}

.ag-content {
	max-width: 860px;
}

.ag-entry-content {
	color: var(--ag-muted);
}

.ag-entry-content a {
	color: var(--ag-blue-bright);
	text-decoration: underline;
}

.ag-detail-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.ag-detail-panel {
	background: rgba(13, 23, 40, 0.76);
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	padding: 1rem;
}

.ag-detail-list {
	display: grid;
	gap: 0.85rem;
	margin: 0;
}

.ag-detail-list div {
	display: grid;
	gap: 0.2rem;
}

.ag-detail-list dt {
	color: var(--ag-blue-bright);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ag-detail-list dd {
	color: var(--ag-text);
	margin: 0;
	white-space: pre-line;
}

.ag-copy-button {
	background: rgba(31, 140, 255, 0.16);
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	color: var(--ag-blue-bright);
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	margin-top: 0.6rem;
	padding: 0.65rem 0.8rem;
	width: 100%;
}

.ag-embed {
	aspect-ratio: 16 / 9;
	background: var(--ag-surface);
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.ag-embed iframe {
	height: 100%;
	width: 100%;
}

.ag-site-footer {
	background: #03050a;
	border-top: 1px solid var(--ag-line);
	padding: 3rem 0 1.5rem;
}

.ag-footer-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1.5fr 1fr 1fr;
}

.ag-footer-grid h2 {
	font-size: 1rem;
	margin: 0 0 0.75rem;
}

.ag-footer-brand p,
.ag-footer-bottom p {
	color: var(--ag-muted);
}

.ag-footer-menu,
.ag-social-list {
	display: grid;
	gap: 0.5rem;
}

.ag-social-list a {
	align-items: center;
	display: inline-flex;
	gap: 0.5rem;
}

.ag-social-list img {
	border-radius: 6px;
	height: 22px;
	object-fit: cover;
	width: 22px;
}

.ag-social-list a,
.ag-footer-menu a {
	color: var(--ag-muted);
}

.ag-footer-bottom {
	border-top: 1px solid rgba(116, 166, 255, 0.14);
	margin-top: 2rem;
	padding-top: 1rem;
}

@media (max-width: 900px) {
	.ag-nav-toggle {
		align-items: center;
		background: rgba(31, 140, 255, 0.12);
		border: 1px solid var(--ag-line);
		border-radius: var(--ag-radius);
		color: var(--ag-text);
		display: inline-flex;
		height: 42px;
		justify-content: center;
		width: 42px;
	}

	.ag-nav-toggle-line,
	.ag-nav-toggle-line::before,
	.ag-nav-toggle-line::after {
		background: currentColor;
		display: block;
		height: 2px;
		width: 18px;
	}

	.ag-nav-toggle-line {
		position: relative;
	}

	.ag-nav-toggle-line::before,
	.ag-nav-toggle-line::after {
		content: "";
		left: 0;
		position: absolute;
	}

	.ag-nav-toggle-line::before {
		top: -6px;
	}

	.ag-nav-toggle-line::after {
		top: 6px;
	}

	.ag-primary-nav {
		background: rgba(5, 7, 13, 0.98);
		border-bottom: 1px solid var(--ag-line);
		display: none;
		left: 0;
		padding: 1rem 1.25rem 1.25rem;
		position: absolute;
		right: 0;
		top: 76px;
	}

	.ag-primary-nav.is-open {
		display: block;
	}

	.ag-menu {
		display: grid;
	}

	.ag-hero-grid,
	.ag-detail-grid,
	.ag-footer-grid {
		grid-template-columns: 1fr;
	}

	.ag-card-grid--three,
	.ag-card-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.ag-hero {
		padding-top: 4rem;
	}

	.ag-card-grid--three,
	.ag-card-grid--four {
		grid-template-columns: 1fr;
	}

	.ag-about-band {
		align-items: flex-start;
		flex-direction: column;
		padding: 1.25rem;
	}
}
