.home-page,
.home-page * {
    box-sizing: border-box;
}

.home-page {
    --home-bg: #101828;
    --home-panel: rgba(7, 10, 20, 0.46);
    --home-panel-strong: rgba(8, 10, 18, 0.68);
    --home-line: rgba(255, 255, 255, 0.1);
    --home-line-strong: rgba(255, 255, 255, 0.18);
    --home-copy: rgba(232, 238, 255, 0.74);
    --home-muted: rgba(232, 238, 255, 0.58);
    --home-pink: #bf15a0;
    --home-pink-2: #a70088;
    --home-violet: #5c0087;
    --home-blue: #1c398e;
    --home-page-gutter: clamp(14px, 3vw, 34px);
    position: relative;
    display: grid;
    gap: clamp(72px, 8vw, 124px);
    padding: 110px var(--home-page-gutter) 72px;
    overflow: hidden;
    isolation: isolate;
}

.home-page::before,
.home-page::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-page::before {
    z-index: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(191, 21, 160, 0.26), transparent 22%),
        radial-gradient(circle at 82% 12%, rgba(59, 130, 246, 0.24), transparent 20%),
        radial-gradient(circle at 54% 54%, rgba(92, 0, 135, 0.22), transparent 28%),
        radial-gradient(circle at 12% 74%, rgba(45, 212, 191, 0.12), transparent 20%);
    filter: blur(8px);
    transform: scale(1.08);
}

.home-page::after {
    z-index: 0;
    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: 52px 52px;
    background-position: 0 0, 0 0;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.82) 36%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.2;
}

.home-page > * {
    position: relative;
    z-index: 1;
}

.home-shell {
    width: min(1400px, 100%);
    margin: 0 auto;
}

.home-copy {
    margin: 0;
    color: var(--home-copy);
    font-size: 17px;
    line-height: 1.7;
}

.home-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--home-line);
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(191, 21, 160, 0.18), rgba(92, 0, 135, 0.14));
    backdrop-filter: blur(18px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.home-chip img {
    width: 18px;
    height: 18px;
    display: block;
}

.home-chip--center,
.home-chip--soft {
    margin-inline: auto;
}

.home-chip--soft {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 18px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
    cursor: pointer;
}

.home-button img {
    width: 18px;
    height: 18px;
    display: block;
}

.home-button--primary {
    color: #fff;
    background: linear-gradient(180deg, var(--home-pink), var(--home-pink-2) 52%, var(--home-violet));
    box-shadow: 0 20px 45px rgba(92, 0, 135, 0.32);
}

.home-button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

.home-button--twitch {
    color: #fff;
    background: linear-gradient(180deg, #9146ff, #6d28d9);
    box-shadow: 0 18px 40px rgba(109, 40, 217, 0.3);
}

.home-button--light {
    color: var(--home-pink);
    background: #fff;
    box-shadow: 0 20px 45px rgba(7, 10, 20, 0.28);
}

.home-button--outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
}

.home-button:hover,
.home-button:focus-visible {
    transform: translateY(-3px);
}

.home-button--primary:hover,
.home-button--primary:focus-visible,
.home-button--twitch:hover,
.home-button--twitch:focus-visible {
    filter: brightness(1.06);
}

.home-button--ghost:hover,
.home-button--ghost:focus-visible {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
}

.home-button--outline-light:hover,
.home-button--outline-light:focus-visible {
    border-color: rgba(255, 255, 255, 0.64);
    background: rgba(0, 0, 0, 0.34);
}

.home-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.66);
    outline-offset: 3px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 0.98fr);
    gap: clamp(28px, 4vw, 72px);
    align-items: center;
    min-height: min(860px, calc(100vh - 130px));
}

.home-hero__content {
    display: grid;
    gap: 28px;
    align-content: start;
}

.home-hero__headline {
    display: grid;
    gap: 16px;
}

.home-hero__wordmark {
    position: relative;
    display: inline-block;
    min-height: 106px;
}

