@font-face {
    font-family: "articulat-cf", sans-serif;
    font-weight: 400;
    font-style: bold;
    src: url(https://use.typekit.net/adj5zgd.css);
}

html,
body {
    height: 100%;
    background: linear-gradient(135deg, #e9e0f4 0%, #d9e5f9 25%, #f5f5f5 50%, #fdf6e9 75%, #fef5e8 100%);
    background-attachment: fixed;
    color: #111827;
    -ms-overflow-style: none;
    font-family: "articulat-cf";
    padding: 0;
    margin: 0;
}

.content-wrapper{
    margin-left: 2.5vw;
    margin-right: 2.5vw;
}

.logo{
    font-size: 0.8rem;
}

.hidden {
    opacity: 0;
    transition: all 1.5s ease;
}

.show {
    opacity: 1;
}

p {
    font-family: "articulat-cf";
}

a {
    cursor: pointer;
}

body::-webkit-scrollbar {
    display: none;
}

.hero{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 25vh;
    text-align: center;
    min-height: 50vh;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100vh;
    left: -100vw;
    width: 300vw;
    height: 300vh;
    /* background: radial-gradient(
        circle at center,
        rgba(233, 224, 244, 0.4) 0%,
        rgba(217, 229, 249, 0.2) 40%,
        rgba(245, 245, 245, 0) 70%
    ); */
    z-index: -1;
}

.hero-text p{
    font-size: 5rem;
    padding: 0;
    margin: 0;
    font-weight: 900;
    color: #111827;
}

.hero-subtext {
    font-size: 1.5rem;
    color: rgba(17, 24, 39, 0.7);
}

.hero-cta-btn {
    margin-top: 2rem;
}

.hero-cta-btn a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    background: linear-gradient(90deg, #6bc4ff, #b46bff, #6bc4ff);
    background-size: 200% auto;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(107, 196, 255, 0.3), 0 0 20px rgba(180, 107, 255, 0.2);
    transition: all 0.3s ease;
    animation: gradientMove 3s ease infinite;
    z-index: 1;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.hero-cta-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 107, 255, 0.4), 0 0 30px rgba(107, 196, 255, 0.3);
    animation-play-state: paused;
}

.hero-cta-btn a::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 15px;
    background: linear-gradient(90deg, #6bc4ff, #b46bff);
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.hero-cta-btn a:hover::after {
    opacity: 0.7;
}

.hero-cta-btn a::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: -1;
    opacity: 0.5;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.footer-cta p {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    max-width: 30vw;
}

.footer-cta span {
    background: linear-gradient(90deg, #6bc4ff, #b46bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.footer-cta-btn a {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    background: linear-gradient(90deg, #6bc4ff, #b46bff);
    padding: 0.75rem 2rem;
    border-radius: 4rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(107, 196, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-cta-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 107, 255, 0.4);
}

.footer {
    margin-top: 10vh;
    padding: 2rem 4vw;
    border-top: 1px solid #E5E7EB;
    color: #111827;
    font-size: 1rem;
}

.footer p {
    margin-top: 0;
}

.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-contact {
    text-decoration: none;
    color: #3B82F6;
    transition: 0.3s ease;
}

.footer-contact:hover {
    color: #6366F1;
}

.footer-copy {
    font-size: 0.85rem;
    color: #6B7280;
}

.footer-copy span {
    color: #3B82F6;
    /* accent color */
}

/* Features Section Styling */
.features-section {
    margin: 10vh 0;
    padding: 4rem 0;
    /* background-color: #F9FAFB; */
}

.features-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
}

.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.feature-item.active {
    background-color: rgba(237, 242, 255, 0.8);
}

.feature-content {
    flex: 1;
}

.feature-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.feature-subtext {
    margin: 0;
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-item.active .feature-subtext {
    max-height: 100px;
    opacity: 1;
    margin-top: 0.5rem;
}

.features-video-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #EBF4FF 0%, #E0E7FF 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 350px;
    width: 500px;
}

#feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

#feature-video.fade-out {
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-container {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .features-video-container {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 640px) {
    .features-section {
        padding: 2rem 0;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-subtext {
        font-size: 0.9rem;
    }
    
    .features-video-container {
        height: 250px;
    }
}

/* Waitlist Modal Styles */
.waitlist_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.waitlist_modal_content {
    background-color: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
    position: relative;
    color: #111827;
    padding: 2rem;
}

.waitlist_modal_inner {
    width: 100%;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waitlist_modal_content h2 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    background: linear-gradient(90deg, #6bc4ff, #b46bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.waitlist_modal_content p {
    margin-top: 0;
    margin-bottom: 2rem;
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.5;
}

.waitlist_modal_close_button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 10;
}

.waitlist_modal_close_button:hover {
    color: #111827;
}

.waitlist_form_group {
    margin-bottom: 2rem;
}

.waitlist_input_container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #F3F4F6;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.waitlist_email_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    color: #6B7280;
}

#waitlist_email_input {
    width: 100%;
    padding: 1rem 1rem 1rem 0.5rem;
    background-color: transparent;
    border: none;
    color: #111827;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#waitlist_email_input::placeholder {
    color: #9CA3AF;
}

#waitlist_email_input:focus {
    outline: none;
}

.waitlist_button_group {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.waitlist_cancel_button {
    padding: 0.75rem 1.5rem;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    color: #4B5563;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waitlist_cancel_button:hover {
    background-color: #E5E7EB;
}

.waitlist_submit_button {
    padding: 0.75rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(90deg, #6bc4ff, #b46bff);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(107, 196, 255, 0.3);
    transition: all 0.3s ease;
}

.waitlist_submit_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 107, 255, 0.4);
}

.waitlist_submit_button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#waitlist_success_message {
    text-align: center;
    padding: 1rem;
    color: #047857;
    background-color: #ECFDF5;
    border-radius: 8px;
    margin-top: 1rem;
}

#waitlist_error_message {
    text-align: center;
    padding: 1rem;
    color: #B91C1C;
    background-color: #FEF2F2;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Responsive adjustments for modal */
@media (max-width: 640px) {
    .waitlist_modal_content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .waitlist_button_group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .waitlist_cancel_button,
    .waitlist_submit_button {
        width: 100%;
    }
}

/* Responsive adjustments for footer-CTA */
@media (max-width: 1024px) {
    .footer-cta p {
        font-size: 2.5rem;
        max-width: 60vw;
    }
}

@media (max-width: 768px) {
    .footer-cta p {
        font-size: 2rem;
        max-width: 80vw;
    }
}

@media (max-width: 640px) {
    .footer-cta p {
        font-size: 1.75rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .footer-cta-btn a {
        font-size: 1.25rem;
        padding: 0.6rem 1.5rem;
    }
}
