/* Homepage v5 — base copied from static_page_v4/home.css (reset, utilities, menu, footer).
   New section styles are added when each Figma block is implemented.
   Images live at /images/home_page_v5 (public/images/home_page_v5). */

:root {
    --page-bg: #111111;
    --link-color: #137EFC;
    --main-text: #FFFFFF;
    --desc-text: rgba(255, 255, 255, 0.6);
    --btn-text-on-white: #202020;

    --white: var(--main-text);
    --white-60: var(--desc-text);
    --white-16: rgba(255, 255, 255, 0.16);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-5: rgba(255, 255, 255, 0.05);
    --black-50: rgba(0, 0, 0, 0.5);
    --black-8: rgba(0, 0, 0, 0.08);
    --bg-menu: rgba(30, 30, 30, 0.35);
    --btn-text: var(--btn-text-on-white);
    --blue: #167EFC;
    --blue-bold: #0A3CBA;
    --blue-link: var(--link-color);
    --bg-black: var(--page-bg);
    --border-color: rgba(228, 235, 243, .15);
    --bg-box: #1E1E1E;
    --bg-contact-page: #151517;
    --text-error: #EF1717;
    --text-success: #24A02B;
    --bg-select: #212d43;
    --bg-black-fix: #121010;
    --white-80: rgba(255, 255, 255, 0.8);
    --bg-calculator-box: #151515;
}

@font-face {
    font-family: "Montserrat Bold";
    font-style: normal;
    src: url(/../assets/static_page_v5/Montserrat-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "Montserrat Regular";
    font-style: normal;
    src: url(/../assets/static_page_v5/Montserrat-Regular.ttf) format("truetype");
}

body.ss-new-homepage-v5 {
    background-color: var(--page-bg);
    color: var(--main-text);
}

html {
    scroll-behavior: smooth;
}

html.ss-v5-scroll-instant {
    scroll-behavior: auto !important;
}

body.ss-new-homepage-v5 p {
    color: var(--desc-text);
}

.ss-v5-text-main {
    color: var(--main-text);
}

.ss-v5-text-desc {
    color: var(--desc-text);
}

.ss-v5-link {
    color: var(--link-color);
    text-decoration: none;
}

.ss-v5-link:hover {
    color: var(--link-color);
    text-decoration: underline;
}

.ss-home-v5 {
    min-height: 100vh;
}

#calculator {
    scroll-margin-top: 100px;
}

* {
    box-sizing: border-box
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: 'Montserrat Regular';
}

