/* #intro-visual {
    position: absolute; 
    width: 60%; 
    height: 25em; 
    background-color: transparent;
    border-top: 2px solid #272727bd; 
    border-right: 2px solid #272727bd; 
    border-left: 2px solid #272727bd; 
    top: 80vh; 
    left: 50%; 
    transform: translateX(-50%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
} */


#intro-visual #big-rec {
    position: absolute;
    height: 25em;
    background-color: transparent;
    border-top: 2px solid #272727bd;
    border-right: 2px solid #272727bd;
    border-left: 2px solid #272727bd;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    top: 65vh;
    left: 50%;
    transform: translateX(-50%);
    /* background-image: url('../img/nebula.jpg');
    background-size: cover; */
}

/* @media (max-width: 786px) {
    #intro-visual #big-rec {
        height: 7em;
    }
} */

#intro-visual #big-rec video {
    width: 100%;
    padding: 0.5em; 
    height: auto; 
    position: absolute; 
    top: 0;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* #intro-visual #big-rec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
    border-radius: 20px;
} */

@media (max-width: 576px) {
    #intro-visual #big-rec {
        width: 90%;
    }
}

@media (min-width: 576px) {
    #intro-visual #big-rec {
        width: 60%;
    }
}


#intro-visual #big-rec svg {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    z-index: 2;
}

#intro-visual #big-rec svg #bolt-play {
    stroke: transparent;
}

#intro-visual #big-rec svg path {
    z-index: 2;
}


.main-video-animation {
    /* background-image: url('../img/main-bg.png'); */
    /* background-size: cover; */
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    position: absolute;
    display: flex;
    justify-content: center;
}

.main-video-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Black overlay with 50% opacity */
}

.custom-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


@media (max-width: 576px) {
    .custom-container h1 {
        font-size: 14vw;
        line-height: 14vw;
        font-weight: 800;
    }

    .custom-container h2 {
        font-size: 7vw;
        font-weight: 600;
        padding: 0 1em;
    }

    .subheadline {
        font-size: 1.2em;
        color: var(--accent-color) !important;
        margin-bottom: 40px;
        padding: 0 0.2em;
        line-height: 1.1em;
        font-size: 0.9em;
    }

    .rizz-subtitle {
        font-size: 1.1em;
    }

}

@media (min-width: 576px) {
    .custom-container h1 {
        font-size: 6vw;
        line-height: 6vw;
        font-weight: 800;
    }

    .custom-container h2 {
        font-size: 3vw;
        font-weight: 600;
        width: 60%;
    }

    .subheadline {
        font-size: 24px;
        color: var(--accent-color) !important;
        margin-bottom: 40px;
        width: 60%;
    }
}



.cta-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
    justify-content: center;
    align-items: center;
}


header {
    background-color: transparent;
    /* padding: 0.5em 0; */
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(4px);
    z-index: 1000;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
}

main {
    padding-top: 100vh;
}

@media (max-width: 786px) {
    main {
        padding-top: 55vh;
    }
}


.hero {
    text-align: center;
    padding: 240px 0 80px;
    position: relative;
    overflow: hidden;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #b7b7b7 !important;
}

.rizz-title {
    position: relative;
    /* left: 100%; */
    /* left: 0; */
    text-wrap: nowrap;
    display: inline-block;
}

.it-up {
    display: inline-block;
    /* color: transparent; */
}



/* .cta-button {
    display: inline-block;
    background-color: var(--accent-color) !important;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
}


@media (min-width: 576px) {
    .cta-button {
        padding: 1em 2em;
    }
}

@media (max-width: 576px) {
    .cta-button {
        padding: 0.5em 0;
        width: 50%;
        text-align: center;
    }
}


.cta-button:hover {
    background-color: var(--hover-color) !important;
    transform: scale(1.05);
} */

