.channel-page {
	--channel-violet: #9f35ff;
	--channel-violet-deep: #5f1ce6;
	--channel-pink: #ff3f9f;
	--channel-mint: #60edbd;
	--channel-ink: #09070e;
	--channel-panel: #12101a;
	--channel-line: rgba(255, 255, 255, .11);
	color: #f9f7ff;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
}

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

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

.channel-page h1,
.channel-page h2,
.channel-page h3 {
	color: #fff;
	letter-spacing: -.045em;
}

.channel-page h2 {
	margin-bottom: 0;
	font-size: clamp(34px, 4.1vw, 64px);
	line-height: 1.03;
}

.channel-page p {
	color: #bdb6c9;
}

.channel-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr);
	align-items: center;
	min-height: 620px;
	overflow: hidden;
	padding: clamp(44px, 6vw, 92px);
	border: 1px solid var(--channel-line);
	border-radius: 38px;
	background:
		radial-gradient(circle at 18% 15%, rgba(159, 53, 255, .24), transparent 34%),
		linear-gradient(135deg, #171020 0%, #0b0910 58%, #13091a 100%);
	box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
}

.channel-hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	opacity: .34;
	background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.channel-hero__glow {
	position: absolute;
	z-index: -1;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	filter: blur(88px);
	pointer-events: none;
}

.channel-hero__glow--one {
	top: -180px;
	right: 18%;
	background: rgba(159, 53, 255, .42);
}

.channel-hero__glow--two {
	right: -130px;
	bottom: -210px;
	background: rgba(255, 63, 159, .28);
}

.channel-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.channel-live-pill,
.channel-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #d8a9ff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.channel-live-pill {
	margin-bottom: 26px;
	padding: 11px 15px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.channel-live-pill i,
.channel-eyebrow i,
.channel-player-status i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--channel-mint);
	box-shadow: 0 0 0 5px rgba(96, 237, 189, .12), 0 0 18px rgba(96, 237, 189, .75);
	animation: channel-pulse 2s ease-in-out infinite;
}

.channel-hero h1 {
	max-width: 820px;
	margin-bottom: 24px;
	font-size: clamp(48px, 6.1vw, 92px);
	font-weight: 800;
	line-height: .94;
}

.channel-hero__copy > p {
	max-width: 720px;
	margin-bottom: 32px;
	font-size: clamp(17px, 1.4vw, 21px);
	line-height: 1.55;
}

.channel-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.channel-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	min-height: 54px;
	padding: 0 23px;
	border: 1px solid transparent;
	border-radius: 17px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.channel-button:hover {
	color: #fff;
	transform: translateY(-2px);
}

.channel-button--primary {
	background: linear-gradient(120deg, var(--channel-violet), #bf32f4 54%, var(--channel-pink));
	box-shadow: 0 14px 34px rgba(133, 36, 236, .3);
}

.channel-button--primary:hover {
	box-shadow: 0 18px 42px rgba(133, 36, 236, .42);
}

.channel-button--ghost {
	border-color: rgba(255, 255, 255, .13);
	background: rgba(255, 255, 255, .055);
}

.channel-button--ghost:hover {
	border-color: rgba(255, 255, 255, .28);
	background: rgba(255, 255, 255, .09);
}

.channel-hero__facts {
	display: flex;
	gap: clamp(22px, 3vw, 44px);
	margin: 38px 0 0;
	padding: 0;
	list-style: none;
}

.channel-hero__facts li {
	display: grid;
	gap: 2px;
}

.channel-hero__facts strong {
	color: #fff;
	font-size: 20px;
	line-height: 1.1;
}

.channel-hero__facts span {
	color: #888191;
	font-size: 12px;
	font-weight: 600;
}

.channel-hero__visual {
	position: relative;
	min-height: 470px;
}

.channel-hero__screen {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(92%, 500px);
	aspect-ratio: 4 / 5;
	transform: translate(-50%, -50%) rotate(4deg);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 38px;
	background:
		radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .18), transparent 18%),
		linear-gradient(145deg, #7329df, #251160 51%, #0b0920);
	box-shadow: 0 38px 80px rgba(0, 0, 0, .48), inset 0 1px rgba(255, 255, 255, .18);
	animation: channel-float 7s ease-in-out infinite;
}

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

