@import url('../components/footer_big.css');

body {
    background-color: #000000;
    color: var(--text_color);
    font-family: var(--font_primary);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* light mode overrides */
[data-theme="light"] body {
    background-color: var(--body_background);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    z-index: -1;
}

.page_content_home {
    flex: 1;
    position: absolute;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100vw;
}

.gradient_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.gradient_1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(109, 58, 255, 0.4) 0%,
        rgba(109, 58, 255, 0.1) 40%,
        transparent 70%
    );
    top: 90px;
    left: -20px;
}

.gradient_3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, 
        rgba(0, 229, 255, 0.4) 0%,
        rgba(0, 229, 255, 0.1) 40%,
        transparent 70%
    );
    top: 90px;
    left: 0px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero_section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.hero_brandtext {
    display: flex;
    flex-direction: column;justify-content: center;
}

.hero_bottomlinks {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.hero_bottomlinks a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.button_arrow {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero_bottomlinks a:hover .button_arrow {
    opacity: 1;
    transform: translateY(2px);
}

.element_1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, transparent 80%);
    top: 10%;
    right: -150px;
    transform: rotate(45deg);
    opacity: 0.3;
}

.element_2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--accent-purple) 0%, transparent 80%);
    bottom: -200px;
    left: -200px;
    transform: rotate(-30deg);
    opacity: 0.2;
}

.hero_content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-top: 10px;
    margin-top: -30px;
}

.hero_actionscontainer {
    width: max-content;
    flex-direction: column;
    justify-content: center;
}

.hero_actionscontainer h2 {
    margin-bottom: 0px;
    margin-top: 0px;
}

.hero_action {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero_action h3 {
    margin-bottom: 2px;
    margin-top: 0px;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
    min-width: max-content;
    margin-right: 10px;
}

.hero_actiontitlecont {
    margin-top: 14px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: max-content;
}

.hero_actiontitlecontout {
    width: 100%;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero_actiontitlecontout hr {
    width: 100%;
    margin-top: 9px;
    opacity: 0.2;
}

.hero_action_row {
    width: 165px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.hero_action_row a {
    max-width: max-content;
}

.hero_action_row svg {
    width: 20px;
    aspect-ratio: 1;
    opacity: 0.8;
}

.hero_brand {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text_color);
    margin-bottom: 0px;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(109, 58, 255, 0.4);
    margin-top: 0px;
    margin-left: -2px;
}

.hero_quote {
    max-width: 800px;
    margin-bottom: 0px;
}

.hero_quote blockquote {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--text_color);
    position: relative;
    padding-left: 1.3rem;
    border-left: 4px solid var(--accent-color);
    opacity: 0.9;
    margin-left: 0px;
    margin-bottom: 0px;
}

.hero_buttons {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.2em;
}

/* about section styles moved to block2_about.css */
/* features section styles moved to block3_features.css */
/* footer styles moved to footer_big.css */

@media (max-width: 767px) {
    .hero_content {
        flex-direction: column;
        padding-left: 32px;
        padding-right: 32px;
        padding-top: 0;
        margin-top: 0;
        gap: 2rem;
        height: 100vh;
        z-index:-4
    }

    .hero_brandtext {
        position: absolute;
        top: 120px;
    }

    .hero_actionscontainer {
        width: calc(100vw - 64px);
        position: absolute;
        bottom: 247px;
    }

    .hero_action_row {
        width: 100%;
        width: calc(100vw - 64px);
    }

    .hero_bottomlinks {
        top: 224.5px;
        max-height: 36px;
        right: 32px;
    }

    .hero_background {
        max-height: 50vh;
    }

    .hero_quote blockquote {
        font-size: 16px;
    }

    .hero_content_nothome {
        height: calc(100vh - 400px);
        justify-content: center;
        padding-left:20px;
        padding-right:20px
    }
    .feature_card p {
        margin: 0;
    }
    .feature_card .feature_title {
        margin-top: 0;
    }
    .feature_card .feature_list {
        margin-bottom: 0;
    }

    .about_text {
        font-size: 16px;
    }

    .features_subheading {
        font-size: 18px;
        line-height: 160%;
    }
}

.hero_content_nothome {
    padding-left:50px;
    padding-right:50px;
}

@media (max-width: 767px) {
    .hero_content_nothome {
        padding-left:21px;
        padding-right:21px;
    }
}


.hero_brandtext_nothome {
    position: relative;
    top: unset;
    margin-top: 40px;
}