/* Call to action section */
.cta-button {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    background-color: rgba(98, 0, 238, 0.1) !important;
    color: var(--accent-color) !important;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid rgba(98, 0, 238, 0.5) !important;
    border-image: initial !important;
    outline: none;
}


@media (min-width: 576px) {
    .cta-button {
        padding: 0.7em 1.7em;
    }
}

@media (max-width: 576px) {
    .cta-button {
        padding: 0.5em 0;
        width: 50%;
        text-align: center;
    }
}


.cta-button:hover {
    /* background-color: var(--hover-color) !important; */
    transform: scale(1.05);
    border: 2px solid rgba(98, 0, 238) !important;
    color: white !important;
}




#survey-btn-container {
    display: flex;
    gap: 0.5em;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

#survey-btn {
    font-size: 18px;
    color: white;
    margin-bottom: 0 !important;
    background-color: transparent !important;
}

#survey-btn:hover {
    display: flex;
    align-items: center;
    color: orangered !important;
}

#survey-btn-container:hover {
    border-bottom: 2px solid orangered;
}


#survey-btn-container:hover #survey-btn,
#survey-btn-container:hover .material-symbols-outlined {
    color: orangered;
}



#survey-form {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.features-container {
    overflow: hidden;
    position: relative;
    height: 100vh;
}

.features {
    /* display: flex; */
    position: absolute;
    top: 20%;
    transform: translateY(-20%);
    width: fit-content;
    display: flex;
    align-items: center;
    /* will-change: transform; */
    height: 100%;
    /* Adjust based on number of features */
}

.feature {
    text-align: center;
    padding: 0 20px;
    position: absolute;
    border-radius: 10px;
    border: 1px solid #272727bd;
    width: 60em;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Adjust based on number of features */
}

.triangle-right {
    position: absolute;
    right: -18%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    clip-path: polygon(100% 0%, 40% 30%, 40% 70%, 100% 100%);
    background-color: #ab512d;
    /* border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-right: 70px solid red; */
    /* Color of the triangle */
    display: inline-block;
    z-index: -1;
}

@keyframes fade-right-left {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.transparent-text {
    color: transparent !important;
}

.feature h3 {
    color: #b7b7b7;
}

#feature-1 {
    left: 10%;
}

#feature-2 {
    left: 30%;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.platforms,
.samples {
    text-align: center;
    padding: 60px 0;
}

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

.social-proof .container {
    border-radius: 20px;
    width: 80%;
    padding: 40px 0;
    background-color: rgb(255, 255, 255, 0.1);
    position: relative;
    /* background: linear-gradient(241deg, #00ff35, #0079ff);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 7s ease infinite;
    -moz-animation: AnimationName 7s ease infinite;
    animation: AnimationName 7s ease infinite; */
}


