:root {
    --ink-950: #030914;
    --ink-900: #071426;
    --ink-850: #0a1b31;
    --ink-800: #0e2440;
    --ink-700: #17365c;
    --blue: #2f7df6;
    --blue-bright: #58a6ff;
    --cyan: #53e3ff;
    --gold: #ffd33d;
    --gold-deep: #e8ad10;
    --white: #f8fbff;
    --mist: #b7c7dc;
    --line: rgba(255, 255, 255, 0.11);
    --glass: rgba(10, 28, 51, 0.68);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    --shell: min(1180px, calc(100% - 48px));
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    background: var(--ink-950);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    min-width: 320px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--gold);
    color: var(--ink-950);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

.ambient {
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.16;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

.ambient-one {
    background: var(--blue);
    height: 480px;
    left: -220px;
    top: 28vh;
    width: 480px;
}

.ambient-two {
    background: var(--gold);
    bottom: -260px;
    height: 520px;
    right: -260px;
    width: 520px;
}

.tv-header {
    align-items: center;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.91), rgba(3, 9, 20, 0.66));
    border-bottom: 1px solid transparent;
    display: flex;
    gap: 30px;
    left: 0;
    padding: 10px 48px 10px max(32px, calc((100vw - 1180px) / 2));
    position: fixed;
    right: 0;
    top: 0;
    transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
    z-index: 1000;
}

.tv-header.is-scrolled {
    background: rgba(3, 9, 20, 0.94);
    border-color: var(--line);
    padding-block: 10px;
}

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

.brand {
    flex: 0 0 auto;
}

.tv-header nav {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    margin-left: auto;
}

.tv-header nav a[aria-current="page"] {
    color: var(--white);
}

