body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'system-ui', 'Inter', 'Helvetica Neue', sans-serif;
}

main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-bg {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}



.light-bg {
  z-index: 0;
}

.dark-bg {
    z-index: -1;
}

.header {
    padding: 16px 20px;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-logo-text {
    font-size: 21px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 800;
}

.header-logo-text-small {
    font-size: 21px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 100;
}

.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    min-height: 0;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
    text-align: center;
}

footer {
    width: 100%;
    margin-top: auto;
}

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

.hero-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 0;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
        height: auto;
        min-height: auto;
    }

    .hero-section {
        align-items: flex-start;
        padding: 20px 20px 40px 20px;
    }

    .hero-right {
        height: auto;
        min-height: auto;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 4px;
}

.modal-body-text {
    color: rgba(255, 255, 255, 0.7);
}

.hero-headline {
    font-size: 34px;
    background: linear-gradient(to right, #ffffff, #51acee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.hero-cta {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    justify-content: center;
}

.feature-carousel {
    position: relative;
    min-height: 150px;
}

.feature-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.feature-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
    padding-left: 20px;
    border-left: 3px solid #f7ffab;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background-color: white;
    border-color: white;
}

.indicator:hover {
    border-color: white;
    transform: scale(1.2);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    margin: 10px;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    opacity: 0.7;
}

.modal-close:hover {
    opacity: 1;
}

.modal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.modal-logo-text {
    font-size: 18px;
    margin: 0;
    font-weight: 800;
}

.modal-logo-text-small {
    font-size: 18px;
    margin: 0;
    font-weight: 100;
}

.modal-body {
    text-align: center;
}

.modal-email {
    font-size: 20px;
    color: rgb(90, 186, 255);
    margin: 0;
    word-break: break-all;
    font-weight: 500;
    text-decoration: none;

}