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;
}

/* how to section styles moved to block_howto.css */

.about-section {
    padding-top: 20px;
    padding-right: 2rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    z-index: 2;
}

.about-content-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.about-content {
    padding: 2rem;
    background-color: rgba(17, 17, 17, 0.95);
    border-radius: 8px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

[data-theme="light"] .about-content {
    background-color: var(--block_background);
    box-shadow: var(--block_shadow);
}

.about-content:hover {
    box-shadow: 0 8px 30px rgba(109, 58, 255, 0.15);
    border-color: rgba(109, 58, 255, 0.3);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 0px;
    margin-top: 0px;
}

.about-content .section-title:after {
    left: 0;
    transform: none;
}

.about-text {
    font-family: var(--font_secondary);
    line-height: 1.7;
    color: var(--text_color);
    font-size: 1rem;
    margin-bottom: 4px;
}

.button_middle {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.button_middle .bcbd {
    max-height: 20px;
    min-height: 20px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    margin-top: 20px;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    border: none;
    font-family: var(--font_secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(109, 58, 255, 0.3);
    max-width: max-content;
    
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 58, 255, 0.4);
}

.features-section {
    padding-top: 2.5rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 2;
}

.features-content {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.features-tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-heading {
    font-size: 2.5rem;
    color: var(--text_color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 1rem;
}

.features-subheading {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text_color);
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: rgba(17, 17, 17, 0.98);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

[data-theme="light"] .feature-card {
    background-color: var(--block_background);
    box-shadow: var(--block_shadow);
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(109, 58, 255, 0.15);
    border-color: rgba(109, 58, 255, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .standard_icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(0);
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 8px;
    transform: rotate(10deg);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--text_color);
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

.feature-description {
    color: var(--text_color);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-top: 8px;
    margin-bottom: 8px;
}

.feature-list {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.feature-list li::before {
    content: '•';
    color: var(--accent-color);
    margin-right: 0.5rem;
}

@media (max-width: 1200px) {
    .hero-brand {
        font-size: 4rem;
    }
    
    .hero-quote blockquote {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-quote blockquote {
        font-size: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 767px) {
    .gradient-1 {
        width: 400px;
        height: 400px;
        top: -15px;
        left: -110px;
    }
    
    .gradient-3 {
        width: 350px;
        height: 350px;
        top: -15px;
        left: -90px;
    }
    .hero-brand {
        font-size: 3rem;
    }
    
    .hero-quote blockquote {
        font-size: 1.5rem;
    }
    
    .hero_buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .features-section {
        padding-top: 10px;
    }

    /* how to section media queries moved to block_howto.css */
    
    .pulse-container {
        width: 300px;
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-brand {
        font-size: 2.5rem;
    }
    
    .hero-quote blockquote {
        font-size: 1.25rem;
        padding-left: 1rem;
    }
    
    /* how to grid media query moved to block_howto.css */
}

.home-footer {
    background-color: rgba(5, 5, 5, 0.98);
    padding-top: 4rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(109, 58, 255, 0.15);
}

[data-theme="light"] .home-footer {
    background-color: rgba(238, 238, 238, 0.95);
    border-top: 1px solid rgba(109, 58, 255, 0.2);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.footer-brand-info {
    flex: 1;
}

.footer-brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text_color);
    margin-bottom: 0.5rem;
}

[data-theme="light"] .footer-brand-name {
    color: var(--text_color);
}

.footer-brand-desc {
    color: var(--text_color);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: var(--text_color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

[data-theme="light"] .footer-section h3 {
    color: var(--text_color);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text_color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(109, 58, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 58, 255, 0.2);
}

[data-theme="light"] .social-link {
    background: rgba(109, 58, 255, 0.1);
    color: var(--accent-color);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text_color);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 0px;
    padding-top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text_color);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text_color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-brand-desc {
        max-width: 100%;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .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;
}