@import '/styles/global.css';
@import '/styles/HeaderManager.css';
@import '/styles/FooterManager.css';
@import '/styles/SignupElement.css';
@import '/styles/CookieConsent/CookieConsent.css';
@import '/styles/CookieConsent/CookiePreferences.css';

/* ------------ */
/*  Hardawre OV Hero Section */
/* ------------ */
.hardware-ov-hero-section {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: var(--color-black);
}

/* Large desktop screens: moderate height */
.hardware-ov-hero-image {
    position: relative;
    min-height: 500px;
    max-height: 55vh;
    background-image: url('/assets/images-v3/AURA_Hardware_Family_Hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
}
.hardware-ov-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.0) 50%
    );
    z-index: 1; /* sits above background, below content */
}
.hardware-ov-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: clamp(3rem, 8vh, 6rem);
}
.hero-title {
    font-size: clamp(1rem, 1vw, 1.4rem);
    max-width: 50%;
    color: var(--color-white);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-left: 0; 
}
.hardware-ov-hero-content h1 {
    max-width: 50%;
    color: var(--color-white);
    margin-left: 0; 
    font-weight: 500;
    padding-bottom: 30px;
}
.hardware-ov-hero-content p {
    max-width: 45%;
    color: var(--color-white);
    margin-left: 0;
}
/*------------*/
.hardware-ov-hero-navigation-section {
    height: 55px;
    background-color: var(--color-blue-nav-carousel);
    display: flex; 
    width: 100%;
    margin: 0 auto;
}
.hardware-ov-hero-navigation-section.is-sticky {
    position: fixed;
    top: 105px; /* your header height */
    left: 0;
    width: 100%;
    z-index: 50;
}
/*------------*/
.hardware-sub-nav {
    max-width: 1500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    padding-inline: 120px;
    
}
.hardware-sub-nav a {
    margin-left: 0;
    margin-right: 26px;
    text-decoration: none;
    position: relative;
    padding-bottom: 1px;
}
.hardware-sub-nav a:last-child {
    margin-right: 0;
}
.hardware-sub-nav a h5 {
    color: var(--color-white);
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: .8rem;
    margin: 0;
}
.hardware-sub-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-underline-cta);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hardware-sub-nav a:not(.active):hover::after {
    transform: scaleX(1);
}

.hardware-sub-nav a.active::after {
    transform: scaleX(1);
}

/* ------------ */
/*  Overview — Why do I need AURA Hardware?  */
/* ------------ */
.hardware-overview-section {
    max-width: 1500px;
    padding:  80px 120px;
    margin: 0 auto;
}
.aura-hardware {
    display: flex;
    align-items: center;
    gap: 45px;
}
.aura-hardware-text {
    width: 60%;
    margin-inline: 0;
}
.aura-hardware h5 {
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: .8rem;
    padding-bottom: 10px;
}
.aura-hardware-box {
    background-color: var(--color-blue-nav-carousel);
    padding: 30px;
    border-radius: 12px;
    width: 40%;
    margin-right: 0;
}
.aura-hardware-box h3 {
    color: var(--color-white);
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: 1.3rem;
    padding-bottom: 15px;
}
.aura-hardware-box p {
    color: var(--color-white);
    padding-bottom: 20px;
}
.transparent-cta-button:hover {
    text-decoration: underline;

}
/* ------------ */






/* ------------ */
/*  Which Series Is Right For You?   */
/* ------------ */
.which-series-container {
    max-width: 1500px;
    padding: 80px 120px;
    margin: auto;
}
.card-grid {
    padding-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    align-items: stretch; /* all cells same height */
    gap: 20px;
    box-sizing: border-box;
}
.card-item-image-wapper {
    position: static; /* remove positioning from wrapper */
    display: flex;
    flex-direction: column;
    height: 100%;
}


