@font-face {
	font-family: "Fira Sans";
	src: url("../fonts/fira-sans/FiraSans-Regular.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Fira Sans";
	src: url("../fonts/fira-sans/FiraSans-Bold.woff2") format("woff2");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: "Roboto Slab";
	src: url("../fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2") format("woff2");
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
}

:root {
	--bg: #fff8ee;
	--line: rgba(17, 24, 39, 0.09);
	--text: #172027;
	--muted: #5d6670;
	--orange: #ff7a00;
	--orange-deep: #d85f00;
	--teal: #128da6;
	--teal-soft: #d9f4f7;
	--shadow: 0 22px 60px rgba(37, 25, 8, 0.12);
	--radius-xl: 34px;
	--radius-lg: 26px;
	--radius-md: 20px;
	--radius-sm: 999px;
	--shell: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Fira Sans", sans-serif;
	color: var(--text);
	line-height: 1.5;
	background:
		radial-gradient(circle at top left, rgba(18, 141, 166, 0.08), transparent 32%),
		radial-gradient(circle at right 10% top 10%, rgba(255, 122, 0, 0.11), transparent 24%),
		linear-gradient(180deg, #fff9f2 0%, #fff7ec 44%, #fffdf8 100%);
}

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

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

.shell {
	width: var(--shell);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 248, 238, 0.82);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 84px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.brand img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.brand__copy {
	display: grid;
	gap: 4px;
}

.brand__copy strong,
.hero h1,
.section-heading h2,
.schedule-arrow h3,
.show-card__body h3,
.note-card h3,
.cta-panel h2,
.site-footer__grid h2,
.live-card__brand strong {
	font-family: "Roboto Slab", serif;
}

.brand__copy strong {
	font-size: 1.08rem;
}

.brand__eyebrow {
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.menu {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a {
	color: var(--muted);
	font-size: 0.95rem;
}

.menu a:hover,
.menu a:focus-visible,
.button:hover,
.header-cta:hover,
.note-card a:hover,
.cta-panel__stack a:hover {
	color: var(--orange-deep);
}

.header-cta,
.button,
.cta-panel__stack a,
.live-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border-radius: var(--radius-sm);
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-cta,
.button--ghost,
.cta-panel__stack a,
.live-card__link {
	border: 1px solid rgba(17, 24, 39, 0.08);
	background: rgba(255, 255, 255, 0.78);
}

.header-cta {
	color: var(--orange);
}

.social-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-wrap: wrap;
}

.social-links__item {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	background: rgba(255, 255, 255, 0.78);
	color: var(--orange);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links__item svg {
	width: 20px;
	height: 20px;
}

.button--primary {
	background: linear-gradient(135deg, var(--orange) 0%, #ff9e49 100%);
	color: #fff;
}

.button:hover,
.header-cta:hover,
.cta-panel__stack a:hover,
.live-card__link:hover,
.social-links__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(255, 122, 0, 0.14);
}

.social-links__item:hover,
.social-links__item:focus-visible {
	background: linear-gradient(135deg, var(--orange) 0%, #ff9e49 100%);
	color: #fff;
}

.hero {
	padding: 36px 0 28px;
}

.hero__grid,
.cta-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 34px;
	align-items: center;
}

.hero__tag,
.eyebrow,
.schedule-arrow__label,
.note-card__meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero__tag,
.eyebrow {
	color: var(--teal);
}

.hero__tag::before,
.eyebrow::before {
	content: "";
	width: 30px;
	height: 1px;
	background: currentColor;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
	margin: 18px 0 0;
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.hero h1 {
	max-width: 11ch;
	font-size: clamp(3.1rem, 7vw, 6rem);
}

.hero__lede,
.section-heading p,
.note-card p,
.show-card__body p,
.cta-panel p,
.site-footer__grid p,
.site-footer__grid li,
.live-card__brand p,
.live-status {
	color: var(--muted);
}

.hero__lede {
	max-width: 58ch;
	margin: 22px 0 0;
	font-size: 1.06rem;
}

.show-card,
.note-card,
.cta-panel,
.live-card,
.schedule-arrow,
.site-footer__grid {
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.hero__stage {
	position: relative;
	min-height: 560px;
	display: grid;
	place-items: center;
}

.hero__stage::before,
.hero__stage::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.hero__stage::before {
	top: 10px;
	right: 12px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(18, 141, 166, 0.22) 0%, rgba(18, 141, 166, 0.04) 54%, transparent 72%);
}

.hero__stage::after {
	left: 10px;
	bottom: 36px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(255, 122, 0, 0.18) 0%, rgba(255, 122, 0, 0.04) 55%, transparent 70%);
}

.live-card {
	position: relative;
	z-index: 1;
	width: min(100%, 500px);
	padding: 30px;
	border-radius: 36px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76)),
		linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(18, 141, 166, 0.1));
}

.live-card__top,
.live-card__brand,
.live-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.live-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	background: #111;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.live-pill::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ff5b36;
	box-shadow: 0 0 0 8px rgba(255, 91, 54, 0.18);
}

