* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #131313;
    color: #f5f5f5;
    line-height: 1.6;
    cursor: default;   
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.blur-object {
    position: fixed;
    margin-top: 9000px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(3px);
    pointer-events: none;
    z-index: 1000;
}

.candlesticks {
    width: 100vw;
    height: auto;
}


.shiny-button {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.shiny-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255, 255, 255, 0.384) 50%,
      rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
}
.shiny-button:hover::before {
    left: 125%;
    transition: left 0.5s ease-in-out;
}
.flex {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}



















/* Hero Section */

.logo {
    width: 200px;
    height: auto;
}

.hero {
    background: linear-gradient(180deg, #1b1b1b 0%, #131313 100%);
    padding: 80px 30px 60px;
    text-align: center;
    cursor: default;   
}

.hero-title {
    font-family: 'Gabarito', sans-serif;
    line-height: 1.2;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #11c476, #0a794b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 14px 32px;
    font-size: 1rem;
    /* font-weight: 600; */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0a794b;
    color: #fff;
    box-shadow: 0 0 30px rgba(10, 121, 75, 0.3);
}

.btn-primary:hover {
    background: #0da563;
    box-shadow: 0 0 40px rgba(10, 121, 75, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #262626;
    color: #f5f5f5;
    border: 1px solid #3d3d3d;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.555);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}






























/* Features Section */
.features {
    padding: 80px 30px;
    background: #1b1b1b;
}

.section-title {
    font-family: 'Gabarito', sans-serif;
    line-height: 1.2;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    /* color: #cacaca; */
    background: linear-gradient(90deg, #ffffff, #969696);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.feature-card {
    background: #262626;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #0a794b;
    box-shadow: 0 10px 30px rgba(10, 121, 75, 0.2);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #0c9b5f;
}

.feature-card p {
    color: #999;
    line-height: 1.6;
}





























/* Benefits Section */
.benefits {
    padding: 80px 30px;
    background: #131313;
    cursor: default;   
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(8, 107, 64, 0.1), rgba(25, 255, 159, 0.05));
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(10, 121, 75, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}


.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #096e44;
    box-shadow: 0 10px 30px rgba(10, 121, 75, 0.2);
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: #d1d1d1;
    font-weight: 400;
}























/* Demo Section */
.demo {
    padding: 80px 30px;
    background: #1b1b1b;
    text-align: center;
    cursor: default;   
}
.demo-title {
    margin-bottom: 15px;
}

.demo-caption {
    color: #999;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 40px;
}

.demo-preview {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.demo-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;  /* Max width of video */
    margin: 0 auto;    /* Center horizontally */
}
  
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
  















/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #131313;
    cursor: default;   
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: #1b1b1b;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #f5f5f5;
    font-size: 1.1rem;
    font-weight: 100;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0c8d57;
}

.faq-icon {
    font-size: 1.5rem;
    color: #0a794b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #999;
    line-height: 1.6;
}


























/* Final CTA Section */
.final-cta {
    padding: 70px 40px 100px;
    background: linear-gradient(135deg, rgba(10, 121, 75, 0.1), rgba(10, 121, 75, 0.05));
    text-align: center;
    cursor: default;   
}
.candlesticks-small {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin: 0 0 20px;
}

.cta-title {
    font-family: 'Gabarito', sans-serif;
    line-height: 1.2;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    /* color: #f5f5f5; */
    background: linear-gradient(90deg, #f0f0f0, #969696);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.secondary-info {
    font-size: 13px;
    font-family: 'Gabarito', sans-serif;
    color: #a3a3a3;
}

/* Footer */
.footer {
    cursor: default;   
    padding: 40px 30px;
    background: #0d0d0d;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0a794b;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

























/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .blur-object {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }
}



















/* Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;  /* Thin vertical scrollbar */
    height: 8px; /* Thin horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: transparent;  /* Dark track color */
    border-radius: 10px; /* Rounded corners for the track */
}

::-webkit-scrollbar-thumb {
    background: #555;  /* Dark thumb color */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 2px solid transparent;  /* Subtle border for better visibility */
}

::-webkit-scrollbar-thumb:hover {
    background: #777;  /* Slightly lighter thumb on hover */
}

/* Optional: Style the corner where horizontal and vertical scrollbars meet */
::-webkit-scrollbar-corner {
    background: #222;
}
