body {
    font-family: 'BAHNSCHRIFT', sans-serif;
}


.hero {
    /* background-image: var(--bg1); */
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 70px 5vw;
}

#heroVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.227),
            rgba(0, 0, 0, 0.396));

    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.spotlight-text {
    font-size: 72px;
}

.hero h1 {
    max-width: 700px;
    margin-bottom: -30px;
    font-weight: 800;
    color: #93e6dc;
}

.hero p {
    max-width: 600px;
    font-family: var(--font3);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: bold;
    margin-top: -30px;
    margin-left: auto;
    margin-right: 0;
    color: #ccc;
    text-align: right;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    padding: 70px 5vw;
    background-color: #161616;
}


.info h1 {
    font-size: 72px;
    max-width: 800px;
    color: #93e6dc;
}

.info p {
    width: 100%;
    max-width: 700px;
    font-size: 25px;
    font-weight: 100;
    color: #ccc;
}

.process-section {

    padding: 140px 8%;
    background: #010101;
    position: relative;
    overflow: hidden;

}

.process-title {
    text-align: center;
    color: white;
    font-size: 52px;
    margin-bottom: 90px;
    font-family: var(--font1);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

.process-line {

    position: absolute;
    top: 80px;
    left: 18%;
    width: 64%;
    height: 3px;
    background: #2b2b2b;

}

.process-line::after {

    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 0%;
    height: 100%;

    background: linear-gradient(90deg, #5B8CFF, #93e6dc);

    transition: 1.8s;

}

.process-section.active .process-line::after {

    width: 100%;

}

.process-step {

    opacity: .15;

    transform: translateY(40px);

    transition: .7s;

    text-align: center;

}

.process-step.active {

    opacity: 1;

    transform: none;

}

.step-circle {
    width: 80px;
    height: 80px;
    margin: auto auto 25px;
    /* border-radius: 50%; */
    border-top-right-radius: 20%;
    border-bottom-left-radius: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    background: #191919;
    border: 1px solid #303030;
    transition: .4s;
}

.process-step.active .step-circle {

    background: linear-gradient(135deg, #5B8CFF, #93e6dc);

    color: black;

    transform: scale(1.08);

    box-shadow:
        0 0 40px rgba(147, 230, 220, .45);

}

.process-step h3 {

    color: white;
    font-size: 28px;
    margin-bottom: 15px;

}

.process-step p {
    color: #9c9c9c;
    line-height: 1.7;
    font-size: 17px;
}

.btn {
    position: relative;
    overflow: hidden;
    background: #93e6dc13;
    width: 100%;
    height: 80px;
    border-top: 3px solid #93e6dc;
    border-bottom: 3px solid #93e6dc;
    font-family: var(--font4);
    font-size: clamp(20px, 3vw, 32px);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        color .35s ease;
}


.btn::before {
    content: "";
    position: absolute;

    bottom: 0;
    right: -100%;

    width: 100%;
    height: 6px;

    background: linear-gradient(90deg,
            transparent,
            #93e6dc,
            transparent);

    transition: .9s ease;
}


.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,
            transparent,
            #93e6dc,
            transparent);
    transition: .9s ease;
}


.btn:hover {
    /* transform: translateY(-6px); */
    color: #fff;
    box-shadow:
        0 15px 40px rgba(201, 201, 201, 0.25),
        0 0 50px rgba(83, 201, 222, 0.15);
}


.btn:hover::before {
    right: 100%;
}


.btn:hover::after {
    left: 100%;
}


.btn .small-text {
    color: #cdcdcd;
    transition: .35s ease;
}


.btn:hover .small-text {
    color: #fff;
}

.small-text {
    font-size: 18px;
    font-family: var(--font3);
    font-weight: 300;
    color: #ffffff;
    margin-left: 20px;
    margin-top: 10px;
}

.log_in_bar {
    background-color: #131313;
    color: #00ffe0;
    text-align: right;
    padding: 10px 4vw;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #333;
    white-space: nowrap;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.log_in_bar a {
    color: #00ffe0;
    margin-left: 8px;
    text-decoration: none;
    padding: 0 10px;
    transition: color 0.3s;

    display: flex;
    align-items: center;
}

.log_in_bar a img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #93e6dc;
    margin-top: 0px;
}

.log_in_bar a:hover {
    color: #00c8b4;
    text-decoration: underline;
}

.trapezoid {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 600px;
    background: #93e6dc;
    clip-path: polygon(0% 0%,
            100% 20%,
            100% 100%,
            0% 100%);
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 24px;
    text-align: left;
    padding: 120px 5vw;
}

.inside_trapezoid_h1 {
    font-size: clamp(28px, 5vw, 72px);
    color: #000000;
    margin-bottom: 20px;
}

.inside_trapezoid_p {
    width: 100%;
    max-width: 600px;
    font-size: 22px;
    font-weight: 100;
    color: #000000;
}

.platform_logos {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
}

.platform_logos div {
    width: 100%;
    max-width: 245px;
    height: auto;
    object-fit: contain;

    padding: 25px 35px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 24px;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, .05),
        0 20px 50px rgba(0, 0, 0, .25);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}