.compute-badge {
    position: absolute;
    top: -14px;
    left: 30px;

    padding: 8px 17px;
    font-size: 0.85rem;
    font-weight: 600;

    color: #fff;
    background-color: var(--color-framed-cta); /* adjust to brand color */
    border-radius: 999px; /* pill shape */

    white-space: nowrap;
}
.card-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 30px;
    margin: 0 auto;
}
.card-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Push CTA in card 1 and spacer in card 2 to the bottom */
.card-item-1 .transparent-cta-button {
    margin-top: auto;
    margin-left: 0;
}
.card-item-2 .card-spacer {
    flex: 1;
}
/* Cards 1 & 2 fill the wrapper height */
.card-item-1,
.card-item-2 {
    position: relative;
    flex: 1;               /* fill the flex wrapper */
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    width: 100%;           /* remove fixed 300px */
    height: 100%;
    margin: 0;
}
/* The spacer itself needs no size — flex handles it */
.card-spacer {
    flex: 1;
}
/* Card 3 — aligns itself to the bottom of the row on large screens */
.card-item-3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* content sits at bottom, aligned with card CTAs */
    width: 100%;
    padding: 30px;
}
.card-item h3 {
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: 1.3rem;
    transition: transform 0.3s ease-in-out;
    padding-block: 25px;
    
}
.card-item p {
    font-family: "Inter", sans-serif;
    padding-top: 15px;
    transition: transform 0.3s ease-in-out;
}
.card-item-3 p {
    font-family: "Inter", sans-serif;
    padding-top: 0px;
    transition: transform 0.3s ease-in-out;
}
.card-item .card-item-list {
    margin-left: 25px;

}
.card-item .card-item-list li {
    font-family: "Inter", sans-serif;
    list-style: disc;
    margin-left: 0;
}

.coming-soon {
    font-family: "Inter";
    font-weight: 700;
    color: var(--color-accent-d);
    margin-top: 20px;
}

/* ---------------- */
/* AURA Hardware Series  */
/* ---------------- */

.aura-hardware-series {
    max-width: 1500px;
    padding: 80px 120px;
    margin: 0 auto;
}

.edge-series-container,
.gateway-series-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

.edge-series-container h2 {
    margin-left: 0;
}

.gateway-series-container h2 {
    margin-top: 100px;
    margin-left: 0;
}

.edge-2,
.gateway-2 {
    margin-bottom: 100px;
}

.edge,
.gateway {
    display: grid;
    grid-template-columns: 30% 50% 20%;
    align-items: center;
    height: 250px;
    gap: 50px;
}
.inline-links-mobile {
    display: none;
}
.inline-links-desktop {
    margin-top: 20px;
}
.edge-image,
.gateway-image {
    position: relative;
}
.edge-2 .button-small-color-link {
    margin-top: 0
}
.edge-image .dev-kit-badge,
.gateway-image .dev-kit-badge {
    position: absolute;
    top: 20px;
    left: 90px;
    transform: translateX(-50%);

    padding: 8px 17px;
    font-size: 0.85rem;
    font-weight: 600;

    color: #fff;
    background-color: var(--color-framed-cta); /* adjust to brand color */
    border-radius: 999px; /* pill shape */

    white-space: nowrap;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.series-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 15px;
}

.features-highlighted {
    display: inline-flex;
    align-items: center;
    color: var(--color-framed-cta);
    font-weight: 500;
}

.features-highlighted img {
    margin-right: 7px;
}

.features-lowlighted {
    display: inline-flex;
    align-items: center;
    color: #2860c86a;
    font-weight: 500;
}

.features-lowlighted img {
    margin-right: 7px;
}

.edge-text h5,
.gateway-text h5 {
    color: var(--color-framed-cta);
    padding-bottom: 10px;
}

.edge-text h3,
.gateway-text h3 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    padding-bottom: 20px;
}

.edge-text p,
.gateway-text p {
    font-family: "Inter", sans-serif;
}

.edge-text .inline-links .button-small-color-link,
.gateway-text .inline-links .button-small-color-link {
    margin-top: 25px;
}

.edge-text .inline-links .transparent-cta-button,
.gateway-text .inline-links .transparent-cta-button {
    margin-left: 25px;
}

/* ------------ */
/*  Other Hardware */
/* ------------ */
.other-hardware-section {
    max-width: 1500px;
    padding-inline: 120px;
    padding-bottom: 100px;
    margin: 0 auto;
}
/* -----------*/ 
.other-hardware-assets {
    display: flex;
    gap: 70px;
    max-width: 1500px;
    align-items: stretch; /* key for equal height */
    padding-top: 20px;
}