.home-hero__wordmark span {
    display: block;
    font-size: clamp(62px, 8.4vw, 108px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.home-hero__wordmark-shadow,
.home-hero__wordmark-echo {
    position: absolute;
    left: 0;
    top: 0;
}

.home-hero__wordmark-shadow {
    transform: translate(5px, 6px);
    color: rgba(191, 21, 160, 0.18);
    filter: blur(8px);
}

.home-hero__wordmark-echo {
    transform: translate(11px, 10px);
    color: rgba(167, 0, 136, 0.34);
}

.home-hero__wordmark-main {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f4e8ff 52%, #fde9f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero__subheading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-hero__subheading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.home-hero__subline {
    width: 46px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--home-pink), var(--home-violet));
    flex-shrink: 0;
}

.home-hero__subtitle {
    margin: 0 0 0 60px;
    color: var(--home-muted);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.3;
    font-weight: 600;
}

.home-hero__copy {
    max-width: 610px;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
}

.home-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 18px;
    border: 1px solid var(--home-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

.home-stat-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    border: 1px solid var(--home-line);
    background: linear-gradient(135deg, rgba(191, 21, 160, 0.18), rgba(92, 0, 135, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-stat-card__icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.home-stat-card__body {
    display: grid;
    gap: 2px;
}

.home-stat-card__body strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
}

.home-stat-card__body span {
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.3;
}

.home-hero__media {
    position: relative;
    min-width: 0;
}

.hero-slider {
    position: relative;
    min-height: 620px;
    outline: none;
}

.hero-slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.98) translateY(12px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
    pointer-events: none;
}

.hero-slider-slide.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.hero-slider-slide__image,
.hero-slider-slide__overlay,
.hero-slider-slide__content {
    border-radius: 34px;
}

.hero-slider-slide__image {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 84% 100%, 0 100%);
}

.hero-slider-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.55) 58%, rgba(0, 0, 0, 0.84) 100%),
        linear-gradient(135deg, rgba(191, 21, 160, 0.18), transparent 44%, rgba(28, 57, 142, 0.28));
    clip-path: polygon(0 0, 100% 0, 100% 86%, 84% 100%, 0 100%);
}

.hero-slider-slide__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 16px 30px rgba(7, 10, 20, 0.26);
}

.hero-slider-slide__badge.is-soon {
    background: linear-gradient(90deg, #2b7fff, #00b8db);
}

.hero-slider-slide__badge.is-open {
    background: linear-gradient(90deg, #16a34a, #0d9488);
}

.hero-slider-slide__badge.is-popular {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.hero-slider-slide__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 12px;
    padding: 0 28px 30px;
}

.hero-slider-slide__content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    font-weight: 900;
    max-width: 540px;
}

.hero-slider-slide__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.55;
    max-width: 560px;
}

.hero-slider-slide__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f9d45f;
    font-size: 14px;
    font-weight: 700;
}

.hero-slider-slide__meta img {
    width: 17px;
    height: 17px;
    display: block;
}

.hero-slider__button {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(7, 10, 20, 0.44);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.hero-slider__button img {
    width: 18px;
    height: 18px;
    display: block;
}

.hero-slider__button--prev {
    left: 18px;
}

.hero-slider__button--next {
    right: 18px;
}

.hero-slider__button:hover,
.hero-slider__button:focus-visible {
    transform: translateY(-2px);
    background: rgba(7, 10, 20, 0.62);
    outline: none;
}

.hero-slider__indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 3;
}

.hero-slider__indicator {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition:
        width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.22s ease,
        transform 0.22s ease;
}

.hero-slider__indicator.is-active {
    width: 34px;
    height: 10px;
    background: linear-gradient(90deg, var(--home-pink), var(--home-violet));
}

.hero-slider__indicator:hover,
.hero-slider__indicator:focus-visible {
    transform: scale(1.1);
    outline: none;
}

.home-hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--home-line);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 45px rgba(7, 10, 20, 0.24);
}

.home-hero__float img {
    display: block;
}

.home-hero__float--crown {
    top: -26px;
    left: -26px;
    width: 104px;
    height: 104px;
    border-radius: 32px;
}

.home-hero__float--crown img {
    width: 48px;
    height: 48px;
}

.home-hero__float--spark {
    right: -18px;
    bottom: -18px;
    width: 90px;
    height: 90px;
    border-radius: 28px;
    transform: rotate(12deg);
}

.home-hero__float--spark img {
    width: 44px;
    height: 44px;
    transform: rotate(-12deg);
}