.platform_logos div img {
    width: 100%;
}

.platform_logos div:hover {

    transform:
        translateY(-8px) scale(1.05);

    border-color: rgba(147, 230, 220, .6);

    box-shadow:
        0 0 30px rgba(147, 230, 220, .25),
        inset 0 0 40px rgba(147, 230, 220, .08);
}

.platform_logos div {
    opacity: 0;
    transform: translateY(40px) scale(.95);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2, .8, .2, 1);
}

.platform_logos div.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.platform_logos_middle {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    width: 100%;
    max-width: 800px;
    margin-top: 350px;
    padding: 20px;
}

.platform_logos_middle img {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    object-fit: contain;
    transition: transform 0.2s ease;
    cursor: pointer;
}


.bg1 {
    background-image: var(--bg1);
}

.bg2 {
    background-image: var(--bg2);
}

.bg3 {
    background-image: var(--bg3);
}

.bg4 {
    background-image: var(--bg4);
}

.transition-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s ease-in-out;
}

.artists {
    padding: 60px 5vw;
    background-color: #111;
    color: #ffffff;
    text-align: center;
}

.smart-link {
    padding: 60px 5vw;
    background: linear-gradient(180deg, #00d0ff1a, #020000);
    color: #ffffff;
    text-align: center;
}

.music-publishing {
    padding: 60px 5vw;
    background: linear-gradient(180deg, #281A29, #161616);
    color: #ffffff;
    text-align: center;
}

.artists h1 {
    margin-top: 30px;
    font-size: 24px;
    max-width: 800px;
    color: #ffffff;
    font-weight: bold;
}

.artist-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
        "a . b"
        ". c ."
        "d . e";
    gap: 10px;
    margin-top: 50px;
    justify-items: center;
    width: 100%;
    overflow-x: hidden;
}

.artist-layout>.artist:nth-child(1) {
    grid-area: a;
}

.artist-layout>.artist:nth-child(2) {
    grid-area: b;
}

.artist-layout>.artist:nth-child(3) {
    grid-area: c;
}

.artist-layout>.artist:nth-child(4) {
    grid-area: d;
}

.artist-layout>.artist:nth-child(5) {
    grid-area: e;
}

.artist {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(147, 230, 220, 0.3);
    transition: transform 0.3s ease;
    clip-path: polygon(10% 0%, 90% 10%, 100% 95%, 10% 100%, 0% 50%);
    transform: rotate(-4deg);
}

.artist-layout>.artist:nth-child(2) img {
    clip-path: polygon(0% 15%, 80% 0%, 100% 95%, 20% 100%, 0% 80%);
    transform: rotate(7deg);
}

.artist-layout>.artist:nth-child(2) img:hover {
    transform: rotate(0deg);
}

.artist-layout>.artist:nth-child(3) img {
    clip-path: polygon(5% 5%, 100% 0%, 100% 100%, 0% 90%);
    transform: rotate(-5deg);
}

.artist-layout>.artist:nth-child(3) img:hover {
    transform: rotate(0deg);
}

.artist-layout>.artist:nth-child(4) img {
    clip-path: polygon(5% 10%, 90% 10%, 90% 90%, 0% 100%);
    transform: rotate(-6deg);
}

.artist-layout>.artist:nth-child(4) img:hover {
    transform: rotate(0deg);
}

.artist-layout>.artist:nth-child(5) img {
    clip-path: polygon(0% 0%, 90% 10%, 100% 100%, 10% 90%);
    transform: rotate(6deg);
}

.artist-layout>.artist:nth-child(5) img:hover {
    transform: rotate(0deg);
}

.artist img:hover {
    transform: rotate(0deg);
}

.artist p {
    margin-top: 10px;
    font-size: 16px;
    color: #ccc;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
}

.ai-mastering-span:hover {
    font-size: 24px;
    cursor: pointer;
}

.smart-link-m-texts h1 {
    font-size: 72px;
}

.smart-link-m-texts p {
    font-size: 20px;
}

.final-cta {

    position: relative;
    overflow: hidden;

    padding: 180px 8%;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(147, 230, 220, .25),
            transparent 40%),
        #080808;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}


.cta-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    background: #93e6dc;

    filter: blur(180px);

    opacity: .12;

    animation: pulseGlow 5s infinite alternate;

}