nav ul {
    list-style: none;
    -webkit-padding-start: 0;
    -moz-padding-start: 0;
    padding-inline-start: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

img {
    max-width: 100%;
    /* pointer-events: none; */
}

.flex,
.flex-m {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.flex-colum {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.ss-v4-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.ss-v4-content-max-w-1668px {
    max-width: 1668px;
    width: 100%;
    margin: auto;
}

.ss-v4-content-max-w-1600px {
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.ss-v4-content-max-w-1440px {
    max-width: 1460px;
    width: 100%;
    margin: auto;
}

.ss-v4-content-max-w-1360px {
    max-width: 1360px;
    width: 100%;
    margin: auto;
}

.ss-v4-row {
    width: 100%;
    margin: auto;
}

.ss-v4-bg-trans {
    background: var(--bg-menu);
    backdrop-filter: blur(8px);
}

.ss-grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}

.ss-grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
}

.ss-grid-cols-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 24px;
}

.text-center {
    text-align: center;
}

.ss-btn {
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.text-right {
    text-align: right;
}

.text-trans {
    text-transform: uppercase;
}

.disable-mobile {
    display: block;
}

.enable-mobile {
    display: none;
}

.menu-enable-mobile {
    display: none;
}

.rel {
    position: relative;
}

.bold {
    font-family: 'Montserrat Bold';
}

.title-lg {
    font-size: 60px;
}

.ss-v4-btn {
    border: none;
    border-radius: 30px;
    padding: 0 32px;
    height: 48px;
    font-size: 12px !important;
    line-height: 12px !important;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Montserrat Bold';
}

.ss-v4-btn-main-white {
    border: 1px solid var(--white);
    color: var(--btn-text);
    background: var(--white);
}

.ss-v4-btn-main-white:hover {
    border: 1px solid var(--white-16);
    color: var(--white);
    background: transparent;
}

.ss-v4-btn-line-blue {
    color: var(--white);
    background-image: linear-gradient(to right, var(--blue), var(--blue-bold));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-btn-line-blue:hover {
    background-image: linear-gradient(to bottom, var(--blue), var(--blue-bold));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-btn-login {
    border: 1px solid var(--white-16);
    color: var(--white);
    background: transparent;
    min-width: 120px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-btn-login:hover {
    border: 1px solid var(--white);
    color: var(--bg-black);
    background: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-main-title-f85 {
    font-family: 'Montserrat Regular';
    font-size: 92px;
    line-height: 92px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-v4-main-title-f80 {
    font-family: 'Montserrat Regular';
    font-size: 80px;
    line-height: 100px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-v4-main-title-f86 {
    font-family: 'Montserrat Regular';
    font-size: 86px;
    line-height: 100px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-v4-main-title-f72 {
    font-family: 'Montserrat Regular';
    font-size: 72px;
    line-height: 86px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-flex-hz-center {
    display: flex;
    align-items: center;
}

.w-full {
    width: 100%;
}

.max-h-70 {
    max-height: 70%;
}

.mb-86px {
    margin-bottom: 86px;
}

.pl-64px {
    padding-left: 64px;
}

.mb-64px {
    margin-bottom: 64px;
}

.mt-48px {
    margin-top: 48px;
}

.mb-48px {
    margin-bottom: 48px;
}

.mb-40px {
    margin-bottom: 40px;
}

.pl-32px {
    padding-left: 32px;
}

.mb-32px {
    margin-bottom: 32px;
}

.mr-24px {
    margin-right: 24px;
}

.mb-24px {
    margin-bottom: 24px;
}

.mr-16px {
    margin-right: 16px;
}

.mb-16px {
    margin-bottom: 16px;
}

.mb-8px {
    margin-bottom: 8px;
}

.z-2 {
    z-index: 2;
}

.ss-remove-font {
    font-weight: 400;
}

.ss-img-content img {
    max-width: 100%;
}

.ss-font-32 {
    font-size: 32px;
}

.ss-img-content.ss-custom-image-uk img {
    max-width: 1360px;
    margin-bottom: 32px;
    width: 100%;
}

/*MENU*/
.ss-v4-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    -webkit-transition: opacity 0.35s ease, transform 0.35s ease;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ss-v4-menu.ss-v5-menu-hidden,
html.ss-v5-biggest-lock .ss-v4-menu {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.ss-v4-menu .menu {
    height: 88px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.ss-v4-menu .menu li {
    list-style: none;
    float: left;
    line-height: 88px;
}

.ss-v4-menu .menu li a {
    display: block;
    padding: 0 14px;
    line-height: 88px;
    text-decoration: none;
    color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-menu .menu li a:hover {
    color: var(--blue);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-logo-left {
    display: flex;
    align-items: center;
}

.ss-menu-active {
    font-family: 'Montserrat Bold';
    color: var(--blue) !important;
}

.ss-fix-a {
    line-height: 12px;
}

.ss-logo-v4 img {
    width: 240px;
}

.ss-v4-menu-center {
    display: flex;
    justify-content: flex-end;
}

.ss-menu-mobile {
    display: none;
}

/*END MENU*/

/*animation fade*/
.fade-left {
    position: relative;
    animation: mfFadeLeft 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in;
}

.fade-top {
    position: relative;
    animation: mfFadeTop 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in;
}

.fade-right {
    position: relative;
    animation: mfFadeRight 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in;
}

.fade-bottom {
    position: relative;
    animation: mfFadeBottom 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in;
}

.fade-on {
    animation-play-state: running;
}

@keyframes mfFadeLeft {
    from {
        left: -200px;
    }

    to {
        left: 0px;
    }
}

@keyframes mfFadeTop {
    from {
        top: -200px;
    }

    to {
        top: 0px;
    }
}

@keyframes mfFadeRight {
    from {
        right: -200px;
    }

    to {
        right: 0px;
    }
}

@keyframes mfFadeBottom {
    from {
        bottom: -200px;
    }

    to {
        bottom: 0px;
    }
}

/*end animation fade*/

/* FOOTER */
.footer {
    padding: 36px 0;
    background: var(--bg-black);
    margin: auto;
}

.ss-footer-content {
    padding: 50px 0;
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.ss-menu-f {
    display: flex;
    justify-content: flex-end;
}

.f-menu {
    min-width: 200px;
}

.f-menu h2 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 16px;
    color: var(--white);
}

.f-menu a {
    display: block;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 16px;
    color: var(--white-60);
    text-decoration: none;
}

.f-menu a:hover {
    color: var(--blue);
}

.ss-v4-logo-bottom img {
    width: 200px;
}

.ss-copy-right {
    padding: 50px 0 50px;
}

.ss-copy-right p {
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
}

.ss-share-gr.mobile {
    display: none;
}

/* End FOOTER */

/* BOX CUSTOM */
.ss-box-v4-custom {
    padding: 32px;
    border-radius: 16px;
    background-color: var(--bg-box);
    cursor: pointer;
    overflow: hidden;
}

.ss-box-v4-custom h2 {
    font-size: 28px;
    line-height: 39px;
    color: var(--white);
    margin-bottom: 8px;
}

.ss-box-v4-custom p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white-60);
}

/* END BOX CUSTOM */

/* SECTION 1 */
.ss-banner-head {
    width: 100%;
    height: 100vh;
    position: relative;
}

.ss-video-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.ss-video-bg-fix-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.ss-intro-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ss-intro-container.ss-fix-top{
    top: 120px;
    transform: translate(-50%, 0);
}

.ss-intro-content {
    max-width: 780px;
}

.ss-intro-content p {
    font-size: 24px;
    line-height: 33px;
    color: var(--white);
}

.ss-intro-logo-m {
    display: none;
}

.ss-home-v5 .ss-intro-content {
    max-width: 1600px;
}

.ss-home-v5 .ss-intro-content .ss-v5-hero-overline {
    color: var(--main-text);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
}

.ss-home-v5 .ss-intro-content .ss-v5-hero-title {
    font-family: 'Montserrat Regular';
    font-size: 86px;
    line-height: 96px;
    letter-spacing: -2px;
    color: var(--main-text);
}

.ss-home-v5 .ss-intro-content .ss-v5-hero-subtitle {
    font-size: 32px;
    line-height: 40px;
    color: #FFF;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head .ss-v5-hero-body {
    max-width: 760px;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.72);
}

.ss-home-v5 .ss-intro-content .ss-v5-hero-invitation {
    font-family: "Montserrat Bold";
    font-size: 32px;
    line-height: 40px;
    color: #FFF;
}

/* V5 homepage + music hero — enter top-to-bottom; music also fades out on scroll */
body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head.ss-v5-hero-reveal {
    --ss-v5-hero-p: 0;
    --ss-v5-hero-enter: 0;
    height: auto;
}

body.ss-new-homepage-v5 .ss-v5-hero-track {
    height: 260vh;
}

body.ss-new-homepage-v5 .ss-v5-hero-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

body.ss-new-homepage-v5 .ss-v5-hero-reveal-el {
    --in-from: 0;
    --in-to: 0.32;
    --out-from: 0.12;
    --out-to: 0.42;
    --ss-hero-in: clamp(0, calc((var(--ss-v5-hero-enter) - var(--in-from)) / (var(--in-to) - var(--in-from))), 1);
    --ss-hero-out: clamp(0, calc((var(--ss-v5-hero-p) - var(--out-from)) / (var(--out-to) - var(--out-from))), 1);
    opacity: calc(var(--ss-hero-in) * (1 - var(--ss-hero-out)));
    transform: translate3d(0, calc((1 - var(--ss-hero-in)) * 36px + var(--ss-hero-out) * -24px), 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

/* Homepage + Music: keep load fade-in, never fade text/CTAs out */
body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head.ss-v5-hero-reveal .ss-v5-hero-track {
    height: 100vh;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head.ss-v5-hero-reveal .ss-v5-hero-pin {
    position: relative;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head.ss-v5-hero-reveal .ss-v5-hero-reveal-el {
    --ss-hero-out: 0;
}

body.ss-new-homepage-v5 .ss-v5-hero-reveal .ss-v5-hero-overline {
    --in-from: 0;
    --in-to: 0.28;
    --out-from: 0.02;
    --out-to: 0.3;
}

body.ss-new-homepage-v5 .ss-v5-hero-reveal .ss-v5-hero-line {
    display: block;
}

body.ss-new-homepage-v5 .ss-v5-hero-reveal .ss-v5-hero-line:first-child {
    --in-from: 0.1;
    --in-to: 0.42;
    --out-from: 0.12;
    --out-to: 0.42;
}

body.ss-new-homepage-v5 .ss-v5-hero-reveal .ss-v5-hero-line:last-child {
    --in-from: 0.22;
    --in-to: 0.56;
    --out-from: 0.24;
    --out-to: 0.54;
}

body.ss-new-homepage-v5 .ss-v5-hero-reveal .ss-v5-hero-subtitle {
    --in-from: 0.36;
    --in-to: 0.72;
    --out-from: 0.38;
    --out-to: 0.68;
}

body.ss-new-homepage-v5 .ss-v5-hero-reveal .ss-v4-btn {
    --in-from: 0.5;
    --in-to: 0.86;
    --out-from: 0.5;
    --out-to: 0.8;
    transition: border-color 0.3s, color 0.3s, background 0.3s, background-image 0.3s;
}

body.ss-new-homepage-v5 .ss-v5-hero-reveal .ss-v5-hero-invitation {
    --in-from: 0.62;
    --in-to: 0.96;
    --out-from: 0.6;
    --out-to: 0.9;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head:not(.ss-v5-mu-hero) .ss-v5-hero-subtitle {
    --in-from: 0.32;
    --in-to: 0.64;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head:not(.ss-v5-mu-hero) .ss-v5-hero-body {
    --in-from: 0.42;
    --in-to: 0.74;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head:not(.ss-v5-mu-hero) .ss-v5-hero-invitation {
    --in-from: 0.52;
    --in-to: 0.84;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head:not(.ss-v5-mu-hero) .ss-v4-btn {
    --in-from: 0.48;
    --in-to: 0.82;
}

@media (prefers-reduced-motion: reduce) {
    body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head.ss-v5-hero-reveal {
        --ss-v5-hero-p: 0;
        --ss-v5-hero-enter: 1;
    }

    body.ss-new-homepage-v5 .ss-v5-hero-track {
        height: auto;
    }

    body.ss-new-homepage-v5 .ss-v5-hero-pin {
        position: relative;
        height: 100vh;
    }

    body.ss-new-homepage-v5 .ss-v5-hero-reveal-el {
        opacity: 1;
        transform: none;
        will-change: auto;
    }
}

/* V5 ONE PLATFORM */
.ss-v5-one-platform {
    background: #121212;
    padding: 80px 24px 96px;
}

.ss-v5-platform-title {
    font-family: 'Montserrat Regular';
    font-size: 64px;
    line-height: 76px;
    letter-spacing: -1.5px;
    color: var(--main-text);
}

.ss-v5-accent {
    color: var(--link-color);
}

.ss-v5-platform-subtitle {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    line-height: 28px;
    color: var(--desc-text);
}

.ss-v5-platform-video-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 48px;
    background: #121212;
    isolation: isolate;
}

.ss-v5-platform-video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    background: #121212;
    mix-blend-mode: lighten;
}

.ss-v5-replay {
    position: absolute;
    top: 16px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    background: transparent;
    color: #FFF;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    z-index: 2;
}

.ss-v5-replay:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.ss-v5-replay img {
    width: 28px;
    height: 28px;
}

.ss-v5-glass-nav {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 16px;
    border-radius: 32px;
    background: rgba(17, 17, 17, 0.4);
    border: none;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.ss-v5-glass-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(156.52deg, rgba(255, 255, 255, 0.4) 2.12%, rgba(255, 255, 255, 0.05) 39%, rgba(255, 255, 255, 0.05) 54.33%, rgba(255, 255, 255, 0.1) 93.02%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.ss-v5-glass-nav-track {
    display: contents;
}

.ss-v5-glass-item {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 12px;
    border-radius: 18px;
    border: none;
    background: transparent;
    color: var(--main-text);
    font-family: inherit;
    outline: none;
    overflow: visible;
    cursor: pointer;
    -webkit-transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
}

.ss-v5-glass-item .ss-v5-glass-icon,
.ss-v5-glass-item .ss-v5-glass-label {
    position: relative;
    z-index: 2;
}

.ss-v5-glass-ring {
    display: none;
}

.ss-v5-glass-item.is-active {
    background: rgba(8, 28, 64, 0.72);
    box-shadow:
        0 0 18px rgba(19, 126, 252, 0.4),
        inset 0 1px 0 rgba(180, 220, 255, 0.28);
}

.ss-v5-glass-item.is-active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(90, 190, 255, 0.95) 0%, rgba(19, 126, 252, 0.35) 28%, rgba(19, 126, 252, 0.2) 72%, rgba(70, 170, 255, 0.9) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.ss-v5-glass-item.is-active .ss-v5-glass-ring {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background: none;
    padding: 0;
    -webkit-mask: none;
    mask: none;
}

.ss-v5-glass-item.is-active .ss-v5-glass-ring::before,
.ss-v5-glass-item.is-active .ss-v5-glass-ring::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 62%;
    height: 14px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(170, 230, 255, 0.95) 0%, rgba(37, 135, 226, 0.75) 36%, transparent 72%);
    filter: blur(4px);
    pointer-events: none;
}

.ss-v5-glass-item.is-active .ss-v5-glass-ring::before {
    top: -7px;
}

.ss-v5-glass-item.is-active .ss-v5-glass-ring::after {
    bottom: -7px;
}

.ss-v5-glass-icon {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
    pointer-events: none;
    transition: filter 0.3s ease;
}

/* menu_sel_1.svg is white in the file — tint blue when the tab is inactive. */
.ss-v5-glass-item:not(.is-active) .ss-v5-icon-sell_more {
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(2476%) hue-rotate(191deg) brightness(104%) contrast(101%);
}

/* menu_sel_2.svg+ are blue in the file — invert to white when the tab is active. */
.ss-v5-glass-item.is-active .ss-v5-glass-icon:not(.ss-v5-icon-sell_more) {
    filter: brightness(0) invert(1);
}

.ss-v5-glass-label {
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    white-space: normal;
    max-width: 84px;
}

.ss-v5-glass-copy {
    max-width: 760px;
    min-height: 120px;
    margin: 0 auto;
    text-align: center;
}

.ss-v5-glass-copy h3 {
    font-family: 'Montserrat Bold';
    font-size: 36px;
    line-height: 44px;
    color: #FFF;
    margin-bottom: 12px;
}

.ss-v5-glass-copy p {
    font-size: 18px;
    line-height: 28px;
    color: var(--desc-text);
}

/* V5 BIGGEST REVENUE PROBLEM */
.ss-v5-biggest-problem {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.ss-v5-biggest-stage {
    position: relative;
}

.ss-v5-biggest-video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
    transition: opacity 0.55s ease;
}

.ss-v5-biggest-copy {
    display: none;
}

.ss-v5-biggest-problem.is-no-video .ss-v5-biggest-video {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-biggest-video {
        display: block;
    }
}

body.ss-new-homepage-v5 .ss-v5-biggest-title {
    color: #FFF;
}

.ss-v5-biggest-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.ss-v5-biggest-line {
    font-family: 'Montserrat Regular';
    font-size: 64px;
    line-height: 72px;
}

.ss-v5-biggest-word {
    font-family: 'Montserrat Bold';
    font-size: 80px;
    line-height: 88px;
    letter-spacing: 1px;
}

body.ss-new-homepage-v5 .ss-v5-biggest-start {
    color: #117EFA;
}

.ss-v5-biggest-start {
    margin: 0;
    font-family: 'Montserrat Regular';
    font-size: 32px;
    line-height: 40px;
    text-align: center;
}

body.ss-new-homepage-v5 .ss-home-v5:not(.ss-v5-music) .ss-v5-biggest-start {
    font-family: 'Montserrat Bold';
    font-size: clamp(32px, 8vw, 120px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

html.ss-v5-biggest-lock {
    overflow: hidden;
    overscroll-behavior: none;
}

html.ss-v5-biggest-lock body {
    overflow: hidden;
    overscroll-behavior: none;
}

/* V5 MORE REVENUE FROM EVERY FAN */
.ss-v5-every-fan {
    position: relative;
    padding: 80px 24px 96px;
    overflow: visible;
    background:
        radial-gradient(42% 70% at 0% 50%, rgba(120, 40, 160, 0.2) 0%, transparent 62%),
        radial-gradient(42% 70% at 100% 50%, rgba(19, 126, 252, 0.18) 0%, transparent 62%),
        #000;
}

body.ss-new-homepage-v5 .ss-v5-journey-overline,
body.ss-new-homepage-v5 .ss-v5-journey-stages p,
body.ss-new-homepage-v5 .ss-v5-journey-results-label,
body.ss-new-homepage-v5 .ss-v5-journey-stat-value,
body.ss-new-homepage-v5 .ss-v5-biggest-cta {
    color: #137EFC;
}

body.ss-new-homepage-v5 .ss-v5-journey-title,
body.ss-new-homepage-v5 .ss-v5-journey-captions p,
body.ss-new-homepage-v5 .ss-v5-journey-stat-name {
    color: #FFF;
}

body.ss-new-homepage-v5 .ss-v5-journey-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

body.ss-new-homepage-v5 .ss-v5-journey-stat-source {
    color: rgba(255, 255, 255, 0.42);
}

.ss-v5-journey {
    max-width: 1360px;
    margin: 0 auto;
    text-align: center;
}

.ss-v5-journey-overline,
.ss-v5-journey-results-label,
.ss-v5-journey-stages p,
.ss-v5-journey-stat-name,
.ss-v5-journey-stat-source,
.ss-v5-biggest-cta {
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.ss-v5-journey-overline {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.2em;
}

.ss-v5-journey-title {
    margin-bottom: 24px;
    font-family: 'Montserrat Bold';
    font-size: 56px;
    line-height: 68px;
}

.ss-v5-journey-subtitle {
    max-width: 760px;
    margin: 0 auto 64px;
    font-size: 18px;
    line-height: 26px;
}

.ss-v5-journey-track {
    margin-bottom: 80px;
    overflow: visible;
}

.ss-v5-journey-stages,
.ss-v5-journey-nodes,
.ss-v5-journey-captions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.ss-v5-journey-stages p {
    margin: 24px 0 10px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.16em;
}

.ss-v5-journey-nodes {
    position: relative;
    min-height: 148px;
    margin-bottom: 0;
    overflow: visible;
    --ss-v5-node-r: 64px;
}

.ss-v5-journey-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -1px;
    z-index: 1;
    height: 2px;
    background: #FFFFFF;
    box-shadow:
        0 0 3px #FFFFFF,
        0 0 8px #137EFC,
        0 0 16px #137EFC,
        0 0 28px rgba(19, 126, 252, 0.85);
    transform: scaleX(0);
    transform-origin: left center;
}

.ss-v5-journey-line::before,
.ss-v5-journey-line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    pointer-events: none;
}

.ss-v5-journey-line::before {
    height: 1px;
    transform: translateY(-50%);
    background: #FFFFFF;
}

.ss-v5-journey-line::after {
    height: 16px;
    transform: translateY(-50%);
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(19, 126, 252, 0.85) 50%,
        transparent 100%);
    filter: blur(4px);
}

.ss-v5-journey-flare {
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    box-shadow:
        0 0 2px 1px #FFFFFF,
        0 0 8px 3px rgba(170, 230, 255, 0.95),
        0 0 16px 6px #137EFC,
        0 0 28px 10px rgba(19, 126, 252, 0.75);
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    overflow: visible;
}

.ss-v5-journey-flare::before,
.ss-v5-journey-flare::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    pointer-events: none;
    border: none;
}

.ss-v5-journey-flare::before {
    width: 36px;
    height: 20px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(170, 230, 255, 0.75) 22%,
        rgba(19, 126, 252, 0.65) 48%,
        transparent 72%);
    filter: blur(3px);
}

.ss-v5-journey-flare::after {
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center,
        #FFFFFF 0%,
        rgba(170, 230, 255, 0.9) 32%,
        rgba(19, 126, 252, 0.45) 58%,
        transparent 72%);
    filter: blur(1px);
}

.ss-v5-journey-flare:nth-child(2) { left: 25%; }
.ss-v5-journey-flare:nth-child(3) { left: 50%; }
.ss-v5-journey-flare:nth-child(4) { left: 75%; }

.ss-v5-journey-node {
    position: relative;
    z-index: 3;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: #000;
    box-shadow: none;
    overflow: visible;
}

.ss-v5-journey-node::before {
    display: none;
}

.ss-v5-journey-node::after {
    content: "";
    display: block;
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 4px solid #137EFC;
    opacity: 1;
    filter: blur(6px);
    pointer-events: none;
    z-index: 0;
    background: none;
}

.ss-v5-journey-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background: transparent;
    border: 2px solid #FFFFFF;
    filter:
        drop-shadow(0 0 1px #FFFFFF)
        drop-shadow(0 0 5px #137EFC)
        drop-shadow(0 0 12px #137EFC)
        drop-shadow(0 0 22px rgba(19, 126, 252, 0.95));
}

.ss-v5-journey-glow::before,
.ss-v5-journey-glow::after {
    content: none;
}

.ss-v5-journey-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: block;
    object-fit: contain;
    pointer-events: none;
    filter: none;
}

.ss-v5-journey-captions p {
    font-size: 20px;
    line-height: 26px;
}

.ss-v5-journey-results {
    margin-bottom: 36px;
}

.ss-v5-journey-results-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 20px;
}

.ss-v5-journey-results-label::before,
.ss-v5-journey-results-label::after {
    content: "";
    flex: 1;
    max-width: 360px;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.ss-v5-journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ss-v5-journey-stat {
    padding: 8px 24px;
}

.ss-v5-journey-stat + .ss-v5-journey-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.ss-v5-journey-stat-value {
    margin-bottom: 10px;
    font-family: 'Montserrat Bold';
    font-size: 72px;
    line-height: 80px;
    text-shadow: 0 0 18px rgba(19, 126, 252, 0.45);
}

.ss-v5-journey-stat-name {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 18px;
}

.ss-v5-journey-stat-source {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.08em;
    color: var(--desc-text);
}

.ss-v5-biggest-cta {
    display: inline-block;
    margin-top: 8px;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.16em;
    text-decoration: none;
}

.ss-v5-biggest-cta:hover {
    color: var(--main-text);
    text-decoration: none;
}

.ss-v5-biggest-title,
.ss-v5-biggest-start,
.ss-v5-journey-overline,
.ss-v5-journey-title,
.ss-v5-journey-subtitle,
.ss-v5-journey-line,
.ss-v5-journey-flare,
.ss-v5-journey-node,
.ss-v5-journey-stages p,
.ss-v5-journey-captions p,
.ss-v5-journey-results-label,
.ss-v5-journey-stat,
.ss-v5-biggest-cta {
    opacity: 0;
}

.ss-v5-biggest-problem.is-inview .ss-v5-biggest-title,
.ss-v5-biggest-problem.is-inview .ss-v5-biggest-start,
.ss-v5-every-fan.is-inview .ss-v5-journey-overline,
.ss-v5-every-fan.is-inview .ss-v5-journey-title,
.ss-v5-every-fan.is-inview .ss-v5-journey-subtitle,
.ss-v5-every-fan.is-inview .ss-v5-journey-stages p,
.ss-v5-every-fan.is-inview .ss-v5-journey-captions p,
.ss-v5-every-fan.is-inview .ss-v5-journey-results-label,
.ss-v5-every-fan.is-inview .ss-v5-biggest-cta {
    animation: ss-v5-rise 0.8s ease forwards;
}

.ss-v5-every-fan.is-inview .ss-v5-journey-node {
    animation: ss-v5-node-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ss-v5-every-fan.is-inview .ss-v5-journey-stat {
    animation: ss-v5-stat-pop 0.9s ease forwards;
}

.ss-v5-every-fan.is-inview .ss-v5-journey-line {
    animation: ss-v5-line-draw 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.ss-v5-every-fan.is-inview .ss-v5-journey-flare {
    animation: ss-v5-flare-in 0.7s ease forwards;
}

.ss-v5-biggest-problem.is-inview .ss-v5-biggest-title { animation-delay: 0.05s; }
.ss-v5-biggest-problem.is-inview .ss-v5-biggest-start { animation-delay: 0.22s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-overline { animation-delay: 0.08s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-title { animation-delay: 0.22s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-subtitle { animation-delay: 0.4s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-line { animation-delay: 0.7s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-flare:nth-child(2) { animation-delay: 1.1s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-flare:nth-child(3) { animation-delay: 1.5s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-flare:nth-child(4) { animation-delay: 1.9s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-node:nth-child(5) { animation-delay: 2.45s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-node:nth-child(6) { animation-delay: 2.75s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-node:nth-child(7) { animation-delay: 3.05s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-node:nth-child(8) { animation-delay: 3.35s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-stages p:nth-child(1),
.ss-v5-every-fan.is-inview .ss-v5-journey-captions p:nth-child(1) { animation-delay: 2.55s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-stages p:nth-child(2),
.ss-v5-every-fan.is-inview .ss-v5-journey-captions p:nth-child(2) { animation-delay: 2.85s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-stages p:nth-child(3),
.ss-v5-every-fan.is-inview .ss-v5-journey-captions p:nth-child(3) { animation-delay: 3.15s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-stages p:nth-child(4),
.ss-v5-every-fan.is-inview .ss-v5-journey-captions p:nth-child(4) { animation-delay: 3.45s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-results-label { animation-delay: 3.85s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-stat:nth-child(1) { animation-delay: 4.1s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-stat:nth-child(2) { animation-delay: 4.32s; }
.ss-v5-every-fan.is-inview .ss-v5-journey-stat:nth-child(3) { animation-delay: 4.54s; }
.ss-v5-every-fan.is-inview .ss-v5-biggest-cta { animation-delay: 4.85s; }

@keyframes ss-v5-rise {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes ss-v5-node-in {
    0% { opacity: 0; transform: scale(0.72); filter: blur(6px); }
    68% { opacity: 1; transform: scale(1.05); filter: blur(0); }
    100% { opacity: 1; transform: scale(1); filter: none; }
}

@keyframes ss-v5-stat-pop {
    0% { opacity: 0; transform: translateY(18px) skewX(-8deg); filter: blur(5px); }
    58% { opacity: 1; transform: translateX(3px); filter: blur(0); }
    100% { opacity: 1; transform: none; filter: none; }
}

@keyframes ss-v5-line-draw {
    0% { opacity: 1; transform: scaleX(0); }
    100% { opacity: 1; transform: scaleX(1); }
}

@keyframes ss-v5-flare-in {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    70% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes ss-v5-flare-in-y {
    0% { opacity: 0; transform: scale(0); }
    70% { opacity: 1; transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-biggest-title,
    .ss-v5-biggest-start,
    .ss-v5-journey-overline,
    .ss-v5-journey-title,
    .ss-v5-journey-subtitle,
    .ss-v5-journey-line,
    .ss-v5-journey-flare,
    .ss-v5-journey-node,
    .ss-v5-journey-stages p,
    .ss-v5-journey-captions p,
    .ss-v5-journey-results-label,
    .ss-v5-journey-stat,
    .ss-v5-biggest-cta {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .ss-v5-journey-flare {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* END SECTION 1 */

/* SECTION 2 */
.ss-section-v4 {
    background-color: var(--bg-black);
    padding: 48px 0;
    overflow: hidden;
}

.ss-v4-gr-title p {
    font-size: 24px;
    line-height: 32px;
    color: var(--white-60);
}

.ss-v4-flex-center {
    display: flex;
    justify-content: center;
}

/* END SECTION 2 */
/* SECTION 3 */
.ss-v4-gr-title-2 {
    overflow: hidden;
}

.ss-v4-gr-title-2 p {
    font-size: 24px;
    line-height: 25px;
    color: var(--white-60);
}

.ss-v4-flex-center {
    display: flex;
    justify-content: center;
}

/* END SECTION 3 */
/* SECTION 4 */

.ss-left-buyer {
    padding-left: 160px;
    padding-right: 80px;
    overflow: hidden;
}

.ss-img-right-full img {
    max-width: 100%;
}

.ss-v4-gr-title-3 {
    overflow: hidden;
}

.ss-v4-gr-title-3 p {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-60);
}

.ss-box-v4-custom-s2 h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 8px;
    color: var(--white);
}

.ss-box-v4-custom-s2 p {
    font-size: 16px;
    line-height: 18px;
    color: var(--white-60);
}

/* END SECTION 4 */
/* SECTION 5 */

.ss-v4-gr-title-4 {
    overflow: hidden;
}

.ss-v4-gr-title-4 p {
    font-size: 18px;
    line-height: 21px;
    color: var(--white-60);
}

.ss-fake-img {
    position: relative;
    top: -48px;
    right: 0;
    z-index: 1;
    width: 100%;
}

/* END SECTION 5 */
/* SECTION 6 */

.ss-ticket-v4-item {
    border-radius: 16px;
    position: relative;
    width: 100%;
    height: 784px;
    overflow: hidden;
    cursor: pointer;
}

.ss-ticket-v4-item-trans {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-50);
    backdrop-filter: blur(32px);
    z-index: 2;
    opacity: 1;
    transition: all .4s;
}

.ss-ticket-v4-item:hover .ss-ticket-v4-item-trans {
    opacity: 0;
    transition: all .4s;
}

.ss-ticket-v4-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-link-to {
    position: absolute;
    height: 48px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: flex;
}

.ss-link-to span {
    font-size: 30px;
    line-height: 35px;
    margin-right: 16px;
    color: var(--white);
}

.ss-ticket-v4-item-desc {
    padding: 24px 32px;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
}

.ss-ticket-v4-item-desc h2 {
    font-size: 30px;
    line-height: 35px;
    color: var(--white);
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ss-ticket-v4-item-desc p {
    font-size: 16px;
    line-height: 18px;
    height: 36px;
    color: var(--white-60);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ss-ticket-v4-item-desc p.line-1 {
    height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* END SECTION 6 */
/* SECTION 7 */

.ss-testimonials-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ss-testimonials-v4-container {
    padding: 120px 0;
}

.ss-testimonials-v4 {
    max-width: 1368px;
    width: 100%;
    border-radius: 16px;
    padding: 0 60px 60px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--white-16);
    background: var(--white-10);
}

.ss-tab-menu {
    display: flex;
}

.ss-tab-item {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid var(--white-60);
    transition: border-color 0.3s;
}

.ss-tab-item.ss-active {
    border-bottom: 2px solid var(--white);
    font-weight: bold;
}

.ss-tab-item img {
    opacity: 0.7;
}

.ss-tab-item.ss-active {
    border-bottom: 2px solid var(--white);
    font-weight: bold;
}

.ss-tab-item.ss-active img {
    opacity: 1;
}

.ss-tab-content {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    height: 420px;
}

.ss-tab-pane {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
}

.ss-tab-pane.ss-active {
    left: 0;
    opacity: 1;
}

.tab-pane:not(.active) {
    left: -100%;
}

.ss-tab-pane h3 {
    font-size: 24px;
    line-height: 42px;
    color: var(--white);
}

.ss-tab-pane h4 {
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.ss-tab-pane p {
    font-size: 20px;
    line-height: 30px;
    color: var(--white-60);
}

.tes-end {
    display: flex;
    justify-content: flex-end;
}

/* END SECTION 7 */
/* SECTION 8 */

.ss-contact-us-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ss-right-contact-us {
    z-index: 2;
    display: flex;
    padding-top: 64px;
}

.ss-share-icon {
    cursor: pointer;
    display: inline-flex;
    text-decoration: none;
    outline: none;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--white-16);
    background: transparent;
    margin-right: 12px;
}

.ss-share-icon .ss-hv {
    display: none;
}

.ss-share-icon:hover .ss-non-hv {
    display: none;
}

.ss-share-icon:hover .ss-hv {
    display: block;
}

.ss-share-icon:hover {
    border: 1px solid var(--white);
    background: var(--white);
}

.ss-fake-img-2 {
    z-index: 1;
    width: calc(100% + 120px);
}

/* END SECTION 8 */
/* CONTACT PAGE */
main.ss-contact-page {
    background: var(--bg-contact-page);
}

.fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-wrapper {
    filter: blur(330px);
    inset: 0%;
    width: 100%;
    height: 100%;
    position: relative;
}

.ss-bg-i-top {
    position: absolute;
    top: 0;
    right: 0;
}

.ss-bg-i-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}

.ss-v4-content-contact-input {
    height: 1160px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.ss-fix-ab {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ss-section-contact-v4 {
    padding: 200px 0 100px;
    overflow: hidden;
}

.ss-v4-content-max-w-912px {
    width: 912px;
    margin: auto;
}

.ss-v4-main-title-f75 {
    font-family: 'Montserrat Regular';
    font-size: 75px;
    line-height: 75px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-v4-desc-f18 {
    font-family: 'Montserrat Regular';
    font-size: 18px;
    line-height: 25px;
    color: var(--white-60);
}

.ss-v4-title-label-gr-input {
    font-family: 'Montserrat Regular';
    font-size: 22px;
    line-height: 30px;
    color: var(--white);
}

.ss-grid-cols-2-gap-16 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}

.ss-input-custom-v4 {
    width: 100%;
    height: 58px;
    border-radius: 8px;
    border: 1px solid var(--white-16);
    color: var(--white);
    font-size: 18px;
    line-height: 18px;
    outline: none;
    background: var(--white-5);
    padding: 0 16px;
}

.ss-input-custom-v4::placeholder {
    color: var(--white-60);
    opacity: 1;
}

.ss-input-custom-v4::-ms-input-placeholder {
    color: var(--white-60);
}

.ss-text-f14 {
    font-family: 'Montserrat Regular';
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.mb-12px {
    margin-bottom: 12px;
}

/** Custom Select **/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    width: 100%;
}

.custom-select-wrapper select {
    display: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    line-height: 58px;
    border-radius: 8px;
    border: 1px solid var(--white-16);
    color: var(--white-60);
    font-size: 18px;
    outline: none;
    background: var(--white-5);
    padding: 0 16px;
    font-family: 'Montserrat Regular', sans-serif !important;
}

.custom-select-trigger.selected {
    color: var(--white);
}

.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    top: 50%;
    right: 25px;
    margin-top: -3px;
    border-bottom: 2px solid var(--white-5);
    border-right: 2px solid var(--white-5);
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

.custom-select-trigger.selected:after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 0;
    border: 1px solid var(--white-16);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px var(--bg-contact-page);
    background: var(--bg-box);
    transition: all .4s ease-in-out;
    z-index: 3;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid var(--white-16);
    border-left: 1px solid var(--white-16);
    background: var(--bg-box);
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 24px;
    border-bottom: 1px solid var(--white-16);
    font-size: 16px;
    font-weight: 400;
    color: var(--white-60);
    line-height: 42px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    font-family: 'Montserrat Regular', sans-serif !important;
}

.custom-option:first-of-type {
    border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 4px 4px;
}

.custom-option:hover,
.custom-option.selection {
    background: var(--bg-contact-page);
    color: var(--white);
}

/* END CONTACT PAGE */
/* LOOKUP PAGE */

.ss-v4-content-lookup-input {
    height: 720px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.ss-v4-title-f18 {
    font-family: 'Montserrat Regular';
    font-size: 18px;
    line-height: 25px;
    color: var(--white);
}

.ss-a-link-to {
    color: var(--blue-link);
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    cursor: pointer;
}

/* END LOOKUP PAGE */
/* TERMS  */
.ss-v4-content-terms-input {
    min-height: 100vh;
    position: relative;
    width: 100%;
    z-index: 2;
}

.ss-v4-content-terms-input.ss-v4-vacciantion {
    min-height: calc(100vh - 300px);
}

.ss-box-title-w {
    width: 210px;
}

.ss-v4-title-f20 {
    font-family: 'Montserrat Bold';
    font-size: 20px;
    line-height: 28px;
    color: var(--white);
}

.ss-v4-desc-f16 {
    font-family: 'Montserrat Regular';
    font-size: 16px;
    line-height: 24px;
    color: var(--white-60);
}

.ss-a-link-to-color-text {
    color: var(--white-60);
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
}

.ss-v4-content-terms-input ul {
    padding-left: 24px;
}

.ss-v4-content-terms-input ul li {
    list-style: unset;
    color: var(--white-60);
}

/* END TERMS */

/* FEATURE */

.ss-max-w-1020px {
    max-width: 1020px;
    margin: 0 auto;
}

.ss-main-pt {
    padding-top: 88px;
    background: var(--bg-black);
}

.ss-bg-black {
    background: #000;
}

.ss-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-pb-0-im {
    padding-bottom: 0 !important;
}

.ss-v4-main-title-f48 {
    font-family: 'Montserrat Regular';
    font-size: 48px;
    line-height: 57px;
    letter-spacing: -0.5px;
    color: var(--white);
}

.ss-video-hide-left {
    overflow: hidden;
}

.ss-video-hide-left .ss-video-hide-left-content {
    width: calc(100% + 48px);
    margin-left: -48px;
    padding: 24px;
    border-radius: 24px;
    border: 3px solid var(--white-60);
}

.ss-video-hide-left .ss-video-hide-left-content video {
    width: 100%;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.ss-right-power {
    padding-left: 48px;
    padding-right: 24px;
    overflow: hidden;
}

.ss-box-v4-custom-s3 {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 24px;
    width: 100%;
    background: var(--bg-box);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 96px;
}

.ss-box-v4-custom-s3._32 {
    grid-template-columns: 3fr 2fr;
}

.ss-box-v4-custom-s3-text {
    padding: 24px;
    display: flex;
    align-items: center;
}

.ss-box-v4-custom-s3-image img {
    width: 100%;
}

.ss-mb-0-im {
    margin-bottom: 0 !important;
}

/* END FEATURE */

/* MUSIC */
.ss-intro-content.music {
    max-width: 1260px;
    margin-left: 0;
    margin: auto;
}

.ss-intro-content.music p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ss-v4-gr-title-5 p {
    font-size: 18px;
    line-height: 25px;
    color: var(--white-60);
}

.ss-v4-content-max-w-1200px {
    width: 1200px;
    margin: auto;
}

.ss-v4-main-title-f24 {
    font-family: 'Montserrat Regular';
    font-size: 24px;
    line-height: 30px;
    color: var(--white);
}

.ss-max-w-460px {
    max-width: 460px;
}

.ss-flex-hz-end {
    justify-content: flex-end;
}

.ss-tab-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.line-h-86 {
    line-height: 86px;
}

/* END MUSIC */

/* Sports */
.ss-testimonials-sport {
    display: flex;
    flex-direction: column;
    max-width: 1368px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    height: 800px;
    padding: 60px 72px;
    border: 1px solid var(--white-16);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ss-testimonials-sport h3 {
    font-size: 24px;
    line-height: 42px;
    color: var(--white);
}

.ss-testimonials-sport h4 {
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.ss-testimonials-sport p {
    font-size: 20px;
    line-height: 30px;
    color: var(--white-60);
}

/* END Sports */

/* culture */
.ss-intro-content.culture {
    max-width: 990px;
    margin-left: 0;
    margin: auto;
}

/* end culture */

.mt-8px {
    margin-top: 8px;
}

.error-msg {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-error);
}

.success-msg {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-success);
}

.max-h-fill-content {
    max-height: calc(100vh - 120px);
}

.ss-select-custom-v4 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Remove default arrow */
    background-image: url(/...);
    /* Add custom arrow */
}

.ss-select-custom-v4:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    top: 50%;
    right: 25px;
    margin-top: -3px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

.ss-max-w-410px {
    max-width: 410px;
}

.gradient-line {
    height: 3px;
    width: 112px;
    background: linear-gradient(to right, #7DBCFF, #137EFC);
}

.ss-video-hide-right {
    overflow: hidden;
}

.ss-video-hide-right .ss-video-hide-right-content {
    width: calc(100% + 30px);
    padding: 24px;
    border-radius: 24px;
    border: 3px solid var(--white-60);
}

.ss-video-hide-right .ss-video-hide-right-content video {
    width: 100%;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.ss-video-left-content {
    width: 100%;
    overflow: hidden;
    height: 80%;
}

.ss-video-left-content video {
    width: 180%;
    margin-left: -40%;
}

.ss-v4-video-center {
    width: 60%;
    overflow: hidden;
}

.ss-v4-video-center video {
    width: 180%;
    margin-left: -40%;
}

.bg-select {
    background: var(--bg-select) !important;
}

/* HOTEL */
.ss-hotels-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ss-intro-content.hotels {
    max-width: 1100px;
    margin: auto;
}

.ss-video-full-size {
    width: 100%;
    position: relative;
}

.ss-video-full-size video {
    width: 100%;
}

.ss-play-video-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.ss-play-video-image.hidden {
    display: none;
}

.ss-play-video-image img {
    width: 100%;
    height: 100%;
}

/* END HOTEL */

.ss-bg-black-fix {
    background-color: var(--bg-black-fix);
}

/* Header nav: hamburger + drawer below 1480px */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

.select-language-list * {
    font-family: 'Roboto Flex', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.select-language-list {
    width: 169px;
    padding: 8px;
    border-radius: 8px;
    background: #25282D;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 999;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #3D4148;
}

.select-language-list.ss-hidden {
    display: none
}

.ss-select-language-list-search {
    position: relative;
    width: 100%;
}

.ss-select-language-list-search input,
body.dark-mode:not(.no-dark-mode) .ss-select-language-list-search input {
    width: 100%;
    height: 32px;
    padding-left: 36px;
    padding-right: 8px;
    border: 1px solid #7F8694;
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    outline: none;
    border-radius: 4px;
    background: transparent;
}

.ss-select-language-list-search .ic-search {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10px;
}

.language-list {
    width: 100%;
    max-height: 200px;
    margin-top: 12px;
    overflow-x: hidden;
    overflow-y: auto;
}

.scrollbar-custom-hidden {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scrollbar-custom-hidden::-webkit-scrollbar {
    width: 0;
    display: none;
}

/* Track */
.scrollbar-custom-hidden::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0;
}

/* Handle */
.scrollbar-custom-hidden::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 0;
}

.language-item {
    padding: 8px;
    border-radius: 4px;
    display: flex;
    width: 100%;
    margin-bottom: 4px;
    cursor: pointer;
}

.language-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-item .ss-flex-hz {
    display: flex;
    align-items: center;
}

.language-item span {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.ss-image-thumb-custom {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss-image-thumb-custom img {
    width: 100%;
    height: 100%;
}

.flex-1 {
    flex: 1;
}

.ss-pl-12px {
    padding-left: 12px;
}

.ss-select-multi-language.home-v5 {
    display: flex;
    width: 112px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    position: relative;
    margin-bottom: 0;
    padding: 0 8px;
    border: 1px solid var(--white-16);
    background: transparent;
    cursor: pointer;
}

.ss-select-multi-language.home-v5 .ss-flag-select {
    width: 36px;
    height: 36px;
}

.ss-select-multi-language.home-v5 .ss-flag-select img {
    width: 100%;
}

.ss-select-multi-language.home-v5 .flex-1 {
    flex: 1;
}

.ss-select-multi-language.home-v5 .flex-1 p {
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
    margin: 0;
    padding-left: 12px;
}

.ss-select-multi-language.home-v5 .ss-drop-down-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.max-w820 {
    max-width: 820px;
    margin: 0 auto;
}

.insurance_link {
    color: #167ffc;
    text-decoration: none !important;
}

/* 05 Hidden Profit calculator */
#calculator {
    scroll-margin-top: 96px;
}

.ss-v5-content-max-w-1592px {
    max-width: 1592px;
    width: 100%;
    margin: auto;
    padding: 0 32px;
}

#calculator .ss-section-v5 {
    background-color: transparent;
    padding: 48px 0;
    overflow: visible;
}

#calculator .ss-section-v5.py-0 {
    padding-top: 0;
    padding-bottom: 80px;
}

#calculator .d-flex {
    display: flex;
}

#calculator .flex-items-center {
    display: inline-flex;
    align-items: center;
}

#calculator .pl-16px {
    padding-left: 16px;
}

#calculator .pr-8px {
    padding-right: 8px;
}

#calculator .pt-0 {
    padding-top: 0;
}

#calculator .gap-24px {
    gap: 24px;
}

#calculator .justify-content-between {
    justify-content: space-between;
}

.ss-v5-calc-title {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--main-text);
    font-family: "Montserrat Bold";
}

body.ss-new-homepage-v5 .ss-v5-calc-subtitle {
    max-width: 920px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.45;
    color: var(--desc-text);
}

body.ss-new-homepage-v5 .ss-v5-calc-form-cta {
    font-size: 22px;
    line-height: 1.35;
    color: var(--main-text);
    font-family: "Montserrat Bold";
}

.ss-v5-event-types {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.ss-v5-event-type {
    appearance: none;
    box-sizing: border-box;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 68px;
    padding: 0 24px;
    background: transparent;
    color: var(--main-text);
    border: 1px solid #F5F5F7;
    border-radius: 34px;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: "Montserrat Bold";
    white-space: nowrap;
}

.ss-v5-event-type.is-active,
.ss-v5-event-type:hover {
    background: var(--link-color);
    border-color: var(--link-color);
    color: var(--main-text);
}

.ss-calculator-basic-info,
.ss-box-calculator-info {
    position: relative;
    padding: 24px;
    border-radius: 12px;
    background: var(--bg-calculator-box);
}

.ss-fake-border-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(106.74deg, rgba(184, 184, 184, 0.46) 0.13%, rgba(184, 184, 184, 0.09) 32.84%, rgba(184, 184, 184, 0.1) 54.85%, rgba(184, 184, 184, 0.2) 95.4%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

body.ss-new-homepage-v5 .ss-calculator-basic-info-item p {
    font-size: 20px;
    line-height: 1.2;
    color: var(--main-text);
}

.ss-calculator-basic-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.ss-new-homepage-v5 .ss-calculator-basic-info {
    overflow: visible;
    padding: 36px 32px;
}

body.ss-new-homepage-v5 .ss-calculator-basic-info .ss-v5-calc-form-cta {
    margin-bottom: 40px;
}

body.ss-new-homepage-v5 .ss-calculator-basic-info .ss-v5-event-types {
    margin-bottom: 40px;
}

body.ss-new-homepage-v5 .ss-calculator-basic-info > .ss-grid-cols-4 {
    width: calc(100% + 64px);
    max-width: none;
    margin-left: -32px;
    margin-right: -32px;
}

body.ss-new-homepage-v5 .ss-calculator-basic-info-item {
    box-sizing: border-box;
    padding-left: 32px;
    padding-right: 32px;
}

.ss-input-icon {
    position: relative;
    height: 44px;
}

.ab-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.symbols {
    font-size: 16px;
    color: var(--main-text);
    left: 8px;
    font-family: "Montserrat Bold";
}

.symbols-after {
    font-size: 16px;
    color: var(--main-text);
    right: 16px;
    font-family: "Montserrat Bold";
}

.calculator-input,
.ss-box-calculator-info-item .number-process {
    height: 44px;
    border: 1px solid var(--white-10);
    width: 90px;
    font-size: 16px;
    font-family: "Montserrat Bold";
    color: var(--main-text);
    background: transparent;
    border-radius: 6px;
    outline: none;
    padding: 8px;
}

.ss-input-icon .calculator-input {
    padding-left: 20px;
}

.calculator-input.active,
.calculator-input:focus,
.ss-box-calculator-info-item .number-process:focus {
    border: 2px solid var(--link-color) !important;
}

#calculator .ss-calculator input.mrk-input-flag,
#calculator .ss-calculator input.mrk-input-flag:focus {
    border: 2px solid #fa8b0c80 !important;
}

.ss-input-icon.after input {
    padding-right: 32px;
}

.ss-input-icon.before input {
    padding-left: 24px;
}

.ss-box-calculator-info.revenue {
    box-shadow: 0 0 16px 2px rgba(58, 160, 255, 0.16);
}

.ss-box-calculator-info.optimization {
    box-shadow: 0 0 16px 2px rgba(195, 61, 240, 0.16);
}

.ss-box-calculator-info.efficiency {
    box-shadow: 0 0 16px 2px rgba(240, 133, 61, 0.16);
}

.ss-box-calculator-info.ticket-sales {
    box-shadow: 0 0 16px 2px rgba(156, 81, 222, 0.16);
}

.ss-box-calculator-info-title {
    display: flex;
    width: 100%;
    align-items: center;
}

body.ss-new-homepage-v5 .ss-box-calculator-info-title h2 {
    font-size: 21px;
    line-height: 1.2;
    color: var(--main-text);
    font-family: "Montserrat Bold";
}

.ss-box-calculator-info-title .symbols_help {
    width: 29px;
    height: 29px;
    cursor: pointer;
}

.ss-box-calculator-info-title .symbols_help .tool-tip {
    position: absolute;
    width: 240px;
    right: 0;
    top: 32px;
    padding: 16px;
    background: var(--page-bg);
    z-index: 100;
    opacity: 0;
    display: none;
    border-radius: 6px;
    border: 1px solid var(--white-5);
    box-shadow: 0 4px 20px var(--bg-box);
}

.ss-box-calculator-info-title .symbols_help:hover .tool-tip {
    display: block;
    opacity: 1;
}

body.ss-new-homepage-v5 .ss-box-calculator-info-title .symbols_help .tool-tip h2 {
    font-size: 14px;
    line-height: 1.2;
    margin: 0 0 4px;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-box-calculator-info-title .symbols_help .tool-tip p {
    font-size: 12px;
    line-height: 1.3;
    margin: 0 0 8px;
    color: var(--white-80);
}

.ss-box-calculator-info-item {
    display: flex;
    width: 100%;
    align-items: flex-end;
    gap: 8px;
}

body.ss-new-homepage-v5 .ss-box-calculator-info-item h2 {
    font-size: 16px;
    line-height: 1.2;
    color: var(--main-text);
}

.progress-wrap {
    width: 100%;
    height: 10px;
    background: var(--black-50);
    border-radius: 999px;
    overflow: visible;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05);
    position: relative;
    cursor: pointer;
    touch-action: none;
}

.progress-bar {
    position: relative;
    height: 100%;
    width: 60%;
    border-radius: 999px;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-bar::before {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.progress-wrap.is-dragging .progress-bar::before {
    transform: translateY(-50%) scale(1.08);
}

.revenue .progress-bar {
    background: linear-gradient(90deg, #3aa0ff, #5bc0ff);
    box-shadow: 0 0 10px rgba(80, 180, 255, 0.45);
}

.optimization .progress-bar {
    background: linear-gradient(90deg, #C33DF0, #ec4899);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.45);
}

.efficiency .progress-bar {
    background: linear-gradient(90deg, #F0853D, #fb923c);
    box-shadow: 0 0 10px rgba(251, 146, 60, 0.45);
}

.ticket-sales .progress-bar {
    background: linear-gradient(90deg, rgba(195, 61, 240, 0.46), #a855f7);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.45);
}

#calculator .ss-v5-main-title-f32 {
    font-size: 32px;
    line-height: 100%;
    color: var(--white);
    font-family: "Montserrat Bold";
}

#calculator .ss-v5-main-title-f48 {
    font-size: 48px;
    line-height: 1;
    color: var(--main-text);
    font-family: "Montserrat Bold";
}

#calculator .ss-v5-calc-opportunity-title {
    margin: 0;
}

.ss-chart-show .fake-border-chart {
    padding: 1px;
    border-radius: 12px;
    overflow: hidden;
}

.ss-chart-show .users-fake-border-v5.show-chart {
    position: relative;
    background: linear-gradient(174.98deg, rgba(75, 203, 56, 0.46) 0.22%, rgba(75, 203, 56, 0.09) 34.47%, rgba(75, 203, 56, 0.1) 57.5%, rgba(255, 255, 255, 0.04) 99.95%);
}

.ss-chart-show .users-fake-border-v5.show-chart::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(104.98deg, rgba(75, 203, 56, 0.46) 0.22%, rgba(75, 203, 56, 0.09) 34.47%, rgba(75, 203, 56, 0.1) 57.5%, rgba(255, 255, 255, 0.04) 99.95%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.ss-chart-show .card.users-bg-custom-v5 {
    background: linear-gradient(to bottom, rgba(75, 203, 56, 0.06) 24.95%, rgba(0, 0, 0, 0.4) 76.44%) !important;
    border-radius: 11px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

#calculator .card,
#calculator .card-body {
    background: transparent;
    border: 0;
    padding: 0;
}

#calculator .wp-chart {
    width: 100%;
}

#calculator .parentContainer {
    position: relative;
    width: 100%;
    height: 320px;
}

#calculator .revenue-chart-canvas {
    display: block;
}

.ss-chart-show .users-labels {
    width: 100%;
}

.ss-chart-show .users-labels .ss-custom-label {
    width: 100%;
    padding: 0 24px;
}

body.ss-new-homepage-v5 .ss-chart-show .users-labels .users-labels-info h2 {
    font-size: 16px;
    font-family: "Montserrat Bold";
    margin-bottom: 10px;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-chart-show .users-labels .users-labels-info p {
    font-size: 24px;
    line-height: 24px;
    font-family: "Montserrat Bold";
    color: var(--main-text);
}

.ss-chart-show .users-labels .users-labels-info .ss-v5-percentage {
    display: inline-flex;
    padding: 4px 8px;
    height: 24px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
}

.ss-chart-show .users-labels .users-labels-info .ss-v5-percentage.bg-color-up {
    background-color: rgba(14, 233, 98, 0.21);
}

.ss-chart-show .users-labels .users-labels-info .ss-v5-percentage.bg-color-up span {
    color: rgb(75, 203, 56);
}

.users-labels-info {
    width: 230px;
    padding-left: 16px;
    border-left: 2px solid #A7A7A740;
    margin: 16px 0;
}

.users-labels-info.right {
    border-left: 2px solid #4BCB38;
}

.ss-box-chart-info {
    padding: 16px;
    border-radius: 12px;
    position: relative;
    display: flex;
}

body.ss-new-homepage-v5 .ss-box-chart-info h3 {
    font-size: 18px;
    line-height: 100%;
    margin: 0 0 8px;
    color: var(--white-80);
}

body.ss-new-homepage-v5 .ss-box-chart-info h2 {
    font-size: 36px;
    line-height: 100%;
    margin: 0 0 16px;
    color: var(--white);
}

body.ss-new-homepage-v5 .ss-box-chart-info p {
    font-size: 16px;
    line-height: 100%;
    color: var(--white);
}

#calculator .color-up {
    font-size: 16px;
    line-height: 18px;
    margin: 0;
    color: #4BCB38;
    font-family: "Montserrat Bold";
}

.ss-box-chart-info.ss-price {
    background: linear-gradient(122.32deg, rgba(19, 126, 252, 0.25) 4.95%, rgba(19, 126, 252, 0.06) 76.44%);
}

.ss-box-chart-info.ss-online-price {
    background: linear-gradient(122.32deg, rgba(195, 61, 240, 0.25) 4.95%, rgba(68, 10, 87, 0.06) 76.44%);
}

.ss-box-chart-info.ss-cost-saving {
    background: linear-gradient(122.32deg, rgba(240, 133, 61, 0.2) 4.95%, rgba(240, 133, 61, 0.06) 76.44%);
}

.ss-box-chart-info.ss-rewards {
    background: linear-gradient(122.32deg, rgba(156, 81, 222, 0.25) 4.95%, rgba(156, 81, 222, 0.06) 76.44%);
}

.ss-fake-border-line::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.ss-fake-border-line.ss-price::before {
    background: linear-gradient(104.98deg, rgba(19, 126, 252, 0.46) 0.22%, rgba(19, 126, 252, 0.09) 34.47%, rgba(19, 126, 252, 0.1) 57.5%, rgba(255, 255, 255, 0.04) 99.95%),
        radial-gradient(7.74% 20.64% at 0% 23.73%, #137EFC 0%, rgba(0, 0, 0, 0) 100%);
}

.ss-fake-border-line.ss-online-price::before {
    background: linear-gradient(104.98deg, rgba(195, 61, 240, 0.46) 0.22%, rgba(195, 61, 240, 0.09) 34.47%, rgba(195, 61, 240, 0.1) 57.5%, rgba(255, 255, 255, 0.04) 99.95%),
        radial-gradient(7.74% 20.64% at 0% 23.73%, #D881F5 0%, rgba(0, 0, 0, 0) 100%);
}

.ss-fake-border-line.ss-cost-saving::before {
    background: linear-gradient(104.98deg, rgba(203, 93, 20, 0.46) 0.22%, rgba(241, 169, 121, 0.09) 34.47%, rgba(242, 184, 146, 0.1) 57.5%, rgba(255, 255, 255, 0.04) 99.95%),
        radial-gradient(7.74% 20.64% at 0% 23.73%, #F4B489 0%, rgba(0, 0, 0, 0) 100%);
}

.ss-fake-border-line.ss-rewards::before {
    background: linear-gradient(104.98deg, rgba(156, 81, 222, 0.46) 0.22%, rgba(156, 81, 222, 0.09) 34.47%, rgba(156, 81, 222, 0.1) 57.5%, rgba(255, 255, 255, 0.04) 99.95%),
        radial-gradient(7.74% 20.64% at 0% 23.73%, #B36FEE 0%, rgba(0, 0, 0, 0) 100%);
}

/* 07 What the Pros Say */
.ss-v5-pros-say {
    box-sizing: border-box;
    padding: 48px 24px 0;
}

.ss-v5-pros-say > .ss-v4-content-max-w-1440px {
    display: flex;
    flex-direction: column;
}

.ss-v5-pros-title {
    font-family: "Montserrat Bold";
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--main-text);
    margin: 0 0 64px;
}

.ss-v5-pros-slider {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    max-height: 100svh;
    padding: 16px 0;
    overflow: hidden;
    --ss-pros-dur: 0.9s;
    --ss-pros-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ss-v5-pros-stage {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
}

.ss-v5-pros-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #050505;
}

.ss-v5-pros-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.08) 28%, rgba(255, 255, 255, 0.06) 62%, rgba(180, 210, 255, 0.28) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 4;
}

.ss-v5-pros-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.ss-v5-pros-slide.is-active,
.ss-v5-pros-slide.is-from-right,
.ss-v5-pros-slide.is-from-left,
.ss-v5-pros-slide.is-to-left,
.ss-v5-pros-slide.is-to-right {
    visibility: visible;
}

.ss-v5-pros-slide.is-active {
    z-index: 2;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.ss-v5-pros-slide.is-from-right {
    z-index: 2;
    transform: translate3d(100%, 0, 0);
}

.ss-v5-pros-slide.is-from-left {
    z-index: 2;
    transform: translate3d(-100%, 0, 0);
}

.ss-v5-pros-slide.is-to-left {
    z-index: 1;
    transform: translate3d(-100%, 0, 0);
}

.ss-v5-pros-slide.is-to-right {
    z-index: 1;
    transform: translate3d(100%, 0, 0);
}

.ss-v5-pros-slide.is-animating {
    transition: transform var(--ss-pros-dur) var(--ss-pros-ease);
    will-change: transform;
}

.ss-v5-pros-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, 0, 0) scale(1.04);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.ss-v5-pros-slide.is-active:not(.is-animating) .ss-v5-pros-bg {
    transform: translate3d(0, 0, 0) scale(1.08);
    transition: transform 6.5s ease-out;
}

.ss-v5-pros-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 38%, rgba(0, 0, 0, 0.08) 68%, transparent 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 48%);
    pointer-events: none;
    z-index: 1;
}

.ss-v5-pros-copy {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    max-width: 720px;
    padding: 56px 48px 56px 56px;
}

.ss-v5-pros-quote {
    display: block;
    margin-bottom: 16px;
}

.ss-v5-pros-quote svg {
    display: block;
}

body.ss-new-homepage-v5 .ss-v5-pros-quote-text {
    margin: 0 0 16px;
    font-family: "Montserrat Bold";
    font-size: 32px;
    line-height: 1.25;
    color: #FFFFFF;
}

body.ss-new-homepage-v5 .ss-v5-pros-body {
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.45;
    color: #FFFFFF;
}

body.ss-new-homepage-v5 .ss-v5-pros-name {
    margin: 0 0 6px;
    font-family: "Montserrat Bold";
    font-size: 18px;
    line-height: 1.3;
    color: #FFFFFF;
}

body.ss-new-homepage-v5 .ss-v5-pros-role {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #D1D6DE;
}

.ss-v5-pros-dots {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin-top: 16px;
    padding-right: 48px;
}

.ss-v5-pros-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ss-v5-pros-nav img {
    display: block;
    width: 48px;
    height: 48px;
}

.ss-v5-pros-nav:hover {
    opacity: 0.88;
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-pros-slide,
    .ss-v5-pros-slide.is-active,
    .ss-v5-pros-slide.is-from-right,
    .ss-v5-pros-slide.is-from-left,
    .ss-v5-pros-slide.is-to-left,
    .ss-v5-pros-slide.is-to-right,
    .ss-v5-pros-slide.is-animating,
    .ss-v5-pros-bg,
    .ss-v5-pros-slide.is-active:not(.is-animating) .ss-v5-pros-bg {
        transition: none;
        transform: none;
        will-change: auto;
    }
}

/* 08 We Solve The Revenue Problem */
.ss-v5-solve {
    --ss-solve-progress: 0;
    position: relative;
    background: #000;
}

.ss-v5-solve-cue {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.ss-v5-solve-track {
    height: 220vh;
}

.ss-v5-solve-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.ss-v5-solve-media,
.ss-v5-solve-bg,
.ss-v5-solve-shade,
.ss-v5-solve-scrim {
    position: absolute;
    inset: 0;
}

.ss-v5-solve-bg {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ss-v5-solve-shade {
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 28%, transparent 68%, rgba(0, 0, 0, 0.42) 100%);
}

.ss-v5-solve-scrim {
    --reveal-from: 0;
    --reveal-to: 0.16;
    z-index: 2;
    pointer-events: none;
    transform: none;
    background: linear-gradient(
        90deg,
        #000 0%,
        #000 28%,
        rgba(0, 0, 0, 0.88) 40%,
        rgba(0, 0, 0, 0.5) 52%,
        rgba(0, 0, 0, 0.16) 64%,
        transparent 78%
    );
}

.ss-v5-solve-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 96px 32px 40px;
}

.ss-v5-solve-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.ss-v5-solve-reveal {
    --reveal-from: 0;
    --reveal-to: 0.2;
    opacity: clamp(0, calc((var(--ss-solve-progress) - var(--reveal-from)) / (var(--reveal-to) - var(--reveal-from))), 1);
    transform: translate3d(0, calc((1 - clamp(0, calc((var(--ss-solve-progress) - var(--reveal-from)) / (var(--reveal-to) - var(--reveal-from))), 1)) * 36px), 0);
    will-change: opacity, transform;
}

.ss-v5-solve-scrim.ss-v5-solve-reveal {
    transform: none;
}

.ss-v5-solve-watermark {
    --reveal-from: 0.1;
    --reveal-to: 0.26;
    position: absolute;
    z-index: 1;
    left: -8px;
    top: 36px;
    margin: 0;
    font-family: "Montserrat Bold";
    font-size: 140px;
    line-height: 1;
    letter-spacing: -6px;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    user-select: none;
}

body.ss-new-homepage-v5 .ss-v5-solve-overline {
    --reveal-from: 0.14;
    --reveal-to: 0.3;
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    color: var(--link-color);
    font-family: "Montserrat Bold";
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ss-v5-solve-title {
    --reveal-from: 0.22;
    --reveal-to: 0.4;
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-solve-body {
    --reveal-from: 0.32;
    --reveal-to: 0.5;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.ss-v5-solve-aside {
    --reveal-from: 0.4;
    --reveal-to: 0.56;
    position: relative;
    z-index: 1;
    padding-left: 18px;
}

.ss-v5-solve-aside::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 2px;
    background: var(--link-color);
    transform: scaleY(clamp(0, calc((var(--ss-solve-progress) - 0.4) / 0.16), 1));
    transform-origin: top center;
}

body.ss-new-homepage-v5 .ss-v5-solve-run {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-solve-together {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    color: var(--link-color);
    font-family: "Montserrat Bold";
}

.ss-v5-solve-stats {
    --reveal-from: 0.52;
    --reveal-to: 0.7;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    background: #030C12;
    border: 1px solid #243642;
    border-radius: 24px;
    padding: 24px 16px;
}

.ss-v5-solve-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 0 8px;
    border-right: 1px solid #243642;
}

.ss-v5-solve-stat:last-child {
    border-right: 0;
}

.ss-v5-solve-stat-icon {
    display: flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-v5-solve-stat-icon img {
    display: block;
    width: 68px;
    height: 68px;
    object-fit: contain;
}

body.ss-new-homepage-v5 .ss-v5-solve-stat-value {
    margin: 0;
    font-family: "Montserrat Bold";
    font-size: 48px;
    line-height: 1.1;
    color: var(--link-color);
}

body.ss-new-homepage-v5 .ss-v5-solve-stat.is-green .ss-v5-solve-stat-value {
    color: #4BCB38;
}

body.ss-new-homepage-v5 .ss-v5-solve-stat-label {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: var(--main-text);
}

.ss-v5-solve.is-reduced,
.ss-v5-solve.is-reduced .ss-v5-solve-reveal,
.ss-v5-solve.is-reduced .ss-v5-solve-stat,
.ss-v5-solve.is-reduced .ss-v5-solve-scrim {
    --ss-solve-progress: 1;
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-solve-track {
        height: auto;
    }

    .ss-v5-solve-sticky {
        position: relative;
        height: auto;
        min-height: 100vh;
    }

    .ss-v5-solve-reveal,
    .ss-v5-solve-stat {
        opacity: 1;
        transform: none;
    }
}

/* 09 Everything Your Event Needs */
.ss-v5-event-needs {
    padding: 96px 24px 88px;
    background: #000;
}

.ss-v5-needs-title {
    margin: 0 0 40px;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--main-text);
}

.ss-v5-needs-panel {
    border: 1px solid #333B4F;
    border-radius: 32px;
    background: #0E1016;
    padding: 48px 40px 40px;
}

.ss-v5-needs-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.18fr);
    gap: 48px 40px;
    align-items: center;
}

.ss-v5-needs-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.ss-v5-needs-item:first-child {
    padding-top: 0;
}

.ss-v5-needs-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ss-v5-needs-item-title {
    font-family: "Montserrat Bold";
    font-size: 32px;
    line-height: 1.2;
    color: var(--main-text);
}

.ss-v5-needs-item-title span{
    font-family: "Montserrat Bold";
}

.ss-v5-needs-item-title-short {
    display: none;
}

.ss-v5-needs-chevrons {
    display: inline-flex;
    flex-shrink: 0;
    width: 14px;
    height: 7px;
}

.ss-v5-needs-chevrons img {
    display: none;
    width: 14px;
    height: 7px;
}

.ss-v5-needs-item .ss-v5-needs-down {
    display: block;
}

.ss-v5-needs-item.is-open .ss-v5-needs-down {
    display: none;
}

.ss-v5-needs-item.is-open .ss-v5-needs-up {
    display: block;
}

.ss-v5-needs-item-body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.35s ease, opacity 0.28s ease, margin 0.35s ease;
}

.ss-v5-needs-item.is-open {
    border-bottom: 0;
}

.ss-v5-needs-item.is-open .ss-v5-needs-item-body {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 12px;
}

.ss-v5-needs-features {
    overflow: hidden;
    min-height: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--desc-text);
}

.ss-v5-needs-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #fff;
    color: var(--btn-text-on-white);
    font-family: "Montserrat Bold";
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid #fff;
}

.ss-v5-needs-cta:hover {
    background: transparent;
    color: #fff;
}

.ss-v5-needs-visual {
    position: relative;
    min-height: 520px;
    height: 58vh;
    max-height: 640px;
}

.ss-v5-needs-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.ss-v5-event-needs.is-inview .ss-v5-needs-shot.is-active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-needs-item-body,
    .ss-v5-needs-shot {
        transition: none;
    }

    .ss-v5-needs-shot.is-active {
        opacity: 1;
        transform: none;
    }
}

/* 10 — One Connected Revenue System */
.ss-v5-connected {
    overflow: hidden;
    padding: 96px 0 80px;
    background: #f4f5f7;
}

body.ss-new-homepage-v5 .ss-v5-connected-overline,
body.ss-new-homepage-v5 .ss-v5-connected-brings {
    margin: 0 0 12px;
    color: var(--link-color);
    font-family: "Montserrat Bold";
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ss-v5-connected-title {
    margin: 0 0 16px;
    max-width: 11.5em;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: #111;
}

body.ss-new-homepage-v5 .ss-v5-connected-subtitle {
    margin: 0 0 48px;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.55);
}

.ss-v5-connected-slider {
    padding-left: 0;
}

.ss-v5-connected-viewport {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.ss-v5-connected-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-left: max(15px, calc((100% - 1460px) / 2));
    padding-right: max(15px, calc((100% - 1460px) / 2));
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.ss-v5-connected-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 0 0 clamp(260px, 22vw, 340px);
    width: clamp(260px, 22vw, 340px);
    min-height: 560px;
    padding: 24px 22px 22px;
    border-radius: 24px;
    box-sizing: border-box;
    opacity: 0;
    transform: translate3d(72px, 28px, 0);
}

.ss-v5-connected.is-inview .ss-v5-connected-card {
    animation: ss-v5-connected-card-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ss-v5-connected.is-inview .ss-v5-connected-card:nth-child(1) { animation-delay: 0.08s; }
.ss-v5-connected.is-inview .ss-v5-connected-card:nth-child(2) { animation-delay: 0.18s; }
.ss-v5-connected.is-inview .ss-v5-connected-card:nth-child(3) { animation-delay: 0.28s; }
.ss-v5-connected.is-inview .ss-v5-connected-card:nth-child(4) { animation-delay: 0.38s; }
.ss-v5-connected.is-inview .ss-v5-connected-card:nth-child(5) { animation-delay: 0.48s; }
.ss-v5-connected.is-inview .ss-v5-connected-card:nth-child(6) { animation-delay: 0.58s; }

.ss-v5-connected-card.is-dark {
    background: #111;
}

.ss-v5-connected-card.is-light {
    background: #e8e9ee;
}

body.ss-new-homepage-v5 .ss-v5-connected-label {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: var(--link-color);
    font-family: "Montserrat Bold";
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ss-v5-connected-heading {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: "Montserrat Bold";
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.ss-v5-connected-card.is-dark .ss-v5-connected-heading {
    color: #fff;
}

.ss-v5-connected-card.is-light .ss-v5-connected-heading {
    color: #111;
}

.ss-v5-connected-media {
    flex: 1 1 auto;
    position: relative;
    margin: 18px -22px -22px;
    min-height: 220px;
    overflow: hidden;
}

.ss-v5-connected-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-v5-connected-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58%;
    background: linear-gradient(to top, #111 0%, rgba(17, 17, 17, 0.92) 28%, rgba(17, 17, 17, 0.45) 62%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.ss-v5-connected-card.is-light .ss-v5-connected-media::after {
    background: linear-gradient(to top, #111 0%, rgba(17, 17, 17, 0.9) 28%, rgba(17, 17, 17, 0.4) 62%, transparent 100%);
}

.ss-v5-connected-foot {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    margin: 0;
}

body.ss-new-homepage-v5 .ss-v5-connected-brings {
    margin: 0 0 8px;
}

body.ss-new-homepage-v5 .ss-v5-connected-features {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}

body.ss-new-homepage-v5 .ss-v5-connected-card .ss-v5-connected-features,
body.ss-new-homepage-v5 .ss-v5-connected-card.is-dark .ss-v5-connected-features,
body.ss-new-homepage-v5 .ss-v5-connected-card.is-light .ss-v5-connected-features {
    color: rgba(255, 255, 255, 0.88);
}

.ss-v5-connected-dots {
    display: none;
}

.ss-v5-connected-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
}

.ss-v5-connected.is-inview .ss-v5-connected-nav {
    animation: ss-v5-connected-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

.ss-v5-connected-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.ss-v5-connected-nav button:hover:not(:disabled) {
    opacity: 0.86;
}

.ss-v5-connected-nav button:disabled {
    background: #d4d5db;
    color: #fff;
    cursor: default;
}

@keyframes ss-v5-connected-card-in {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-connected-track {
        transition: none;
    }

    .ss-v5-connected-card,
    .ss-v5-connected-nav,
    .ss-v5-connected.is-inview .ss-v5-connected-card,
    .ss-v5-connected.is-inview .ss-v5-connected-nav {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

/* 11 — SAFEGATE */
.ss-v5-safegate {
    padding: 96px 24px 100px;
    background: #000;
}

#safegate.ss-v5-safegate {
    background: var(--page-bg);
}

.ss-v5-safegate-panel {
    position: relative;
    padding: 48px 40px;
    border-radius: 32px;
    background: #010102;
    overflow: hidden;
}

.ss-v5-safegate-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(115deg, #3a3a40 0%, #1F1F21 26%, rgba(31, 31, 33, 0.28) 52%, #1F1F21 78%, #4a4a52 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

#safegate .ss-v5-safegate-title .ss-v5-accent {
    background: #137EFC;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: "Montserrat Bold";
}

.ss-v5-safegate-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.25fr);
    gap: 48px 56px;
    /* align-items: center; */
}

body.ss-new-homepage-v5 #safegate .ss-v5-safegate-grid {
    align-items: center;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-leaks) .ss-v5-safegate-left {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-leaks) :is(.ss-v5-safegate-title, .ss-v5-re-leaks-title, .ss-v5-safegate-subtitle) {
    grid-column: 2;
    justify-self: start;
    text-align: left;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-leaks) .ss-v5-safegate-controls {
    display: contents;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-leaks) .ss-v5-safegate-nav {
    grid-column: 1;
    grid-row: 3;
    padding-top: 0;
    align-self: center;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-leaks) .ss-v5-safegate-list {
    grid-column: 2;
    grid-row: 3;
}

.ss-v5-safegate-title {
    margin: 0 0 16px;
    font-family: "Montserrat Bold";
    font-weight: 900;
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--main-text);
}

.ss-v5-safegate-title span {
    display: inline;
    font-family: "Montserrat Bold";
}

body.ss-new-homepage-v5 .ss-v5-safegate-subtitle {
    margin: 0 0 36px;
    max-width: 34em;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.ss-v5-safegate-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ss-v5-safegate-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 0;
}

.ss-v5-safegate-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #1a1a1a;
    cursor: pointer;
}

.ss-v5-safegate-nav button:hover {
    background: #242424;
}

.ss-v5-safegate-nav img {
    display: block;
    width: 12px;
    height: 13px;
}

.ss-v5-safegate-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.ss-v5-safegate-item {
    display: inline-flex;
    flex-direction: column;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 12px 18px 12px 12px;
    border: 0;
    border-radius: 999px;
    background: #1a1a1a;
    color: inherit;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.28s ease, border-radius 0.28s ease, padding 0.28s ease, width 0.28s ease;
}

.ss-v5-safegate-item.is-open {
    width: 100%;
    padding: 24px 28px;
    border-radius: 24px;
    background: #1c1c1c;
    cursor: default;
}

.ss-v5-safegate-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-v5-safegate-item.is-open .ss-v5-safegate-item-head {
    gap: 0;
}

.ss-v5-safegate-plus {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(240, 240, 245, 0.55);
    border-radius: 50%;
}

.ss-v5-safegate-plus img {
    display: block;
    width: 10px;
    height: 10px;
}

.ss-v5-safegate-item.is-open .ss-v5-safegate-plus {
    display: none;
}

.ss-v5-safegate-item-title {
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 1.3;
    color: var(--main-text);
}

.ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
    font-size: 22px;
}

.ss-v5-safegate-item-body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.35s ease, opacity 0.28s ease, margin 0.35s ease;
}

.ss-v5-safegate-item.is-open .ss-v5-safegate-item-body {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 10px;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) {
    --ss-sg-dur: 0.52s;
    --ss-sg-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item {
    box-sizing: border-box;
    width: max-content;
    max-width: 100%;
    align-self: flex-start;
    border-radius: 26px;
    overflow: hidden;
    isolation: isolate;
    transition:
        width var(--ss-sg-dur) var(--ss-sg-ease),
        height var(--ss-sg-dur) var(--ss-sg-ease),
        padding var(--ss-sg-dur) var(--ss-sg-ease),
        border-radius var(--ss-sg-dur) var(--ss-sg-ease),
        background-color var(--ss-sg-dur) ease;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item.is-open {
    width: 100%;
    border-radius: 24px;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item-title {
    white-space: nowrap;
    font-size: 16px;
    transition: font-size var(--ss-sg-dur) var(--ss-sg-ease);
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item-head {
    transition: gap var(--ss-sg-dur) var(--ss-sg-ease);
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
    font-size: 20px;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-plus {
    transition:
        opacity 0.28s ease,
        transform var(--ss-sg-dur) var(--ss-sg-ease),
        width var(--ss-sg-dur) var(--ss-sg-ease),
        min-width var(--ss-sg-dur) var(--ss-sg-ease),
        margin var(--ss-sg-dur) var(--ss-sg-ease),
        border-color 0.28s ease;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item.is-open .ss-v5-safegate-plus {
    display: inline-flex;
    width: 0;
    min-width: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    border-color: transparent;
    transform: scale(0.6);
    pointer-events: none;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item-body {
    display: block;
    max-height: 0;
    opacity: 0;
    margin: 0;
    overflow: hidden;
    grid-template-rows: unset;
    transition:
        max-height var(--ss-sg-dur) var(--ss-sg-ease),
        opacity 0.32s ease,
        margin var(--ss-sg-dur) var(--ss-sg-ease);
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item:not(.is-open):not(.is-animating) .ss-v5-safegate-item-body {
    width: 0;
    min-width: 0;
    height: 0;
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
}

body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item.is-animating .ss-v5-safegate-item-body,
body.ss-new-homepage-v5 :is(#safegate, .ss-v5-re-seats, .ss-v5-re-leaks, .ss-v5-mu-profit) .ss-v5-safegate-item.is-open .ss-v5-safegate-item-body {
    width: auto;
    height: auto;
    max-height: 8em;
    opacity: 1;
    margin-top: 10px;
    grid-template-rows: unset;
}

.ss-v5-safegate-item-copy {
    overflow: hidden;
    min-height: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
}

.ss-v5-safegate-visual {
    position: relative;
    min-height: 560px;
    height: 62vh;
    max-height: 680px;
    border-radius: 32px;
    overflow: hidden;
}

.ss-v5-safegate-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.ss-v5-safegate.is-inview .ss-v5-safegate-shot.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

body.ss-new-homepage-v5 #safegate .ss-v5-safegate-shot {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 0;
}

body.ss-new-homepage-v5 #safegate .ss-v5-safegate-shot.is-active {
    z-index: 1;
}

body.ss-new-homepage-v5 #safegate.is-inview .ss-v5-safegate-shot.is-active {
    opacity: 1;
}

body.ss-new-homepage-v5 #safegate.is-inview .ss-v5-safegate-shot.is-active.is-enter {
    animation: ssV5SafegateShotIn 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes ssV5SafegateShotIn {
    from {
        opacity: 0;
        transform: translate3d(12%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-safegate-item,
    .ss-v5-safegate-item-body,
    .ss-v5-safegate-shot {
        transition: none;
    }

    .ss-v5-safegate-shot.is-active {
        opacity: 1;
        transform: none;
    }

    body.ss-new-homepage-v5 #safegate .ss-v5-safegate-shot,
    body.ss-new-homepage-v5 #safegate.is-inview .ss-v5-safegate-shot.is-active.is-enter {
        animation: none;
        transform: none;
    }
}

/* 12 — Built to Convert More Buyers */
.ss-v5-convert {
    padding: 48px 24px 96px;
    background: var(--page-bg);
}

.ss-v5-convert-title {
    margin: 0 0 36px;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: var(--main-text);
}

.ss-v5-convert-media {
    position: relative;
    overflow: hidden;
    background: var(--page-bg);
    isolation: isolate;
}

.ss-v5-convert-video {
    display: block;
    width: 100%;
    height: auto;
    background: var(--page-bg);
    mix-blend-mode: lighten;
    -webkit-mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 58%, transparent 100%);
    mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 58%, transparent 100%);
}

/* 14 — Final CTA */
.ss-v5-final {
    position: relative;
    overflow: hidden;
    min-height: 820px;
    display: flex;
    align-items: stretch;
    padding: 48px 24px 48px;
    background: #000;
}

.ss-v5-final-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.ss-v5-final-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.42) 40%, rgba(0, 0, 0, 0.62) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.28) 100%);
}

.ss-v5-final-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    min-height: 756px;
}

.ss-v5-final-overline {
    margin: 0 0 20px;
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-final-overline {
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-final-overline .ss-v5-accent {
    color: #137EFC;
}

.ss-v5-final-title {
    margin: 0 0 18px;
    max-width: 18em;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-final-subtitle {
    margin: 0 0 48px;
    max-width: 820px;
    font-size: 18px;
    line-height: 1.55;
    color: #FFF;
}

.ss-v5-final-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 560px;
    min-height: 120px;
    padding: 24px 56px;
    border: 0;
    border-radius: 32px;
    background: linear-gradient(90deg, #057DFF 0%, #0538D6 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(5, 125, 255, 0.42);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ss-v5-final-cta:hover {
    color: #fff;
    filter: brightness(1.06);
    box-shadow: 0 12px 36px rgba(19, 126, 252, 0.55);
}

.ss-v5-final-cta-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.ss-v5-final-cta-title {
    font-family: "Montserrat Bold";
    font-size: 22px;
    line-height: 1.2;
}

.ss-v5-final-cta-sub {
    font-size: 16px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.88);
}

.ss-v5-final-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 1360px;
    margin: 0 0 96px;
    padding: 28px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: rgba(8, 12, 18, 0.62);
    backdrop-filter: blur(14px);
}

.ss-v5-final-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
}

.ss-v5-final-stat:last-child {
    border-right: 0;
}

.ss-v5-final-stat-icon {
    display: block;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.ss-v5-final-stat-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

body.ss-new-homepage-v5 .ss-v5-final-stat-value {
    margin: 0;
    font-family: "Montserrat Bold";
    font-size: 24px;
    line-height: 1.1;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-final-stat.is-blue .ss-v5-final-stat-value {
    color: var(--link-color);
}

body.ss-new-homepage-v5 .ss-v5-final-stat-label {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.62);
}

body.ss-new-homepage-v5 .ss-v5-final .fade-bottom {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 40px, 0);
    animation-name: ssV5FinalFadeIn;
    animation-duration: 1.35s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-fill-mode: both;
    animation-play-state: paused;
    will-change: opacity, transform, filter;
}

body.ss-new-homepage-v5 .ss-v5-final .fade-bottom.fade-on {
    animation-play-state: running;
}

.ss-v5-final-overline.fade-bottom { animation-delay: 0s; }
.ss-v5-final-title.fade-bottom { animation-delay: 0.14s; }
.ss-v5-final-subtitle.fade-bottom { animation-delay: 0.28s; }
.ss-v5-final-stats.fade-bottom { animation-delay: 0.42s; }
.ss-v5-final-cta.fade-bottom { animation-delay: 0.56s; }

@keyframes ssV5FinalFadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-final .fade-bottom {
        animation: none;
        opacity: 1;
        filter: none;
        transform: none;
        will-change: auto;
    }
}

/* 15 — Footer */
.ss-v5-footer {
    background: #000;
    padding: 72px 24px 32px;
}

.ss-v5-footer-inner {
    width: 100%;
}

.ss-v5-footer-top {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1fr 0.85fr 1.2fr;
    gap: 40px 32px;
    padding-bottom: 48px;
}

.ss-v5-footer-logo img {
    display: block;
    width: 200px;
    height: auto;
}

body.ss-new-homepage-v5 .ss-v5-footer-tagline {
    margin: 16px 0 20px;
    max-width: 280px;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

.ss-v5-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss-v5-footer-social-link {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 0;
}

.ss-v5-footer-social-link img {
    display: block;
    width: 40px;
    height: 40px;
}

.ss-v5-footer-heading {
    margin: 0 0 16px;
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--main-text);
}

.ss-v5-footer-heading-spaced {
    margin-top: 28px;
}

.ss-v5-footer-link {
    display: block;
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.ss-v5-footer-link:hover {
    color: var(--link-color);
}

.ss-v5-footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

a.ss-v5-footer-contact-row:hover {
    color: var(--link-color);
}

.ss-v5-footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.ss-v5-footer-contact-icon img {
    display: block;
    width: 14px;
    height: 14px;
}

.ss-v5-footer-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ss-v5-footer-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ss-v5-footer-trust-item:last-child {
    border-right: 0;
}

.ss-v5-footer-trust-item img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.ss-v5-footer-legal {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
}

body.ss-new-homepage-v5 .ss-v5-footer-copy {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

.ss-v5-footer-legal-nav {
    display: flex;
    align-items: center;
    justify-self: center;
    grid-column: 2;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

.ss-v5-footer-legal-nav a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.ss-v5-footer-legal-nav a:hover {
    color: var(--link-color);
}

.ss-v5-footer-dot,
.ss-v5-footer-status {
    color: rgba(255, 255, 255, 0.55);
}

/* Mobile UX pass — tap targets, clipping, type scale */

/* V5 Revenue Engines — Hero */
.ss-v5-re-hero {
    padding: 140px 24px 80px;
    background: #121212;
    text-align: center;
}

.ss-v5-re-hero-title {
    margin: 0 0 24px;
    font-family: "Montserrat Regular";
    font-size: 72px;
    line-height: 84px;
    letter-spacing: -1.5px;
    color: var(--main-text);
}

.ss-v5-re-hero-line {
    display: block;
}

body.ss-new-homepage-v5 .ss-v5-re-hero-subtitle {
    margin: 0 auto 48px;
    max-width: 820px;
    font-size: 22px;
    line-height: 32px;
    color: var(--desc-text);
}

.ss-v5-re-hero-visual {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 48px;
    background: #121212;
    isolation: isolate;
}

.ss-v5-re-hero-visual video {
    display: block;
    width: 100%;
    height: auto;
    background: #121212;
    mix-blend-mode: lighten;
}

/* V5 Revenue Engines — Every Revenue Stream */
.ss-v5-re-every-stream {
    --ss-re-stream-bg: #00030a;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 96px 24px 0;
    text-align: center;
    background:
        radial-gradient(ellipse 58% 48% at 50% 62%, rgba(19, 126, 252, 0.34) 0%, rgba(19, 126, 252, 0.12) 38%, transparent 68%),
        radial-gradient(ellipse 80% 55% at 50% 70%, rgba(10, 60, 186, 0.2) 0%, transparent 72%),
        var(--ss-re-stream-bg);
}

.ss-v5-re-every-stream-title {
    margin: 0 0 16px;
    font-family: "Montserrat Regular";
    font-size: 64px;
    line-height: 76px;
    letter-spacing: -1.5px;
    color: var(--main-text);
}

.ss-v5-re-every-stream-line {
    display: block;
}

body.ss-new-homepage-v5 .ss-v5-re-every-stream-subtitle {
    margin: 0 auto 48px;
    max-width: 820px;
    font-size: 22px;
    line-height: 32px;
    color: var(--desc-text);
}

.ss-v5-re-every-stream-visual {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.ss-v5-re-every-stream-visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}

/* V5 Revenue Engines — 6 engine tabs */
.ss-v5-re-engines {
    --ss-re-engines-count: 6;
    background: var(--page-bg);
}

.ss-v5-re-engines-track {
    height: calc(100vh * (var(--ss-re-engines-count) + 0.25));
}

.ss-v5-re-engines-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ss-v5-re-engines-inner {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 88px 24px 16px;
}

.ss-v5-re-engines-title {
    margin: 0 0 4px;
    font-family: "Montserrat Regular";
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -1.5px;
    color: var(--main-text);
    text-align: center;
    flex-shrink: 0;
}

body.ss-new-homepage-v5 .ss-v5-re-engines-subtitle {
    margin: 0 auto 12px;
    max-width: 820px;
    font-size: 16px;
    line-height: 22px;
    color: var(--desc-text);
    text-align: center;
}

.ss-v5-re-engines-menu {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 0 auto 12px;
    flex-shrink: 0;
}

.ss-v5-re-engines-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 148px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    font-family: inherit;
    outline: none;
    -webkit-transition: color 0.3s, opacity 0.3s;
    transition: color 0.3s, opacity 0.3s;
}

.ss-v5-re-engines-item.is-active {
    color: var(--main-text);
}

.ss-v5-re-engines-num {
    position: absolute;
    top: -16px;
    left: -16px;
    z-index: 2;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--engine-color);
    background: #111111;
    color: var(--engine-color);
    font-size: 14px;
    line-height: 1;
    font-family: "Montserrat Bold";
}

.ss-v5-re-engines-icon {
    position: relative;
    box-sizing: border-box;
    width: 102px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: visible;
    border-radius: 16px;
    border: 1.5px solid color-mix(in srgb, var(--engine-color) 16%, transparent);
    background: transparent;
    opacity: 0.28;
    -webkit-transition: border-color 0.3s, box-shadow 0.3s, opacity 0.3s;
    transition: border-color 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.ss-v5-re-engines-icon img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    pointer-events: none;
}

.ss-v5-re-engines-item.is-active .ss-v5-re-engines-icon {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.ss-v5-re-engines-item.is-active .ss-v5-re-engines-num {
    box-shadow: 0 0 8px var(--engine-color), 0 0 18px color-mix(in srgb, var(--engine-color) 70%, transparent);
}

.ss-v5-re-engines-label {
    display: block;
    width: 96px;
    min-height: 32px;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    font-family: "Montserrat Regular";
}

.ss-v5-re-engines-stage {
    position: relative;
    flex: 1;
    min-height: 0;
}

.ss-v5-re-engines-stage-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.ss-v5-re-engines-card {
    position: absolute;
    inset: 0;
    display: flex;
    overflow: hidden;
    border-radius: 24px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: translate3d(110%, 0, 0);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.ss-v5-re-engines-card.is-active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.ss-v5-re-engines-card.is-prev {
    transform: translate3d(-16%, 0, 0);
    opacity: 0;
    z-index: 1;
}

.ss-v5-re-engines-copy {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: 42%;
    max-width: 540px;
    flex-shrink: 0;
    padding: 36px 24px 36px 40px;
    display: flex;
    flex-direction: column;
}

.ss-v5-re-engines-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--engine-color);
}

.ss-v5-re-engines-badge-value {
    font-family: "Montserrat Regular";
    font-size: 28px;
    line-height: 32px;
    color: var(--engine-color);
}

body.ss-new-homepage-v5 .ss-v5-re-engines-badge-label {
    margin-top: 2px;
    font-size: 13px;
    line-height: 18px;
    color: var(--main-text);
}

.ss-v5-revenue-engines .ss-v5-re-engines-badge {
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 128px;
    min-width: 128px;
    min-height: 128px;
    margin-bottom: 20px;
    padding: 12px;
    box-sizing: border-box;
    text-align: center;
}

.ss-v5-revenue-engines .ss-v5-re-engines-badge-value {
    font-family: "Montserrat Bold";
    font-weight: 700;
}

body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-badge-label {
    text-align: center;
}

.ss-v5-re-engines-card-title {
    margin: 0 0 16px;
    font-family: "Montserrat Regular";
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.8px;
    color: var(--main-text);
}

.ss-v5-re-engines-hl {
    color: var(--engine-color);
}

.ss-v5-re-engines-card-name {
    margin: 0 0 48px;
    font-family: "Montserrat Regular";
    font-size: 22px;
    line-height: 28px;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-re-engines-desc {
    margin: 0 0 48px;
    max-width: 460px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.82);
}

.ss-v5-re-engines-points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ss-v5-re-engines-point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 22px;
    color: var(--main-text);
}

.ss-v5-re-engines-point::before {
    content: "";
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: var(--engine-color);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M6.2 11.4L2.8 8l1.1-1.1 2.3 2.3 5.9-5.9L13.2 4.4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M6.2 11.4L2.8 8l1.1-1.1 2.3 2.3 5.9-5.9L13.2 4.4z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.ss-v5-re-engines-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ss-v5-re-engines-visual img {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    transform: translateY(-50%);
}

/* bg_rg_*.png = 1706×898. Frame matches that ratio so the photo
   fills the card without letterboxing; extra crop, if any, comes
   from the left — the dashboard stays on the right. */
.ss-v5-revenue-engines .ss-v5-re-engines-stage {
    container-type: size;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-v5-revenue-engines .ss-v5-re-engines-stage-frame {
    width: min(100%, calc(100cqh * 1706 / 898));
    height: min(100%, calc(100cqw * 898 / 1706));
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1706 / 898;
}

.ss-v5-revenue-engines .ss-v5-re-engines-visual img {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: none;
}

@supports not (width: 1cqh) {
    .ss-v5-revenue-engines .ss-v5-re-engines-stage {
        container-type: normal;
        display: block;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-stage-frame {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-re-engines-card {
        transition: opacity 0.2s ease;
    }
}

.ss-v5-re-pocket {
    overflow-x: hidden;
    padding: 168px 24px 120px;
    background: #F7F7F5;
    text-align: left;
}

.ss-v5-re-pocket-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

body.ss-new-homepage-v5 .ss-v5-re-pocket-overline {
    margin: 0 0 28px;
    color: var(--link-color);
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ss-v5-re-pocket-title {
    margin: 0 0 24px;
    font-family: "Montserrat Bold";
    font-size: 52px;
    line-height: 56px;
    letter-spacing: -1.4px;
    color: #000000;
}

body.ss-new-homepage-v5 .ss-v5-re-pocket-title {
    color: #000000;
}

body.ss-new-homepage-v5 .ss-v5-re-pocket-subtitle {
    margin: 0;
    max-width: 820px;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
}

.ss-v5-re-pocket-visual {
    overflow: hidden;
}

.ss-v5-re-pocket-visual img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    transform: translate3d(0, var(--ss-pocket-y, 200px), 0) scale(var(--ss-pocket-zoom, 1.22));
    transform-origin: 50% 100%;
    will-change: transform;
}

.ss-v5-re-pocket-overline,
.ss-v5-re-pocket-title,
body.ss-new-homepage-v5 .ss-v5-re-pocket-subtitle {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.9s ease, transform 0.7s cubic-bezier(0.37, 0, 0.63, 1);
}

.ss-v5-re-pocket.is-copy-in .ss-v5-re-pocket-overline {
    opacity: 1;
    transform: none;
}

.ss-v5-re-pocket.is-copy-in .ss-v5-re-pocket-title {
    opacity: 1;
    transform: none;
    transition-delay: 0.15s;
}

.ss-v5-re-pocket.is-copy-in .ss-v5-re-pocket-subtitle,
body.ss-new-homepage-v5 .ss-v5-re-pocket.is-copy-in .ss-v5-re-pocket-subtitle {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-re-pocket-visual img {
        transform: none;
        will-change: auto;
    }

    .ss-v5-re-pocket-overline,
    .ss-v5-re-pocket-title,
    body.ss-new-homepage-v5 .ss-v5-re-pocket-subtitle {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* V5 Revenue Engines — Highest-Value Sale (arena + SAFEGATE accordion) */
.ss-v5-re-seats.ss-v5-safegate {
    overflow: hidden;
    padding: 96px 24px 100px 0;
    background: var(--page-bg);
}

.ss-v5-re-seats-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.9fr);
    align-items: center;
}

.ss-v5-re-seats-visual {
    min-width: 0;
    width: 100%;
}

.ss-v5-re-seats-visual .ss-flex-hz-center,
.ss-v5-re-seats .ss-video-hide-left {
    width: 100%;
}

.ss-v5-re-seats .ss-video-hide-left-content video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #0b0b0b;
}

.ss-v5-re-seats .ss-v5-safegate-left {
    padding-right: 24px;
}

.ss-v5-re-seats-title {
    margin: 0 0 16px;
    
    font-size: 40px;
    line-height: 1.18;
    letter-spacing: -0.8px;
    color: var(--main-text);
}


.ss-v5-re-seats .ss-v5-safegate-nav {
    padding-top: 0;
}

/* V5 Revenue Engines — One Platform. Zero Revenue Leaks. */
.ss-v5-re-leaks.ss-v5-safegate {
    overflow: hidden;
    padding: 96px 24px 100px 24px;
    background: var(--page-bg);
}

.ss-v5-re-leaks-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.15fr);
    align-items: start;
}

.ss-v5-re-leaks .ss-v5-safegate-left {
    padding-left: 0;
    min-width: 0;
}

.ss-v5-re-leaks-title {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1.18;
    letter-spacing: -0.8px;
    color: var(--main-text);
}

.ss-v5-re-leaks-visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: transparent;
    transform-origin: center center;
    aspect-ratio: 1 / 1;
}

.ss-v5-re-leaks.is-armed:not(.is-copy-in) .ss-v5-safegate-left {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    pointer-events: none;
}

.ss-v5-re-leaks.is-armed .ss-v5-re-leaks-visual {
    position: relative;
    z-index: 3;
}

.ss-v5-re-leaks.is-armed.is-playing .ss-v5-re-leaks-video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.ss-v5-re-leaks.is-copy-in .ss-v5-safegate-left {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: opacity 1.1s 0.12s ease, transform 1.4s 0.08s cubic-bezier(0.33, 0.05, 0.2, 1);
}

.ss-v5-re-leaks-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: lighten;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

.ss-v5-re-leaks-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

.ss-v5-re-leaks.is-ended .ss-v5-re-leaks-shot {
    opacity: 1;
}

.ss-v5-re-leaks.is-ended .ss-v5-re-leaks-video {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-re-leaks-video {
        display: none;
        transition: none;
    }

    .ss-v5-re-leaks-shot {
        opacity: 1;
    }

    .ss-v5-re-leaks .ss-v5-safegate-left {
        opacity: 1;
        transform: none;
    }
}

/* V5 Revenue Engines — The Revenue Command Center (design: Revenue-Engines/8.png) */
.ss-v5-re-command {
    position: relative;
    overflow: hidden;
    padding: 88px 0 0;
    background: #121212;
    text-align: center;
}

.ss-v5-re-command-copy {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.ss-v5-re-command-title {
    margin: 0 0 16px;
    /* font-family: "Montserrat Bold"; */
    font-size: 48px;
    line-height: 1.16;
    letter-spacing: -1.2px;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-re-command-subtitle {
    margin: 0 auto;
    max-width: 820px;
    font-size: 18px;
    line-height: 1.45;
    color: var(--desc-text);
}

.ss-v5-re-command-visual {
    position: relative;
    z-index: 1;
    margin-top: -36px;
    background: #010104;
    isolation: isolate;
}

.ss-v5-re-command-visual img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    background: #010104;
    mix-blend-mode: lighten;
}

/* V5 Music page — sections added incrementally */
.ss-v5-music {
    background: var(--page-bg);
    min-height: 40vh;
}

.ss-v5-mu-hero .ss-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ss-v5-mu-hero .ss-v5-hero-pin::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 42%, transparent 72%);
}

.ss-v5-mu-hero .ss-v5-hero-pin::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 160px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, var(--page-bg));
}

.ss-v5-mu-hero .ss-intro-container {
    width: 100%;
    box-sizing: border-box;
}

.ss-v5-mu-hero .ss-intro-content {
    max-width: 920px;
}

.ss-v5-mu-hero .ss-v5-hero-title {
    white-space: normal;
}

.ss-v5-mu-hero .ss-v5-hero-line {
    display: block;
}

.ss-v5-mu-hero .ss-v5-hero-subtitle {
    max-width: 640px;
}

.ss-v5-mu-hero .ss-v4-btn {
    height: 58px;
    color: #fff;
    background: #137EFC;
    background-image: none;
}

.ss-v5-mu-hero .ss-v4-btn:hover {
    color: #fff;
    background: #137EFC;
    background-image: none;
}

.ss-v5-music .ss-v5-journey-disclaimer {
    margin: 16px auto 0;
    max-width: 640px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.42);
}

/* V5 Music — Every Profit Opportunity Connected */
.ss-v5-mu-profit.ss-v5-safegate {
    background: var(--page-bg);
    overflow: hidden;
}

.ss-v5-mu-profit-copy {
    margin: 0 0 48px;
}

.ss-v5-mu-profit-title {
    margin: 0 0 16px;
    font-family: "Montserrat Bold";
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.8px;
    color: var(--main-text);
    white-space: nowrap;
}

.ss-v5-mu-profit-title-mobi {
    display: none;
}

body.ss-new-homepage-v5 .ss-v5-mu-profit .ss-v5-safegate-subtitle {
    max-width: 52em;
    margin-bottom: 0;
}

.ss-v5-mu-profit .ss-v5-safegate-nav {
    padding-top: 0;
}

.ss-v5-mu-profit-visual {
    position: relative;
    min-width: 0;
    min-height: 480px;
    height: 56vh;
    max-height: 640px;
    overflow: visible;
    background: var(--page-bg);
    isolation: isolate;
}

.ss-v5-mu-profit .ss-v5-safegate-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: contain;
    object-position: center right;
    mix-blend-mode: lighten;
}

.ss-v5-mu-profit .ss-v5-mu-profit-video {
    display: block;
    background: var(--page-bg);
}

.ss-v5-mu-profit .ss-v5-safegate-shot[data-safegate="connected_pos"] {
    width: 138%;
    height: 138%;
    top: -16%;
    right: -10%;
    left: auto;
    bottom: auto;
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-mu-profit .ss-v5-safegate-shot.is-active {
        opacity: 1;
        transform: none;
    }
}

/* V5 Music — Before / During / After the Show */
.ss-v5-mu-before.ss-v5-re-engines {
    --ss-re-engines-count: 3;
    background: #0f0f0f;
}

.ss-v5-mu-before .ss-v5-re-engines-inner {
    padding: 24px 24px 8px;
}

.ss-v5-mu-before .ss-v5-re-engines-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 0.28em;
    margin: 0 0 64px;
    font-family: "Montserrat Regular";
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -1.5px;
    text-transform: none;
}

.ss-v5-mu-before-lead,
.ss-v5-mu-before-tail {
    display: inline-block;
    white-space: nowrap;
}

.ss-v5-mu-before-words {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
    height: 1.16em;
    line-height: 1.16em;
    transition: width 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ss-v5-mu-before-words > span {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ss-v5-mu-before-words > span.is-active {
    opacity: 1;
    transform: translateY(0);
}

.ss-v5-mu-before-words > span.is-leave {
    opacity: 1;
    transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-mu-before-words {
        transition: none;
    }

    .ss-v5-mu-before-words > span {
        transition: none;
        transform: none;
    }

    .ss-v5-mu-before-words > span.is-leave {
        transform: none;
    }
}

.ss-v5-mu-before .ss-v5-re-engines-stage-frame,
.ss-v5-mu-before .ss-v5-re-engines-card {
    border-radius: 24px;
}

.ss-v5-mu-before .ss-v5-re-engines-card {
    background: #000;
    border: 0;
    box-shadow: 0 0 40px color-mix(in srgb, var(--engine-color) 14%, transparent);
}

.ss-v5-mu-before .ss-v5-re-engines-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--engine-color) 92%, #fff) 0%,
        rgba(255, 255, 255, 0.38) 12%,
        rgba(255, 255, 255, 0.08) 36%,
        rgba(255, 255, 255, 0.06) 62%,
        color-mix(in srgb, var(--engine-color) 70%, #127dff) 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 4;
}

.ss-v5-mu-before .ss-v5-re-engines-copy {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    padding: 48px 24px 48px 56px;
}

.ss-v5-mu-before .ss-v5-re-engines-badge {
    position: relative;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 128px;
    height: 102px;
    min-width: 128px;
    min-height: 102px;
    margin-bottom: 40px;
    padding: 12px;
    box-sizing: border-box;
    border: 0;
    border-radius: 14px;
    background: #000;
    text-align: center;
    box-shadow:
        0 0 16px color-mix(in srgb, var(--engine-color) 50%, transparent),
        0 0 32px color-mix(in srgb, var(--engine-color) 22%, transparent);
}

.ss-v5-mu-before .ss-v5-re-engines-badge > * {
    position: relative;
    z-index: 1;
}

.ss-v5-mu-before .ss-v5-re-engines-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--engine-color) 100%, #fff) 0%,
        color-mix(in srgb, var(--engine-color) 55%, #127dff) 48%,
        var(--engine-color) 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.ss-v5-mu-before .ss-v5-re-engines-badge-value {
    font-family: "Montserrat Bold";
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
}

.ss-v5-mu-before .ss-v5-re-engines-badge-label,
body.ss-new-homepage-v5 .ss-v5-mu-before .ss-v5-re-engines-badge-label {
    margin-top: 4px;
    max-width: 100%;
    font-family: "Montserrat Bold";
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
    color: var(--main-text);
}

.ss-v5-mu-before .ss-v5-re-engines-card-title {
    margin: 0 0 14px;
    font-family: "Montserrat Bold";
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -1px;
}

.ss-v5-mu-before .ss-v5-re-engines-card-name {
    margin: 0 0 18px;
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.12em;
    color: var(--engine-color);
    text-transform: uppercase;
}

.ss-v5-mu-before .ss-v5-re-engines-desc,
body.ss-new-homepage-v5 .ss-v5-mu-before .ss-v5-re-engines-desc {
    margin: 0 0 28px;
    max-width: 36em;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.6);
}

.ss-v5-mu-before .ss-v5-re-engines-point {
    margin: 0 0 14px;
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 22px;
}

.ss-v5-mu-before .ss-v5-re-engines-point::before {
    width: 18px;
    height: 18px;
}

.ss-v5-mu-before .ss-v5-re-engines-visual {
    position: relative;
    inset: auto;
    z-index: 1;
    flex: 0 0 auto;
    width: auto;
    height: min(100%, 910px);
    max-width: 988px;
    aspect-ratio: 988 / 910;
    align-self: center;
    margin-left: auto;
    overflow: hidden;
}

.ss-v5-mu-before .ss-v5-re-engines-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    transform: none;
}

/* V5 Music — Full-bleed crowd / More Revenue From Every Fan */
.ss-v5-mu-crowd {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #111;
}

.ss-v5-mu-crowd-bg {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    transform-origin: center center;
    will-change: filter, transform;
}

.ss-v5-mu-crowd::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.22) 0%, rgba(17, 17, 17, 0.04) 26%, rgba(17, 17, 17, 0.08) 55%, rgba(17, 17, 17, 0.42) 100%);
}

.ss-v5-mu-crowd-inner {
    position: absolute;
    top: 44.4%;
    right: 0;
    left: 0;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0 0 7.5%;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-inner {
    pointer-events: auto;
}

.ss-v5-mu-crowd-title {
    margin: 0 0 104px;
    padding: 0 24px;
    font-family: "Montserrat Bold";
    font-size: 64px;
    line-height: 76px;
    letter-spacing: -1.5px;
    color: var(--main-text);
    text-align: center;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    opacity: 0;
}

.ss-v5-mu-crowd-title .ss-v5-accent {
    display: inline-block;
    transform-origin: center 70%;
}

.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-title {
    animation: ss-v5-rise 0.8s ease forwards;
    animation-delay: 0.05s;
}

.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-title .ss-v5-accent {
    animation: ss-v5-biggest-glow 1.1s ease forwards;
}

.ss-v5-mu-crowd-viewport {
    overflow: hidden;
    padding-left: clamp(16px, 16.4vw, 314px);
}

.ss-v5-mu-crowd-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    -webkit-transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ss-v5-mu-crowd-card {
    box-sizing: border-box;
    flex: 0 0 405px;
    width: 405px;
    max-width: 405px;
    opacity: 0;
    transform: translate3d(80px, 40px, 0);
}

.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-card {
    animation: ss-v5-mu-crowd-card-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-card:nth-child(1) { animation-delay: 0.16s; }
.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-card:nth-child(2) { animation-delay: 0.28s; }
.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-card:nth-child(3) { animation-delay: 0.4s; }
.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-card:nth-child(4) { animation-delay: 0.52s; }
.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-card:nth-child(5) { animation-delay: 0.64s; }
.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-card:nth-child(6) { animation-delay: 0.76s; }

.ss-v5-mu-crowd-shot {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 405 / 698;
    background: #090c11;
}

.ss-v5-mu-crowd-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(19, 126, 252, 0.18) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.ss-v5-mu-crowd-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ss-v5-mu-crowd-card-title {
    margin: 20px 0 10px;
    padding-left: 16px;
    font-family: "Montserrat Bold";
    font-size: 22px;
    line-height: 28px;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-mu-crowd-card-body {
    margin: 0;
    padding-left: 16px;
    max-width: 22em;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.ss-v5-mu-crowd-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin-top: 36px;
    padding: 0 clamp(16px, 6.5vw, 126px) 0 clamp(16px, 16.4vw, 314px);
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

.ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-controls {
    animation: ss-v5-mu-crowd-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}

.ss-v5-mu-crowd-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-v5-mu-crowd-dot {
    width: 28px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    -webkit-transition: width 0.3s ease, background 0.3s ease;
    transition: width 0.3s ease, background 0.3s ease;
}

.ss-v5-mu-crowd-dot.is-active {
    width: 56px;
    background: var(--link-color);
}

.ss-v5-mu-crowd-nav {
    display: flex;
    gap: 12px;
}

.ss-v5-mu-crowd-nav button {
    display: flex;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #137EFC;
    cursor: pointer;
}

.ss-v5-mu-crowd-nav button svg {
    display: block;
    width: 56px;
    height: 56px;
}

.ss-v5-mu-crowd-nav button:disabled {
    color: #D6D9DF;
    opacity: 0.6;
    cursor: default;
}

.ss-v5-mu-crowd-nav button:not(:disabled):hover {
    transform: scale(1.04);
}

@keyframes ss-v5-mu-crowd-rise {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes ss-v5-mu-crowd-card-in {
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-mu-crowd-bg {
        filter: none !important;
        transform: none !important;
        will-change: auto;
    }

    .ss-v5-mu-crowd-title,
    .ss-v5-mu-crowd-title .ss-v5-accent,
    .ss-v5-mu-crowd-card,
    .ss-v5-mu-crowd-controls,
    .ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-title,
    .ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-title .ss-v5-accent,
    .ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-card,
    .ss-v5-mu-crowd.is-inview .ss-v5-mu-crowd-controls,
    .ss-v5-mu-crowd-track {
        animation: none !important;
        transition: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

/* V5 Music — Built for Every Kind of Live Music (scroll collage) */
.ss-v5-mu-live {
    position: relative;
    z-index: 1;
    height: 320vh;
    margin-top: -8vh;
    margin-bottom: -42vh;
    background: #EEF2F7;
}

.ss-v5-mu-live-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.ss-v5-mu-live-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    height: 32vh;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #EEF2F7 0%,
        #EEF2F7 67%,
        rgb(255, 255, 255) 68%,
        rgba(238, 242, 247, 0) 100%
    );
}

.ss-v5-mu-live-copy {
    position: absolute;
    top: 7vh;
    left: 50%;
    z-index: 5;
    width: min(640px, 78vw);
    margin: 0;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
    opacity: 0;
}

.ss-v5-mu-live-title {
    margin: 0 0 12px;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: #08080A;
    text-align: center;
}

.ss-v5-mu-live-title > span{
    font-family: "Montserrat Bold";
}

body.ss-new-homepage-v5 .ss-v5-mu-live-sub {
    margin: 0 auto;
    max-width: 36em;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.55);
    text-align: center;
}

.ss-v5-mu-live-masonry {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 28px 72px;
    width: min(1680px, 96vw);
    height: 100%;
    margin: 0 auto;
    padding: 18vh 24px 0;
    box-sizing: border-box;
}

.ss-v5-mu-live-col {
    flex: 1 1 0;
    min-width: 0;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    will-change: transform;
}

.ss-v5-mu-live-col-shift {
    padding-top: 14vh;
}

.ss-v5-mu-live-card {
    position: relative;
    width: 520px;
    max-width: 100%;
    height: auto;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #d7dde6;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
    aspect-ratio: 520 / 350;
    box-sizing: border-box;
}

.ss-v5-mu-live-card-1 { aspect-ratio: 520 / 350; }
.ss-v5-mu-live-card-2 { aspect-ratio: 520 / 365; }
.ss-v5-mu-live-card-3 { aspect-ratio: 520 / 390; }
.ss-v5-mu-live-card-4 { aspect-ratio: 520 / 410; }
.ss-v5-mu-live-card-5 { aspect-ratio: 520 / 360; }
.ss-v5-mu-live-card-6 { aspect-ratio: 520 / 370; }
.ss-v5-mu-live-card-7 { aspect-ratio: 520 / 390; }
.ss-v5-mu-live-card-8 { aspect-ratio: 520 / 390; }

.ss-v5-mu-live-card img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.ss-v5-mu-live-label {
    position: absolute;
    left: 14px;
    bottom: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font-family: "Montserrat Bold";
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: normal;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-mu-live {
        height: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .ss-v5-mu-live-sticky {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .ss-v5-mu-live-copy {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: min(720px, 86vw);
        margin: 0 auto;
        padding: 72px 24px 8px;
        opacity: 1;
        pointer-events: auto;
    }

    .ss-v5-mu-live-col,
    .ss-v5-mu-live-card img {
        transform: none !important;
        will-change: auto;
    }
}

/* V5 Music — All Your Revenue Streams (full-bleed video) */
.ss-v5-mu-streams {
    position: relative;
    z-index: 2;
    height: 100vh;
    background: #000;
}

.ss-v5-mu-streams-pin {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.ss-v5-mu-streams-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.ss-v5-mu-streams-pin::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.18) 100%);
}

.ss-v5-mu-streams-title {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    justify-items: center;
    align-items: center;
    width: min(92vw, 1080px);
    margin: 0;
    padding: 10px 0 14px;
    font-family: "Montserrat Bold";
    font-size: 64px;
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: var(--main-text);
    text-align: center;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ss-v5-mu-streams-line,
.ss-v5-mu-streams-connected {
    grid-area: 1 / 1;
    align-self: center;
    display: block;
    margin: 0;
    opacity: var(--ss-mu-o, 0);
    filter: blur(var(--ss-mu-blur, 16px));
    transform: translate3d(0, var(--ss-mu-y, 28vh), 0);
    will-change: transform, opacity, filter;
}

.ss-v5-mu-streams-connected {
    color: #ffffff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-mu-streams-line,
    .ss-v5-mu-streams-connected {
        position: relative;
        grid-area: auto;
        opacity: 1;
        filter: none;
        transform: none;
        will-change: auto;
    }

    .ss-v5-mu-streams-connected {
        margin-top: 8px;
    }
}

/* V5 Music — Testimonial */
.ss-v5-mu-quote {
    padding: 80px clamp(24px, 10vw, 192px) 96px;
    background: var(--page-bg);
}

.ss-v5-mu-quote-frame {
    position: relative;
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 32px;
    overflow: hidden;
    background: #050505;
}

.ss-v5-mu-quote-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(173, 181, 194, 0.48) 0%, rgba(173, 181, 194, 0.12) 36%, rgba(173, 181, 194, 0.08) 58%, rgba(173, 181, 194, 0.48) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

.ss-v5-mu-quote-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.ss-v5-mu-quote-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
}

.ss-v5-mu-quote-copy {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    box-sizing: border-box;
    width: min(100%, 980px);
    padding: 48px clamp(28px, 5vw, 80px) clamp(40px, 6.5vw, 88px) clamp(32px, 11.5vw, 220px);
}

.ss-v5-mu-quote-mark {
    display: block;
    margin-bottom: 16px;
}

.ss-v5-mu-quote-mark svg {
    display: block;
}

.ss-v5-mu-quote-text {
    margin: 0 0 16px;
    font-family: "Montserrat Bold";
    font-size: 36px;
    line-height: 1.22;
    letter-spacing: -0.6px;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-mu-quote-body {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--desc-text);
}

body.ss-new-homepage-v5 .ss-v5-mu-quote-name {
    margin: 0 0 4px;
    font-family: "Montserrat Bold";
    font-size: 18px;
    line-height: 1.3;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-mu-quote-role {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--desc-text);
}

/* V5 Music — Energy graphic / More Than Software */
.ss-v5-mu-energy {
    --ss-mu-energy-p: 0;
    position: relative;
    background: #05070c;
}

.ss-v5-mu-energy-track {
    height: auto;
}

.ss-v5-mu-energy-pin {
    position: relative;
    height: auto;
    min-height: 1265px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 96px;
}

.ss-v5-mu-energy-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    z-index: 0;
    pointer-events: none;
}

.ss-v5-mu-energy-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.55) 100%);
}

.ss-v5-mu-energy-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.ss-v5-mu-energy-reveal {
    --reveal-from: 0;
    --reveal-to: 0.2;
    opacity: clamp(0, calc((var(--ss-mu-energy-p) - var(--reveal-from)) / (var(--reveal-to) - var(--reveal-from))), 1);
    transform: translate3d(0, calc((1 - clamp(0, calc((var(--ss-mu-energy-p) - var(--reveal-from)) / (var(--reveal-to) - var(--reveal-from))), 1)) * 28px), 0);
    will-change: opacity, transform;
}

.ss-v5-mu-energy-title {
    margin: 0 0 16px;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.14;
    letter-spacing: -1.4px;
    color: var(--main-text);
}

.ss-v5-mu-energy-line {
    display: block;
}

.ss-v5-mu-energy-line:first-child {
    --reveal-from: 0;
    --reveal-to: 0.18;
}

.ss-v5-mu-energy-line:last-child {
    --reveal-from: 0.1;
    --reveal-to: 0.3;
}

body.ss-new-homepage-v5 .ss-v5-mu-energy-sub {
    --reveal-from: 0.22;
    --reveal-to: 0.4;
    margin: 0 auto 56px;
    max-width: 36em;
    font-size: 18px;
    line-height: 1.5;
    color: var(--desc-text);
}

.ss-v5-mu-energy-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ss-v5-mu-energy-card {
    position: relative;
    box-sizing: border-box;
    min-height: 248px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(10, 12, 18, 0.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-align: left;
}

.ss-v5-mu-energy-card:nth-child(1) {
    --reveal-from: 0.34;
    --reveal-to: 0.52;
}

.ss-v5-mu-energy-card:nth-child(2) {
    --reveal-from: 0.42;
    --reveal-to: 0.6;
}

.ss-v5-mu-energy-card:nth-child(3) {
    --reveal-from: 0.5;
    --reveal-to: 0.68;
}

.ss-v5-mu-energy-card:nth-child(4) {
    --reveal-from: 0.58;
    --reveal-to: 0.76;
}

.ss-v5-mu-energy-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(173, 181, 194, 0.48) 0%, rgba(173, 181, 194, 0.12) 38%, rgba(173, 181, 194, 0.1) 62%, rgba(173, 181, 194, 0.4) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.ss-v5-mu-energy-icon {
    display: block;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    object-fit: contain;
    object-position: left center;
}

.ss-v5-mu-energy-icon.is-plain {
    box-sizing: border-box;
    width: 52px;
    height: 52px;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 7px;
    border: 1px solid #137EFC;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
}

.ss-v5-mu-energy-card-title {
    margin: 0 0 10px;
    font-family: "Montserrat Bold";
    font-size: 20px;
    line-height: 1.3;
    color: var(--main-text);
}

body.ss-new-homepage-v5 .ss-v5-mu-energy-card-body {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--desc-text);
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-mu-energy {
        --ss-mu-energy-p: 1;
    }

    .ss-v5-mu-energy-track {
        height: auto;
    }

    .ss-v5-mu-energy-pin {
        position: relative;
        height: auto;
        min-height: 100vh;
    }

    .ss-v5-mu-energy-reveal {
        opacity: 1;
        transform: none;
        will-change: auto;
    }

    .ss-v5-mu-energy-bg {
        top: 0;
        height: 100%;
        transform: none !important;
        will-change: auto;
    }
}

/* V5 Music — Attention / Action / Revenue (sound wave) */
.ss-v5-mu-wave {
    --ss-mu-wave-p: 0;
    --ss-mu-wave-ready: 1;
    position: relative;
    background: #000;
}

.ss-v5-mu-wave-track {
    height: 280vh;
}

.ss-v5-mu-wave-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.ss-v5-mu-wave-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ss-v5-mu-wave-still {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center calc(var(--ss-mu-wave-p) * 100%);
    pointer-events: none;
}

.ss-v5-mu-wave-copy {
    position: relative;
    z-index: 3;
    height: 100%;
    pointer-events: none;
}

.ss-v5-mu-wave-reveal {
    --in-from: 0;
    --in-to: 0.12;
    --out-from: 1;
    --out-to: 1.2;
    margin: 0;
    opacity: calc(
        var(--ss-mu-wave-ready) *
        min(
            clamp(0, calc((var(--ss-mu-wave-p) - var(--in-from)) / (var(--in-to) - var(--in-from))), 1),
            clamp(0, calc((var(--out-to) - var(--ss-mu-wave-p)) / (var(--out-to) - var(--out-from))), 1)
        )
    );
    will-change: opacity, transform;
}

.ss-v5-mu-wave-lead {
    --in-from: -1;
    --in-to: -0.5;
    --out-from: 0.16;
    --out-to: 0.3;
    position: absolute;
    top: 36%;
    left: 50%;
    width: min(92vw, 1120px);
    margin: 0;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.14;
    letter-spacing: -1.4px;
    color: var(--main-text);
    text-align: center;
    transform: translate3d(-50%, calc((1 - var(--ss-mu-wave-ready)) * 28px), 0);
}

.ss-v5-mu-wave-line {
    display: block;
}

.ss-v5-mu-wave-step {
    position: absolute;
    font-family: "Montserrat Regular";
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #ffffff;
}

body.ss-new-homepage-v5 .ss-v5-mu-wave-step {
    color: #ffffff;
}

.ss-v5-mu-wave-step.is-attention {
    --in-from: 0.04;
    --in-to: 0.14;
    --out-from: 0.18;
    --out-to: 0.32;
    top: auto;
    bottom: 4%;
    left: 25.4%;
}

.ss-v5-mu-wave-step.is-action {
    --in-from: 0.28;
    --in-to: 0.4;
    --out-from: 0.48;
    --out-to: 0.6;
    top: 39.2%;
    left: 50%;
    transform: translateX(-50%);
}

.ss-v5-mu-wave-step.is-revenue {
    --in-from: 0.4;
    --in-to: 0.52;
    --out-from: 0.56;
    --out-to: 0.68;
    top: 46.1%;
    left: 70.2%;
}

.ss-v5-mu-wave-closer {
    --in-from: 0.7;
    --in-to: 0.84;
    --out-from: 1.05;
    --out-to: 1.2;
    position: absolute;
    top: 36%;
    left: 50%;
    width: min(92vw, 1100px);
    font-family: "Montserrat Bold";
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--main-text);
    text-align: center;
    transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-mu-wave-reveal {
        opacity: 1;
        will-change: auto;
    }

    .ss-v5-mu-wave-lead {
        opacity: 1;
        transform: translateX(-50%);
    }
}

/* V5 Music — Calculator CTA */
.ss-v5-mu-cta {
    --ss-mu-cta-p: 0;
    position: relative;
    background: #05070c;
}

#calculator.ss-v5-mu-cta {
    scroll-margin-top: 0;
}

.ss-v5-mu-cta-track {
    height: 200vh;
}

.ss-v5-mu-cta-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.ss-v5-mu-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    pointer-events: none;
}

.ss-v5-mu-cta-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0) 68%);
}

.ss-v5-mu-cta-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding: 132px 24px 96px;
}

.ss-v5-mu-cta-copy {
    max-width: 860px;
}

.ss-v5-mu-cta-reveal {
    --reveal-from: 0;
    --reveal-to: 0.2;
    opacity: clamp(0, calc((var(--ss-mu-cta-p) - var(--reveal-from)) / (var(--reveal-to) - var(--reveal-from))), 1);
    transform: translate3d(0, calc((1 - clamp(0, calc((var(--ss-mu-cta-p) - var(--reveal-from)) / (var(--reveal-to) - var(--reveal-from))), 1)) * 28px), 0);
    will-change: opacity, transform;
}

.ss-v5-mu-cta-title {
    margin: 0 0 20px;
    font-family: "Montserrat Bold";
    font-size: 56px;
    line-height: 1.14;
    letter-spacing: -1.4px;
    color: var(--main-text);
}

.ss-v5-mu-cta-line {
    display: block;
}

.ss-v5-mu-cta-line:first-child {
    --reveal-from: 0;
    --reveal-to: 0.18;
}

.ss-v5-mu-cta-line:last-child {
    --reveal-from: 0.1;
    --reveal-to: 0.3;
}

body.ss-new-homepage-v5 .ss-v5-mu-cta-sub {
    --reveal-from: 0.22;
    --reveal-to: 0.4;
    margin: 0 0 28px;
    max-width: 520px;
    font-family: "Montserrat Regular";
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #ffffff;
}

.ss-v5-mu-cta-btn {
    --reveal-from: 0.34;
    --reveal-to: 0.52;
    text-transform: uppercase;
}

.ss-v5-mu-cta-demo {
    position: absolute;
    left: 50%;
    bottom: 48px;
    z-index: 3;
    transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-mu-cta {
        --ss-mu-cta-p: 1;
    }

    .ss-v5-mu-cta-track {
        height: auto;
    }

    .ss-v5-mu-cta-pin {
        position: relative;
        height: auto;
        min-height: 100vh;
    }

    .ss-v5-mu-cta-reveal {
        opacity: 1;
        transform: none;
        will-change: auto;
    }
}

/* SS UI V6 bug fixes */
.ss-v4-menu .menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
}

.ss-v4-menu .menu li {
    float: none;
    flex-shrink: 0;
}

.ss-v4-menu .menu li a {
    font-size: 14px;
    padding: 0 16px;
    white-space: nowrap;
}

.ss-logo-v4 img {
    width: 200px;
}

.ss-home-v5 .ss-intro-content {
    text-align: left;
}

.ss-home-v5 .ss-intro-content .ss-v5-hero-subtitle {
    text-align: left;
    max-width: 920px;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head:not(.ss-v5-mu-hero) .ss-v5-hero-title,body.ss-new-homepage-v5 .ss-home-v5>.ss-banner-head:not(.ss-v5-mu-hero) .ss-v5-hero-title span {
    font-family: "Montserrat Bold";
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head:not(.ss-v5-mu-hero) .ss-v5-hero-overline {
    color: #137EFC;
}

body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head:not(.ss-v5-mu-hero) .ss-v5-hero-subtitle {
    font-family: "Montserrat Regular";
    font-weight: 400;
}

.ss-home-v5 .ss-intro-content .ss-v5-hero-accent,
body.ss-new-homepage-v5 .ss-v5-hero-reveal .ss-v5-hero-line.ss-v5-hero-accent {
    color: #137EFC;
}

.ss-home-v5 .ss-intro-content .ss-v5-hero-cta.ss-v4-btn-main-white {
    height: auto;
    min-height: 64px;
    padding: 18px 40px;
    font-size: 24px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.4px;
}

body.ss-new-homepage-v5 .ss-v5-hero-pin video.ss-video-bg {
    transform-origin: center center;
}

.ss-v5-platform-stage {
    position: relative;
    margin: 0 auto 64px;
}

.ss-v5-one-platform .ss-v5-platform-stage {
    max-width: 1200px;
}

.ss-v5-one-platform .ss-v5-platform-video-wrap {
    max-width: 100%;
    margin: 0;
    background: #121212;
}

.ss-v5-re-hero .ss-v5-platform-stage {
    max-width: 1200px;
    width: 100%;
    margin-bottom: 48px;
}

.ss-v5-re-hero .ss-v5-re-hero-visual {
    max-width: 100%;
    width: 100%;
    margin: 0;
    background: #121212;
    isolation: isolate;
    min-height: 600px;
}

.ss-v5-re-hero .ss-v5-platform-stage .ss-v5-glass-nav {
    margin-top: -80px;
}

.ss-v5-re-hero .ss-v5-glass-copy {
    position: relative;
    z-index: 3;
    margin-top: 48px;
}

.ss-v5-platform-stage .ss-v5-glass-nav {
    position: relative;
    z-index: 3;
    max-width: 100%;
    margin: -72px auto 0;
    background: #000;
}

.ss-v5-glass-nav {
    background: #000;
}

.ss-v5-glass-label {
    font-size: 14px;
    line-height: 18px;
    max-width: 110px;
}

.ss-v5-every-fan {
    padding-top: 48px;
}

.ss-v5-journey-line {
    height: 2px;
    background: #FFFFFF;
    box-shadow:
        0 0 3px #FFFFFF,
        0 0 8px #137EFC,
        0 0 16px #137EFC,
        0 0 28px rgba(19, 126, 252, 0.85);
}

.ss-v5-journey-node {
    background: #000;
    box-shadow: none;
}

.ss-v5-biggest-problem.is-inview .ss-v5-biggest-word {
    animation: ss-v5-biggest-glow 1.1s ease forwards;
}

@keyframes ss-v5-biggest-glow {
    0% { opacity: 0; transform: scale(0.88); text-shadow: none; }
    60% { opacity: 1; transform: scale(1.06); text-shadow: 0 0 28px rgba(19, 126, 252, 0.55); }
    100% { opacity: 1; transform: scale(1); text-shadow: 0 0 18px rgba(19, 126, 252, 0.35); }
}

.ss-v5-calc-title-line {
    display: block;
}

body.ss-new-homepage-v5 .ss-v5-calc-subtitle {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.4;
}

body.ss-new-homepage-v5 .ss-v5-calc-form-cta {
    text-align: center;
    font-size: 24px;
}

.ss-v5-calc-opportunity-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
}

.ss-v5-calc-opportunity-copy {
    grid-column: 1 / 3;
}

body.ss-new-homepage-v5 .ss-v5-calc-opportunity-amount {
    grid-column: 3;
    justify-content: flex-start;
    text-align: left;
}

.ss-v5-calculator {
    position: relative;
}

.ss-v5-calc-float-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 64px;
    padding: 64px 16px 8px;
    pointer-events: none;
}

.ss-v5-calc-float {
    position: relative;
    z-index: 8;
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 32px);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 auto;
    padding: 6px 6px 6px 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(29, 29, 31, 0.62);
    color: #fff;
    font-family: "Montserrat Bold";
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    pointer-events: auto;
    will-change: transform;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ss-v5-calc-float-label {
    line-height: 1.2;
    color: #fff;
}

.ss-v5-calc-float-icon {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #137EFC;
    box-shadow: 0 4px 12px rgba(19, 126, 252, 0.35);
}

.ss-v5-calc-float-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -1px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-60%, -50%) rotate(-45deg);
}

.ss-v5-calc-float.is-floating {
    position: fixed;
    left: 50%;
    top: 0;
    right: auto;
    bottom: auto;
    margin: 0;
    background: rgba(29, 29, 31, 0.72);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.ss-v5-calc-float:hover {
    color: #fff;
    background: rgba(29, 29, 31, 0.82);
    border-color: rgba(255, 255, 255, 0.22);
}

.ss-v5-calc-float.is-floating,
.ss-v5-calc-float.is-floating:hover {
    transform: translate3d(-50%, var(--ss-v5-calc-float-y, 0px), 0);
}

.ss-v5-calc-float:hover .ss-v5-calc-float-icon {
    background: #0A3CBA;
}

@media (prefers-reduced-motion: reduce) {
    .ss-v5-calc-float,
    .ss-v5-calc-float.is-floating {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        will-change: auto;
    }
}

body.ss-new-homepage-v5 .ss-v5-calc-opportunity-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

body.ss-new-homepage-v5 .ss-v5-calc-opportunity-desc {
    margin: 0;
    max-width: 420px;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

body.ss-new-homepage-v5 #calculator .ss-v5-calc-opportunity-amount {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
}

.progress-wrap {
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.progress-bar::before {
    width: 20px;
    height: 20px;
    right: -10px;
    border: 2px solid #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.mt-96px{
    margin-top: 96px;
}

.ss-v5-solve.is-layered .ss-v5-solve-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.ss-v5-event-needs {
    background: #000000;
}

.ss-v5-needs-panel {
    background: #0E1016;
    border-color: #333B4F;
}

.ss-v5-needs-grid {
    grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
}

.ss-v5-needs-item-title {
    font-size: 28px;
}

.ss-v5-needs-features {
    font-size: 16px;
}

.ss-v5-connected-media img {
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.ss-v5-footer-trust-item img {
    object-fit: contain;
    object-position: center;
    height: 56px;
    max-height: 56px;
    width: auto;
    margin: 0 auto;
}

.ss-v5-re-hero {
    background: #121212;
}

.ss-v5-re-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    padding: 16px 32px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: #fff;
    color: #202020;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Montserrat Bold";
}

.ss-v5-re-hero-cta:hover {
    color: #202020;
    background: #fff;
    border-color: #fff;
}

.ss-v5-re-every-stream {
    margin-top: -1px;
}

.ss-v5-re-engines {
    background: linear-gradient(to bottom, #00030a 0, var(--page-bg) 72px, var(--page-bg));
}

.ss-v5-revenue-engines .ss-v5-re-engines-head {
    padding: 112px 24px 40px;
    text-align: center;
}

.pl-8px{
    padding-left: 8px;
}

.ss-v5-re-seats.ss-v5-safegate,
.ss-v5-re-leaks.ss-v5-safegate {
    background: #111111;;
}

.ss-v5-re-command {
    background: #010104;
}

/* .ss-v5-re-engines-item.is-active {
    background: color-mix(in srgb, var(--engine-color) 16%, transparent);
    border-radius: 16px;
} */

.ss-v5-re-engines-card.is-active {
    animation: ss-v5-rise 0.55s ease;
}

.ss-v5-re-engines-inner {
    padding-top: 64px;
}

.ss-v5-re-engines-item {
    width: 132px;
}

.ss-v5-re-engines-label {
    width: 120px;
    min-height: 36px;
    color: rgba(255, 255, 255, 0.78);
}

.ss-v5-re-engines-item.is-active .ss-v5-re-engines-label {
    color: #fff;
}

.ss-v5-re-engines-visual img {
    object-fit: contain;
    object-position: center;
}

.ss-v5-re-seats .ss-v5-safegate-item-title,
.ss-v5-re-leaks .ss-v5-safegate-item-title {
    color: #fff;
}

.ss-v5-re-leaks.is-copy-in .ss-v5-safegate-item {
    animation: ss-v5-rise 0.7s ease forwards;
}

/* Home desktop fonts: ≥1680 = spec × 0.88; 1101–1679 = that size × 0.88.
   14/16/18px and Experts Say quote/body/name/role stay unchanged. */

/* Revenue Engines desktop fonts: ≥1680 = spec × 0.88; 1101–1679 = that size × 0.88.
   14/16/18px stay unchanged. */

/* Music desktop fonts: ≥1680 = spec × 0.88; 1101–1679 = that size × 0.88.
   14/16/18px stay unchanged. */

/* Revenue Optimization Breakdown popup (v5) */
.ss-v5-breakdown-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200000;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 8, 16, 0.72);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.ss-v5-breakdown-overlay.is-open {
    display: flex;
}

body.ss-block-scroll {
    height: 100vh;
    overflow: hidden;
}

.ss-v5-breakdown-dialog.ss-fake-border-popup-v5 {
    display: flex;
    flex-direction: column;
    width: min(1120px, calc(100vw - 48px));
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-top: auto;
    margin-bottom: auto;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(156.52deg, rgba(255, 255, 255, 0.4) 2.12%, rgba(255, 255, 255, 0.0001) 39%, rgba(255, 255, 255, 0.0001) 54.33%, rgba(255, 255, 255, 0.1) 93.02%);
    overflow: hidden;
}

.ss-v5-breakdown-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 32px 36px 28px;
    overflow: visible;
    border-radius: 16px;
    background: #0c1018 !important;
    opacity: 1 !important;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
}

.ss-v5-breakdown-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 240px;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(19, 126, 252, 0.18) 0%, rgba(19, 126, 252, 0) 70%);
}

.ss-v5-breakdown-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.ss-v5-breakdown-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
    gap: 24px;
    margin: 0 40px 28px 0;
    min-width: 0;
}

.ss-v5-breakdown-copy {
    max-width: 640px;
    min-width: 0;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-eyebrow {
    margin: 0 0 10px;
    font-family: "Montserrat Bold";
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #137EFC;
}

.ss-v5-breakdown-title {
    margin: 0 0 12px;
    font-family: "Montserrat Bold";
    font-size: 42px;
    line-height: 1.15;
    color: #F7FAFF;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-subtitle {
    margin: 0;
    font-family: "Montserrat Regular";
    font-size: 16px;
    line-height: 1.45;
    color: #9CA6BA;
}

.ss-v5-breakdown-stat {
    flex-shrink: 0;
    min-width: 168px;
    padding: 14px 18px;
    border: 1px solid #137EFC;
    border-radius: 10px;
    text-align: left;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-stat-value {
    margin: 0 0 4px;
    font-family: "Montserrat Bold";
    font-size: 28px;
    line-height: 1.1;
    color: #137EFC;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-stat-label {
    margin: 0;
    font-family: "Montserrat Regular";
    font-size: 13px;
    line-height: 1.3;
    color: #9CA6BA;
}

.ss-v5-breakdown-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 0;
    overflow: visible;
}

.ss-v5-breakdown-card {
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 22px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(16, 20, 30, 0.72);
}

.ss-v5-breakdown-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.ss-v5-breakdown-step {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #137EFC;
    color: #fff;
    font-family: "Montserrat Bold";
    font-size: 12px;
    line-height: 1;
}

.ss-v5-breakdown-card-copy {
    min-width: 0;
}

.ss-v5-breakdown-card-title {
    margin: 0 0 4px;
    font-family: "Montserrat Bold";
    font-size: 22px;
    line-height: 1.25;
    color: #F7FAFF;
    overflow-wrap: anywhere;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-card-desc {
    margin: 0;
    font-family: "Montserrat Regular";
    font-size: 13px;
    line-height: 1.4;
    color: #9CA6BA;
}

.ss-v5-breakdown-form {
    display: grid;
    gap: 14px;
}

.ss-v5-breakdown-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.ss-v5-breakdown-field > span,
.ss-v5-breakdown-field span:first-child {
    font-family: "Montserrat Regular";
    font-size: 13px;
    line-height: 1.3;
    color: #9CA6BA;
    white-space: normal;
    overflow-wrap: anywhere;
}

.ss-v5-breakdown-field.is-required > span::after {
    content: " *";
    color: #137EFC;
}

.ss-v5-breakdown-field input,
.ss-v5-breakdown-field select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.8);
    color: #fff;
    font-family: "Montserrat Regular";
    font-size: 13px;
    outline: none;
}

.ss-v5-breakdown-field select {
    padding-right: 36px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA6BA' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.ss-v5-breakdown-field select option {
    color: #111;
    background: #fff;
}

.ss-v5-breakdown-field input::placeholder {
    color: #9CA6BA;
}

.ss-v5-breakdown-field input:focus,
.ss-v5-breakdown-field select:focus,
.ss-v5-breakdown-field-split.is-focused .ss-v5-breakdown-split {
    border-color: #137EFC;
}

.ss-v5-breakdown-split {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.8);
}

.ss-v5-breakdown-split input,
.ss-v5-breakdown-field-split input {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.ss-v5-breakdown-split-sep {
    flex: 0 0 auto;
    padding: 0 10px;
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 1;
    color: #F7FAFF;
    pointer-events: none;
}

.ss-v5-breakdown-field.is-invalid input,
.ss-v5-breakdown-field.is-invalid input:focus,
.ss-v5-breakdown-field.is-invalid select,
.ss-v5-breakdown-field.is-invalid select:focus,
.ss-v5-breakdown-field.is-invalid .ss-v5-breakdown-split {
    border-color: #FF5C5C;
}

.ss-v5-breakdown-error {
    display: none;
    margin: 0;
    font-family: "Montserrat Regular";
    font-size: 12px;
    line-height: 1.3;
    color: #FF5C5C;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-error {
    color: #FF5C5C;
}

.ss-v5-breakdown-field.is-invalid .ss-v5-breakdown-error,
.ss-v5-breakdown-times.is-invalid .ss-v5-breakdown-times-error {
    display: block;
}

.ss-v5-breakdown-optional-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 10px 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.ss-v5-breakdown-optional-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ss-v5-breakdown-optional-title {
    font-family: "Montserrat Bold";
    font-size: 14px;
    line-height: 1.3;
    color: #F7FAFF;
}

.ss-v5-breakdown-optional-desc {
    font-family: "Montserrat Regular";
    font-size: 12px;
    line-height: 1.35;
    color: #9CA6BA;
}

.ss-v5-breakdown-optional-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA6BA' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.ss-v5-breakdown-optional.is-open .ss-v5-breakdown-optional-chevron {
    transform: rotate(180deg);
}

.ss-v5-breakdown-optional-fields {
    display: grid;
    gap: 14px;
    padding-bottom: 4px;
}

.ss-v5-breakdown-optional-fields[hidden] {
    display: none;
}

.ss-v5-breakdown-note {
    padding: 12px 14px;
    border: 1px solid rgba(19, 126, 252, 0.7);
    border-radius: 10px;
}

.ss-v5-breakdown-note-copy {
    margin: 0;
    font-family: "Montserrat Regular";
    font-size: 12px;
    line-height: 1.45;
    color: #9CA6BA;
    white-space: normal;
    overflow-wrap: anywhere;
}

.ss-v5-breakdown-note-lead {
    font-family: "Montserrat Bold";
    font-size: 13px;
    color: #137EFC;
}

.ss-v5-breakdown-note-sep {
    color: rgba(156, 166, 186, 0.7);
}

.ss-v5-breakdown-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    margin-top: 4px;
    border: 0;
    background: #137EFC;
    color: #fff;
    font-size: 13px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.06em;
}

.ss-v5-breakdown-submit-arrow {
    width: 14px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath d='M1 5h12M8.5 1.5L12.5 5L8.5 8.5' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.ss-v5-breakdown-submit:hover {
    background: #0A3CBA;
    color: #fff;
}

.ss-v5-breakdown-cal,
.ss-v5-breakdown-cal .ui-datepicker,
.ss-v5-breakdown-cal .ui-datepicker-inline {
    width: 100% !important;
    max-width: 100%;
    padding: 0;
    display: block;
    border: 0;
    background: transparent;
    font-family: "Montserrat Regular";
    color: #F7FAFF;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.ss-v5-breakdown-cal .ui-datepicker-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 4px 40px;
    border: 0;
    background: transparent;
}

.ss-v5-breakdown-cal .ui-datepicker-title {
    font-family: "Montserrat Bold";
    font-size: 16px;
    line-height: 1.2;
    color: #F7FAFF;
}

.ss-v5-breakdown-cal .ui-datepicker-prev,
.ss-v5-breakdown-cal .ui-datepicker-next {
    position: absolute;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.ss-v5-breakdown-cal .ui-datepicker-prev,
.ss-v5-breakdown-cal .ui-datepicker-prev:hover {
    left: 0;
    top: 50%;
}

.ss-v5-breakdown-cal .ui-datepicker-next,
.ss-v5-breakdown-cal .ui-datepicker-next:hover {
    right: 0;
    left: auto;
    top: 50%;
}

.ss-v5-breakdown-cal .ui-datepicker-prev.ui-state-disabled,
.ss-v5-breakdown-cal .ui-datepicker-next.ui-state-disabled {
    opacity: 0.35;
    cursor: default;
}

.ss-v5-breakdown-cal .ui-datepicker-prev span,
.ss-v5-breakdown-cal .ui-datepicker-next span {
    display: none;
}

.ss-v5-breakdown-cal .ui-datepicker-prev::after,
.ss-v5-breakdown-cal .ui-datepicker-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #F7FAFF;
    border-bottom: 2px solid #F7FAFF;
}

.ss-v5-breakdown-cal .ui-datepicker-prev::after {
    transform: translate(-30%, -50%) rotate(135deg);
}

.ss-v5-breakdown-cal .ui-datepicker-next::after {
    transform: translate(-70%, -50%) rotate(-45deg);
}

.ss-v5-breakdown-cal .ui-datepicker-calendar {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}

.ss-v5-breakdown-cal .ui-datepicker th {
    padding: 8px 0;
    font-family: "Montserrat Bold";
    font-size: 12px;
    font-weight: 400;
    color: #9CA6BA;
    text-align: center;
}

.ss-v5-breakdown-cal .ui-datepicker td {
    padding: 2px;
    height: 44px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.ss-v5-breakdown-cal .ui-datepicker td a,
.ss-v5-breakdown-cal .ui-datepicker td span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    min-height: 40px;
    box-sizing: border-box;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #F7FAFF;
    font-family: "Montserrat Regular";
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    pointer-events: none;
}

.ss-v5-breakdown-cal .ui-datepicker-unselectable,
.ss-v5-breakdown-cal td.ui-state-disabled {
    cursor: default;
}

.ss-v5-breakdown-cal .ui-datepicker-other-month a,
.ss-v5-breakdown-cal .ui-datepicker-other-month span,
.ss-v5-breakdown-cal .ui-datepicker-unselectable span,
.ss-v5-breakdown-cal td.ui-state-disabled span {
    color: rgba(156, 166, 186, 0.45);
}

.ss-v5-breakdown-cal .ui-datepicker-today a {
    box-shadow: inset 0 0 0 1px rgba(19, 126, 252, 0.45);
}

.ss-v5-breakdown-cal .ui-datepicker-current-day a,
.ss-v5-breakdown-cal .ui-datepicker td a.ui-state-active {
    background: #137EFC;
    color: #fff;
}

.ss-v5-breakdown-picked {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid #137EFC;
    border-radius: 10px;
}

.ss-v5-breakdown-picked-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #137EFC;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.2L4.2 8.4L11 1.6' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-picked-date {
    margin: 0 0 2px;
    font-family: "Montserrat Bold";
    font-size: 14px;
    line-height: 1.3;
    color: #F7FAFF;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-picked-hint {
    margin: 0;
    font-family: "Montserrat Regular";
    font-size: 12px;
    line-height: 1.35;
    color: #9CA6BA;
}

.ss-v5-breakdown-times {
    margin-top: 18px;
}

.ss-v5-breakdown-times-head {
    margin-bottom: 10px;
}

.ss-v5-breakdown-times-title {
    margin: 0 0 4px;
    font-family: "Montserrat Bold";
    font-size: 14px;
    line-height: 1.3;
    color: #F7FAFF;
}

.ss-v5-breakdown-times-date {
    margin: 0;
    font-family: "Montserrat Regular";
    font-size: 12px;
    line-height: 1.35;
    color: #9CA6BA;
}

.ss-v5-breakdown-times-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.ss-v5-breakdown-time {
    height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(8, 11, 18, 0.8);
    color: #F7FAFF;
    font-family: "Montserrat Regular";
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
}

.ss-v5-breakdown-time:hover {
    border-color: rgba(19, 126, 252, 0.7);
}

.ss-v5-breakdown-time.is-selected {
    border-color: #137EFC;
    background: #137EFC;
    color: #fff;
}

.ss-v5-breakdown-times-error {
    margin-top: 8px;
}

.ss-v5-breakdown-times.is-invalid .ss-v5-breakdown-times-grid {
    outline: 1px solid rgba(255, 92, 92, 0.7);
    outline-offset: 4px;
    border-radius: 8px;
}

body.ss-new-homepage-v5 .ss-v5-breakdown-tz {
    margin: 12px 0 0;
    font-family: "Montserrat Regular";
    font-size: 12px;
    line-height: 1.4;
    color: #9CA6BA;
}
.ss-space-section{
    width: 100%;
    height: 96px;
    background: #111111;
}

.ss-fix-width{
    display: flex;
    justify-content: flex-end;
}

.ss-fix-width .ss-v5-mu-energy-cards{
    max-width: 990px;
}

.ss-dektop-hidden{
    display: none;
}

.ss-mb-content{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.ss-bg-space{
    width: 100%;
    height: 160px;
    background: #050709;
}

.ss-mon-bold {
    font-family: "Montserrat Bold" !important;
}

/* Responsive: screen queries large → small. max-width 768px and below last. */

@media screen and (min-width: 1680px) {
    .ss-home-v5 .ss-intro-content .ss-v5-hero-overline {
        font-size: 22px;
        line-height: 28px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-title {
        font-size: 81px;
        line-height: 92px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-subtitle {
        font-size: 28px;
        line-height: 35px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head .ss-v5-hero-body {
        font-size: 20px;
        line-height: 28px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-invitation {
        font-size: 28px;
        line-height: 35px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-cta.ss-v4-btn-main-white {
        font-size: 21px !important;
        line-height: 1.2 !important;
    }

    .ss-v5-platform-title {
        font-size: 70px;
        line-height: 77px;
    }

    .ss-v5-platform-subtitle {
        font-size: 21px;
        line-height: 28px;
    }

    .ss-v5-glass-copy h3 {
        font-size: 42px;
        line-height: 49px;
    }

    .ss-v5-biggest-line {
        font-size: 81px;
        line-height: 92px;
    }

    .ss-v5-biggest-word {
        font-size: 132px;
        line-height: 132px;
    }

    .ss-v5-biggest-start {
        font-size: 42px;
        line-height: 49px;
    }

    .ss-v5-calc-title {
        font-size: 56px;
        line-height: 1.15;
    }

    body.ss-new-homepage-v5 .ss-v5-calc-subtitle {
        font-size: 21px;
        line-height: 1.4;
    }

    .ss-v5-pros-title {
        font-size: 63px;
        line-height: 1.15;
    }

    body.ss-new-homepage-v5 .ss-v5-solve-overline {
        font-size: 21px;
        line-height: 1.2;
    }

    .ss-v5-solve-title {
        font-size: 63px;
        line-height: 1.12;
    }

    body.ss-new-homepage-v5 .ss-v5-solve-body {
        font-size: 20px;
        line-height: 1.45;
    }

    .ss-v5-needs-title {
        font-size: 49px;
        line-height: 1.15;
    }

    .ss-v5-needs-item-title {
        font-size: 21px;
        line-height: 1.2;
    }

    .ss-v5-connected-title {
        font-size: 51px;
        line-height: 1.12;
    }

    .ss-v5-connected-heading {
        font-size: 23px;
        line-height: 1.25;
    }

    .ss-v5-safegate-title {
        font-size: 32px;
        line-height: 1;
    }

    .ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
        font-size: 21px;
        line-height: 1.3;
    }

    .ss-v5-convert-title {
        font-size: 63px;
        line-height: 1.12;
    }

    .ss-v5-final-overline {
        font-size: 18px;
        line-height: 1.3;
    }

    .ss-v5-final-title {
        font-size: 72px;
        line-height: 1.12;
    }

    body.ss-new-homepage-v5 .ss-v5-final-subtitle {
        font-size: 22px;
        line-height: 1.45;
    }

    body.ss-new-homepage-v5 .ss-v5-final-stat-value {
        font-size: 26px;
        line-height: 1.1;
    }

    body.ss-new-homepage-v5 .ss-v5-final-stat-label {
        font-size: 16px;
        line-height: 1.3;
    }

    .ss-v5-revenue-engines .ss-v5-re-hero-title {
        font-size: 84px;
        line-height: 92px;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-hero-subtitle {
        font-size: 21px;
        line-height: 28px;
    }

    .ss-v5-revenue-engines .ss-v5-replay {
        font-size: 18px;
        line-height: 21px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-title {
        font-size: 95px;
        line-height: 102px;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-subtitle {
        font-size: 21px;
        line-height: 28px;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-badge-label {
        font-size: 18px;
        line-height: 1.3;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-card-title {
        font-size: 35px;
        line-height: 42px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-card-name {
        font-size: 32px;
        line-height: 39px;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-desc {
        font-size: 25px;
        line-height: 1.4;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-point {
        font-size: 25px;
        line-height: 1.35;
    }

    .ss-v5-revenue-engines .ss-v5-re-pocket-title {
        font-size: 49px;
        line-height: 1.15;
    }

    .ss-v5-revenue-engines .ss-v5-re-seats-title {
        font-size: 63px;
        line-height: 1.12;
    }

    .ss-v5-revenue-engines .ss-v5-re-leaks-title {
        font-size: 63px;
        line-height: 1.12;
    }

    .ss-v5-revenue-engines .ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
        font-size: 21px;
        line-height: 1.3;
    }

    .ss-v5-music .ss-intro-content .ss-v5-hero-title {
        font-size: 81px;
        line-height: 92px;
    }

    .ss-v5-music .ss-intro-content .ss-v5-hero-subtitle {
        font-size: 28px;
        line-height: 35px;
    }

    .ss-v5-music .ss-v5-mu-profit-title {
        font-size: 52px;
        line-height: 1.12;
        white-space: nowrap;
    }

    .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-title {
        font-size: 63px;
        line-height: 1.12;
    }

    .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-badge-value {
        font-size: 32px;
        line-height: 35px;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-badge-label {
        font-size: 13px;
        line-height: 1.2;
    }

    .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-card-title {
        font-size: 53px;
        line-height: 1.15;
    }

    .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-card-name {
        font-size: 21px;
        line-height: 1.3;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-desc {
        font-size: 25px;
        line-height: 1.4;
    }

    .ss-v5-music .ss-v5-mu-crowd-title {
        font-size: 63px;
        line-height: 1.12;
    }

    .ss-v5-music .ss-v5-mu-crowd-card-title {
        font-size: 21px;
        line-height: 1.25;
    }

    .ss-v5-music .ss-v5-mu-live-title {
        font-size: 40px;
        line-height: 1.15;
    }

    .ss-v5-music .ss-v5-mu-streams-title {
        font-size: 56px;
        line-height: 1.08;
    }

    .ss-v5-music .ss-v5-mu-quote-text {
        font-size: 37px;
        line-height: 1.22;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-quote-body {
        font-size: 21px;
        line-height: 1.45;
    }

    .ss-v5-music .ss-v5-mu-energy-title {
        font-size: 56px;
        line-height: 1.14;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-energy-sub {
        font-size: 23px;
        line-height: 1.45;
    }

    .ss-v5-music .ss-v5-mu-wave-lead {
        font-size: 67px;
        line-height: 1.14;
    }

    .ss-v5-music .ss-v5-mu-wave-step.is-attention,
    .ss-v5-music .ss-v5-mu-wave-step.is-revenue {
        font-size: 42px;
        line-height: 1.2;
    }

    .ss-v5-music .ss-v5-mu-wave-step.is-action {
        font-size: 60px;
        line-height: 1.15;
    }

    .ss-v5-music .ss-v5-mu-cta-title {
        font-size: 67px;
        line-height: 1.14;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-cta-sub {
        font-size: 32px;
        line-height: 1.4;
    }
}

@media screen and (min-width: 1101px) {
    .ss-v5-revenue-engines .ss-v5-re-hero {
        padding-bottom: 48px;
    }

    .ss-v5-revenue-engines .ss-v5-glass-copy {
        min-height: 0;
    }

    .ss-v5-revenue-engines .ss-v5-re-every-stream {
        padding-top: 40px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-sticky {
        top: 12px;
        height: calc(100vh - 12px);
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-overline {
        font-size: 20px;
        line-height: 26px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-title {
        font-size: 71px;
        line-height: 81px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-subtitle {
        font-size: 25px;
        line-height: 31px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head .ss-v5-hero-body {
        font-size: 18px;
        line-height: 26px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-invitation {
        font-size: 25px;
        line-height: 31px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-cta.ss-v4-btn-main-white {
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    .ss-v5-platform-title {
        font-size: 62px;
        line-height: 68px;
    }

    .ss-v5-platform-subtitle {
        font-size: 18px;
        line-height: 25px;
    }

    .ss-v5-glass-copy h3 {
        font-size: 37px;
        line-height: 43px;
    }

    .ss-v5-glass-copy p {
        font-size: 16px;
        line-height: 24px;
    }

    .ss-v5-biggest-line {
        font-size: 71px;
        line-height: 81px;
    }

    .ss-v5-biggest-word {
        font-size: 116px;
        line-height: 116px;
    }

    .ss-v5-biggest-start {
        font-size: 37px;
        line-height: 43px;
    }

    .ss-v5-calc-title {
        font-size: 49px;
        line-height: 1.15;
    }

    body.ss-new-homepage-v5 .ss-v5-calc-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }

    .ss-v5-pros-title {
        font-size: 55px;
        line-height: 1.15;
    }

    body.ss-new-homepage-v5 .ss-v5-pros-quote-text {
        font-size: 32px;
        line-height: 1.25;
    }

    body.ss-new-homepage-v5 .ss-v5-pros-body {
        font-size: 20px;
        line-height: 1.45;
    }

    body.ss-new-homepage-v5 .ss-v5-pros-name {
        font-size: 18px;
        line-height: 1.3;
    }

    body.ss-new-homepage-v5 .ss-v5-pros-role {
        font-size: 16px;
        line-height: 1.4;
    }

    body.ss-new-homepage-v5 .ss-v5-solve-overline {
        font-size: 18px;
        line-height: 1.2;
    }

    .ss-v5-solve-title {
        font-size: 55px;
        line-height: 1.12;
    }

    body.ss-new-homepage-v5 .ss-v5-solve-body {
        font-size: 18px;
        line-height: 1.45;
    }

    .ss-v5-needs-title {
        font-size: 43px;
        line-height: 1.15;
    }

    .ss-v5-needs-item-title {
        font-size: 18px;
        line-height: 1.2;
    }

    .ss-v5-needs-features {
        font-size: 18px;
        line-height: 1.55;
    }

    body.ss-new-homepage-v5 .ss-v5-connected-overline {
        font-size: 16px;
        line-height: 1.2;
    }

    .ss-v5-connected-title {
        font-size: 45px;
        line-height: 1.12;
        max-width: none;
    }

    body.ss-new-homepage-v5 .ss-v5-connected-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    body.ss-new-homepage-v5 .ss-v5-connected-label {
        font-size: 14px;
        line-height: 1.2;
    }

    .ss-v5-connected-heading {
        font-size: 20px;
        line-height: 1.25;
    }

    .ss-v5-safegate-title {
        font-size: 28px;
        line-height: 1;
    }

    body.ss-new-homepage-v5 .ss-v5-safegate-subtitle {
        font-size: 16px;
        line-height: 1.55;
    }

    .ss-v5-safegate-item-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .ss-v5-safegate-item-copy {
        font-size: 16px;
        line-height: 1.5;
    }

    .ss-v5-convert-title {
        font-size: 55px;
        line-height: 1.12;
    }

    .ss-v5-final-overline {
        font-size: 16px;
        line-height: 1.3;
    }

    .ss-v5-final-title {
        font-size: 64px;
        line-height: 1.12;
    }

    body.ss-new-homepage-v5 .ss-v5-final-subtitle {
        font-size: 20px;
        line-height: 1.45;
    }

    body.ss-new-homepage-v5 .ss-v5-final-stat-value {
        font-size: 24px;
        line-height: 1.1;
    }

    body.ss-new-homepage-v5 .ss-v5-final-stat-label {
        font-size: 15px;
        line-height: 1.3;
    }

    .ss-v5-revenue-engines .ss-v5-re-hero-title {
        font-size: 74px;
        line-height: 81px;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-hero-subtitle {
        font-size: 18px;
        line-height: 25px;
    }

    .ss-v5-revenue-engines .ss-v5-re-hero-cta {
        font-size: 14px;
        line-height: 1.2;
    }

    .ss-v5-revenue-engines .ss-v5-replay {
        font-size: 16px;
        line-height: 18px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-inner {
        padding-top: 24px;
        padding-bottom: 16px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-title {
        font-size: 84px;
        line-height: 90px;
        margin-bottom: 32px;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-subtitle {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 0;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-menu {
        margin-bottom: 32px;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-badge-label {
        font-size: 16px;
        line-height: 1.3;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-card-title {
        font-size: 31px;
        line-height: 37px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-card-name {
        font-size: 28px;
        line-height: 34px;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-desc {
        font-size: 22px;
        line-height: 1.4;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-point {
        font-size: 22px;
        line-height: 1.35;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-pocket-overline {
        font-size: 16px;
        line-height: 1.2;
    }

    .ss-v5-revenue-engines .ss-v5-re-pocket-title {
        font-size: 43px;
        line-height: 1.15;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-pocket-subtitle {
        font-size: 18px;
        line-height: 1.45;
    }

    .ss-v5-revenue-engines .ss-v5-re-seats-title {
        font-size: 55px;
        line-height: 1.12;
    }

    .ss-v5-revenue-engines .ss-v5-re-leaks-title {
        font-size: 55px;
        line-height: 1.12;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-safegate-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    .ss-v5-revenue-engines .ss-v5-safegate-item-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .ss-v5-revenue-engines .ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .ss-v5-revenue-engines .ss-v5-safegate-item-copy {
        font-size: 16px;
        line-height: 1.5;
    }

    .ss-v5-music .ss-intro-content .ss-v5-hero-title {
        font-size: 71px;
        line-height: 81px;
    }

    .ss-v5-music .ss-intro-content .ss-v5-hero-subtitle {
        font-size: 25px;
        line-height: 31px;
    }

    .ss-v5-music .ss-v5-mu-hero .ss-v4-btn {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .ss-v5-music .ss-v5-mu-profit-title {
        font-size: 48px;
        line-height: 1.12;
        white-space: nowrap;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-profit .ss-v5-safegate-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-title {
        font-size: 55px;
        line-height: 1.12;
    }

    .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-badge-value {
        font-size: 28px;
        line-height: 31px;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-badge-label {
        font-size: 11px;
        line-height: 1.2;
    }

    .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-card-title {
        font-size: 47px;
        line-height: 1.15;
    }

    .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-card-name {
        font-size: 18px;
        line-height: 1.3;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-before .ss-v5-re-engines-desc {
        font-size: 22px;
        line-height: 1.4;
    }

    .ss-v5-music .ss-v5-mu-crowd-title {
        font-size: 55px;
        line-height: 1.12;
    }

    .ss-v5-music .ss-v5-mu-crowd-card-title {
        font-size: 18px;
        line-height: 1.25;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-crowd-card-body {
        font-size: 18px;
        line-height: 1.45;
    }

    .ss-v5-music .ss-v5-mu-live-title {
        font-size: 35px;
        line-height: 1.15;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-live-sub {
        font-size: 18px;
        line-height: 1.5;
    }

    .ss-v5-music .ss-v5-mu-streams-title {
        font-size: 48px;
        line-height: 1.08;
    }

    .ss-v5-music .ss-v5-mu-quote-text {
        font-size: 33px;
        line-height: 1.22;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-quote-body {
        font-size: 18px;
        line-height: 1.45;
    }

    .ss-v5-music .ss-v5-mu-energy-title {
        font-size: 49px;
        line-height: 1.14;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-energy-sub {
        font-size: 20px;
        line-height: 1.45;
    }

    .ss-v5-music .ss-v5-mu-wave-lead {
        font-size: 59px;
        line-height: 1.14;
    }

    .ss-v5-music .ss-v5-mu-wave-step.is-attention,
    .ss-v5-music .ss-v5-mu-wave-step.is-revenue {
        font-size: 37px;
        line-height: 1.2;
    }

    .ss-v5-music .ss-v5-mu-wave-step.is-action {
        font-size: 53px;
        line-height: 1.15;
    }

    .ss-v5-music .ss-v5-mu-cta-title {
        font-size: 59px;
        line-height: 1.14;
    }

    body.ss-new-homepage-v5 .ss-v5-music .ss-v5-mu-cta-sub {
        font-size: 28px;
        line-height: 1.4;
    }

    .ss-v5-music .ss-v5-mu-cta-btn.ss-v4-btn,
    .ss-v5-music .ss-v5-mu-cta-demo.ss-v4-btn {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }
}

@media screen and (max-width: 1920px) {
    .ss-v4-container {
        width: 100%;
        margin: auto;
        padding: 0 16px;
    }

    .pb-48px {
        padding-bottom: 48px;
    }

    /* .ss-fake-img {
        top: -48px;
        width: calc(100% + 240px);
    } */

    .ss-v4-container-px-0 {
        padding: 0;
    }
}

@media screen and (max-width: 1668px) {
    .ss-v4-content-max-w-1668px {
        width: 100%;
        margin: auto;
        padding: 0 16px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-title {
        white-space: normal;
    }
}

@media screen and (max-width: 1600px) {
    .ss-v4-content-max-w-1600px {
        width: 100%;
        margin: auto;
        padding: 0 16px;
    }

    /* SECTION 4 */

    .ss-left-buyer {
        padding-left: 0;
        padding-right: 64px;
    }

    /* END SECTION 4 */
    /* SECTION 5 */
    .ss-fake-img {
        position: relative;
        bottom: 0;
        right: 0;
        top: -48px;
        left: 0;
        z-index: 1;
        /* margin-left: -100px; */
    }

    /* END SECTION 5 */
    /* SECTION 7 */
    .ss-fake-img-2 {
        position: relative;
        bottom: 0;
        right: 0;
        top: 0;
        left: 0;
        z-index: 1;
    }

    /* END SECTION 7 */

    .ss-v5-mu-profit .ss-v5-safegate-grid {
        gap: 32px 36px;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    }

    .ss-v5-mu-profit-visual {
        overflow: hidden;
    }

    .ss-v5-mu-profit .ss-v5-safegate-shot {
        object-position: center;
    }

    .ss-v5-mu-profit .ss-v5-safegate-shot[data-safegate="connected_pos"] {
        width: 100%;
        height: 100%;
        top: 0;
        right: auto;
        left: 0;
        bottom: auto;
    }
}

@media screen and (max-width: 1592px) {
    .ss-v5-content-max-w-1592px {
        padding: 0 16px;
    }
}

@media screen and (max-width: 1479px) {
    .ss-v4-menu-d {
        display: none;
    }

    .ss-menu-mobile {
        display: block;
        padding: 0 16px;
    }

    .ss-v4-menu-m {
        height: 60px;
        line-height: 60px;
    }

    .ss-v4-menu-mb {
        background: var(--bg-black);
        z-index: 99;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 0 16px 16px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .ss-v4-menu-mb.hide {
        left: -100%;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .ss-v4-menu-mb .rel {
        width: 100%;
        height: 100%;
        background: var(--bg-black);
        z-index: 99;
    }

    .menu-gr {
        margin-top: 30px;
    }

    .ss-v4-menu-mb ul li {
        list-style: none;
        padding: 15px 0;
    }

    .ss-v4-menu-mb ul li a {
        color: var(--white);
        font-size: 20px;
        line-height: 18px;
        text-decoration: none;
        letter-spacing: 0.3px;
    }

    .ss-v4-bg-trans {
        background: transparent;
        backdrop-filter: blur(0);
    }

    .ss-v4-bg-main-color {
        background: var(--bg-menu);
        backdrop-filter: blur(8px);
    }

    .menu-enable-mobile {
        display: block;
    }

    .ss-close-menu-mb {
        width: 48px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ss-block-scroll {
        height: 100vh;
        overflow: hidden;
    }
}

@media screen and (max-width: 1440px) {
    .ss-v4-content-max-w-1440px {
        width: 100%;
        margin: auto;
        padding: 0 16px;
    }

    .mb-86px {
        margin-bottom: 86px;
    }

    /*MENU*/

    .ss-v4-menu .menu li a {
        padding: 0 16px;
    }

    .pl-lg-32px {
        padding-left: 32px;
    }

    .mr-lg-16px {
        margin-right: 16px;
    }

    /*END MENU*/
}

@media screen and (max-width: 1360px) {
    .ss-v4-content-max-w-1360px {
        width: 100%;
        margin: auto;
        padding: 0 16px;
    }

    .mb-86px {
        margin-bottom: 86px;
    }

    .ss-section-v4 {
        padding: 48px 0;
    }

    .mb-64px {
        margin-bottom: 64px;
    }

    /* SECTION 4 */

    .ss-left-buyer {
        padding-right: 16px;
    }

    /* END SECTION 4 */
}

@media screen and (max-width: 1300px) {
    .ss-v5-event-types {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

@media screen and (max-width: 1200px) {
    /*MENU*/
    .ss-logo-v4 img {
        width: 200px;
    }

    .ss-v4-menu .menu li a {
        padding: 0 12px;
    }

    .pl-md-16px {
        padding-left: 16px;
    }

    .ss-v4-btn-login {
        min-width: 110px;
    }

    /*END MENU*/

    .ss-v4-content-max-w-1200px {
        width: 100%;
        padding: 0 16px;
    }

    .ss-v4-video-center {
        width: 100%;
    }

    .f-menu {
        min-width: 160px;
    }

    .ss-v5-biggest-problem {
        padding: 0;
    }

    .ss-v5-biggest-copy {
        padding: 140px 24px;
    }

    .ss-v5-biggest-title {
        gap: 36px;
        margin-bottom: 48px;
    }

    .ss-v5-biggest-line {
        font-size: 48px;
        line-height: 56px;
    }

    .ss-v5-biggest-word {
        font-size: 64px;
        line-height: 72px;
    }

    .ss-v5-biggest-start {
        font-size: 24px;
        line-height: 32px;
    }

    .ss-v5-journey-title {
        font-size: 40px;
        line-height: 50px;
    }

    .ss-v5-journey-stat-value {
        font-size: 56px;
        line-height: 64px;
    }

    .ss-v4-menu .menu li a {
        padding: 0 8px;
        font-size: 13px;
    }
}

@media screen and (max-width: 1100px) {
    .ss-tab-content {
        height: 440px;
    }

    .ss-v5-calc-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    #calculator .ss-grid-cols-4 {
        grid-template-columns: 1fr 1fr;
    }

    #calculator .ss-v5-main-title-f48 {
        font-size: 36px;
    }

    .ss-v5-pros-title {
        font-size: 40px;
        margin-bottom: 64px;
    }

    body.ss-new-homepage-v5 .ss-v5-pros-quote-text {
        font-size: 24px;
    }

    .ss-v5-pros-copy {
        max-width: 78%;
        padding: 36px 28px 36px 32px;
    }

    .ss-v5-pros-dots {
        padding-right: 0;
    }

    .ss-v5-solve-title {
        font-size: 40px;
    }

    .ss-v5-solve-watermark {
        font-size: 96px;
        top: 24px;
    }

    .ss-v5-solve-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 16px;
    }

    .ss-v5-solve-stat {
        border-right: 1px solid #243642;
    }

    .ss-v5-solve-stat:nth-child(3n) {
        border-right: 0;
    }

    .ss-v5-solve-stat:nth-child(n + 4) {
        border-top: 1px solid #243642;
        padding-top: 16px;
    }

    body.ss-new-homepage-v5 .ss-v5-solve-stat-value {
        font-size: 22px;
    }

    body.ss-new-homepage-v5 .ss-v5-solve-stat-label {
        font-size: 12px;
    }

    .ss-v5-needs-title {
        font-size: 40px;
        margin-bottom: 28px;
    }

    .ss-v5-needs-panel {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .ss-v5-needs-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ss-v5-needs-item-title {
        font-size: 26px;
    }

    .ss-v5-needs-visual {
        min-height: 380px;
        height: 48vh;
        order: -1;
    }

    .ss-v5-connected-title {
        font-size: 40px;
        max-width: none;
    }

    body.ss-new-homepage-v5 .ss-v5-connected-subtitle {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .ss-v5-connected-card {
        min-height: 500px;
    }

    .ss-v5-connected-heading {
        font-size: 20px;
    }

    .ss-v5-safegate-title {
        font-size: 40px;
    }

    .ss-v5-safegate-panel {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .ss-v5-safegate-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ss-v5-safegate-visual {
        min-height: 380px;
        height: 48vh;
        order: -1;
        border-radius: 24px;
    }

    .ss-v5-convert-title {
        font-size: 40px;
        margin-bottom: 28px;
    }

    .ss-v5-final {
        min-height: 0;
        padding: 80px 24px 40px;
    }

    .ss-v5-final-inner {
        min-height: 0;
    }

    .ss-v5-final-title {
        font-size: 40px;
        max-width: none;
    }

    .ss-v5-final-cta {
        min-width: 0;
        width: 100%;
        max-width: 520px;
        min-height: 72px;
        margin-bottom: 0;
    }

    .ss-v5-final-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 0 0 32px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        max-width: 520px;
    }

    .ss-v5-final-stat {
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 18px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 16px;
        background: rgba(8, 12, 18, 0.62);
        backdrop-filter: blur(14px);
    }

    .ss-v5-final-stat:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    body.ss-new-homepage-v5 .ss-v5-final-stat.is-blue .ss-v5-final-stat-value {
        color: var(--main-text);
    }

    .ss-v5-footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 36px 24px;
    }

    .ss-v5-footer-brand {
        grid-column: 1 / -1;
    }

    .ss-v5-footer-trust {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 8px;
    }

    .ss-v5-footer-trust-item {
        flex: 0 0 calc(33.33% - 16px);
        border-right: 0;
        padding: 8px;
    }

    .ss-v5-re-engines-track {
        height: auto;
    }

    .ss-v5-re-engines-sticky {
        position: static;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .ss-v5-re-engines-inner {
        height: auto;
        padding: 64px 24px 48px;
    }

    .ss-v5-re-engines-item {
        width: 112px;
        flex-shrink: 0;
    }

    .ss-v5-re-engines-icon {
        width: 72px;
        height: 72px;
    }

    .ss-v5-re-engines-icon img {
        width: 42px;
        height: 42px;
    }

    .ss-v5-re-engines-menu {
        position: sticky;
        top: 88px;
        z-index: 4;
        justify-content: flex-start;
        max-width: 100%;
        margin-bottom: 16px;
        padding: 12px 8px 10px;
        background: var(--page-bg);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ss-v5-re-engines-menu::-webkit-scrollbar {
        display: none;
    }

    .ss-v5-re-engines-stage,
    .ss-v5-re-engines-stage-frame {
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-stage {
        container-type: normal;
        display: block;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-stage-frame {
        width: 100%;
        height: auto;
        max-width: none;
        max-height: none;
        aspect-ratio: auto;
    }

    .ss-v5-re-engines-card {
        position: relative;
        inset: auto;
        display: none;
        flex-direction: column;
        height: auto;
        overflow: hidden;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .ss-v5-re-engines-card.is-active {
        display: flex;
        transform: none;
    }

    .ss-v5-re-engines-card.is-prev {
        display: none;
        transform: none;
        opacity: 1;
    }

    .ss-v5-re-engines-copy {
        width: 100%;
        max-width: none;
        padding: 24px 22px 22px;
        justify-content: flex-start;
        background: transparent;
    }

    .ss-v5-re-engines-card-title {
        font-size: 28px;
        line-height: 34px;
    }

    .ss-v5-re-engines-visual {
        position: relative;
        inset: auto;
        order: -1;
        height: 280px;
        overflow: hidden;
    }

    .ss-v5-re-engines-visual img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center 40%;
        transform: none;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-card {
        background: transparent;
        border: 0;
        border-radius: 0;
        overflow: visible;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-copy {
        width: 100%;
        max-width: none;
        padding: 8px 4px 8px;
        justify-content: flex-start;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-visual {
        position: relative;
        inset: auto;
        order: 1;
        height: auto;
        aspect-ratio: 1706 / 898;
        overflow: hidden;
        border-radius: 16px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-visual img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 175%;
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        transform: none;
    }

    .ss-v5-re-seats.ss-v5-safegate {
        padding: 72px 24px 80px;
    }

    .ss-v5-re-seats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ss-v5-re-seats-title {
        font-size: 32px;
    }

    .ss-v5-re-seats .ss-v5-safegate-left {
        padding-right: 0;
    }

    .ss-v5-re-seats .ss-video-hide-left .ss-video-hide-left-content {
        width: 100%;
        margin-left: 0;
        padding: 16px;
        border-radius: 16px;
    }

    .ss-v5-re-seats .ss-video-hide-left .ss-video-hide-left-content video {
        border-radius: 16px;
    }

    .ss-v5-revenue-engines .ss-v5-re-seats-visual {
        order: 1;
        min-height: 220px;
    }

    .ss-v5-re-leaks.ss-v5-safegate {
        padding: 72px 0 80px;
    }

    .ss-v5-re-leaks-grid {
        grid-template-columns: 1fr;
    }

    .ss-v5-re-leaks-visual {
        order: 1;
        margin: 0 24px;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        aspect-ratio: 358 / 380;
    }

    .ss-v5-revenue-engines .ss-v5-re-leaks-shot {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }

    .ss-v5-revenue-engines .ss-v5-re-leaks-video {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 200%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: right center;
        transform: none;
    }

    .ss-v5-re-leaks .ss-v5-safegate-left {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ss-v5-re-leaks-title {
        font-size: 32px;
    }

    .ss-v5-re-command {
        padding-top: 64px;
    }

    .ss-v5-re-command-title {
        font-size: 36px;
    }

    .ss-v5-re-command-visual {
        margin-top: -24px;
    }

    .ss-v5-mu-profit .ss-v5-safegate-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ss-v5-mu-profit-copy {
        margin-bottom: 32px;
        text-align: center;
    }

    .ss-v5-mu-profit-title {
        font-size: 32px;
        line-height: 1.15;
        white-space: normal;
    }

    .ss-v5-mu-profit-title-desk {
        display: none;
    }

    .ss-v5-mu-profit-title-mobi {
        display: inline;
    }

    body.ss-new-homepage-v5 .ss-v5-mu-profit .ss-v5-safegate-subtitle {
        max-width: 28em;
        margin: 0 auto;
        text-align: center;
    }

    .ss-v5-mu-profit .ss-v5-safegate-nav {
        display: none;
    }

    .ss-v5-mu-profit .ss-v5-safegate-controls {
        width: 100%;
    }

    .ss-v5-mu-profit .ss-v5-safegate-list {
        width: 100%;
        align-items: flex-start;
        gap: 10px;
    }

    .ss-v5-mu-profit .ss-v5-safegate-item[data-safegate="revenue_every_event"],
    .ss-v5-mu-profit .ss-v5-safegate-shot[data-safegate="revenue_every_event"] {
        display: none;
    }

    .ss-v5-mu-profit .ss-v5-safegate-item {
        padding: 12px 18px 12px 12px;
    }

    .ss-v5-mu-profit .ss-v5-safegate-item.is-open {
        padding: 20px 18px;
    }

    .ss-v5-mu-profit-visual {
        order: 0;
        min-height: 340px;
        height: 52vh;
        max-height: 480px;
        overflow: visible;
    }

    .ss-v5-mu-profit .ss-v5-safegate-shot {
        object-fit: contain;
        object-position: center bottom;
    }

    .ss-v5-mu-profit.ss-v5-safegate {
        overflow: visible;
        padding-bottom: 48px;
    }

    .ss-v5-mu-before .ss-v5-re-engines-inner {
        padding: 56px 16px 48px;
        gap: 0;
    }

    .ss-v5-mu-before .ss-v5-re-engines-title {
        position: sticky;
        top: 60px;
        z-index: 6;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: none;
        margin: 0 0 64px;
        padding: 8px 0 0;
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.6px;
        text-align: center;
        background: #0f0f0f;
    }

    .ss-v5-mu-before-words {
        margin: 0.08em 0;
    }

    .ss-v5-mu-before .ss-v5-re-engines-stage,
    .ss-v5-mu-before .ss-v5-re-engines-stage-frame {
        overflow: visible;
        border-radius: 0;
    }

    .ss-v5-mu-before .ss-v5-re-engines-stage-frame {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    .ss-v5-mu-before .ss-v5-re-engines-card,
    .ss-v5-mu-before .ss-v5-re-engines-card.is-active,
    .ss-v5-mu-before .ss-v5-re-engines-card.is-prev {
        display: flex;
        flex-direction: column;
        margin: 0;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    .ss-v5-mu-before .ss-v5-re-engines-card::before {
        display: none;
    }

    .ss-v5-mu-before .ss-v5-re-engines-copy {
        width: 100%;
        padding: 0 0 24px;
    }

    .ss-v5-mu-before .ss-v5-re-engines-card-title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }

    .ss-v5-mu-before .ss-v5-re-engines-visual {
        order: 1;
        height: auto;
        aspect-ratio: 988 / 910;
        max-width: none;
        flex: none;
        width: 100%;
        margin-left: 0;
        border-radius: 16px;
        overflow: hidden;
    }

    .ss-v5-mu-before .ss-v5-re-engines-visual img {
        object-fit: contain;
        object-position: center;
    }

    .ss-v5-mu-crowd-inner {
        position: relative;
        top: auto;
        width: 100%;
        margin-top: -42vw;
        padding: 0 16px 48px;
    }

    .ss-v5-mu-crowd-viewport,
    .ss-v5-mu-crowd-controls {
        padding-left: 0;
        padding-right: 0;
    }

    .ss-v5-mu-crowd-title {
        margin-bottom: 40px;
        padding: 0;
        font-size: 36px;
        line-height: 44px;
    }

    .ss-v5-mu-crowd-card {
        flex: 0 0 78%;
        width: 78%;
        max-width: none;
    }

    .ss-v5-mu-live {
        height: auto;
        margin-top: 0;
        margin-bottom: -18vh;
        padding: 0;
    }

    .ss-v5-mu-live-sticky {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .ss-v5-mu-live-fade {
        height: 72px;
        background: linear-gradient(to bottom, #EEF2F7 0%, rgba(238, 242, 247, 0) 100%);
    }

    .ss-v5-mu-live-copy {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: auto;
        padding: 56px 16px 28px;
        pointer-events: auto;
        opacity: 1;
    }

    .ss-v5-mu-live-title {
        font-size: 36px;
        line-height: 1.15;
    }

    body.ss-new-homepage-v5 .ss-v5-mu-live-sub {
        margin-bottom: 0;
        font-size: 16px;
    }

    .ss-v5-mu-live-masonry {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        max-width: none;
        padding: 0 16px 64px;
        gap: 18px;
    }

    .ss-v5-mu-live-col,
    .ss-v5-mu-live-col-shift {
        display: contents;
        padding-top: 0;
        max-width: none;
        gap: 18px;
        will-change: auto;
    }

    .ss-v5-mu-live-col:first-child .ss-v5-mu-live-card:nth-child(1) { order: 1; }
    .ss-v5-mu-live-col-shift .ss-v5-mu-live-card:nth-child(1) { order: 2; }
    .ss-v5-mu-live-col:first-child .ss-v5-mu-live-card:nth-child(2) { order: 3; }
    .ss-v5-mu-live-col-shift .ss-v5-mu-live-card:nth-child(2) { order: 4; }
    .ss-v5-mu-live-col:first-child .ss-v5-mu-live-card:nth-child(3) { order: 5; }
    .ss-v5-mu-live-col-shift .ss-v5-mu-live-card:nth-child(3) { order: 6; }
    .ss-v5-mu-live-col:first-child .ss-v5-mu-live-card:nth-child(4) { order: 7; }
    .ss-v5-mu-live-col-shift .ss-v5-mu-live-card:nth-child(4) { order: 8; }

    .ss-v5-mu-live-card {
        width: 100%;
        max-width: 520px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        border-radius: 18px;
    }

    .ss-v5-mu-streams-title {
        width: min(92vw, 640px);
        font-size: 32px;
        letter-spacing: -0.8px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .ss-v5-mu-streams-connected {
        margin-top: 0;
    }

    .ss-v5-mu-quote {
        padding: 56px 16px 72px;
    }

    .ss-v5-mu-quote-frame {
        aspect-ratio: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        border-radius: 24px;
    }

    .ss-v5-mu-quote-video {
        position: relative;
        inset: auto;
        width: 100%;
        height: 240px;
        flex: 0 0 240px;
    }

    .ss-v5-mu-quote-overlay {
        inset: auto;
        top: 0;
        left: 0;
        right: 0;
        height: 240px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
    }

    .ss-v5-mu-quote-copy {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        padding: 24px 20px 28px;
    }

    .ss-v5-mu-quote-text {
        font-size: 26px;
        letter-spacing: -0.4px;
    }

    .ss-v5-mu-energy-pin {
        padding: 80px 16px 72px;
    }

    .ss-v5-mu-energy-title {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    body.ss-new-homepage-v5 .ss-v5-mu-energy-sub {
        margin-bottom: 32px;
        font-size: 16px;
    }

    .ss-v5-mu-energy-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ss-v5-mu-energy-card {
        min-height: 0;
        padding: 22px 18px 24px;
        border-radius: 20px;
    }

    .ss-v5-mu-wave-lead {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .ss-v5-mu-wave-step {
        font-size: 18px;
    }

    .ss-v5-mu-wave-closer {
        font-size: 28px;
    }

    .ss-v5-mu-wave-step.is-attention {
        left: 8%;
    }

    .ss-v5-mu-wave-step.is-revenue {
        left: auto;
        right: 8%;
    }

    .ss-v5-mu-cta-title {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    body.ss-new-homepage-v5 .ss-v5-mu-cta-sub {
        font-size: 16px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-inner {
        padding-top: 8px;
    }
}

@media screen and (max-width: 1024px) {
    .ss-md-grid-col {
        grid-template-columns: 1fr;
    }

    .ss-img-right-full {
        margin-top: 16px;
    }

    /* FOOTER */
    .footer {
        padding: 24px 0;
    }

    .ss-footer-content {
        padding: 16px 0;
        display: block;
    }

    .ss-menu-f {
        justify-content: flex-start;
    }

    .ss-v4-logo-bottom img {
        margin-bottom: 24px;
    }

    .ss-copy-right {
        padding: 24px 0;
    }

    .ss-copy-right p {
        font-size: 18px;
        line-height: 20px;
    }

    .ss-menu-f .ss-grid-cols-3,
    .ss-menu-f .ss-grid-cols-4 {
        width: 100%;
    }

    .ss-share-gr {
        display: none;
    }

    .ss-share-gr.mobile {
        display: flex;
        margin-top: 32px;
    }

    /* End FOOTER */
    .ss-fake-img {
        margin-left: 0;
        width: 100%;
        top: 0;
    }

    .md-order-1 {
        order: 1;
    }

    .md-order-2 {
        order: 2;
    }

    .ss-fake-img-2 {
        width: 100%;
    }

    /* SECTION 6 */

    .ss-ticket-v4-item {
        height: 728px;
    }

    .ss-ticket-v4-item-desc {
        padding: 12px 16px;
    }

    .ss-ticket-v4-item-desc h2 {
        font-size: 24px;
        line-height: 28px;
    }

    /* END SECTION 6 */

    .px-lg-16px {
        padding: 0 16px;
    }

    .ss-v5-re-engines-menu {
        top: 60px;
    }
}

@media screen and (max-width: 980px) {
    .ss-v5-breakdown-overlay {
        padding: 12px;
        align-items: flex-start;
    }

    .ss-v5-breakdown-dialog.ss-fake-border-popup-v5 {
        width: min(1120px, calc(100vw - 24px));
        margin-top: 0;
        margin-bottom: 12px;
    }

    .ss-v5-breakdown-panel {
        padding: 24px 16px 20px;
        overflow: visible;
    }

    .ss-v5-breakdown-head {
        flex-direction: column;
        margin-right: 36px;
    }

    .ss-v5-breakdown-title {
        font-size: 28px;
        overflow-wrap: anywhere;
    }

    .ss-v5-breakdown-stat {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .ss-v5-breakdown-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        overflow: visible;
    }

    .ss-v5-breakdown-card {
        overflow: visible;
        padding: 18px 16px;
    }

    .ss-v5-breakdown-card-title {
        font-size: 20px;
        white-space: normal;
    }

    .ss-v5-breakdown-split {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        height: auto;
        min-height: 0;
        padding: 10px 12px;
    }

    .ss-v5-breakdown-split-sep {
        display: none;
    }

    .ss-v5-breakdown-split input,
    .ss-v5-breakdown-field-split input {
        width: 100%;
        flex: 0 0 auto;
        height: 40px;
    }

    .ss-v5-breakdown-submit {
        height: auto;
        min-height: 48px;
        padding: 12px 16px;
        white-space: normal;
    }
}

@media screen and (max-width: 920px) {
    .ss-tab-content {
        height: 520px;
    }

    /* CONTACT PAGE */

    .ss-v4-content-max-w-912px {
        width: 100%;
        margin: auto;
        padding: 0 16px;
    }

    /* END CONTACT PAGE */
}

@media screen and (max-width: 768px) {
    body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head.ss-v5-hero-reveal {
        --ss-v5-hero-p: 0;
        --ss-v5-hero-enter: 1;
        overflow: visible;
    }

    body.ss-new-homepage-v5 .ss-v5-hero-reveal-el {
        opacity: 1;
        transform: none;
        will-change: auto;
    }

    .ss-v4-content-lookup-input {
        height: 780px;
    }
    body {
        background-color: var(--bg-black);
    }

    .ss-grid-cols-2,
    .ss-grid-cols-3 {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }

    .disable-mobile {
        display: none;
    }

    .enable-mobile,
    .flex {
        display: block;
    }

    .ss-v4-menu-d {
        display: none;
    }

    .ss-menu-f .ss-grid-cols-3,
    .ss-menu-f .ss-grid-cols-4 {
        grid-template-columns: 1fr 1fr;
    }

    .f-menu {
        min-width: auto;
    }

    .ss-copy-right p {
        font-size: 14px;
        line-height: 18px;
    }

    .sm-w-full {
        width: 100%;
    }

    .ss-sm-px-24px {
        padding: 0 24px;
    }

    /* SECTION 1 */

    .ss-intro-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .ss-intro-content {
        max-width: 100%;
        margin-left: 0;
    }

    .ss-intro-content .ss-v4-main-title-f85 {
        font-size: 43px;
        line-height: 43px;
        margin-bottom: 16px;
    }

    .ss-intro-content p {
        font-size: 16px;
        line-height: 22px;
        color: var(--white);
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-overline {
        font-size: 14px;
        line-height: 20px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-title {
        white-space: normal;
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 16px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 > .ss-banner-head .ss-v5-hero-body {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-invitation {
        font-size: 20px;
        line-height: 26px;
    }

    .ss-v5-one-platform {
        padding: 48px 16px 64px;
    }

    .ss-v5-platform-title {
        font-size: 32px;
        line-height: 40px;
    }

    .ss-v5-platform-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .ss-v5-replay {
        top: 8px;
        right: 8px;
        min-height: 44px;
        padding: 8px 10px;
        font-size: 13px;
    }

    .ss-v5-replay img {
        width: 20px;
        height: 20px;
    }

    .ss-v5-glass-nav {
        display: block;
        overflow: visible;
        max-width: 100%;
        padding: 12px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .ss-v5-glass-nav-track {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        overflow: visible;
        padding: 0;
        gap: 10px;
    }

    .ss-v5-glass-nav-track::-webkit-scrollbar {
        display: none;
    }

    .ss-v5-glass-nav-track::after {
        display: none;
    }

    .ss-v5-glass-item {
        flex: 0 0 auto;
        flex-direction: row;
        width: 100%;
        min-width: 0;
        height: auto;
        justify-content: flex-start;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .ss-v5-glass-item.is-active {
        border-color: transparent;
    }

    .ss-v5-glass-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .ss-v5-glass-label {
        font-size: 16px;
        line-height: 1.3;
        white-space: nowrap;
        text-align: left;
        max-width: none;
    }

    .ss-v5-glass-copy {
        min-height: 0;
        margin-top: 4px;
    }

    .ss-v5-glass-copy h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .ss-v5-glass-copy p {
        font-size: 16px;
        line-height: 22px;
    }

    .ss-v5-biggest-problem {
        padding: 0;
    }

    .ss-v5-biggest-copy {
        padding: 96px 16px 88px;
    }

    .ss-v5-biggest-title {
        gap: 20px;
        margin-bottom: 48px;
    }

    .ss-v5-biggest-line {
        font-size: 28px;
        line-height: 34px;
    }

    .ss-v5-biggest-word {
        font-size: 40px;
        line-height: 46px;
    }

    .ss-v5-biggest-start {
        font-size: 18px;
        line-height: 24px;
    }

    .ss-v5-every-fan {
        padding: 48px 16px 64px;
    }

    .ss-v5-journey-title {
        font-size: 28px;
        line-height: 36px;
    }

    .ss-v5-journey-subtitle {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 32px;
    }

    .ss-v5-journey-track {
        margin-bottom: 40px;
    }

    .ss-v5-journey-stages p {
        margin: 12px 0 6px;
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .ss-v5-journey-nodes {
        --ss-v5-node-r: 38px;
        min-height: 88px;
    }

    .ss-v5-journey-line {
        left: 0;
        right: 0;
    }

    .ss-v5-journey-node {
        width: 72px;
        height: 72px;
    }

    .ss-v5-journey-icon {
        width: 32px;
        height: 32px;
    }

    .ss-v5-journey-captions p {
        font-size: 12px;
        line-height: 16px;
    }

    .ss-v5-journey-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ss-v5-journey-stat {
        padding: 16px 8px;
    }

    .ss-v5-journey-stat + .ss-v5-journey-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .ss-v5-journey-stat-value {
        font-size: 40px;
        line-height: 48px;
    }

    .ss-v5-biggest-cta {
        min-height: 44px;
        padding: 12px 0;
        font-size: 12px;
        letter-spacing: 0.08em;
        line-height: 20px;
    }

    .ss-home-v5 .ss-v5-journey-track {
        position: relative;
        display: grid;
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto auto 80px auto auto 80px auto auto 80px auto auto;
        column-gap: 16px;
        row-gap: 0;
        margin-bottom: 40px;
        padding: 28px 0;
    }

    .ss-home-v5 .ss-v5-journey-track::before {
        content: "";
        position: absolute;
        left: 31px;
        top: 0;
        bottom: 0;
        width: 2px;
        z-index: 0;
        background: #137EFC;
        box-shadow:
            0 0 6px #137EFC,
            0 0 14px rgba(19, 126, 252, 0.7);
        pointer-events: none;
    }

    .ss-home-v5 .ss-v5-journey-nodes,
    .ss-home-v5 .ss-v5-journey-stages,
    .ss-home-v5 .ss-v5-journey-captions {
        display: contents;
    }

    .ss-home-v5 .ss-v5-journey-line {
        display: none;
    }

    .ss-home-v5 .ss-v5-journey-flare {
        display: block;
        position: relative;
        left: auto;
        top: auto;
        width: 8px;
        height: 8px;
        margin: 0;
        justify-self: center;
        align-self: center;
        transform: scale(0);
        z-index: 2;
    }

    .ss-home-v5 .ss-v5-every-fan.is-inview .ss-v5-journey-flare {
        animation-name: ss-v5-flare-in-y;
    }

    .ss-home-v5 .ss-v5-journey-flare:nth-child(2) {
        grid-column: 1;
        grid-row: 3;
        left: auto;
        top: auto;
    }

    .ss-home-v5 .ss-v5-journey-flare:nth-child(3) {
        grid-column: 1;
        grid-row: 6;
        left: auto;
        top: auto;
    }

    .ss-home-v5 .ss-v5-journey-flare:nth-child(4) {
        grid-column: 1;
        grid-row: 9;
        left: auto;
        top: auto;
    }

    .ss-home-v5 .ss-v5-journey-node {
        width: 64px;
        height: 64px;
        margin: 0;
        justify-self: center;
        align-self: center;
        z-index: 3;
    }

    .ss-home-v5 .ss-v5-journey-icon {
        width: 28px;
        height: 28px;
    }

    .ss-home-v5 .ss-v5-journey-nodes .ss-v5-journey-node:nth-child(5) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .ss-home-v5 .ss-v5-journey-nodes .ss-v5-journey-node:nth-child(6) {
        grid-column: 1;
        grid-row: 4 / span 2;
    }

    .ss-home-v5 .ss-v5-journey-nodes .ss-v5-journey-node:nth-child(7) {
        grid-column: 1;
        grid-row: 7 / span 2;
    }

    .ss-home-v5 .ss-v5-journey-nodes .ss-v5-journey-node:nth-child(8) {
        grid-column: 1;
        grid-row: 10 / span 2;
    }

    .ss-home-v5 .ss-v5-journey-stages p {
        grid-column: 2;
        margin: 0;
        padding-top: 8px;
        text-align: left;
        font-size: 11px;
        letter-spacing: 0.12em;
        align-self: end;
    }

    .ss-home-v5 .ss-v5-journey-captions p {
        grid-column: 2;
        margin: 0;
        padding-bottom: 4px;
        text-align: left;
        font-size: 16px;
        line-height: 22px;
        align-self: start;
    }

    .ss-home-v5 .ss-v5-journey-stages p:nth-child(1) { grid-row: 1; }
    .ss-home-v5 .ss-v5-journey-captions p:nth-child(1) { grid-row: 2; }
    .ss-home-v5 .ss-v5-journey-stages p:nth-child(2) { grid-row: 4; }
    .ss-home-v5 .ss-v5-journey-captions p:nth-child(2) { grid-row: 5; }
    .ss-home-v5 .ss-v5-journey-stages p:nth-child(3) { grid-row: 7; }
    .ss-home-v5 .ss-v5-journey-captions p:nth-child(3) { grid-row: 8; }
    .ss-home-v5 .ss-v5-journey-stages p:nth-child(4) { grid-row: 10; }
    .ss-home-v5 .ss-v5-journey-captions p:nth-child(4) { grid-row: 11; }

    .mb-sm-32px {
        margin-bottom: 32px;
    }

    .mb-sm-24px {
        margin-bottom: 24px;
    }

    .mb-sm-16px {
        margin-bottom: 16px;
    }

    .mt-sm-8px {
        margin-top: 8px;
    }

    .mb-sm-8px {
        margin-bottom: 8px;
    }

    .pb-sm-8px {
        padding-bottom: 8px;
    }

    .ss-intro-content .ss-v4-btn-main-white {
        width: 100%;
    }

    .ss-intro-logo-m {
        display: flex;
        justify-content: center;
        margin-bottom: 24px;
    }

    /* END SECTION 1 */
    /* SECTION 2 */
    .ss-section-v4 {
        padding: 32px 0;
    }

    .ss-v4-main-title-f86 {
        font-size: 43px;
        line-height: 43px;
    }

    .ss-v4-gr-title p {
        font-size: 16px;
        line-height: 22px;
    }

    .ss-m-w-135px {
        max-width: 135px;
    }

    /* END SECTION 2 */
    /* SECTION 4 */

    .ss-v4-main-title-f80 {
        font-size: 40px;
        line-height: 40px;
    }

    .ss-v4-gr-title-3 p {
        font-size: 16px;
        line-height: 22px;
    }

    /* END SECTION 4 */
    /* SECTION 5 */
    .ss-v4-main-title-f72 {
        font-size: 40px;
        line-height: 40px;
    }

    .ss-v4-gr-title-4 p {
        font-size: 16px;
        line-height: 22px;
    }

    /* END SECTION 5 */
    /* SECTION 6 */

    .ss-ticket-v4-item {
        height: 480px;
    }

    /* END SECTION 6 */
    /* SECTION 7 */

    .ss-testimonials-v4-container {
        padding: 8px 0;
    }

    .ss-testimonials-v4 {
        border-radius: 8px;
        padding: 0 16px 24px;
    }

    .ss-tab-item {
        padding: 8px;
    }

    .ss-tab-content {
        margin-top: 16px;
    }

    .ss-tab-pane h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .ss-tab-pane h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .ss-tab-pane p {
        font-size: 16px;
        line-height: 24px;
    }

    .tes-end {
        display: flex;
        justify-content: flex-end;
    }

    .ss-tab-content {
        height: 460px;
    }

    /* END SECTION 7 */
    /* CONTACT PAGE */

    .ss-section-contact-v4 {
        padding: 140px 0 100px;
        overflow: hidden;
    }

    .ss-v4-main-title-f75 {
        font-size: 32px;
        line-height: 40px;
    }

    .ss-v4-desc-f18 {
        font-family: 'Montserrat Regular';
        font-size: 16px;
        line-height: 22px;
        color: var(--white-60);
    }

    .ss-v4-title-label-gr-input {
        font-size: 16px;
        line-height: 22px;
    }

    .ss-input-custom-v4 {
        height: 56px;
        font-size: 16px;
        line-height: 16px;
    }

    /** Custom Select **/

    .custom-select-trigger {
        line-height: 56px;
        font-size: 16px;
    }

    .custom-option {
        padding: 0 16px;
        font-size: 14px;
        line-height: 38px;
    }

    .gradient-wrapper {
        filter: blur(60px);
        width: 120%;
    }

    /* END CONTACT PAGE */

    /* FEATURE */

    .ss-main-pt {
        padding-top: 60px;
    }

    .ss-v4-main-title-f48 {
        font-size: 32px;
        line-height: 48px;
    }

    .ss-video-hide-left .ss-video-hide-left-content {
        padding: 16px;
        border-radius: 16px;
    }

    .ss-video-hide-left .ss-video-hide-left-content video {
        border-radius: 16px;
    }

    .ss-right-power {
        padding-left: 0;
        padding-right: 0;
    }

    .ss-box-v4-custom-s3 {
        grid-template-columns: 1fr;
        grid-gap: 16px;
        border-radius: 8px;
        margin-bottom: 24px;
    }

    .ss-box-v4-custom-s3._32 {
        grid-template-columns: 1fr;
    }

    .ss-box-v4-custom-s3-text {
        padding: 16px;
    }

    .ss-v4-main-title-f85 {
        font-size: 43px;
        line-height: 43px;
        margin-bottom: 16px;
    }

    /* END FEATURE */
    /* MUSIC */
    .ss-v4-gr-title-5 p {
        font-size: 16px;
        line-height: 22px;
    }

    .ss-v4-main-title-f24 {
        font-family: 'Montserrat Regular';
        font-size: 16px;
        line-height: 22px;
    }

    .line-h-86 {
        line-height: 40px;
    }

    /* END MUSIC */
    /* Sports */
    .ss-testimonials-sport {
        border-radius: 8px;
        height: 600px;
        padding: 32px 24px;
    }

    .ss-testimonials-sport h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .ss-testimonials-sport h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .ss-testimonials-sport p {
        font-size: 16px;
        line-height: 24px;
    }

    /* END Sports */
    .max-h-70 {
        max-height: 100%;
    }

    .ss-right-contact-us {
        padding-top: 24px;
    }

    .ss-pb-sm-0-im {
        padding-bottom: 0 !important;
    }

    .ml-sm--33px {
        margin-left: -33px;
    }

    .ss-banner-head {
        overflow: hidden;
    }

    .ss-video-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 100%;
        right: unset;
        bottom: unset;
    }

    body.ss-new-homepage-v5 .ss-v5-hero-pin video.ss-video-bg {
        width: auto;
        max-width: none;
        object-fit: unset;
        object-position: 50% 50%;
    }

    .mb-mt-16px {
        margin-top: 16px;
    }

    .ss-video-left-content,
    .ss-v4-video-center {
        width: 100%;
        height: 360px;
        position: relative;
    }

    .ss-video-left-content video,
    .ss-v4-video-center video {
        position: absolute;
        top: -20px;
        width: calc(100% + 280px);
        left: -140px;
        margin-left: 0;
    }

    .ss-v5-calc-title {
        font-size: 24px;
    }

    #calculator .ss-grid-cols-4 {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }

    #calculator .ss-v5-main-title-f32 {
        font-size: 20px;
    }

    #calculator .ss-v5-main-title-f48 {
        font-size: 24px;
    }

    .ss-chart-show .users-labels .ss-custom-label,
    #calculator .d-flex {
        display: block;
    }

    .users-labels-info {
        width: auto;
    }

    #calculator .parentContainer {
        height: 200px;
    }

    .ss-v5-pros-say {
        padding: 32px 16px 0;
    }

    .ss-v5-pros-title {
        font-size: 28px;
        margin-bottom: 64px;
    }

    .ss-v5-pros-frame {
        border-radius: 20px;
    }

    .ss-v5-pros-copy {
        max-width: 100%;
        padding: 24px 20px 28px;
    }

    body.ss-new-homepage-v5 .ss-v5-pros-quote-text {
        font-size: 20px;
    }

    body.ss-new-homepage-v5 .ss-v5-pros-body,
    body.ss-new-homepage-v5 .ss-v5-pros-name {
        font-size: 15px;
    }

    body.ss-new-homepage-v5 .ss-v5-pros-role {
        font-size: 13px;
    }

    .ss-v5-pros-dots {
        gap: 8px;
        margin-top: 16px;
    }

    .ss-v5-pros-nav,
    .ss-v5-pros-nav img {
        width: 48px;
        height: 48px;
    }

    .ss-v5-solve {
        --ss-solve-progress: 1;
    }

    .ss-v5-solve-track {
        height: auto;
    }

    .ss-v5-solve-sticky {
        position: relative;
        min-height: 0;
        height: auto;
        overflow: visible;
    }

    .ss-v5-solve-inner {
        height: auto;
        justify-content: flex-start;
        gap: 20px;
        padding: 56px 16px 40px;
    }

    .ss-v5-solve-aside {
        margin-bottom: 4px;
    }

    .ss-v5-solve-stats {
        margin-top: 8px;
        flex-shrink: 0;
    }

    .ss-v5-solve-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .ss-v5-solve-watermark {
        font-size: 64px;
        letter-spacing: -3px;
        top: 8px;
    }

    body.ss-new-homepage-v5 .ss-v5-solve-body,
    body.ss-new-homepage-v5 .ss-v5-solve-run,
    body.ss-new-homepage-v5 .ss-v5-solve-together {
        font-size: 15px;
    }

    .ss-v5-solve-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 0;
        padding: 20px 8px;
    }

    .ss-v5-solve-stat {
        border-right: 0;
        border-top: 0;
        padding: 8px 10px;
        border-bottom: 1px solid #243642;
    }

    .ss-v5-solve-stat:nth-child(odd) {
        border-right: 1px solid #243642;
    }

    .ss-v5-solve-stat:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .ss-v5-event-needs {
        padding: 56px 16px 64px;
    }

    .ss-v5-needs-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .ss-v5-needs-panel {
        padding: 20px 16px 24px;
        border-radius: 20px;
    }

    .ss-v5-needs-item {
        padding: 16px 0;
    }

    .ss-v5-needs-item-title {
        font-size: 22px;
    }

    .ss-v5-needs-features {
        font-size: 14px;
    }

    .ss-v5-needs-cta {
        width: 100%;
        margin-top: 20px;
        padding: 14px 20px;
        font-size: 13px;
    }

    .ss-v5-needs-visual {
        min-height: 280px;
        height: 42vh;
    }

    .ss-v5-connected {
        padding: 56px 0 64px;
    }

    .ss-v5-connected-slider {
        padding-left: 0;
        padding-right: 0;
    }

    .ss-v5-connected-track {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ss-v5-connected-title {
        font-size: 28px;
        letter-spacing: -0.6px;
    }

    body.ss-new-homepage-v5 .ss-v5-connected-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .ss-v5-connected-card {
        flex-basis: min(52vw, 160px);
        width: min(52vw, 160px);
        min-height: 0;
        padding: 20px 16px 16px;
        border-radius: 20px;
    }

    .ss-v5-connected-media {
        flex: 0 0 auto;
        height: 200px;
        min-height: 200px;
        margin: 16px -16px 0;
    }

    .ss-v5-connected-foot {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0 -16px -16px;
        padding: 14px 16px 16px;
        background: #111;
        border-radius: 0 0 20px 20px;
    }

    .ss-v5-connected-heading {
        font-size: 18px;
    }

    .ss-v5-connected-nav {
        margin-top: 20px;
    }

    .ss-v5-safegate {
        padding: 56px 16px 64px;
    }

    .ss-v5-safegate-panel {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .ss-v5-safegate-title {
        font-size: 32px;
        letter-spacing: 0.02em;
    }

    body.ss-new-homepage-v5 .ss-v5-safegate-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .ss-v5-safegate-controls {
        gap: 12px;
    }

    .ss-v5-safegate-item.is-open {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
        font-size: 18px;
    }

    .ss-v5-safegate-visual {
        min-height: 260px;
        height: 40vh;
        border-radius: 20px;
    }

    .ss-v5-convert {
        padding: 32px 16px 64px;
    }

    .ss-v5-convert-title {
        font-size: 28px;
        letter-spacing: -0.6px;
        margin-bottom: 20px;
    }

    .ss-v5-convert-media {
        border-radius: 0;
    }

    .ss-v5-final {
        padding: 56px 16px 28px;
        min-height: 0;
    }

    .ss-v5-final-overline {
        font-size: 12px;
        letter-spacing: 0.08em;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    body.ss-new-homepage-v5 .ss-v5-final-overline,
    body.ss-new-homepage-v5 .ss-v5-final-overline span {
        color: var(--link-color);
    }

    .ss-v5-final-title {
        font-size: 32px;
        letter-spacing: -0.6px;
        margin-bottom: 14px;
    }

    body.ss-new-homepage-v5 .ss-v5-final-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .ss-v5-final-cta {
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 56px;
        padding: 14px 16px;
        border-radius: 18px;
        margin-bottom: 0;
    }

    .ss-v5-final-cta-title {
        font-size: 15px;
    }

    .ss-v5-final-cta-sub {
        font-size: 12px;
    }

    .ss-v5-final-stats {
        max-width: none;
        gap: 10px;
        margin-bottom: 20px;
    }

    .ss-v5-final-stat {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .ss-v5-final-stat-icon {
        width: 32px;
        height: 32px;
    }

    body.ss-new-homepage-v5 .ss-v5-final-stat-value {
        font-size: 20px;
    }

    body.ss-new-homepage-v5 .ss-v5-final-stat-label {
        font-size: 13px;
    }

    .ss-v5-footer {
        padding: 48px 16px 24px;
    }

    .ss-v5-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
        padding-bottom: 32px;
    }

    .ss-v5-footer-brand {
        grid-column: 1 / -1;
    }

    .ss-v5-footer-logo img {
        width: 168px;
    }

    .ss-v5-footer-social-link,
    .ss-v5-footer-social-link img {
        width: 44px;
        height: 44px;
    }

    .ss-v5-footer-link {
        margin-bottom: 0;
        padding: 8px 0;
        min-height: 36px;
    }

    .ss-v5-footer-contact {
        grid-column: 1 / -1;
    }

    .ss-v5-footer-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .ss-v5-footer-trust-item {
        flex: none;
        width: 100%;
        min-height: 72px;
        padding: 12px 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-sizing: border-box;
    }

    .ss-v5-footer-trust-item:nth-child(2n) {
        border-right: 0;
    }

    .ss-v5-footer-trust-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .ss-v5-footer-trust-item img {
        width: 100%;
        height: auto;
        max-height: 56px;
        object-fit: contain;
    }

    .ss-v5-footer-legal {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ss-v5-footer-legal-nav {
        align-self: center;
        justify-self: unset;
        grid-column: unset;
    }

    body.ss-new-homepage-v5 {
        overflow-x: hidden;
    }

    .ss-home-v5 .ss-intro-container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .ss-menu-mobile .ss-btn.bar-m {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
        box-sizing: content-box;
    }

    .ss-v4-menu-mb {
        position: fixed;
    }

    .ss-v5-event-types {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .ss-v5-event-type {
        height: 48px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 24px;
    }

    #calculator .ss-v5-content-max-w-1592px {
        padding: 0 16px;
    }

    .ss-calculator-basic-info,
    .ss-box-calculator-info {
        padding: 16px;
    }

    body.ss-new-homepage-v5 .ss-calculator-basic-info {
        padding: 16px;
    }

    body.ss-new-homepage-v5 .ss-calculator-basic-info .ss-v5-calc-form-cta,
    body.ss-new-homepage-v5 .ss-calculator-basic-info .ss-v5-event-types {
        margin-bottom: 16px;
    }

    body.ss-new-homepage-v5 .ss-calculator-basic-info > .ss-grid-cols-4 {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
    }

    body.ss-new-homepage-v5 .ss-calculator-basic-info-item {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ss-ticket-v4-item {
        height: 420px;
    }

    .ss-v5-connected-features {
        font-size: 13px;
        line-height: 1.4;
    }

    .ss-v5-footer-contact-row {
        min-height: 44px;
        align-items: center;
    }

    .ss-v5-re-hero {
        padding: 88px 16px 32px;
    }

    .ss-v5-re-hero-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    body.ss-new-homepage-v5 .ss-v5-re-hero-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .ss-v5-re-hero-visual {
        margin-bottom: 24px;
    }

    .ss-v5-re-every-stream {
        padding: 56px 16px 0;
        background:
            radial-gradient(ellipse 90% 46% at 50% 64%, rgba(19, 126, 252, 0.28) 0%, rgba(19, 126, 252, 0.1) 40%, transparent 70%),
            var(--ss-re-stream-bg);
    }

    .ss-v5-re-every-stream-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.5px;
    }

    body.ss-new-homepage-v5 .ss-v5-re-every-stream-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-head {
        padding: 72px 16px 24px;
    }

    .ss-v5-re-engines-inner {
        padding: 56px 16px 40px;
    }

    .ss-v5-re-engines-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.5px;
    }

    body.ss-new-homepage-v5 .ss-v5-re-engines-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .ss-v5-re-engines-menu {
        gap: 12px;
        padding: 10px 4px 8px;
        position: relative;
        top: 0;
    }

    .ss-v5-re-engines-item {
        width: 80px;
        flex-shrink: 0;
    }

    .ss-v5-re-engines-num {
        top: -6px;
        left: -6px;
        width: 16px;
        height: 16px;
        font-size: 9px;
    }

    .ss-v5-re-engines-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 6px;
    }

    .ss-v5-re-engines-icon img {
        width: 32px;
        height: 32px;
    }

    .ss-v5-re-engines-label {
        width: 100%;
        min-height: 32px;
        font-size: 11px;
        line-height: 14px;
    }

    .ss-v5-re-engines-copy {
        padding: 20px 16px 16px;
    }

    .ss-v5-re-engines-badge {
        margin-bottom: 12px;
        padding: 8px 12px;
    }

    .ss-v5-re-engines-badge-value {
        font-size: 22px;
        line-height: 26px;
    }

    .ss-v5-re-engines-card-title {
        font-size: 22px;
        line-height: 28px;
    }

    .ss-v5-re-engines-card-name {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    body.ss-new-homepage-v5 .ss-v5-re-engines-desc {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .ss-v5-re-engines-point {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .ss-v5-re-engines-visual {
        height: 200px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-copy {
        padding: 8px 0 24px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-badge {
        align-self: flex-start;
        align-items: center;
        justify-content: center;
        width: 128px;
        height: 128px;
        min-width: 128px;
        min-height: 128px;
        margin-bottom: 24px;
        padding: 14px 10px;
        border-width: 1.5px;
        border-radius: 16px;
        text-align: center;
        box-sizing: border-box;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-badge-value {
        font-family: "Montserrat Bold";
        font-size: 32px;
        line-height: 1.05;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-badge-label {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.25;
        text-align: center;
        color: #fff;
    }

    /* .ss-v5-revenue-engines .ss-v5-re-engines-hl {
        display: block;
    } */

    .ss-v5-revenue-engines .ss-v5-re-engines-card-title {
        margin: 0;
        font-family: "Montserrat Bold";
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -0.6px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-card-name {
        margin: 4px 0 18px;
        font-family: "Montserrat Bold";
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -0.6px;
        color: #fff;
    }

    body.ss-new-homepage-v5 .ss-v5-revenue-engines .ss-v5-re-engines-desc {
        margin: 0 0 22px;
        max-width: none;
        font-size: 15px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.58);
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-points {
        margin: 0 0 28px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-point {
        align-items: flex-start;
        gap: 12px;
        margin: 0 0 16px;
        font-family: "Montserrat Bold";
        font-size: 16px;
        line-height: 22px;
        color: #fff;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-point::before {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-visual {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 6 / 5;
        border-radius: 16px;
        overflow: hidden;
    }

    .ss-v5-revenue-engines .ss-v5-re-engines-visual img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 175%;
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        transform: none;
    }

    .ss-v5-re-pocket {
        padding: 64px 16px 48px;
    }

    .ss-v5-re-pocket-title {
        font-size: 28px;
        line-height: 1.18;
        letter-spacing: -0.5px;
    }

    body.ss-new-homepage-v5 .ss-v5-re-pocket-overline {
        font-size: 12px;
        letter-spacing: 0.08em;
        margin-bottom: 16px;
    }

    body.ss-new-homepage-v5 .ss-v5-re-pocket-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 28px;
    }

    .ss-v5-re-pocket-visual {
        border-radius: 16px;
    }

    .ss-v5-re-seats.ss-v5-safegate {
        padding: 56px 16px 64px;
    }

    .ss-v5-re-seats-visual,
    .ss-v5-re-seats-visual .ss-flex-hz-center,
    .ss-v5-re-seats .ss-video-hide-left,
    .ss-v5-re-seats .ss-video-hide-left-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .ss-v5-re-seats .ss-video-hide-left-content video {
        width: 100%;
        min-height: 180px;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        border-radius: 16px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .ss-v5-re-seats-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .ss-v5-re-seats .ss-v5-safegate-left {
        padding-right: 0;
        padding-left: 0;
    }

    .ss-v5-re-seats .ss-v5-safegate-controls {
        flex-direction: column;
        gap: 16px;
    }

    .ss-v5-re-seats .ss-v5-safegate-nav {
        flex-direction: row;
        padding-top: 0;
        order: 2;
    }

    .ss-v5-re-seats .ss-v5-safegate-list {
        order: 1;
        width: 100%;
    }

    .ss-v5-re-seats .ss-v5-safegate-nav button {
        width: 44px;
        height: 44px;
    }

    .ss-v5-re-seats .ss-v5-safegate-item {
        width: 100%;
    }

    .ss-v5-re-leaks.ss-v5-safegate {
        padding: 56px 0 64px;
    }

    .ss-v5-re-leaks .ss-v5-safegate-left {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ss-v5-re-leaks-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .ss-v5-re-leaks .ss-v5-safegate-controls {
        display: contents;
        flex-direction: unset;
        gap: 16px;
    }

    .ss-v5-re-leaks .ss-v5-safegate-nav {
        flex-direction: column;
        padding-top: 0;
        order: unset;
        grid-column: 1;
        grid-row: 3;
        align-self: center;
    }

    .ss-v5-re-leaks .ss-v5-safegate-list {
        order: unset;
        width: 100%;
        grid-column: 2;
        grid-row: 3;
    }

    .ss-v5-re-leaks .ss-v5-safegate-nav button {
        width: 44px;
        height: 44px;
    }

    .ss-v5-re-leaks .ss-v5-safegate-item {
        width: 100%;
    }

    .ss-v5-re-leaks-visual {
        margin: 0 16px;
        border-radius: 16px;
    }

    .ss-v5-re-command {
        padding-top: 48px;
    }

    .ss-v5-re-command-copy {
        padding: 0 16px;
    }

    .ss-v5-re-command-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    body.ss-new-homepage-v5 .ss-v5-re-command-subtitle {
        font-size: 16px;
    }

    .ss-v5-re-command-visual {
        margin-top: 12px;
    }

    .ss-v5-mu-hero.ss-v5-hero-reveal .ss-v5-hero-track {
        height: 100vh;
    }

    body.ss-new-homepage-v5 .ss-v5-mu-hero .ss-v5-hero-pin {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    body.ss-new-homepage-v5 .ss-v5-mu-hero .ss-v5-hero-pin video.ss-video-bg {
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        transform: none;
        object-fit: cover;
        object-position: center center;
    }

    .ss-v5-mu-hero .ss-intro-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 16px;
        z-index: 2;
        height: auto;
        display: block;
    }

    .ss-v5-mu-hero .ss-intro-content {
        margin-left: 0;
        max-width: 100%;
    }

    .ss-v5-mu-hero .ss-v5-hero-subtitle {
        max-width: none;
    }

    .ss-v5-mu-hero .ss-v5-hero-pin::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.28) 55%, transparent 100%);
    }

    .ss-v5-mu-hero .ss-v4-btn {
        width: 100%;
        max-width: 100%;
        height: 58px;
        min-height: 58px;
        padding: 14px 16px;
        line-height: 1.35 !important;
        letter-spacing: 0.6px;
        white-space: normal;
        text-align: center;
        box-sizing: border-box;
        background: #137EFC;
        background-image: none;
        color: #fff;
    }

    .ss-v5-mu-profit-title {
        font-size: 32px;
        line-height: 1.15;
        white-space: normal;
        text-align: center;
    }

    body.ss-new-homepage-v5 #mu-profit .ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
        font-size: 18px;
        white-space: normal;
    }

    .ss-v5-mu-profit-visual {
        min-height: 320px;
        height: 46vh;
        max-height: 440px;
        overflow: visible;
    }

    .ss-v5-mu-profit .ss-v5-safegate-nav {
        display: none;
    }

    .ss-v5-mu-profit .ss-v5-safegate-nav button {
        width: 44px;
        height: 44px;
    }

    .ss-v5-mu-before .ss-v5-re-engines-badge {
        width: 128px;
        height: 128px;
        min-width: 128px;
        min-height: 128px;
        margin-bottom: 24px;
        padding: 12px;
    }

    .ss-v5-mu-before .ss-v5-re-engines-badge-value {
        font-size: 28px;
        line-height: 32px;
    }

    .ss-v5-mu-before .ss-v5-re-engines-card-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .ss-v5-mu-before .ss-v5-re-engines-card-name {
        font-size: 13px;
        letter-spacing: 0.14em;
        margin-bottom: 14px;
    }

    .ss-v5-mu-before .ss-v5-re-engines-visual {
        height: auto;
        aspect-ratio: 988 / 910;
    }

    .ss-v5-mu-crowd-title {
        font-size: 28px;
        line-height: 36px;
        text-shadow: 0 2px 28px rgba(0, 0, 0, 0.72);
    }

    .ss-v5-mu-crowd-card {
        flex: 0 0 86%;
        width: 86%;
    }

    .ss-v5-mu-crowd-shot {
        aspect-ratio: 3 / 4;
    }

    .ss-v5-mu-crowd-card-title {
        font-size: 20px;
        line-height: 26px;
    }

    .ss-v5-mu-crowd-controls {
        justify-content: space-between;
        margin-top: 24px;
    }

    .ss-v5-mu-crowd-nav button,
    .ss-v5-mu-crowd-nav button svg {
        width: 48px;
        height: 48px;
    }

    .ss-v5-mu-crowd-dot {
        min-height: 24px;
        padding: 10px 0;
        box-sizing: content-box;
        background-clip: content-box;
    }

    .ss-v5-mu-live-title {
        font-size: 28px;
    }

    .ss-v5-mu-live-copy {
        padding: 48px 16px 20px;
    }

    .ss-v5-mu-live-label {
        font-size: 9px;
        left: 12px;
        bottom: 10px;
    }

    .ss-v5-mu-live {
        margin-bottom: -12vh;
    }

    .ss-v5-mu-streams-title {
        width: min(88vw, 640px);
        font-size: 26px;
        letter-spacing: -0.5px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .ss-v5-mu-streams-connected {
        margin-top: 0;
    }

    .ss-v5-mu-quote-frame {
        border-radius: 20px;
    }

    .ss-v5-mu-quote-video,
    .ss-v5-mu-quote-overlay {
        height: 200px;
        flex-basis: 200px;
    }

    .ss-v5-mu-quote-copy {
        padding: 20px 16px 24px;
    }

    .ss-v5-mu-quote-text {
        font-size: 22px;
    }

    body.ss-new-homepage-v5 .ss-v5-mu-quote-body {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .ss-v5-mu-energy-track {
        height: auto;
    }

    .ss-v5-mu-energy-pin {
        position: relative;
        height: auto;
        min-height: 0;
        align-items: flex-start;
        padding: 72px 16px 56px;
        overflow: visible;
    }

    .ss-v5-mu-energy-shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.68) 100%);
    }

    .ss-v5-mu-energy-title {
        font-size: 28px;
    }

    .ss-v5-mu-energy-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ss-v5-mu-wave-track {
        height: 180vh;
    }

    .ss-v5-mu-wave-lead {
        top: 28%;
        font-size: 24px;
        letter-spacing: -0.4px;
        width: min(88vw, 1120px);
    }

    .ss-v5-mu-wave-step {
        font-size: 15px;
    }

    .ss-v5-mu-wave-step.is-attention {
        left: 6%;
        bottom: 10%;
    }

    .ss-v5-mu-wave-step.is-action {
        top: 44%;
        left: 50%;
    }

    .ss-v5-mu-wave-step.is-revenue {
        top: auto;
        bottom: 10%;
        left: auto;
        right: 6%;
    }

    .ss-v5-mu-wave-closer {
        font-size: 22px;
        top: 30%;
        width: min(88vw, 1100px);
    }

    .ss-v5-mu-cta-track {
        height: auto;
    }

    .ss-v5-mu-cta-pin {
        position: relative;
        height: auto;
        min-height: 100vh;
    }

    .ss-v5-mu-cta-bg {
        object-position: 72% 58%;
    }

    .ss-v5-mu-cta-shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.12) 100%);
    }

    .ss-v5-mu-cta-inner {
        padding: 112px 16px 72px;
        min-height: 0;
        height: auto;
    }

    .ss-v5-mu-cta-title {
        font-size: 28px;
        letter-spacing: -0.4px;
        margin-bottom: 16px;
    }

    .ss-v5-mu-cta-line {
        display: inline;
    }

    .ss-v5-mu-cta-line + .ss-v5-mu-cta-line::before {
        content: " ";
    }

    body.ss-new-homepage-v5 .ss-v5-mu-cta-sub {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .ss-v5-mu-cta-btn {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 48px;
        padding: 14px 16px;
        line-height: 1.35 !important;
        letter-spacing: 0.6px;
        white-space: normal;
        text-align: center;
    }

    .ss-v5-mu-cta-demo {
        bottom: 24px;
        width: auto;
        max-width: calc(100% - 32px);
    }

    .ss-home-v5 .ss-intro-content {
        padding-right: 0;
    }

    .ss-v5-calc-opportunity-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ss-v5-calc-opportunity-copy,
    body.ss-new-homepage-v5 .ss-v5-calc-opportunity-amount {
        grid-column: 1;
    }

    .ss-home-v5 .ss-intro-content .ss-v5-hero-cta.ss-v4-btn-main-white {
        width: 100%;
        font-size: 18px !important;
        min-height: 52px;
    }

    .ss-v5-platform-stage .ss-v5-glass-nav {
        margin-top: 16px;
        grid-template-columns: 1fr;
    }

    .ss-v5-re-hero .ss-v5-platform-stage .ss-v5-glass-nav {
        margin-top: 16px;
    }

    .ss-v5-re-hero .ss-v5-glass-copy {
        margin-top: 24px;
    }

    .ss-v5-calc-float {
        font-size: 12px;
        gap: 12px;
        padding: 5px 5px 5px 18px;
        letter-spacing: 0.04em;
    }

    .ss-v5-calc-float-icon {
        width: 36px;
        height: 36px;
    }

    .ss-v5-replay {
        top: -24px;
        right: 8px;
        font-size: 12px;
    }

    .ss-v5-needs-grid {
        grid-template-columns: 1fr;
    }

    .ss-v5-revenue-engines .ss-v5-safegate-nav {
        display: none;
    }

    .mt-96px {
        margin-top: 48px;
    }

    .ss-space-section {
        height: 32px;
    }

    /* Homepage mobile — match app/assets/images/home_page_v5/mobile.png */
    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-media,
    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-bg,
    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-shade,
    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-scrim {
        bottom: auto;
        height: min(78vh, 720px);
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 32%, rgba(0, 0, 0, 0.55) 72%, #000 100%);
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-scrim {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.72) 68%, #000 100%);
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-inner {
        gap: 28px;
        padding: 388px 20px 32px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-overline {
        margin-bottom: 12px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-title {
        margin-bottom: 18px;
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-title .ss-v5-accent {
        background: linear-gradient(90deg, #137EFC 0%, #8B5CFF 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-body {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.88);
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-aside {
        padding-left: 16px;
        margin-bottom: 8px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-aside::before {
        width: 3px;
        top: 2px;
        bottom: 2px;
        transform: scaleY(1);
        background: #137EFC;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-run {
        font-size: 16px;
        line-height: 1.35;
        font-family: "Montserrat Bold";
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-together {
        font-size: 16px;
        line-height: 1.35;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 0;
        margin-top: 12px;
        padding: 22px 8px 18px;
        border-radius: 20px;
        border-color: rgba(36, 54, 66, 0.9);
        background: #030C12;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-stat {
        gap: 6px;
        padding: 14px 8px;
        border: 0;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-stat:nth-child(odd),
    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-stat:nth-last-child(-n + 2) {
        border: 0;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-stat-icon,
    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-stat-icon img {
        width: 40px;
        height: 40px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-stat-value {
        font-size: 28px;
        line-height: 1.1;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-solve-stat-label {
        font-size: 12px;
        line-height: 1.3;
        color: rgba(255, 255, 255, 0.92);
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-event-needs {
        padding: 48px 16px 40px;
        background: #000;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-title {
        margin-bottom: 24px;
        text-align: center;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.6px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-title .ss-v5-accent {
        background: linear-gradient(90deg, #137EFC 0%, #5BA8FF 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-panel {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-acc {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-item,
    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-item:first-child,
    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-item.is-open {
        margin: 0;
        padding: 16px 18px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 16px;
        background: #0E1016;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-item.is-open {
        padding: 18px 18px 16px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-item-title-full {
        display: none;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-item-title-short {
        display: inline;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-item-title {
        font-size: 22px;
        line-height: 1.25;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-features {
        font-size: 14px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.88);
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-needs-visual {
        order: 2;
        width: 100%;
        min-height: 280px;
        height: 38vh;
        max-height: 340px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        column-gap: 8px;
        padding: 36px 0 56px;
        background: #000;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-head {
        display: contents;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected > .ss-v4-content-max-w-1440px:not(.ss-v5-connected-head) {
        display: contents;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-overline {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        padding: 8px 8px 8px 16px;
        font-size: 11px;
        letter-spacing: 0.08em;
        align-self: center;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-nav {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
        gap: 8px;
        margin: 0;
        padding: 0 16px 0 0;
        opacity: 1;
        transform: none;
        animation: none;
        align-self: center;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected.is-inview .ss-v5-connected-nav {
        animation: none;
        opacity: 1;
        transform: none;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-nav button {
        width: 40px;
        height: 40px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.42);
        color: #fff;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-nav button:disabled {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.35);
        opacity: 1;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-title {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: none;
        margin: 12px 0 12px;
        padding: 0 16px;
        color: #fff;
        font-size: 28px;
        line-height: 1.18;
        letter-spacing: -0.6px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-subtitle {
        grid-column: 1 / -1;
        grid-row: 3;
        max-width: none;
        margin: 0 0 24px;
        padding: 0 16px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 15px;
        line-height: 1.5;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-slider {
        grid-column: 1 / -1;
        grid-row: 4;
        position: relative;
        padding: 0;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-card {
        flex: 0 0 calc(100vw - 52px);
        width: calc(100vw - 52px);
        min-height: 520px;
        padding: 22px 20px 20px;
        border-radius: 24px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-heading {
        font-size: 22px;
        line-height: 1.25;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-media {
        flex: 1 1 auto;
        height: auto;
        min-height: 220px;
        margin: 18px -20px 0;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-foot {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0 -20px -20px;
        padding: 16px 20px 48px;
        background: #111;
        border-radius: 0 0 24px 24px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-dots {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 16px;
        z-index: 3;
        justify-content: center;
        gap: 8px;
        pointer-events: none;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-dot {
        pointer-events: auto;
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(19, 126, 252, 0.28);
        cursor: pointer;
    }

    body.ss-new-homepage-v5 .ss-home-v5 .ss-v5-connected-dot.is-active {
        background: #137EFC;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate.ss-v5-safegate {
        padding: 40px 16px 56px;
        background: #000;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-panel {
        padding: 0;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-panel::before {
        display: none;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-left {
        display: flex;
        flex-direction: column;
        order: 1;
        width: 100%;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-title,
    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-subtitle,
    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-controls,
    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-list {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        justify-self: stretch;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-title {
        margin-bottom: 12px;
        font-size: 40px;
        letter-spacing: 0.04em;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-subtitle {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.62);
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-nav {
        display: none;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-list {
        gap: 10px;
        align-items: stretch;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-item {
        width: 100%;
        max-width: 100%;
        align-self: stretch;
        padding: 14px 18px 14px 12px;
        border-radius: 999px;
        background: #1a1a1a;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-item.is-open {
        width: 100%;
        padding: 20px 18px;
        border-radius: 20px;
        background: #1c1c1c;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-item.is-open .ss-v5-safegate-item-title {
        font-size: 18px;
        white-space: normal;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-visual {
        order: 2;
        width: 100%;
        min-height: 240px;
        height: 52vw;
        max-height: 320px;
        border-radius: 24px;
    }

    body.ss-new-homepage-v5 .ss-home-v5 #safegate .ss-v5-safegate-shot {
        object-fit: cover;
        border-radius: 24px;
    }
    .ss-v5-pros-slider {
        min-height: 580px;
        max-height: 580px;
    }
    .ss-v4-content-max-w-1440px.px-mb-0{
        padding: 0;
    }
    .ss-v5-re-hero-cta{
        padding: 16px 20px;
        font-size: 14px;
    }
    .ss-v5-re-hero .ss-v5-re-hero-visual {
        min-height: auto;
    }
    .ss-mb-hidden{
        display: none;
    }
    .ss-dektop-hidden {
        display: block;
    }
    .ss-mb-mb-32px{
        margin-bottom: 32px;
    }
    .ss-v5-platform-stage{
        margin-bottom: 0;
    }
    .ss-v5-journey-overline{
        font-size: 14px;
    }
    body.ss-new-homepage-v5 .ss-v5-calc-subtitle,body.ss-new-homepage-v5 .ss-calculator-basic-info-item p{
        font-size: 16px;
    }
    body.ss-new-homepage-v5 .ss-v5-calc-form-cta,body.ss-new-homepage-v5 .ss-box-calculator-info-title h2{
        font-size: 18px;
    }
    body.ss-new-homepage-v5 .ss-calculator-basic-info .ss-v5-event-types{
        overflow-y: auto;
    }
}

@media screen and (max-width: 480px) {
    .ss-tab-content {
        height: 520px;
    }
}

@media screen and (max-width: 440px) {
    .ss-v5-re-hero-cta {
        padding: 16px 12px;
        font-size: 12px;
    }
}
@media screen and (max-width: 375px) {
    .ss-tab-content {
        height: 560px;
    }
}

@media screen and (max-width: 350px) {
    .ss-tab-content {
        height: 600px;
    }
}