.home-section-heading {
    display: grid;
    gap: 20px;
    justify-items: center;
    text-align: center;
    margin-bottom: 34px;
}

.home-section-heading h2,
.home-streams__headline h2,
.home-cta__inner h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.home-section-heading p,
.home-streams__headline p,
.home-cta__inner p {
    max-width: 760px;
}

.home-features {
    position: relative;
    width: calc(100% + (var(--home-page-gutter) * 2));
    margin-inline: calc(var(--home-page-gutter) * -1);
    padding: clamp(66px, 8vw, 104px) clamp(18px, 4vw, 68px) clamp(42px, 5vw, 58px);
    overflow: hidden;
    isolation: isolate;
}

.home-features__inner.home-shell {
    position: relative;
    z-index: 1;
    width: min(1520px, 100%);
}

.home-features::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(14, 24, 64, 0.92), rgba(16, 22, 74, 0.72)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 28%);
    clip-path: polygon(0 12%, 100% 0, 100% 90%, 0 100%);
    box-shadow: 0 30px 80px rgba(3, 8, 25, 0.34);
    z-index: 0;
}

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

.home-feature-card {
    min-height: 248px;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    display: grid;
    align-content: start;
    gap: 16px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.home-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
}

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

.home-feature-card--cyan::before {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.22), transparent 62%);
}

.home-feature-card--gold::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.24), transparent 62%);
}

.home-feature-card--pink::before,
.home-feature-card--magenta::before {
    background: linear-gradient(135deg, rgba(191, 21, 160, 0.24), transparent 62%);
}

.home-feature-card--violet::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.24), transparent 62%);
}

.home-feature-card--blue::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), transparent 62%);
}

.home-feature-card:hover::before,
.home-feature-card:focus-within::before {
    opacity: 1;
}

.home-feature-card:hover,
.home-feature-card:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.home-feature-card__icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.home-feature-card__icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.home-feature-card h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.home-feature-card p {
    margin: 0;
    color: var(--home-copy);
    font-size: 15px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.home-streams {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

.home-streams__copy {
    display: grid;
    gap: 24px;
}

.home-streams__headline {
    display: grid;
    gap: 6px;
}

.home-streams__headline p {
    margin: 0;
    color: #d8b4fe;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.home-streams__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-stream-stat {
    min-height: 110px;
    padding: 20px;
    border: 1px solid var(--home-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    display: grid;
    align-content: center;
    gap: 4px;
}

.home-stream-stat strong {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.home-stream-stat span {
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.35;
}

.home-streams__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-streams__preview {
    position: relative;
    min-width: 0;
    padding: 18px;
}

.home-streams__frame {
    position: relative;
    min-height: 430px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(140deg, rgba(191, 21, 160, 0.34), rgba(92, 0, 135, 0.2)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.78));
    overflow: hidden;
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}

.home-streams__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.06), transparent 18%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%);
}

.home-streams__twitch-player {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.home-streams__twitch-player iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.home-streams__frame.is-twitch-ready .home-streams__twitch-player {
    opacity: 1;
}

.home-streams__frame.is-twitch-ready::before {
    opacity: 0;
}

.home-streams__frame.is-twitch-ready .home-streams__play {
    opacity: 1;
}

.home-streams__frame.is-twitch-starting .home-streams__play,
.home-streams__frame.is-twitch-playing .home-streams__play,
.home-streams__frame.is-twitch-unavailable .home-streams__play {
    opacity: 0;
    pointer-events: none;
}

.home-streams__frame.is-twitch-unavailable .home-streams__twitch-player {
    opacity: 0;
    pointer-events: none;
}

.home-streams__play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 112px;
    height: 112px;
    margin: -56px 0 0 -56px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease;
}

.home-streams__play:hover,
.home-streams__play:focus-visible {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.home-streams__play img {
    width: 44px;
    height: 44px;
    display: block;
}

.home-streams__fallback {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: none;
    place-content: center;
    justify-items: center;
    gap: 12px;
    padding: 30px;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(9, 13, 27, 0.76), rgba(9, 13, 27, 0.92)),
        radial-gradient(circle at 50% 34%, rgba(145, 70, 255, 0.28), transparent 32%);
}