.live-card__brand {
	align-items: center;
	margin-top: 24px;
}

.live-card__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.live-card__tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	border: 0;
	background: rgba(23, 32, 39, 0.08);
	color: var(--text);
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
}

.live-card__tab svg {
	width: 16px;
	height: 16px;
}

.live-card__tab--active {
	background: linear-gradient(135deg, var(--orange) 0%, #ff9e49 100%);
	color: #fff;
}

.live-card__panel[hidden] {
	display: none;
}

.live-card__brand img {
	width: 96px;
	height: 96px;
	object-fit: contain;
}

.live-card__brand strong {
	display: block;
	font-size: 1.6rem;
}

.live-card__brand p {
	margin: 8px 0 0;
}

.live-card__meter {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	align-items: end;
	gap: 9px;
	height: 128px;
	margin: 30px 0;
	padding: 16px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(18, 141, 166, 0.08), rgba(255, 122, 0, 0.08));
}

.live-card__twitch {
	margin: 28px 0 0;
	overflow: hidden;
	border-radius: 24px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	background: #120b19;
}

.live-card__twitch iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 280px;
}

.live-card__meter span {
	border-radius: 999px 999px 12px 12px;
	background: linear-gradient(180deg, var(--teal) 0%, var(--orange) 100%);
	animation: bounce 1.6s ease-in-out infinite;
}

.live-card__meter span:nth-child(1) { height: 54%; animation-delay: 0.1s; }
.live-card__meter span:nth-child(2) { height: 76%; animation-delay: 0.2s; }
.live-card__meter span:nth-child(3) { height: 40%; animation-delay: 0.35s; }
.live-card__meter span:nth-child(4) { height: 92%; animation-delay: 0.12s; }
.live-card__meter span:nth-child(5) { height: 63%; animation-delay: 0.28s; }
.live-card__meter span:nth-child(6) { height: 86%; animation-delay: 0.4s; }
.live-card__meter span:nth-child(7) { height: 48%; animation-delay: 0.18s; }
.live-card__meter span:nth-child(8) { height: 71%; animation-delay: 0.3s; }
.live-card__meter span:nth-child(9) { height: 58%; animation-delay: 0.5s; }

.live-card__footer {
	padding-top: 20px;
	border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.live-card__footer small {
	display: block;
	margin-bottom: 8px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.live-card__empty {
	margin-top: 24px;
	padding: 20px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.68);
}

.section {
	padding: 86px 0;
}

.section--compact {
	padding-top: 14px;
}

.section--alt {
	background: linear-gradient(180deg, rgba(255, 240, 213, 0.58), rgba(255, 255, 255, 0));
}

.section--cta {
	padding-top: 18px;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 28px;
}

.section-heading h2 {
	max-width: 12ch;
	font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.section-heading p {
	margin: 0;
	max-width: 44ch;
	font-size: 1.04rem;
}

.notes-grid {
	display: grid;
	gap: 20px;
}

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

.show-slider {
	position: relative;
	display: flex;
	gap: 20px;
	overflow: hidden;
	padding: 6px 0;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.show-slider__lane {
	display: flex;
	gap: 20px;
	width: max-content;
	flex: 0 0 auto;
	animation: show-slider-marquee 38s linear infinite;
}

.show-slider:hover .show-slider__lane {
	animation-play-state: paused;
}

.show-card,
.note-card,
.moment-card,
.video-card {
	padding: 22px;
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.82);
}

.show-card {
	display: grid;
	gap: 16px;
	align-content: start;
	flex: 0 0 clamp(250px, 24vw, 320px);
	min-height: 100%;
}

.show-card img {
	width: 100%;
	height: 180px;
	object-fit: contain;
	padding: 8px;
}

.show-card__body span {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.show-card__body h3,
.note-card h3 {
	margin: 10px 0 0;
	font-size: 1.42rem;
	line-height: 1.08;
}

.show-card__body p,
.note-card p {
	margin: 12px 0 0;
}

.moments-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.moment-card {
	padding: 0;
	overflow: hidden;
}

.moment-card__media {
	display: block;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, rgba(18, 141, 166, 0.16), rgba(255, 122, 0, 0.18));
}

.moment-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.moment-card__placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	padding: 24px;
	text-align: center;
	font-weight: 700;
	color: var(--muted);
}

.moment-card__body,
.video-card__body {
	padding: 18px 20px 20px;
}

.moment-card__body h3,
.video-card__body h3 {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.15;
}

.moment-card__body a,
.video-card__body a {
	color: inherit;
	text-decoration: none;
}

.moment-card--empty,
.video-card--empty {
	display: grid;
	align-items: center;
	min-height: 220px;
}

.moment-card--empty p,
.video-card--empty p {
	margin: 12px 0 0;
}

.moments-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.moments-pagination__link {
	min-width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.8);
	color: var(--ink);
	text-decoration: none;
	font-weight: 700;
}