.other-hardware-asset-box {
    flex: 0 0 calc(50% - 35px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* background: var(--color-white);
    box-shadow: var(--box-shadow-light-grey);
    border-radius: 8px; */
}
.other-hardware-asset-box img {
    width: 100%;
    padding-bottom: 30px;
    margin-left: 0;
}
.other-hardware-asset-box h5 {
    margin-left: 0;
    font-size: .75rem;
}
.other-hardware-asset-box h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    padding-block: 15px;
    text-align: left;
    margin-left: 0;
}
.other-hardware-asset-box p {
    padding-block: 5px;
    margin: auto;
    text-align: left;
    margin-left: 0;
}
.other-hardware-asset-box .transparent-cta-button {
    margin-left: 0;
}
.hardware-coming {
    display: block;
    padding-block: 5px;
    font-size: 0.85rem;
    font-family: "Inter", sans-serif;
    color: var(--color-blue-nav-carousel, #1a1a2e);
    text-decoration: none;
    transition: background-color 0.15s;
  }
  
  .hardware-coming:hover {
    background-color: #e8eaf0;
  }

@media (max-width: 1440px) {
    .hardware-ov-hero-image {
        max-height: 60vh;
        min-height: 650px;
        background-position: center;
    }
    /* ---------------- */
    /* AURA  Hardware Series  */
    /* ---------------- */
    .card-item-3 {
        padding: 30px;
    }

    .edge-series-container,
    .gateway-series-container {
        gap: 50px;
    }

    .edge,
    .gateway {
        grid-template-columns: 40% 1fr 20%;
        gap: 35px;
    }
   

}


@media (max-width: 1024px) {

    /* ------------ */
    /*  Hardawre OV Hero Section */
    /* ------------ */
    .hardware-ov-hero-section {
        background-color: transparent; /* Remove black background on mobile */
    }
    .hardware-ov-hero-image {
        max-height: 60vh;
        min-height: 650px;
        background-position: 55% 50%;
    }
    .hardware-ov-hero-content {
        padding-inline: 20px;
    }
    .hardware-sub-nav {
        padding-inline: 20px;
    }


    /* ------------ */
    /*  Overview — Why do I need AURA Hardware?  */
    /* ------------ */
    .hardware-overview-section {
        max-width: 1500px;
        padding: 80px 20px; 
    }



    /* ------------ */
    /*  Which Series Is Right For You?  */
    /* ------------ */
    
    .which-series-container {
        padding: 0px 20px;
    }
    .card-opening-p {
        max-width: 650px;
        padding-bottom: 30px;
        padding-inline: 20px;
    }
    .which-series-container p {
        padding-bottom: 0px;
    }
    .card-grid {
        max-width: 1500px;
        padding-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        align-items: end;
        gap: 20px;
        box-sizing: border-box;
    }
    .card-item-1 {
        background-color: var(--color-grey-card-bckgrnd);
        border-radius: 18px;
        grid-column: 1 / 2;
        grid-row: 1 / 2; 
    }
    .card-item-2 {
        background-color: var(--color-grey-card-bckgrnd);
        border-radius: 18px;
        grid-column: 1 / 2; 
    }
    .card-item-3 {
        grid-column: 1 / -1;
        max-width: 900px;
        margin: 0 auto;
    }
    .card-item-3 .card-title {
        margin: 0 auto;
    }
    .card-item-3 .card-text {
        margin: 0 auto;
        text-align: center;
    }
    .card-item-3 .card-link {
        margin: 20px auto;
    }

    /* ---------------- */
    /* AURA  Hardware Series  */
    /* ---------------- */
    .aura-hardware-series {
        padding:  70px 20px;
    }


    /* ------------ */
    /*  Other Hardware */
    /* ------------ */
    .other-hardware-background {
        padding-top: 120px;
        background-image: none;
    }
    .other-hardware-section {
        padding-inline: 20px; 
    }
    
}



 /* SMALLER TABLETS LARGE PHONES  */
@media (max-width: 768px) {
    /* ------------ */
    /*  Overview — Why do I need AURA Hardware?  */
    /* ------------ */
    .hardware-overview-section {
        width: 100%;
        background-image: none;
        max-width: 1500px;
        padding: 30px 20px;
    }
    .hero-title {
        font-weight: 700;
        text-align: center;
        margin-inline: auto;
        font-size: 2rem;
        line-height: 1.5;
        max-width: 450px;
        padding-bottom: 0%;
    }
    
    .aura-hardware {
        gap: 20px;
    }
    .aura-hardware-text {
        width: 55%;
        padding-right: 0px;
    }
    .aura-hardware-box {
        width: 45%;
    }
    
    /*----------------*/
    /*  Which Series Is Right For You?*/
    /*----------------*/
    .card-item {
        padding: 20px;
    }

    
    /* ------------ */
    /*  Hardawre OV Hero Section */
    /* ------------ */
    .hardware-ov-hero-section {
        min-height: 45svh;
        display: flex;
        flex-direction: column;
    }
    .hardware-ov-hero-image {
        flex: 1;
        min-height: 45vh;
        max-height: 1000px;
        background-image: url('/assets/images-v3/AURA_Hardware_Family_Hero_Mobile.webp');
        background-position: center;
    }
    .hardware-ov-hero-image::before {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.0) 50%
        );
        z-index: 1; /* sits above background, below content */
    }

    .hardware-ov-hero-content h1 {
        display: none;
    }
    .hardware-ov-hero-content p {
        display: none;
    }
    .hardware-ov-hero-content a {
        display: none;
    }
    
    .hardware-ov-hero-navigation-section {
        height: 30px;
    }
    .hardware-sub-nav {
        display: none;
    }
    .compute-badge {
        position: absolute;
        top: -21px;
        left: 20px;
    
        padding: 8px 17px;
        font-size: 0.85rem;
        font-weight: 600;
    
        color: #fff;
        background-color: var(--color-framed-cta); /* adjust to brand color */
        border-radius: 999px; /* pill shape */
    
        white-space: nowrap;
    }

    /* ---------------- */
    /* AURA  Hardware Series  */
    /* ---------------- */
    @media (max-width: 768px) {
        .edge,
        .gateway {
            grid-template-columns: 1fr 1fr;
            height: auto;
            gap: 20px;
        }
    
        .edge-image,
        .gateway-image {
            width: 100%;
        }
    
        .edge-text,
        .gateway-text {
            width: 100%;
        }
    
        .feature-label {
            display: flex;
        }
    
        .series-features {
            display: grid;
            grid-column: 2 / 3;
            grid-template-columns: 1fr 1fr;
            max-width: 100%;
            margin: 0 auto;
        }
    
        .inline-links-desktop {
            display: none;
        }
    
        .inline-links-mobile {
            display: block;
            text-align: left;
            grid-column: 2 / 3;
        }
    }

    /* ------------ */
    /*  Other Hardware */
    /* --------------*/ 
    .other-hardware-assets {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .other-hardware-asset-box {
        width: 33,3%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        margin-inline: 0;
        padding: 0px;
        
    }
    
    .other-hardware-asset-box h3 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        padding-block: 15px;
        text-align: left;
        margin-left: 0;
    }
    .other-hardware-asset-box p {
        margin: auto;
        text-align: left;
        margin-left: 0;
    }
}



