/* Global styles */
body {
    background-color: #000;
    margin: 0;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Hide scrollbar */
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Header styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}

/* New: group nav and login button to the right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px; /* space between nav and login */
}

.login-btn {
    display: flex;
    height: 36px;
    width: 36px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.header-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none; /* Remove underline from link */
    transition: opacity 0.2s; /* Smooth hover effect */
}

.header-title:hover {
    opacity: 0.8; /* Subtle hover effect */
}

.header-nav {
    display: flex;
    gap: 32px;
    margin-right: 8px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: normal;
}

.nav-link:hover {
    text-decoration: underline;
}

.main-content {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: flex-start;
    align-items: center;
    min-height: 80vh;
    position: relative;
    margin-top: 120px; /* Add space below fixed header */
    margin-bottom: 80px; /* Add space above footer */
}

.image-overlay-wrapper {
    position: relative;
    width: 80vw;              /* or max-width: 1200px; */
    max-width: 1200px;
    margin: 64px auto 0 auto; /* Top margin, horizontally centered */
    box-sizing: border-box;
    /* background: url('assets/google-ai-pixel-2.png') center center / cover no-repeat; */
    border-radius: 0;
    min-height: 500px;        /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded-squares-row {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
    z-index: 2;
    width: 90%;
    justify-content: center;
    padding: 24px 0;
}

.rounded-square {
    background: rgba(0,0,0,0.85);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    width: 300px;
    min-height: 220px;
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center; /* <-- center children horizontally */
    justify-content: center; /* <-- center children vertically */
}

.square-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.square-desc {
    color: #ccc;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    margin-top: 12px;
    width: 100%;
}

.spectral-highlight {
    font-weight: 600;
    background: linear-gradient(90deg, 
        #ff0055 0%,    /* red-pink */
        #ff9900 20%,   /* orange */
        #ffee00 40%,   /* yellow */
        #00ff99 60%,   /* green */
        #00ccff 80%,   /* blue */
        #9900ff 100%   /* purple */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.home-bg-image-1 {
    width: 100%;
    height: auto;
    max-height: 900px;
    display: block;
    border-radius: 24px;
}

.home-bg-image-2 {
    width: 100%;
    height: 400px;
    max-height: 900px;
    display: block;
    border-radius: 24px;
}

.hyperprism-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: clamp(3rem, 10vw, 7rem); /* Responsive font size - increased for bigger text */
    font-weight: 300;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    width: 100%;
}

.hyperprism-subtitle {
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: clamp(1rem, 2vw, 2rem); /* Responsive font size */
    font-weight: 300;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    width: 100%;
}

.hyperprism-background {
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: transparent;
    font-size: clamp(1rem, 2vw, 1.3rem); /* Responsive font size */
}

.rectangle-btn, .footer-btn {
    display: inline-block;
    padding: 12px 48px;
    background: rgba(255,255,255,0.8);
    color: #000;
    border-radius: 32px;
    font-size: clamp(0.8rem, 2vw, 1rem); /* Responsive font size */
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    min-width: 220px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    align-self: flex-end;
}

.rectangle-btn:hover {
    background: #fff;
    color: #222;
}

.hyades-ui-image {
    display: block;
    margin: 32px auto 0 auto;
    max-width: 80%;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.centered-text-3 {
    margin: 32px auto 0 auto;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.5rem); /* Responsive font size */
    font-weight: 300;
    text-align: center;
    max-width: 900px;
    width: 100%;
}



.main-footer {
    background: #000;
    color: #fff;
    padding: 40px 0 80px 0; /* Add 80px bottom padding for space after footer */
    width: 100vw;           /* Fill the entire viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;     /* Center the full-width footer */
    margin-right: -50vw;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1600px;      /* Increase max-width for wider content */
    width: 90vw;            /* Make it responsive and wide */
    margin: 0 auto 24px auto;
    padding: 0 32px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    margin-right: 32px;
}

.footer-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #ccc;
}

.footer-link a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 100;
}

.footer-link a:hover {
    text-decoration: underline;
}

.footer-center {
    flex: 1;
    text-align: right;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Stick content to the right */
    text-align: center;
    /* justify-content: flex-end; */
    width: 100%;
}

.footer-title {
    display: flex;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-align: center; /* Center align text */
}

.footer-desc {
    display: flex;
    font-size: 1rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 16px;
    text-align: center;
}

.footer-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 700px) {
    .footer-center {
        flex-direction: column;
        align-items: center;
    }
    .footer-action {
        justify-content: center;
        margin-top: 24px;
        width: 100%;
    }
}