.channel-hero__screen::before {
	right: -110px;
	bottom: -75px;
	width: 320px;
	height: 320px;
	background: linear-gradient(145deg, var(--channel-pink), #7a20d2);
}

.channel-hero__screen::after {
	left: -95px;
	bottom: 56px;
	width: 250px;
	height: 250px;
	border: 44px solid rgba(96, 237, 189, .62);
}

.channel-hero__screen-live {
	position: absolute;
	z-index: 2;
	top: 25px;
	left: 25px;
	padding: 8px 11px;
	border-radius: 9px;
	background: #fff;
	color: #17101f;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .12em;
}

.channel-hero__mark {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	display: grid;
	width: 76%;
	transform: translate(-50%, -52%) rotate(-4deg);
	text-align: center;
}

.channel-hero__mark small {
	color: #e1ccf8;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .32em;
	text-transform: uppercase;
}

.channel-hero__mark strong {
	color: #fff;
	font-size: clamp(56px, 5.5vw, 88px);
	font-weight: 800;
	letter-spacing: -.08em;
	line-height: .94;
	text-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}

.channel-hero__mark span {
	margin-top: 13px;
	color: #efddff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.channel-hero__play {
	position: absolute;
	z-index: 3;
	right: 27px;
	bottom: 27px;
	display: grid;
	width: 64px;
	height: 64px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 22px;
	background: rgba(10, 7, 18, .62);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
	backdrop-filter: blur(15px);
}

.channel-orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgba(255, 255, 255, .11);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.channel-orbit--outer {
	width: 112%;
	aspect-ratio: 1;
}

.channel-orbit--inner {
	width: 79%;
	aspect-ratio: 1;
	border-color: rgba(159, 53, 255, .23);
}

.channel-signal {
	position: absolute;
	top: 5%;
	right: -1%;
	display: flex;
	align-items: flex-end;
	gap: 5px;
	height: 36px;
}

.channel-signal i {
	display: block;
	width: 5px;
	border-radius: 99px;
	background: var(--channel-mint);
	box-shadow: 0 0 12px rgba(96, 237, 189, .55);
}

.channel-signal i:nth-child(1) { height: 13px; }
.channel-signal i:nth-child(2) { height: 24px; }
.channel-signal i:nth-child(3) { height: 35px; }

.channel-star {
	position: absolute;
	color: #fff;
	filter: drop-shadow(0 0 12px rgba(255, 255, 255, .65));
}

.channel-star--one { left: -1%; top: 18%; font-size: 26px; }
.channel-star--two { right: 3%; bottom: 12%; font-size: 17px; }

.channel-player-section,
.channel-programs,
.channel-faq {
	padding-top: clamp(84px, 9vw, 140px);
}

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

.channel-section-heading .channel-eyebrow,
.channel-intro .channel-eyebrow,
.channel-history .channel-eyebrow,
.channel-anywhere .channel-eyebrow {
	margin-bottom: 14px;
}

.channel-section-heading > p {
	max-width: 430px;
	margin-bottom: 5px;
	font-size: 15px;
}

.channel-player-status {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 15px;
	border: 1px solid rgba(96, 237, 189, .18);
	border-radius: 999px;
	background: rgba(96, 237, 189, .07);
	color: #bff8e4;
	font-size: 12px;
	font-weight: 750;
}

.channel-player-shell {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 30px;
	background: #08070b;
	box-shadow: 0 35px 90px rgba(0, 0, 0, .44), 0 0 90px rgba(111, 26, 231, .09);
}

.channel-player-shell__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 46px;
	padding: 0 19px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	background: #121018;
}

.channel-player-shell__top > span {
	display: flex;
	gap: 7px;
}

.channel-player-shell__top i {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #35303d;
}

.channel-player-shell__top i:first-child { background: var(--channel-pink); }

.channel-player-shell__top small {
	color: #746d7e;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
}

.channel-player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
}

.channel-player iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
}

.channel-player-note {
	display: flex;
	flex-wrap: wrap;
	gap: 13px 28px;
	padding: 18px 4px 0;
	color: #857e8e;
	font-size: 12px;
	font-weight: 650;
}