.home-streams__fallback strong {
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.12;
    font-weight: 900;
}

.home-streams__fallback span {
    max-width: 440px;
    color: rgba(232, 238, 255, 0.76);
    font-size: 15px;
    line-height: 1.55;
}

.home-streams__fallback a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(180deg, #9146ff, #6d28d9);
}

.home-streams__frame.is-twitch-unavailable .home-streams__fallback {
    display: grid;
}

.home-streams__float {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(7, 10, 20, 0.24);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-streams__preview.is-player-active .home-streams__float {
    display: none !important;
}

.home-streams__float img {
    display: block;
}

.home-streams__float--left {
    left: -2px;
    bottom: 8px;
    width: 100px;
    height: 100px;
    border-radius: 28px;
    transform: rotate(-10deg);
}

.home-streams__float--left img {
    width: 46px;
    height: 46px;
    transform: rotate(10deg);
}

.home-streams__float--right {
    right: -10px;
    top: -10px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
}

.home-streams__float--right img {
    width: 42px;
    height: 42px;
}

.home-cta {
    position: relative;
    width: calc(100% + (var(--home-page-gutter) * 2));
    margin-inline: calc(var(--home-page-gutter) * -1);
}

.home-cta__inner {
    position: relative;
    width: 100%;
    padding: clamp(68px, 8vw, 112px) clamp(18px, 4vw, 68px) clamp(52px, 6vw, 82px);
    background: linear-gradient(180deg, #d414a7 0%, #a70088 52%, #6c0b8e 100%);
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
    overflow: hidden;
}

.home-cta__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 32%);
}

.home-cta__content.home-shell {
    width: min(1520px, 100%);
    display: grid;
    justify-items: center;
    gap: 22px;
    margin: 0 auto;
    text-align: center;
}

.home-cta__inner h2,
.home-cta__inner p,
.home-cta__actions,
.home-cta__proof,
.home-chip {
    position: relative;
    z-index: 1;
}

.home-cta__inner p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.home-cta__proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    row-gap: 12px;
}

.home-cta__proof-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.home-cta__proof-item img {
    width: 18px;
    height: 18px;
    display: block;
}

.home-social-rail {
    position: fixed;
    right: 18px;
    bottom: 24px;
    display: grid;
    gap: 12px;
    z-index: 25;
}

.home-social-rail__link {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(191, 21, 160, 0.96), rgba(92, 0, 135, 0.96));
    box-shadow: 0 18px 34px rgba(92, 0, 135, 0.32);
    transition:
        transform 0.22s ease,
        filter 0.22s ease;
}

.home-social-rail__link img {
    width: 22px;
    height: 22px;
    display: block;
}

.home-social-rail__link:hover,
.home-social-rail__link:focus-visible {
    transform: translateY(-3px);
    filter: brightness(1.06);
    outline: none;
}

.home-page.has-animations [data-reveal] {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    visibility: visible;
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.home-page.has-animations.is-motion-ready [data-reveal]:not(.is-revealed) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: blur(12px);
}

.home-page.has-animations [data-reveal="up"]:not(.is-revealed),
.home-page.has-animations [data-reveal="card"]:not(.is-revealed) {
    transform: translate3d(0, 48px, 0) scale(0.97);
}

.home-page.has-animations [data-reveal="left"]:not(.is-revealed),
.home-page.has-animations [data-reveal="float-left"]:not(.is-revealed) {
    transform: translate3d(-64px, 18px, 0) scale(0.96) rotate(-2deg);
}

.home-page.has-animations [data-reveal="right"]:not(.is-revealed),
.home-page.has-animations [data-reveal="float-right"]:not(.is-revealed) {
    transform: translate3d(64px, 18px, 0) scale(0.96) rotate(2deg);
}

.home-page.has-animations [data-reveal="drop"]:not(.is-revealed) {
    transform: translate3d(0, -32px, 0) scale(0.94);
}

.home-page.has-animations [data-reveal="pop"]:not(.is-revealed) {
    transform: translate3d(0, 28px, 0) scale(0.88);
}

.home-page.has-animations [data-reveal="brand"]:not(.is-revealed) {
    transform: translate3d(0, 42px, 0) scale(0.92) rotateX(16deg);
    transform-origin: 50% 100%;
}