.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin: 32px 0 24px 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    text-align: center;
    margin-bottom: 40px; /* Add more black space after copyright */
}

.footer-hyades {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #ccc;
}

.pricing-content {
    max-width: 1100px;
    margin: 120px auto 80px auto; /* Add top and bottom margins for spacing */
    padding: 32px 0 0 0; /* Reduce bottom padding if needed */
    text-align: center;
}

.pricing-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 8px;
    margin-left: 5vw; /* Align with left edge of background image */
    letter-spacing: 1px;
    text-align: left; /* Already left aligned */
}

.pricing-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 32px;
    margin-left: 5vw; /* Align with left edge of background image */
    text-align: left; /* Add this line for left alignment */
}

.pricing-cards-bg {
    background-image: url('assets/google-ai-pixel-5.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 80px 60px; /* Increase padding for equal spacing on all sides */
    margin-bottom: 32px;
    position: relative;
    width: 90vw;              /* Make background wider */
    max-width: 1600px;        /* Optional: set a max width */
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pricing-cards-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;            /* Reduce gap for better fit */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.pricing-card {
    background: #000;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    flex: 1 1 260px;
    min-width: 180px;
    max-width: 340px;
    width: 28vw; /* Responsive width */
    min-height: 420px;
    padding: 2.5vw 2vw 2vw 2vw; /* Responsive padding */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 16px;
    position: relative;
}

.pricing-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 8px;
}

.pricing-card-title {
    color: #fff;
    font-size: clamp(1.2rem, 2.5vw, 2.2rem); /* Responsive font size */
    font-weight: normal;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0;
}

.pricing-card-price {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.5rem); /* Responsive font size */
    font-weight: 400;
    text-align: right;
    margin-bottom: 0;
    white-space: nowrap;
}

.pricing-divider {
    border: none;
    border-top: 2px solid #333;
    width: 100%;
    margin: 24px 0 24px 0;
}

.pricing-card-features {
    color: #ccc;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem); /* Responsive font size */
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 24px;
    padding-left: 18px;
    margin-top: 0;
}

.pricing-card-btn {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255,255,255,0.8);
    color: #000;
    border-radius: 32px;
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* Responsive font size */
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
    align-self: flex-end;
}

@media (max-width: 900px) {
    .pricing-card {
        width: 40vw;
        min-width: 140px;
        max-width: 260px;
        padding: 3vw 2vw 2vw 2vw;
    }
    .pricing-cards-bg {
        padding: 40px 10px;
        width: 100vw;
        max-width: 100vw;
    }
    .pricing-cards-row {
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }
    .features-card-img,
    .features-3col-card img {
        width: 90vw;
        max-width: 95%;
        height: auto;
        aspect-ratio: 4/5;
        min-width: 120px;
        border-radius: 12px;
        margin-bottom: 12px;
        background: #222;
        object-fit: cover;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .features-3col-card {
        max-width: 95vw;
        min-width: 0;
        padding: 16px 8px;
    }
    .features-3col-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 98vw;
    }
}


/* FEATURES */

.features-content {
    max-width: 1100px;
    margin: 120px auto 80px auto; /* Add top and bottom margins for spacing */
    padding: 32px 0 0 0;
    text-align: left;
}

.features-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 8px;
    margin-left: 18px;
    letter-spacing: 1px;
    text-align: left;
}

.features-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 32px;
    margin-left: 18px;
    text-align: left;
}

.features-cards-bg {
    position: relative;
    border-radius: 24px;
    padding: 120px 0; /* Make the background much taller */
    margin-bottom: 32px;
    overflow: hidden;
    min-height: 600px; /* Ensure enough height for the image */
}

.features-cards-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url('assets/google-ai-pixel-4.png') center center / cover no-repeat;
    opacity: 1; /* Adjust opacity if you want it faded */
    pointer-events: none;
    border-radius: 24px;
    min-height: 600px;
}

.features-cards-row,
.features-3col-row {
    position: relative;
    z-index: 2; /* Ensure cards are above the background image */
}

.features-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 32px;
    width: 100%;
}

.features-card {
    background: rgba(0,0,0,0.85);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    width: 160px;
    min-height: 220px;
    padding: 16px 8px 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

    .features-card-img {
        width: 90vw;
        max-width: 95%;
        height: auto;
        aspect-ratio: 4/5;
        min-width: 120px;
        border-radius: 12px;
        margin-bottom: 12px;
        background: #222;
        object-fit: cover;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .features-3col-card {
        max-width: 95vw;
        min-width: 0;
        padding: 16px 8px;
    }
    .features-3col-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 98vw;
    }


.features-card-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.coming-soon-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 32px 0 16px 0;
    text-align: left;
}