@media (max-width: 576px) {

    /* ------------ */
    /*  Overview — Why do I need AURA Hardware?  */
    /* ------------ */
    
    .aura-hardware {
        display: flex;
        flex-direction: column;
        padding-bottom: 50px;
    }
    .aura-hardware-text {
        width: 100%;
        padding: 30px 0px;
    }
    .aura-hardware-box {
        width: 100%;

    }

    /*----------------*/
    /*  Which Series Is Right For You?*/
    /*----------------*/
    .card-grid {
        width: 100%;
        max-width: 100%;
        padding-top: 50px;
        display: grid;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto;
        gap: 65px;
        box-sizing: border-box;
        margin: 0;
    }
    .card-item-1 {
        width: 100%;
        max-width: 100%;
        background-color: var(--color-grey-card-bckgrnd);
        border-radius: 18px;
        grid-column: auto !important; /* Reset positioning */
        grid-row: auto !important;
    }
    .card-item-2 {
        width: 100%;
        max-width: 100%;
        background-color: var(--color-grey-card-bckgrnd);
        border-radius: 18px;
        grid-column: auto !important; /* Reset positioning */
    }
    .card-item-3 {
        max-width: 100%;
        padding-top: 0;
        grid-column: auto !important; /* Reset positioning */
        grid-row: auto !important;
    }
    .card-item-3 .card-title {
        padding-top: 0;
    }


    /*----------------*/
    /*  Hardware Series  */
    /*----------------*/
    .aura-hardware-series {
        padding: 40px 20px;
    }

    .edge-series-container,
    .gateway-series-container {
        gap: 55px;
    }

    .gateway-series-container h2 {
        margin-top: 40px;
    }

    .edge,
    .gateway {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .edge-image,
    .gateway-image {
        width: 100%;
    }

    .edge-text,
    .gateway-text {
        width: 100%;
    }

    .series-features {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }
    .inline-links-mobile {
        grid-column: auto;
    }
}