.channel-player-note span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.channel-player-note i { color: #b473ed; }

.channel-intro {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(48px, 8vw, 130px);
	padding: clamp(90px, 11vw, 170px) clamp(0px, 4vw, 64px) 0;
}

.channel-intro__lead h2 {
	font-size: clamp(38px, 4.7vw, 70px);
}

.channel-intro__text {
	align-self: end;
	padding-bottom: 6px;
}

.channel-intro__text p {
	font-size: 17px;
}

.channel-intro__text p:last-child { margin-bottom: 0; }

.channel-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding-top: clamp(58px, 7vw, 100px);
}

.channel-benefit {
	position: relative;
	min-height: 310px;
	overflow: hidden;
	padding: 31px;
	border: 1px solid var(--channel-line);
	border-radius: 28px;
	background: #121019;
	transition: transform .25s ease, border-color .25s ease;
}

.channel-benefit:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, .23);
}

.channel-benefit::after {
	content: "";
	position: absolute;
	right: -95px;
	bottom: -110px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	filter: blur(2px);
}

.channel-benefit--violet::after { background: radial-gradient(circle, rgba(159, 53, 255, .6), rgba(159, 53, 255, 0) 70%); }
.channel-benefit--pink::after { background: radial-gradient(circle, rgba(255, 63, 159, .5), rgba(255, 63, 159, 0) 70%); }
.channel-benefit--mint::after { background: radial-gradient(circle, rgba(96, 237, 189, .43), rgba(96, 237, 189, 0) 70%); }

.channel-benefit__icon {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	margin-bottom: 56px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 17px;
	background: rgba(255, 255, 255, .07);
	font-size: 19px;
}

.channel-benefit > small {
	position: absolute;
	top: 28px;
	right: 29px;
	color: rgba(255, 255, 255, .28);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
}

.channel-benefit h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 10px;
	font-size: 25px;
}

.channel-benefit p {
	position: relative;
	z-index: 1;
	max-width: 330px;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.65;
}

.channel-history {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: clamp(48px, 8vw, 130px);
	margin-top: clamp(90px, 11vw, 170px);
	padding: clamp(40px, 6vw, 82px);
	border: 1px solid var(--channel-line);
	border-radius: 34px;
	background: linear-gradient(135deg, rgba(159, 53, 255, .1), rgba(255, 255, 255, .025) 45%, rgba(96, 237, 189, .045));
}

.channel-history__visual {
	position: relative;
	min-height: 330px;
	overflow: hidden;
	padding: 35px;
	border: 1px solid rgba(255, 255, 255, .11);
	border-radius: 27px;
	background: radial-gradient(circle at 75% 25%, rgba(159, 53, 255, .3), transparent 43%), #0d0b12;
}

.channel-history__year {
	display: block;
	color: #fff;
	font-size: clamp(72px, 8vw, 126px);
	font-weight: 800;
	letter-spacing: -.085em;
	line-height: 1;
}

.channel-history__line {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 32px 0 37px;
}

.channel-history__line::before,
.channel-history__line::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(159, 53, 255, .75));
}

.channel-history__line::after { background: linear-gradient(90deg, rgba(159, 53, 255, .75), rgba(96, 237, 189, .24)); }

.channel-history__line i {
	width: 9px;
	height: 9px;
	margin: 0 7px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 18px rgba(255, 255, 255, .7);
}

.channel-history__line i:first-child,
.channel-history__line i:last-child { opacity: .35; }