.features-coming-row {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    margin-bottom: 8px;
    justify-content: center;
}

.features-coming-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    width: 28vw;              /* Responsive width */
    min-width: 0;
    max-width: 340px;
    height: auto;             /* Let height grow with content */
    padding: 12px 8px 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: width 0.2s;
}

.features-coming-img {
    width: 90%;
    max-width: 225px;
    height: auto;
    aspect-ratio: 3/4;        /* Maintain image aspect ratio */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
    background: #222;
}


.features-coming-label {
    color: #222;
    font-size: 1rem;
    font-weight: 450;
    text-align: center;
}

.coming-soon-more {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 16px 0 32px 0;
    text-align: right;
}

.features-cards-bg {
    position: relative;
    border-radius: 24px;
    padding: 48px 0;
    margin-bottom: 32px;
    overflow: hidden;
}

/* Standalone background image behind all features */
.features-cards-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url('assets/google-ai-pixel-4.png') center center / cover no-repeat;
    opacity: 1; /* Adjust opacity if you want it faded */
    pointer-events: none;
}

/* Make sure feature cards are above the background */
.features-3col-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    width: 90%;
    margin: 0 auto;
    justify-items: center;
}

.features-3col-card {
    background: rgba(0,0,0,0.85);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    width: 90%;
    max-width: 320px;
    min-height: 180px;
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    z-index: 2;
}

.wide-bg-image {
    width: 60vw;                /* or your preferred width */
    max-width: 100vw;
    min-width: 20vw;
    display: block;
    margin: 64px auto 80 auto;   /* Top margin, horizontal centering */
    height: 30vw;
    object-fit: cover;
}

/* Mobile view */
@media (max-width: 700px) {

    /* HEADER START */
    .main-header {
        width: 100%;
        box-sizing: border-box;
        padding: 32px 16px;
    }
    .header-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0;
    }
    .header-nav {
        display: flex;
        gap: 24px;
        font-size: 1.2rem;
        align-items: right;
        margin: 0;
    }
    .nav-link {
        font-size: 1.1rem;
    }
    /* HEADER END */

    /* FOOTER START */
    .main-footer {
        padding: 32px 0 40px 0;
        width: 100vw;
        box-sizing: border-box;
        text-align: center;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        width: 100vw;
        padding: 0 8px;
        margin-bottom: 0;
        display: flex;
    }
    .footer-section {
        min-width: unset;
        margin: 0;
        align-items: center;
        text-align: center;
        font-size: 1rem;
        display: flex;
        flex-direction: column;
    }
    .footer-center {
        width: 100vw;
        margin: 32px 0 24px 0;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .footer-title {
        font-size: 3rem;
        margin-bottom: 8px;
    }
    .footer-desc {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    .footer-action {
        justify-content: center;
        width: 100vw;
        margin-top: 16px;
        display: flex;
    }
    .footer-btn {
        min-width: 180px;
        font-size: 1rem;
        padding: 10px 0;
        margin: auto;
    }
    .footer-bottom {
        text-align: center;
        margin-bottom: 24px;
        width: 100vw;
    }
    .footer-hyades {
        font-size: 4rem;
        margin-bottom: 4px;
    }
    .footer-copyright {
        font-size: 1rem;
    }
    /* FOOTER END */

    /* PRICING SECTION */
    .pricing-cards-bg {
        padding: 32px 0;
        width: 100vw;
        max-width: 100vw;
    }
    .pricing-cards-row {
        flex-direction: column;
        gap: 32px;
        width: 100vw;
        max-width: 100vw;
        align-items: center;
        justify-content: center;
        display: flex;
        margin: 0 auto;
    }
    .pricing-card {
        max-width: 95vw;
        width: 95vw;
        min-width: 120px;
        margin: 0 auto;
    }
    /* PRICING SECTION END */

    /* FEATURES SECTION */
    .features-3col-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 98vw;
    }
    .features-3col-card {
        max-width: 95vw;
        min-width: 0;
        padding: 16px 8px;
    }
    .features-coming-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 100vw;
    }
    .features-coming-card {
        max-width: 95vw;
        min-width: 0;
        padding: 16px 8px;
    }

    .rectangle-btn, .footer-btn {
        width: 80vw;
        max-width: 95vw;
        min-width: 0;
        font-size: 1rem;
        padding: 10px 0;
        margin: 0 auto;
        display: block;
    }
    .rounded-squares-row {
        flex-direction: column;
        gap: 24px;
        width: 98vw;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .rounded-square {
        width: 95vw;
        max-width: 500px;
        min-width: 0;
        margin: 0 auto;
    }
}