@media (max-width: 576px) {
    .social-proof .container {
        width: 100%;
    }

    .social-proof-content {
        width: 90%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

.avatars-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-left: -8px;
    position: relative;
    transition: all 0.3s ease;
    animation: avatarFloat 3s ease-in-out infinite;
}

.avatar:hover {
    transform: translateY(-4px) scale(1.1);
    border-color: #6366f1;
    z-index: 10;
}

.avatar:nth-child(1) {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    animation-delay: 0s;
}

.avatar:nth-child(2) {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    animation-delay: 0.2s;
}

.avatar:nth-child(3) {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    animation-delay: 0.4s;
}

.avatar:nth-child(4) {
    background: linear-gradient(135deg, #f59e0b, #10b981);
    animation-delay: 0.6s;
}

.avatar:nth-child(5) {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    animation-delay: 0.8s;
}

.avatar:nth-child(6) {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    animation-delay: 1s;
}

.avatar:nth-child(7) {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    animation-delay: 1.2s;
}

.avatar:nth-child(8) {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    animation-delay: 1.4s;
}

.more-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #272727;
    border: 2px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6366f1;
    font-weight: 600;
    margin-left: -8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.social-proof-text {
    font-size: 14px;
    color: var(--font-color);
    margin-top: 16px;
    margin-bottom: 16px;
}

@keyframes avatarFloat {

    0%,
    100% {
        transform: translateY(0);
    }

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

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.platform-list,
.content-type-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 40px;
}

@media (max-width: 576px) {
    .content-type-list {
        padding: 0 0.5em;
    }
}

.platform,
.content-type {
    background-color: transparent;
    border: 1px solid #272727bd;
    padding: 0.5em 1em;
    border-radius: 15px;
    transition: all 0.3s ease;
    color: #b7b7b7;
    font-weight: 600;
    cursor: pointer;
}


.selected-option {
    /* border: 1px solid white; */
    transform: scale(1.1);
    color: var(--accent-color);
    box-shadow: 0 0 7px 0px var(--hover-color);
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 12em;
}

.platform:hover {
    /* background-color: var(--accent-color) !important; */
    transform: scale(1.1);
    color: var(--accent-color);
    box-shadow: 0 0 7px 0px var(--hover-color);
}

.content-type:hover {
    /* background-color: var(--accent-color) !important; */
    transform: scale(1.1);
    color: var(--accent-color);
    box-shadow: 0 0 7px 0px var(--hover-color);
}


.platform img {
    width: 4em;
    padding-bottom: 0.5em;
}

.testimonial {
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px 0 20px;
    /* background-color: black; */
    color: var(--font-color);
    border-radius: 10px;
    font-size: 1.4em;
}

.testimonial-1 {
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px 20px 20px;
    /* background-color: black; */
    color: var(--font-color);
    border-radius: 10px;
    font-size: 1.4em;
}

.testimonial span {
    font-size: 1.5em;
}





/* Waitlist form */
.modal-title {
    color: #b7b7b7 !important;
}

.modal-content {
    position: relative;
    border-radius: 10px !important;
    background-color: transparent !important;
    background-color: #070707 !important;
    border: 1px solid #272727bd !important;
}

.modal-header {
    padding-top: 0.8em !important;
    padding-bottom: 0em !important;
    border: none !important;
}

.modal-footer {
    display: flex;
    justify-content: center !important;
    flex-direction: column !important;
    border: none !important;
}


.waitlist-form-section {
    display: flex;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    width: 95%;
}

#email {
    padding: 10px;
    border: 1px solid #272727bd;
    border-radius: 5px;
    background-color: transparent;
    color: var(--text-color);
    font-size: 16px;
    width: 30%;
    outline: none !important;
}

@media (max-width: 576px) {
    #email {
        width: 95%;
    }
}


.custom-form input,
.custom-form textarea,
.custom-form select,
#user-experience-level,
#primary-content-platform {
    padding: 10px;
    border: 1px solid #272727bd;
    border-radius: 5px;
    background-color: transparent;
    color: var(--text-color);
    font-size: 16px;
}

.custom-form input:focus,
.custom-form textPath:focus,
.custom-form select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.custom-form select {
    color: #b7b7b7;
}

.custom-form button {
    background-color: var(--accent-color);
    color: white;
    padding: 10px;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    width: 7em;
    transition: background-color 0.3s;
}

.custom-form button:hover {
    background-color: var(--hover-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: bold;
}








/* Features text animation */
#features-script {
    text-align: center;
    font-weight: 600;
    margin: 0;
    text-wrap: nowrap;
    z-index: 2;
    padding-left: 10em;
    padding-right: 10em;
    position: relative;
}

@media (min-width: 576px) {
    #features-script {
        font-size: 6vw;
    }
}

@media (max-width: 576px) {
    #features-script {
        font-size: 10vw;
    }
}

.input-field-title {
    border: 1px solid #272727bd;
    border-radius: 15px;
    padding: 0.5em 0.2em 0.5em 0.5em;
}

.type-animation {
    display: inline-block;
    white-space: nowrap;
}

.cursor {
    display: inline-block;
    width: 2px;
    background-color: black;
    animation: blink 1s infinite;
    vertical-align: bottom;
}