.moments-pagination__link--active {
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
}

.video-slider {
	position: relative;
	display: flex;
	gap: 20px;
	overflow: hidden;
	padding: 6px 0;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.video-slider__lane {
	display: flex;
	gap: 20px;
	width: max-content;
	flex: 0 0 auto;
	animation: show-slider-marquee 42s linear infinite;
}

.video-slider:hover .video-slider__lane {
	animation-play-state: paused;
}

.video-card {
	flex: 0 0 clamp(280px, 28vw, 360px);
	padding: 0;
	overflow: hidden;
}

.video-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.video-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-card__play {
	position: absolute;
	left: 18px;
	bottom: 18px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(15, 15, 15, 0.8);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.video-card__body span {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal);
}

.video-card__body p {
	margin: 12px 0 0;
}

@keyframes show-slider-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - 20px));
	}
}

.schedule-strip {
	padding: 18px 0 8px;
}

.schedule-carousel {
	overflow: hidden;
}

.schedule-arrows {
	display: flex;
	gap: 12px;
	align-items: stretch;
	will-change: transform;
	transition: transform 600ms ease;
}

.schedule-arrow {
	position: relative;
	flex: 0 0 calc((100% - 48px) / 5);
	padding: 24px 34px 24px 24px;
	min-height: 190px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: rgba(255, 255, 255, 0.84);
	clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 18px 50%);
}

.schedule-arrow:first-child {
	clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 0 0);
}

.schedule-arrow--live {
	background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(18, 141, 166, 0.12));
}

.schedule-arrow__label {
	color: var(--orange-deep);
}

.schedule-arrow h3 {
	margin: 14px 0 0;
	font-size: 1.5rem;
	line-height: 1.05;
}

.schedule-arrow p {
	margin: 12px 0 0;
	color: var(--muted);
}

.note-card__meta {
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	background: var(--teal-soft);
	color: var(--teal);
}

.cta-panel {
	padding: 36px;
	border-radius: 36px;
	background:
		radial-gradient(circle at top right, rgba(18, 141, 166, 0.12), transparent 28%),
		linear-gradient(135deg, #fff5e6 0%, #ffffff 60%);
}

.cta-panel__stack {
	display: grid;
	gap: 14px;
	align-content: center;
}

.site-footer {
	padding: 72px 0 80px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 28px;
	padding: 36px;
	border-radius: 36px;
	background: #16252d;
	color: #eff4f6;
}

.site-footer__grid h2 {
	margin: 0 0 14px;
	font-size: 1.3rem;
}

.site-footer__grid ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__grid li + li,
.site-footer__grid p + p {
	margin-top: 10px;
}

.is-teal {
	background: linear-gradient(180deg, #e3fbff 0%, #ffffff 100%);
}

.is-sand {
	background: linear-gradient(180deg, #fff7eb 0%, #ffffff 100%);
}

.is-mint {
	background: linear-gradient(180deg, #edffeb 0%, #ffffff 100%);
}

.is-gold {
	background: linear-gradient(180deg, #fff6d7 0%, #ffffff 100%);
}

.is-coral {
	background: linear-gradient(180deg, #ffe8dc 0%, #ffffff 100%);
}

@keyframes bounce {
	0%, 100% { transform: scaleY(0.75); opacity: 0.8; }
	50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1100px) {
	.hero__grid,
	.cta-panel,
	.site-footer__grid,
	.section-heading {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: flex-start;
	}

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

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

	.site-nav {
		width: 100%;
	}

	.menu {
		flex-wrap: wrap;
	}

	.social-links {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.site-header {
		position: static;
	}

	.site-header__inner {
		padding: 18px 0;
	}

	.social-links {
		width: 100%;
	}

	.hero {
		padding-top: 24px;
	}

	.hero h1 {
		max-width: 100%;
		font-size: clamp(2.6rem, 13vw, 4rem);
	}

	.notes-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.moments-grid {
		grid-template-columns: 1fr;
	}

	.show-slider {
		mask-image: none;
	}

	.video-slider {
		mask-image: none;
	}

	.show-slider__lane {
		animation-duration: 28s;
	}

	.video-slider__lane {
		animation-duration: 30s;
	}

	.show-card {
		flex-basis: min(78vw, 290px);
	}

	.video-card {
		flex-basis: min(78vw, 330px);
	}

	.schedule-arrow {
		flex-basis: calc((100% - 24px) / 3);
	}

	.hero__stage {
		min-height: 420px;
	}

	.live-card {
		padding: 24px;
		border-radius: 28px;
	}

	.live-card__brand {
		align-items: flex-start;
	}

	.schedule-arrow,
	.schedule-arrow:first-child {
		flex-basis: 100%;
		clip-path: none;
		padding: 22px;
		min-height: auto;
		border-radius: 24px;
	}

	.cta-panel,
	.site-footer__grid {
		padding: 24px;
		border-radius: 28px;
	}
}