.tv-header nav a {
    color: rgba(248, 251, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.2s ease;
}

.tv-header nav a::after {
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    width: 100%;
}

.tv-header nav a:hover {
    color: var(--white);
}

.tv-header nav a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.header-cta {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    gap: 9px;
    padding: 11px 17px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-cta i {
    color: #45e777;
    font-size: 1rem;
}

.header-cta:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 42px;
    position: relative;
    width: 42px;
}

.menu-toggle span {
    background: var(--white);
    border-radius: 20px;
    height: 2px;
    left: 9px;
    position: absolute;
    transition: transform 0.25s ease, top 0.25s ease;
    width: 24px;
}

.menu-toggle span:first-child {
    top: 16px;
}

.menu-toggle span:last-child {
    top: 25px;
}

.menu-toggle.is-open span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

.hero-tv {
    align-items: center;
    background:
        radial-gradient(circle at 73% 43%, rgba(47, 125, 246, 0.28), transparent 29%),
        radial-gradient(circle at 52% 28%, rgba(83, 227, 255, 0.08), transparent 27%),
        linear-gradient(145deg, #030914 0%, #071426 48%, #0b203d 100%);
    display: grid;
    gap: clamp(30px, 4vw, 80px);
    grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
    min-height: 900px;
    overflow: hidden;
    padding: 150px max(32px, calc((100vw - 1180px) / 2)) 100px;
    position: relative;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 62px 62px;
    inset: 0;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    opacity: 0.45;
    pointer-events: none;
    position: absolute;
}

.hero-tv::before {
    background: linear-gradient(90deg, var(--gold), var(--cyan), transparent);
    content: "";
    height: 1px;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 94px;
    width: 60%;
}

.hero-orbit {
    border: 1px solid rgba(88, 166, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
    position: absolute;
}

.orbit-one {
    height: 670px;
    right: -170px;
    top: 110px;
    width: 670px;
}

.orbit-two {
    height: 480px;
    right: -70px;
    top: 210px;
    width: 480px;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.eyebrow,
.section-kicker {
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    align-items: center;
    background: rgba(255, 211, 61, 0.07);
    border: 1px solid rgba(255, 211, 61, 0.2);
    border-radius: 999px;
    display: inline-flex;
    gap: 10px;
    margin-bottom: 24px;
    padding: 9px 14px;
}

.live-dot {
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 211, 61, 0.11), 0 0 18px var(--gold);
    height: 7px;
    width: 7px;
}

.hero-content h1,
.section-heading h2,
.experience-copy h2,
.final-cta h2 {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.hero-content h1 {
    font-size: clamp(3rem, 5.6vw, 5.6rem);
    max-width: 760px;
}

.hero-content h1 span {
    background: linear-gradient(110deg, var(--gold) 5%, #ffe998 45%, var(--cyan) 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content > p {
    color: var(--mist);
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    margin-top: 26px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 14px;
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    gap: 12px;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #f7b91d);
    box-shadow: 0 14px 38px rgba(232, 173, 16, 0.2);
    color: #08111f;
}

.btn-primary:hover {
    box-shadow: 0 18px 48px rgba(232, 173, 16, 0.34);
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-3px);
}

.hero-meta {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 54px;
    max-width: 650px;
    padding-top: 27px;
}

.hero-meta > div {
    align-items: center;
    display: flex;
    gap: 11px;
}

.hero-meta i {
    color: var(--cyan);
    font-size: 1.05rem;
}

.hero-meta span {
    color: #91a5be;
    display: flex;
    flex-direction: column;
    font-size: 0.68rem;
    line-height: 1.5;
}

.hero-meta strong {
    color: var(--white);
    font-size: 0.78rem;
}

.hero-visual {
    height: 610px;
    perspective: 1200px;
    position: relative;
    z-index: 3;
}

.hero-visual::before {
    background: radial-gradient(circle, rgba(47, 125, 246, 0.42), rgba(47, 125, 246, 0) 66%);
    content: "";
    filter: blur(10px);
    inset: 8% -8% -2% 0;
    pointer-events: none;
    position: absolute;
}

.poster {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: absolute;
}

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

.poster::after {
    background: linear-gradient(to top, rgba(2, 8, 18, 0.5), transparent 55%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.poster-main {
    height: 500px;
    left: 19%;
    top: 44px;
    transform: rotateY(-8deg) rotateZ(1.5deg);
    width: 330px;
    z-index: 4;
}

.poster-back {
    height: 390px;
    left: 0;
    opacity: 0.75;
    top: 86px;
    transform: rotateY(14deg) rotateZ(-7deg);
    width: 255px;
    z-index: 2;
}

.poster-front {
    height: 350px;
    right: 0;
    top: 155px;
    transform: rotateY(-18deg) rotateZ(8deg);
    width: 230px;
    z-index: 5;
}

.poster-glass {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(5, 14, 28, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    bottom: 17px;
    left: 16px;
    padding: 13px 14px;
    position: absolute;
    right: 16px;
    z-index: 3;
}

.poster-glass span {
    color: var(--gold);
    display: block;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.poster-glass strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 0.88rem;
    line-height: 1.35;
}

.floating-badge {
    align-items: center;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: rgba(7, 20, 38, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    display: flex;
    gap: 12px;
    padding: 13px 15px;
    position: absolute;
    z-index: 8;
}

.floating-badge > i {
    align-items: center;
    background: rgba(83, 227, 255, 0.11);
    border-radius: 10px;
    color: var(--cyan);
    display: flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.floating-badge span {
    color: #93a8c0;
    display: flex;
    flex-direction: column;
    font-size: 0.61rem;
}

.floating-badge strong {
    color: var(--white);
    font-size: 0.72rem;
}

.badge-quality {
    left: 0;
    top: 500px;
}

.badge-anywhere {
    right: 6px;
    top: 50px;
}

.scroll-cue {
    align-items: center;
    bottom: 31px;
    color: #7187a1;
    display: flex;
    flex-direction: column;
    font-size: 0.62rem;
    gap: 7px;
    left: 50%;
    letter-spacing: 0.12em;
    position: absolute;
    text-transform: uppercase;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-cue i {
    -webkit-animation: bounce 1.8s ease-in-out infinite;
    animation: bounce 1.8s ease-in-out infinite;
    color: var(--gold);
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(7px);
        transform: translateY(7px);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

.marquee-section {
    background: linear-gradient(90deg, #123a72, #1a66b7 42%, #0f3d78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    padding: 17px 0;
    position: relative;
}

.marquee-section::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.marquee-track {
    -webkit-animation: marquee 34s linear infinite;
    animation: marquee 34s linear infinite;
    display: flex;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    width: max-content;
}

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

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.marquee-section:hover .marquee-track {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.marquee-group {
    align-items: center;
    display: flex;
    flex-shrink: 0;
}

.marquee-group span {
    align-items: center;
    display: inline-flex;
    font-family: "Sora", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 10px;
    letter-spacing: 0.02em;
    padding: 0 28px;
    white-space: nowrap;
}

.marquee-group span::after {
    color: var(--gold);
    content: "✦";
    font-size: 0.68rem;
    margin-left: 46px;
}

.marquee-group i {
    color: var(--gold);
    font-size: 0.92rem;
}

.marquee-fade {
    bottom: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100px;
    z-index: 2;
}

.marquee-fade-left {
    background: linear-gradient(90deg, #123a72, transparent);
    left: 0;
}

.marquee-fade-right {
    background: linear-gradient(-90deg, #0f3d78, transparent);
    right: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.channels-section {
    background:
        linear-gradient(180deg, rgba(3, 9, 20, 0.1), rgba(7, 20, 38, 0.96) 26%, rgba(7, 20, 38, 0.96) 78%, rgba(3, 9, 20, 0.1)),
        radial-gradient(circle at 50% 40%, rgba(47, 125, 246, 0.16), transparent 54%);
    overflow: hidden;
    padding-block: 125px;
    position: relative;
}

.channels-glow {
    border-radius: 50%;
    filter: blur(90px);
    height: 300px;
    opacity: 0.17;
    pointer-events: none;
    position: absolute;
    width: 300px;
}

.channels-glow-left {
    background: var(--cyan);
    left: -190px;
    top: 180px;
}

.channels-glow-right {
    background: var(--gold);
    bottom: 80px;
    right: -190px;
}

.channels-heading {
    margin-bottom: 43px;
}

.channel-carousel {
    margin-top: 36px;
    padding-inline: 30px;
    position: relative;
}

.channel-logo-marquee {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    overflow: hidden;
    padding-block: 24px;
}

.channel-carousel-button {
    align-items: center;
    background: linear-gradient(145deg, #17304a, #09182a);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 52px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    width: 52px;
    z-index: 4;
}

.channel-carousel-button:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-50%) scale(1.06);
}

.channel-carousel-button:focus-visible,
.channels-search:focus-within {
    outline: 3px solid rgba(83, 227, 255, 0.45);
    outline-offset: 3px;
}

.channel-carousel-prev {
    left: 4px;
}

.channel-carousel-next {
    right: 4px;
}

.channel-logo-track {
    display: flex;
    -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.22, 0.75, 0.2, 1);
    transition: transform 0.55s cubic-bezier(0.22, 0.75, 0.2, 1);
    will-change: transform;
    width: max-content;
}

.channel-logo-group {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 14px;
    padding-right: 14px;
}

.channel-logo-group span {
    align-items: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex: 0 0 180px;
    height: 98px;
    justify-content: center;
    overflow: hidden;
    padding: 12px 16px;
}

.channel-logo-group img {
    flex: 0 0 auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.channel-note {
    align-items: center;
    color: #7187a1;
    display: flex;
    font-size: 0.68rem;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
}

.channel-note i {
    color: var(--cyan);
}

.channels-directory {
    background:
        radial-gradient(circle at 85% 5%, rgba(83, 227, 255, 0.1), transparent 30%),
        linear-gradient(145deg, #0d2035, #06111f);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    margin-top: 48px;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.channels-directory-header {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr minmax(260px, 390px);
    padding: 26px 30px;
}

.channels-directory-header h3 {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    margin-top: 7px;
}

.channels-directory-header p {
    color: #91a4bb;
    font-size: 0.84rem;
    margin-top: 5px;
}

.channels-search {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    display: flex;
    gap: 11px;
    padding: 13px 17px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.channels-search:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(83, 227, 255, 0.4);
}

.channels-search i {
    color: var(--cyan);
}

.channels-search input {
    background: transparent;
    border: 0;
    color: #fff;
    font: 600 0.86rem/1.4 "Manrope", sans-serif;
    min-width: 0;
    outline: 0;
    width: 100%;
}

.channels-search input::placeholder {
    color: #8297af;
}

.channels-grid {
    contain: layout paint;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
    max-height: 560px;
    overscroll-behavior: contain;
    overflow-y: auto;
    padding: 24px 30px 30px;
    scrollbar-color: rgba(83, 227, 255, 0.5) rgba(255, 255, 255, 0.04);
}

.channels-grid-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    contain: layout paint style;
    contain-intrinsic-size: 138px;
    content-visibility: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    min-height: 138px;
    padding: 14px;
    text-align: center;
    transition: border-color 0.15s ease;
}

.channels-grid-card:hover {
    border-color: rgba(83, 227, 255, 0.28);
}

.channels-grid-card[hidden] {
    display: none;
}

.channels-grid-card img {
    height: 72px;
    object-fit: contain;
    width: 100%;
}

.channels-grid-card strong {
    color: #dfe9f5;
    font-size: 0.72rem;
    line-height: 1.3;
}

.channels-empty {
    color: #91a4bb;
    padding: 35px;
    text-align: center;
}

.universe-section,
.experience-section {
    padding-block: 130px;
}

.section-heading {
    align-items: end;
    display: grid;
    gap: 60px;
    grid-template-columns: 1.2fr 0.8fr;
    margin-bottom: 54px;
}

.section-heading h2,
.experience-copy h2 {
    font-size: clamp(2.15rem, 4vw, 3.75rem);
    margin-top: 12px;
}

.section-heading > p,
.experience-copy > p {
    color: #95a8bf;
    font-size: 0.98rem;
}

.feature-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        var(--ink-900);
    border: 1px solid var(--line);
    border-radius: 24px;
    min-height: 320px;
    overflow: hidden;
    padding: 29px;
    position: relative;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.feature-card::before {
    background: radial-gradient(circle, rgba(47, 125, 246, 0.23), transparent 67%);
    content: "";
    height: 250px;
    position: absolute;
    right: -110px;
    top: -120px;
    width: 250px;
}

.feature-card:hover {
    border-color: rgba(83, 227, 255, 0.27);
    transform: translateY(-5px);
}

.feature-large {
    grid-row: span 2;
    min-height: 658px;
}

.feature-wide {
    align-items: center;
    display: flex;
    gap: 30px;
    grid-column: span 2;
    justify-content: space-between;
}

.feature-icon {
    align-items: center;
    background: linear-gradient(145deg, rgba(47, 125, 246, 0.18), rgba(83, 227, 255, 0.07));
    border: 1px solid rgba(83, 227, 255, 0.14);
    border-radius: 14px;
    color: var(--cyan);
    display: flex;
    font-size: 1.15rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 26px;
    width: 48px;
}

.feature-number {
    color: rgba(255, 255, 255, 0.24);
    font-family: "Sora", sans-serif;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    position: absolute;
    right: 26px;
    top: 27px;
}

.feature-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.28rem;
    line-height: 1.3;
    max-width: 300px;
}

.feature-card p {
    color: #8fa3bb;
    font-size: 0.86rem;
    margin-top: 13px;
    max-width: 390px;
}

.live-preview {
    align-items: flex-end;
    background:
        linear-gradient(to top, rgba(5, 13, 25, 0.78), transparent),
        url("../TV/catalogo/05.jpg") center 35% / cover;
    border: 1px solid var(--line);
    border-radius: 18px;
    bottom: 28px;
    display: flex;
    height: 315px;
    justify-content: space-between;
    left: 28px;
    overflow: hidden;
    padding: 18px;
    position: absolute;
    right: 28px;
}

.live-pill {
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(3, 9, 20, 0.7);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.65rem;
    font-weight: 800;
    gap: 7px;
    letter-spacing: 0.08em;
    padding: 7px 10px;
}

.live-pill i {
    background: #ff4545;
    border-radius: 50%;
    box-shadow: 0 0 12px #ff4545;
    height: 6px;
    width: 6px;
}

.signal-bars {
    align-items: flex-end;
    display: flex;
    gap: 3px;
    height: 22px;
}

.signal-bars b {
    -webkit-animation: signal 1s ease-in-out infinite alternate;
    animation: signal 1s ease-in-out infinite alternate;
    background: var(--cyan);
    border-radius: 4px;
    width: 3px;
}

@-webkit-keyframes signal {
    to { height: 22%; opacity: 0.45; }
}

.signal-bars b:nth-child(1) { height: 35%; }
.signal-bars b:nth-child(2) { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; height: 65%; }
.signal-bars b:nth-child(3) { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; height: 100%; }
.signal-bars b:nth-child(4) { -webkit-animation-delay: 0.1s; animation-delay: 0.1s; height: 55%; }

@keyframes signal {
    to { height: 22%; opacity: 0.45; }
}

.profile-stack {
    display: flex;
    padding-right: 12px;
}

.profile-stack span {
    align-items: center;
    background: linear-gradient(145deg, #174b8d, #0d2749);
    border: 4px solid var(--ink-900);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    font-size: 1rem;
    height: 62px;
    justify-content: center;
    margin-left: -13px;
    width: 62px;
}

.highlights-section {
    background:
        linear-gradient(180deg, rgba(3, 9, 20, 0), rgba(7, 20, 38, 0.96) 24%, rgba(7, 20, 38, 0.96) 80%, rgba(3, 9, 20, 0)),
        radial-gradient(circle at 50% 45%, rgba(47, 125, 246, 0.15), transparent 54%);
    padding-block: 115px 125px;
}

.section-heading.compact {
    align-items: center;
    grid-template-columns: 1fr auto;
    margin-bottom: 40px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    height: 46px;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    width: 46px;
}

.carousel-button:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.movies-viewport {
    margin-left: max(24px, calc((100vw - 1180px) / 2));
    overflow: hidden;
}

.movies-track {
    display: flex;
    gap: 17px;
    padding: 10px max(32px, calc((100vw - 1180px) / 2)) 30px 5px;
    -webkit-transition: -webkit-transform 0.62s cubic-bezier(0.22, 0.75, 0.2, 1);
    transition: transform 0.62s cubic-bezier(0.22, 0.75, 0.2, 1);
    will-change: transform;
    width: max-content;
}

.movies-track.is-resetting {
    -webkit-transition: none;
    transition: none;
}

.movies-group {
    display: flex;
    flex-shrink: 0;
    gap: 17px;
}

.movie-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    flex: 0 0 clamp(190px, 17vw, 245px);
    height: clamp(290px, 26vw, 370px);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.movie-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    width: 100%;
}

.movie-card::after {
    background: linear-gradient(to top, rgba(3, 9, 20, 0.96), transparent 57%);
    content: "";
    inset: 0;
    position: absolute;
}

.movie-card:hover {
    border-color: rgba(83, 227, 255, 0.45);
    transform: translateY(-8px);
}

.movie-card:hover img {
    transform: scale(1.05);
}

.movie-overlay {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 19px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.movie-overlay > div {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding-right: 8px;
}

.movie-overlay small {
    color: var(--gold);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.movie-overlay strong {
    display: -webkit-box;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 3px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-overlay i {
    align-items: center;
    aspect-ratio: 1;
    background: var(--gold);
    border-radius: 50%;
    color: var(--ink-950);
    display: flex;
    flex: 0 0 32px;
    font-size: 0.68rem;
    height: 32px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 32px;
}

.experience-section {
    align-items: center;
    display: grid;
    gap: clamp(50px, 8vw, 110px);
    grid-template-columns: 0.84fr 1.16fr;
}

.experience-copy > p {
    margin-top: 22px;
}

.steps-list {
    list-style: none;
    margin: 34px 0;
}

.steps-list li {
    align-items: flex-start;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 18px;
    grid-template-columns: 38px 1fr;
    padding: 19px 0;
}

.steps-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.steps-list > li > span {
    color: var(--gold);
    font-family: "Sora", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    padding-top: 3px;
}

.steps-list strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 0.91rem;
}

.steps-list p {
    color: #8095ad;
    font-size: 0.78rem;
    margin-top: 3px;
}

.device-stage {
    height: 580px;
    position: relative;
}

.device-glow {
    background: radial-gradient(circle, rgba(47, 125, 246, 0.46), transparent 64%);
    filter: blur(20px);
    inset: 0;
    position: absolute;
}

.device-tv {
    left: 1%;
    position: absolute;
    top: 60px;
    width: 88%;
    z-index: 2;
}

.device-screen {
    background: #050a10;
    border: 9px solid #111a26;
    border-radius: 22px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
    height: 365px;
    overflow: hidden;
    position: relative;
}

.device-screen::after {
    background: linear-gradient(to top, rgba(3, 9, 20, 0.78), transparent 58%);
    content: "";
    inset: 0;
    position: absolute;
}

.device-screen > img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.device-screen > button {
    align-items: center;
    background: rgba(255, 211, 61, 0.92);
    border: 0;
    border-radius: 50%;
    color: var(--ink-950);
    display: flex;
    font-size: 1.1rem;
    height: 58px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    z-index: 2;
}

.screen-brand {
    align-items: center;
    bottom: 19px;
    display: flex;
    font-family: "Sora", sans-serif;
    font-size: 0.73rem;
    font-weight: 800;
    gap: 7px;
    left: 20px;
    position: absolute;
    z-index: 2;
}

.screen-brand img {
    height: 24px;
    width: 24px;
}

.device-base {
    background: linear-gradient(#171f2a, #0a1018);
    -webkit-clip-path: polygon(43% 0, 57% 0, 62% 100%, 38% 100%);
    clip-path: polygon(43% 0, 57% 0, 62% 100%, 38% 100%);
    height: 52px;
    margin: 0 auto;
    position: relative;
    width: 170px;
}

.device-base::after {
    background: #121a24;
    border-radius: 50%;
    bottom: -8px;
    content: "";
    height: 18px;
    left: 10px;
    position: absolute;
    width: 150px;
}

.device-phone {
    background: #101823;
    border: 6px solid #151f2c;
    border-radius: 28px;
    bottom: 28px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.52);
    height: 300px;
    overflow: hidden;
    position: absolute;
    right: 0;
    transform: rotate(5deg);
    width: 153px;
    z-index: 5;
}

.device-phone::after {
    background: linear-gradient(to top, rgba(3, 9, 20, 0.66), transparent);
    content: "";
    inset: 0;
    position: absolute;
}

.device-phone > img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.device-phone > span {
    align-items: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--ink-950);
    display: flex;
    height: 38px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    z-index: 2;
}

.phone-speaker {
    background: #080d13;
    border-radius: 10px;
    height: 5px;
    left: 50%;
    position: absolute;
    top: 7px;
    transform: translateX(-50%);
    width: 42px;
    z-index: 4;
}

.device-chip {
    align-items: center;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(6, 17, 33, 0.86);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    font-size: 0.68rem;
    font-weight: 800;
    gap: 8px;
    padding: 10px 14px;
    position: absolute;
    z-index: 7;
}

.device-chip i {
    color: var(--cyan);
}

.chip-one {
    left: -20px;
    top: 28px;
}

.chip-two {
    bottom: 29px;
    left: 17%;
}

.final-cta {
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.2), transparent 25%),
        linear-gradient(120deg, #164d96, #1a6ed0 55%, #154785);
    min-height: 590px;
    overflow: hidden;
    padding: 110px 24px;
    position: relative;
}

.final-cta::before,
.final-cta::after {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    content: "";
    position: absolute;
}

.final-cta::before {
    height: 680px;
    right: -200px;
    top: -280px;
    width: 680px;
}

.final-cta::after {
    bottom: -380px;
    height: 620px;
    left: -170px;
    width: 620px;
}

.final-cta-noise {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    inset: 0;
    -webkit-mask-image: radial-gradient(circle, black, transparent 80%);
    mask-image: radial-gradient(circle, black, transparent 80%);
    position: absolute;
}

.final-cta-content {
    margin: auto;
    max-width: 850px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.final-cta-content > img {
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
    height: 72px;
    margin: 0 auto 23px;
    width: 72px;
}

.final-cta .section-kicker {
    color: #d9efff;
}

.final-cta h2 {
    font-size: clamp(2.35rem, 5vw, 4.9rem);
    margin-top: 14px;
}

.final-cta p {
    color: #d5e6fa;
    margin: 22px auto 30px;
    max-width: 590px;
}

.btn-light {
    background: var(--white);
    color: #0d2a51;
}

.btn-light:hover {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    transform: translateY(-3px);
}

.tv-footer {
    background: #020711;
    border-top: 1px solid var(--line);
    padding: 68px max(24px, calc((100vw - 1180px) / 2)) 22px;
}

.footer-main {
    display: grid;
    gap: 55px;
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
}

.footer-brand img {
    height: 55px;
    margin-bottom: 18px;
    width: auto;
}

.footer-brand p {
    color: #7f93ab;
    font-size: 0.8rem;
    max-width: 320px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-family: "Sora", sans-serif;
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.footer-column > a {
    color: #7f93ab;
    font-size: 0.76rem;
    transition: color 0.2s ease;
}

.footer-column > a:hover {
    color: var(--white);
}

.social-row {
    display: flex;
    gap: 9px;
}

.social-row a {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--white);
    display: flex;
    height: 38px;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 38px;
}

.social-row a:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid var(--line);
    color: #5f738c;
    display: flex;
    font-size: 0.7rem;
    justify-content: space-between;
    margin-top: 54px;
    padding-top: 22px;
}

.footer-bottom a {
    color: #8da3bd;
}

.footer-bottom i {
    color: var(--gold);
    margin-left: 6px;
}

.floating-whatsapp {
    align-items: center;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(5, 17, 30, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    bottom: 22px;
    box-shadow: 0 17px 50px rgba(0, 0, 0, 0.38);
    display: flex;
    font-size: 0.73rem;
    font-weight: 800;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    position: fixed;
    right: 22px;
    transition: border-color 0.2s ease, transform 0.2s ease;
    z-index: 50;
}

.floating-whatsapp:hover {
    border-color: rgba(69, 231, 119, 0.52);
    transform: translateY(-3px);
}

.floating-whatsapp img {
    height: 36px;
    width: 36px;
}

.reveal {
    opacity: 0;
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .tv-header {
        display: flex;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 42px;
        order: 3;
    }

    .tv-header nav {
        align-items: stretch;
        background: rgba(3, 9, 20, 0.98);
        border-bottom: 1px solid var(--line);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 18px 28px 26px;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .tv-header nav.is-open {
        display: flex;
    }

    .tv-header nav a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.88rem;
        padding: 13px 0;
    }

    .tv-header nav a::after {
        display: none;
    }

    .header-cta {
        margin-left: auto;
        order: 2;
    }

    .hero-tv {
        gap: 20px;
        grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    }

    .hero-meta {
        gap: 13px;
    }

    .poster-main {
        left: 18%;
        width: 300px;
    }

    .poster-back {
        width: 220px;
    }

    .poster-front {
        width: 205px;
    }

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

    .feature-large {
        grid-row: span 2;
    }

    .feature-wide {
        grid-column: 2;
    }

    .experience-section {
        gap: 55px;
        grid-template-columns: 0.9fr 1.1fr;
    }

    .footer-main {
        grid-template-columns: 1.3fr repeat(3, 0.7fr);
    }
}

@media (max-width: 850px) {
    .hero-tv {
        gap: 15px;
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 115px;
        padding-top: 145px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-visual {
        height: 590px;
        margin-inline: auto;
        max-width: 600px;
        width: 100%;
    }

    .section-heading,
    .section-heading.compact {
        align-items: start;
        gap: 25px;
        grid-template-columns: 1fr;
    }

    .section-heading.compact {
        grid-template-columns: 1fr auto;
    }

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

    .feature-large {
        grid-column: span 2;
        grid-row: auto;
    }

    .feature-card {
        min-height: 310px;
    }

    .feature-large {
        min-height: 600px;
    }

    .feature-wide {
        grid-column: span 2;
    }

    .experience-section {
        grid-template-columns: 1fr;
    }

    .device-stage {
        margin-inline: auto;
        max-width: 650px;
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: calc(100% - 34px);
    }

    .tv-header {
        display: flex;
        gap: 10px;
        padding-inline: 17px;
    }

    .brand img {
        height: 42px;
    }

    .header-cta {
        align-items: center;
        display: flex;
        flex: 0 0 42px;
        font-size: 0;
        gap: 0;
        height: 42px;
        justify-content: center;
        justify-self: end;
        line-height: 1;
        margin-left: auto;
        min-width: 42px;
        overflow: hidden;
        padding: 0;
        width: 42px;
    }

    .header-cta i {
        display: block;
        flex: 0 0 auto;
        font-size: 1.15rem;
        line-height: 1;
        margin: 0;
    }

    .menu-toggle {
        order: 3;
    }

    .hero-tv {
        padding-inline: 18px;
        padding-top: 125px;
    }

    .hero-content h1 {
        font-size: clamp(2.65rem, 13.5vw, 4.1rem);
    }

    .hero-content > p {
        font-size: 0.94rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-meta {
        gap: 17px;
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .hero-visual {
        height: 520px;
        margin-top: 22px;
    }

    .poster-main {
        height: 410px;
        left: 17%;
        top: 42px;
        width: 265px;
    }

    .poster-back {
        height: 310px;
        left: -22px;
        top: 92px;
        width: 200px;
    }

    .poster-front {
        height: 275px;
        right: -25px;
        top: 143px;
        width: 175px;
    }

    .badge-anywhere {
        right: 0;
        top: 7px;
    }

    .badge-quality {
        bottom: -7px;
        left: 0;
        top: auto;
    }

    .floating-badge {
        max-width: 220px;
        padding: 10px;
    }

    .scroll-cue {
        display: none;
    }

    .marquee-fade {
        width: 35px;
    }

    .universe-section,
    .experience-section {
        padding-block: 88px;
    }

    .section-heading h2,
    .experience-copy h2 {
        font-size: 2.25rem;
    }

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

    .feature-card,
    .feature-large,
    .feature-wide {
        grid-column: auto;
        min-height: 330px;
    }

    .feature-large {
        min-height: 555px;
    }

    .feature-wide {
        align-items: flex-start;
        flex-direction: column;
    }

    .live-preview {
        height: 250px;
    }

    .section-heading.compact {
        grid-template-columns: 1fr;
    }

    .channels-section {
        padding-block: 88px;
    }

    .channel-logo-group span {
        flex-basis: 150px;
        height: 84px;
    }

    .channel-carousel {
        margin-inline: -9px;
        padding-inline: 17px;
    }

    .channel-carousel-button {
        height: 42px;
        width: 42px;
    }

    .channel-carousel-prev {
        left: -4px;
    }

    .channel-carousel-next {
        right: -4px;
    }

    .channels-directory {
        border-radius: 22px;
        margin-top: 36px;
    }

    .channels-directory-header {
        gap: 16px;
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .channels-directory-header h3 {
        font-size: 1.65rem;
    }

    .channels-grid {
        gap: 9px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: 430px;
        padding: 16px;
    }

    .channels-grid-card {
        contain-intrinsic-size: 122px;
        min-height: 122px;
        padding: 11px;
    }

    .channels-grid-card img {
        height: 62px;
    }

    .highlights-section {
        padding-block: 85px;
    }

    .movie-card {
        flex-basis: 190px;
        height: 290px;
    }

    .device-stage {
        height: 460px;
    }

    .device-tv {
        left: 0;
        top: 55px;
        width: 96%;
    }

    .device-screen {
        height: 260px;
    }

    .device-phone {
        bottom: 20px;
        height: 230px;
        right: -4px;
        width: 120px;
    }

    .chip-one {
        left: 0;
        top: 10px;
    }

    .chip-two {
        bottom: 8px;
        left: 0;
    }

    .final-cta {
        min-height: 540px;
        padding-block: 90px;
    }

    .final-cta h2 {
        font-size: 2.6rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp {
        padding: 8px;
    }
}

@media (max-width: 390px) {
    .poster-main {
        left: 15%;
        width: 235px;
    }

    .poster-back {
        width: 170px;
    }

    .poster-front {
        right: -45px;
        width: 155px;
    }

    .profile-stack span {
        height: 54px;
        width: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