@keyframes blink {

    0%,
    20% {
        opacity: 1;
    }

    20.01%,
    100% {
        opacity: 0;
    }
}

.hgl-1 {
    position: relative;
    top: -0.5em;
    color: white;
    border-radius: 10px;
    display: inline-block;
    line-height: 1.5em;
    vertical-align: middle;
    padding: 0.1em 0.3em;
    background: linear-gradient(270deg, #00ffbd, #ff9400, #00a5ff);
    background-size: 600% 600%;

    -webkit-animation: AnimationName 7s ease infinite;
    -moz-animation: AnimationName 7s ease infinite;
    animation: AnimationName 7s ease infinite;
}


.hgl-2 {
    position: relative;
    top: 0.5em;
    left: -0.5em;
    color: white;
    line-height: 1.5em;
    vertical-align: middle;
    border-radius: 10px;
    padding: 0.1em 0.3em;
    background: linear-gradient(270deg, #48aef7, #01f487, #ff0000);
    background-size: 600% 600%;
    transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    box-shadow: -10px -10px 20px black;
    /*  for IE  */

    /* 	for browsers supporting webkit (such as chrome, firefox, safari etc.). */
    -webkit-transform: rotate(-10deg);
    display: inline-block;

    /* -webkit-animation: AnimationName 7s ease infinite;
    -moz-animation: AnimationName 7s ease infinite;
    animation: AnimationName 7s ease infinite; */
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 20%
    }

    20% {
        background-position: 100% 20%
    }

    100% {
        background-position: 0% 20%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 20%
    }

    20% {
        background-position: 100% 20%
    }

    100% {
        background-position: 0% 20%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 20%
    }

    20% {
        background-position: 100% 20%
    }

    100% {
        background-position: 0% 20%
    }
}

.transcribe-animation .word {
    display: inline-block;
    position: relative;
    /* transition: color 0.3s ease;
    padding: 2px;
    margin: 0 2px; */
}


#idea-icon {
    display: none;
    position: absolute;
    width: 8em;
}


.counter {
    font-weight: 600;
}




@media (max-width: 576px) {
    .spacer {
        aspect-ratio: 960/500;
        width: 100%;
        /* height: auto; */
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}

@media (min-width: 576px) {
    .spacer {
        aspect-ratio: 960/200;
        width: 100%;
        /* height: auto; */
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}

.layer1 {
    background-image: url('../svg/layer-1.svg');
}

.layer2 {
    background-image: url('../svg/layer-2.svg');
}

.flip {
    transform: rotate(180deg);
}





.div {
    left: 50%;
    transform: translateY(0%) rotate(45deg);
    opacity: 0;
}

@keyframes scrolldown {
    0% {
        transform: translateY(20%) rotate(45deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(0%) rotate(45deg);
        opacity: 0.2;
    }

    100% {
        transform: translateY(20%) rotate(45deg);
        opacity: 0.7;
    }
}






.preview {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.preview canvas {
    width: fit-content;
    height: 100%;
    background-color: transparent;
}





.early-access-text {
    margin-bottom: 0 !important;
    font-size: 1.1em;
    font-weight: 600;
    /* background: linear-gradient(90deg, #00f3ff, #6a00f4, #d400ff, #00f3ff); */
    background: linear-gradient(45deg, #00fffc, #fc00ff, #fffc00);
    background-size: 400% 400%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* animation: buttonGlow 3s infinite; */
    animation: gradient-animation 6s ease-in-out infinite;
    text-align: center;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



#submit-form {
    display: flex;
    justify-content: center;
    align-items: center;
}


.loader {
    /* display: none; */
    position: relative;
    border: 0.2em solid #181818;
    border-top: 0.2em solid var(--main-color);
    border-right: 0.2em solid var(--main-color);
    border-radius: 50%;
    width: 1.1em;
    height: 1.1em;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 0.5s linear infinite;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}