@keyframes pulseGlow {

    from {
        transform: scale(.8);
    }

    to {
        transform: scale(1.2);
    }

}



.cta-content {

    position: relative;

    max-width: 1000px;

    z-index: 2;

}



.cta-content h2 {

    font-size: clamp(35px, 5vw, 75px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;

    color: white;

    margin: 0;

}



.cta-content h2 span {

    color: #93e6dc;

    text-shadow:
        0 0 30px rgba(147, 230, 220, .5);

}



.cta-content h3 {

    margin-top: 25px;

    font-size: clamp(22px, 3vw, 40px);

    color: #aaa;

    font-weight: 500;

}



.cta-content p {

    margin-top: 40px;

    color: #ddd;

    font-size: 22px;

}



.cta-button {

    margin-top: 45px;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 18px 45px;

    border-radius: 50px;

    background: #93e6dc;

    color: #000;

    text-decoration: none;

    font-size: 22px;

    font-weight: 800;

    transition: .35s;

    box-shadow:
        0 0 40px rgba(147, 230, 220, .25);

}



.cta-button span {

    transition: .35s;

}



.cta-button:hover {

    transform: translateY(-6px);

    box-shadow:
        0 0 70px rgba(147, 230, 220, .5);

}



.cta-button:hover span {

    transform: translateX(8px);

}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 20px;
    }

    nav {
        margin-top: 10px;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        text-align: left;
        padding: 50px 20px;
        height: auto;
    }

    .spotlight-text-mobile-small {
        font-size: 48px;
    }

    .spotlight-text-mobile-big {
        font-size: 68px !important;
    }

    .process-step p {
        font-size: 12px;
    }

    .process-section {
        padding-bottom: 100px;
    }

    .process-grid {
        gap: 30px;
    }

    .hero p {
        font-size: 14px;
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-top: 20px;
    }

    .info {
        padding: 25px 20px;
    }

    .info h1 {
        font-size: 54px;
        max-width: 100%;
    }

    .info p {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
    }

    .btn {
        height: 60px;
        font-size: 24px;
    }

    .small-text {
        font-size: 14px;
        margin-left: 10px;
        margin-bottom: 6px;
    }

    .trapezoid {
        height: auto;
        padding: 60px 20px 250px 20px;
    }

    .inside_trapezoid_h1 {
        font-size: 32px;
        margin-top: 25px;
    }

    .inside_trapezoid_p {
        font-size: 18px;
    }

    .smart-link-m-texts h1 {
        font-size: 48px;
    }

    .smart-link-m-texts p {
        font-size: 12px;
    }

    .platform_logos {
        grid-template-columns: repeat(auto-fit, 180px);
        justify-content: center;
        gap: 25px;
    }

    .platform_logos div img {
        width: 100px;
    }

    /* logos fixed */
    .platform_logos_middle {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 310px;
        width: 90%;
    }

    .platform_logos_middle img {
        max-width: 90%;
    }


    .site-footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }

    .artist-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "a b"
            "c c"
            "d e";
        gap: 30px;
    }

    .artist img {
        width: 300px;
        height: 300px;
    }

    .artist h1 {
        font-size: 20px;
    }

    .artist p {
        font-size: 14px;
    }

    .menu-toggle {
        display: block;
    }

    nav.main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #000;
        padding: 10px 0;
        gap: 10px;
    }

    nav.main-nav.show {
        display: flex;
    }

    nav.main-nav a {
        text-align: center;
        padding: 10px 0;
    }

    .smart-link-m {
        display: flex !important;
        flex-direction: column-reverse !important;
        padding: 0px !important;
    }

    .smart-link-m-image {
        width: 90% !important;
    }

    .smart-link-m-texts {
        display: block !important;
        text-align: center !important;
        max-width: 100% !important;
        margin-top: 30px;
    }

    .smart-link-m-texts h1 {
        font-size: 48px !important;
    }

    .smart-link-m-texts p {
        font-size: 16px !important;
    }

    .max-m {
        display: none !important;
    }

}

@media (max-width: 600px) {
    .artist-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e";
    }

    .artist img {
        width: 250px;
        height: 250px;
    }

    .artist h1 {
        font-size: 18px;
    }

    .artist p {
        font-size: 14px;
    }
}