.home-page.has-animations [data-reveal="float-up"]:not(.is-revealed) {
    transform: translate3d(18px, 56px, 0) scale(0.92) rotate(8deg);
}

.home-page.has-animations [data-reveal="card"] {
    transition-duration: 0.84s;
}

.home-page.has-animations [data-reveal="brand"] {
    transition-duration: 0.92s;
}

.home-page.has-animations [data-reveal="float-left"].is-revealed,
.home-page.has-animations [data-reveal="float-right"].is-revealed,
.home-page.has-animations [data-reveal="float-up"].is-revealed {
    visibility: visible;
    pointer-events: auto;
    animation: home-drift 5.8s ease-in-out infinite;
}

.home-page.has-animations [data-reveal="float-right"].is-revealed {
    animation-name: home-drift-alt;
    animation-duration: 6.4s;
}

.home-page.has-animations [data-reveal="float-up"].is-revealed {
    animation-name: home-bob;
    animation-duration: 5s;
}

@keyframes home-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes home-drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-10px, -14px, 0) rotate(-4deg);
    }
}

@keyframes home-drift-alt {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(12px, -12px, 0) rotate(4deg);
    }
}

@keyframes home-bob {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -18px, 0) rotate(6deg);
    }
}

@media (max-width: 1220px) {
    .home-hero,
    .home-streams {
        grid-template-columns: 1fr;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero__media,
    .home-streams__preview {
        width: min(820px, 100%);
        margin: 0 auto;
    }

    .hero-slider {
        min-height: 560px;
    }

    .hero-slider-slide__image {
        height: 560px;
    }
}

@media (max-width: 980px) {
    .home-page {
        gap: 72px;
        padding-top: 98px;
        padding-bottom: 56px;
    }

    .home-hero__content,
    .home-streams__copy {
        justify-items: center;
        text-align: center;
    }

    .home-hero__copy,
    .home-section-heading p,
    .home-streams__copy .home-copy,
    .home-cta__inner p {
        max-width: 720px;
        text-align: center;
    }

    .home-hero__subheading,
    .home-hero__actions,
    .home-streams__actions {
        justify-content: center;
    }

    .home-hero__subtitle {
        margin-left: 0;
    }

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

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

    .home-social-rail {
        display: none;
    }

    .hero-slider__indicators {
        bottom: 20px;
    }
}

@media (max-width: 720px) {
    .home-page {
        --home-page-gutter: 12px;
        gap: 58px;
        padding-left: var(--home-page-gutter);
        padding-right: var(--home-page-gutter);
        padding-bottom: 40px;
    }

    .home-page::before {
        filter: none;
        transform: none;
    }

    .home-shell {
        width: 100%;
    }

    .home-features {
        padding-top: 104px;
        padding-right: 12px;
        padding-bottom: 112px;
        padding-left: 12px;
    }

    .home-features::before {
        clip-path: polygon(0 7%, 100% 0, 100% 94%, 0 100%);
    }

    .home-copy {
        font-size: 15px;
    }

    .home-chip {
        width: fit-content;
        max-width: calc(100% - 20px);
        min-height: 44px;
        padding: 10px 16px;
        text-align: center;
        white-space: normal;
    }

    .home-hero__wordmark {
        min-height: 84px;
    }

    .home-hero__wordmark span {
        font-size: 62px;
    }

    .home-hero__subheading p,
    .home-streams__headline p {
        font-size: 30px;
    }

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

    .home-streams__stats {
        width: min(100%, 560px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-self: center;
    }

    .home-stream-stat {
        min-width: 0;
        min-height: 92px;
        padding: 16px 12px;
        justify-items: center;
        text-align: center;
    }

    .home-hero__stats {
        width: min(100%, 560px);
        max-width: 560px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-self: center;
    }

    .home-stat-card {
        width: auto;
        min-width: 0;
        justify-content: center;
        gap: 10px;
        padding: 14px 10px;
    }

    .home-feature-card--wide {
        grid-column: auto;
    }

    .home-feature-card,
    .home-stat-card,
    .home-stream-stat {
        min-height: auto;
    }

    .home-button,
    .home-button--light,
    .home-button--outline-light,
    .home-button--ghost,
    .home-button--primary,
    .home-button--twitch {
        width: 100%;
    }

    .hero-slider {
        min-height: 420px;
    }

    .hero-slider-slide__image {
        height: 420px;
        clip-path: polygon(0 0, 100% 0, 100% 88%, 82% 100%, 0 100%);
    }

    .hero-slider-slide__overlay {
        clip-path: polygon(0 0, 100% 0, 100% 88%, 82% 100%, 0 100%);
    }

    .hero-slider-slide__content {
        padding: 0 20px 24px;
    }

    .hero-slider-slide__content h2 {
        font-size: 26px;
    }

    .hero-slider__button {
        width: 42px;
        height: 42px;
        margin-top: -21px;
    }

    .home-hero__float--crown {
        width: 82px;
        height: 82px;
    }

    .home-hero__float--spark,
    .home-streams__float {
        display: none;
    }

    .home-streams__frame {
        min-height: 320px;
    }

    .home-streams__play {
        width: 86px;
        height: 86px;
        margin: -43px 0 0 -43px;
    }

    .home-streams__play img {
        width: 34px;
        height: 34px;
    }

    .home-cta__inner {
        padding: 54px 12px 38px;
        clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 94%);
    }

    .home-cta__proof {
        flex-direction: column;
        align-items: center;
    }

    .home-chip,
    .home-button--ghost,
    .home-stat-card,
    .home-feature-card,
    .home-stream-stat,
    .home-streams__play {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .home-page.has-animations [data-reveal] {
        filter: none;
        transition:
            opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .home-page.has-animations.is-motion-ready [data-reveal]:not(.is-revealed) {
        filter: none;
        will-change: opacity, transform;
    }

    .home-page.has-animations [data-reveal].is-revealed {
        will-change: auto;
    }
}

@media (max-width: 520px) {
    .home-page {
        padding-top: 88px;
        gap: 48px;
    }

    .home-chip {
        max-width: calc(100% - 8px);
        padding: 10px 14px;
        font-size: 13px;
    }

    .home-hero__wordmark span {
        font-size: 48px;
    }

    .home-section-heading h2,
    .home-streams__headline h2,
    .home-cta__inner h2 {
        font-size: 34px;
    }

    .home-features {
        padding-top: 112px;
        padding-bottom: 126px;
    }

    .hero-slider {
        min-height: 340px;
    }

    .hero-slider-slide__image {
        height: 340px;
    }

    .hero-slider-slide__badge {
        top: 16px;
        right: 16px;
        min-height: 34px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero-slider-slide__content h2 {
        font-size: 22px;
    }

    .hero-slider-slide__content p {
        font-size: 14px;
    }

    .home-stat-card {
        padding: 16px;
    }

    .home-hero__stats .home-stat-card {
        flex-direction: column;
        gap: 8px;
        padding: 12px 8px;
        text-align: center;
    }

    .home-hero__stats .home-stat-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .home-hero__stats .home-stat-card__icon img {
        width: 19px;
        height: 19px;
    }

    .home-hero__stats .home-stat-card__body strong {
        font-size: 20px;
    }

    .home-hero__stats .home-stat-card__body span {
        font-size: 12px;
    }

    .home-feature-card,
    .home-stream-stat {
        padding: 20px;
    }

    .home-streams__stats {
        gap: 10px;
    }

    .home-streams__stats .home-stream-stat {
        min-height: 86px;
        padding: 14px 8px;
    }

    .home-streams__stats .home-stream-stat strong {
        font-size: 22px;
    }

    .home-streams__stats .home-stream-stat span {
        font-size: 12px;
    }

    .home-streams__frame {
        min-height: 280px;
    }

    .home-social-rail {
        right: 12px;
        bottom: 18px;
    }

    .home-social-rail__link {
        width: 46px;
        height: 46px;
    }

    .home-social-rail__link img {
        width: 20px;
        height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-button,
    .hero-slider-slide,
    .hero-slider__button,
    .hero-slider__indicator,
    .home-feature-card,
    .home-social-rail__link,
    .home-page [data-reveal] {
        transition: none !important;
    }

    .home-page [data-reveal] {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        filter: none !important;
        transform: none !important;
    }
}