.channel-history__visual > small,
.channel-history__visual > strong {
	display: inline-block;
	color: #8e8797;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.channel-history__visual > b { margin: 0 13px; color: var(--channel-mint); }
.channel-history__visual > strong { color: #fff; }

.channel-history__copy p:last-child { margin-bottom: 0; }

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

.channel-program-card {
	position: relative;
	min-height: 250px;
	overflow: hidden;
	padding: 27px;
	border: 1px solid var(--channel-line);
	border-radius: 25px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
	transition: transform .24s ease, background-color .24s ease, border-color .24s ease;
}

.channel-program-card:hover {
	transform: translateY(-4px);
	border-color: rgba(174, 84, 255, .38);
	background-color: rgba(159, 53, 255, .055);
}

.channel-program-card::after {
	content: "";
	position: absolute;
	right: -75px;
	bottom: -95px;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(159, 53, 255, .15), transparent 70%);
}

.channel-program-card--feature {
	grid-column: span 2;
	background: linear-gradient(135deg, rgba(159, 53, 255, .21), rgba(255, 63, 159, .07) 55%, rgba(255, 255, 255, .025));
}

.channel-program-card--feature::after {
	width: 270px;
	height: 270px;
	background: radial-gradient(circle, rgba(255, 63, 159, .23), transparent 70%);
}

.channel-program-card__number {
	position: absolute;
	top: 23px;
	right: 24px;
	color: rgba(255, 255, 255, .2);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .14em;
}

.channel-program-card__tag {
	display: inline-flex;
	margin-bottom: 50px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .075);
	color: #cdbfe0;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.channel-program-card h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 8px;
	font-size: 21px;
	line-height: 1.15;
}

.channel-program-card p {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 1.6;
}

.channel-program-card--feature h3 {
	font-size: clamp(24px, 2.2vw, 34px);
}

.channel-anywhere {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
	align-items: center;
	gap: 58px;
	min-height: 510px;
	overflow: hidden;
	margin-top: clamp(90px, 11vw, 170px);
	padding: clamp(42px, 6.5vw, 92px);
	border: 1px solid var(--channel-line);
	border-radius: 36px;
	background: radial-gradient(circle at 82% 28%, rgba(255, 63, 159, .22), transparent 35%), linear-gradient(135deg, #1c1027, #0e0b15 57%);
}

.channel-anywhere::after {
	content: "";
	position: absolute;
	right: 25%;
	bottom: -160px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(159, 53, 255, .16);
	filter: blur(55px);
}

.channel-anywhere > div:first-child {
	position: relative;
	z-index: 2;
}

.channel-anywhere h2 { max-width: 780px; }

.channel-anywhere p {
	max-width: 730px;
	margin: 22px 0 30px;
}

.channel-devices {
	position: relative;
	z-index: 2;
	min-height: 340px;
}

.channel-device {
	position: absolute;
	display: block;
	border: 2px solid rgba(255, 255, 255, .28);
	background: #09070d;
	box-shadow: 0 30px 55px rgba(0, 0, 0, .4);
}

.channel-device i {
	position: absolute;
	inset: 9px;
	border-radius: inherit;
	background: radial-gradient(circle at 70% 24%, rgba(255, 255, 255, .18), transparent 17%), linear-gradient(145deg, #7d28df, #23114c 58%, #ff3f9f);
}

.channel-device--desktop {
	top: 32px;
	right: 0;
	width: 90%;
	aspect-ratio: 16 / 10;
	border-radius: 22px;
}

.channel-device--desktop::after {
	content: "";
	position: absolute;
	left: 40%;
	top: 100%;
	width: 20%;
	height: 34px;
	border-radius: 0 0 9px 9px;
	background: rgba(255, 255, 255, .18);
}

.channel-device--tablet {
	right: 4%;
	bottom: 2px;
	width: 37%;
	aspect-ratio: 4 / 5;
	border-radius: 20px;
	transform: rotate(5deg);
}

.channel-device--phone {
	left: 6%;
	bottom: 5px;
	width: 23%;
	aspect-ratio: 9 / 18;
	border-radius: 22px;
	transform: rotate(-6deg);
}

.channel-faq {
	padding-bottom: clamp(70px, 8vw, 120px);
}

.channel-faq__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.channel-faq details {
	min-width: 0;
	border: 1px solid var(--channel-line);
	border-radius: 20px;
	background: rgba(255, 255, 255, .035);
}

.channel-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 78px;
	padding: 20px 23px;
	color: #fff;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

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

.channel-faq summary span {
	display: grid;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	place-items: center;
	border-radius: 11px;
	background: rgba(159, 53, 255, .14);
	color: #d8a9ff;
	font-size: 20px;
	transition: transform .2s ease;
}

.channel-faq details[open] summary span { transform: rotate(45deg); }

.channel-faq details p {
	margin: -5px 23px 23px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, .07);
	font-size: 14px;
}

@keyframes channel-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .58; transform: scale(.78); }
}

@keyframes channel-float {
	0%, 100% { transform: translate(-50%, -50%) rotate(4deg); }
	50% { transform: translate(-50%, calc(-50% - 11px)) rotate(2deg); }
}

@media (max-width: 1180px) {
	.channel-hero { grid-template-columns: minmax(0, 1fr) 390px; }
	.channel-hero__visual { min-height: 410px; }
	.channel-program-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.channel-program-card--feature { grid-column: span 1; }
	.channel-program-card--feature h3 { font-size: 23px; }
}

@media (max-width: 920px) {
	.channel-page { font-size: 16px; }
	.channel-hero { grid-template-columns: 1fr; min-height: auto; }
	.channel-hero__copy { max-width: 800px; }
	.channel-hero__visual { min-height: 500px; margin-top: 44px; }
	.channel-hero__screen { width: min(80%, 460px); }
	.channel-intro,
	.channel-history,
	.channel-anywhere { grid-template-columns: 1fr; }
	.channel-benefits { grid-template-columns: 1fr 1fr; }
	.channel-benefit:last-child { grid-column: 1 / -1; }
	.channel-history__visual { order: 2; }
	.channel-program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.channel-anywhere { gap: 25px; }
	.channel-devices { width: min(100%, 500px); margin: 0 auto; }
}

@media (max-width: 640px) {
	.channel-page { font-size: 15px; }
	.channel-page h2 { font-size: clamp(32px, 10vw, 46px); }
	.channel-hero { padding: 34px 22px 26px; border-radius: 27px; }
	.channel-hero h1 { font-size: clamp(42px, 13vw, 61px); }
	.channel-live-pill { margin-bottom: 20px; }
	.channel-hero__actions { display: grid; grid-template-columns: 1fr; }
	.channel-button { width: 100%; }
	.channel-hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
	.channel-hero__facts li { padding-right: 8px; }
	.channel-hero__facts span { font-size: 10px; line-height: 1.35; }
	.channel-hero__visual { min-height: 390px; margin-top: 28px; }
	.channel-hero__screen { width: 84%; border-radius: 29px; }
	.channel-hero__play { right: 18px; bottom: 18px; width: 52px; height: 52px; border-radius: 17px; }
	.channel-section-heading { display: grid; align-items: start; gap: 17px; }
	.channel-section-heading--player { grid-template-columns: 1fr; }
	.channel-player-status { justify-self: start; }
	.channel-player-shell { border-radius: 19px; }
	.channel-player-shell__top { height: 39px; }
	.channel-player-note { display: grid; gap: 9px; }
	.channel-intro { gap: 28px; padding-top: 86px; }
	.channel-intro__text p { font-size: 15px; }
	.channel-benefits { grid-template-columns: 1fr; }
	.channel-benefit,
	.channel-benefit:last-child { grid-column: auto; min-height: 270px; }
	.channel-history { padding: 22px; border-radius: 25px; }
	.channel-history__visual { min-height: 280px; padding: 25px; }
	.channel-program-grid { grid-template-columns: 1fr; }
	.channel-program-card { min-height: 220px; }
	.channel-program-card__tag { margin-bottom: 35px; }
	.channel-anywhere { min-height: auto; padding: 34px 22px; border-radius: 27px; }
	.channel-devices { min-height: 280px; }
	.channel-faq__list { grid-template-columns: 1fr; }
	.channel-faq summary { min-height: 70px; padding: 17px; font-size: 14px; }
	.channel-faq details p { margin: -3px 17px 20px; }
}

@media (max-width: 390px) {
	.channel-hero { padding-inline: 18px; }
	.channel-hero__facts { grid-template-columns: 1fr; }
	.channel-hero__facts li { grid-template-columns: 44px 1fr; align-items: center; }
	.channel-hero__visual { min-height: 340px; }
	.channel-hero__mark strong { font-size: 52px; }
	.channel-history__visual > small,
	.channel-history__visual > strong { display: block; }
	.channel-history__visual > b { display: block; margin: 8px 0; }
}

@media (prefers-reduced-motion: reduce) {
	.channel-live-pill i,
	.channel-eyebrow i,
	.channel-player-status i,
	.channel-hero__screen { animation: none; }
	.channel-button,
	.channel-benefit,
	.channel-program-card,
	.channel-faq summary span { transition: none; }
}
