/* ============================================
   LDES Landing Page - Consolidated & Isolated CSS
   All styles scoped under .ldes-landing-page
   Landscape content only
   ============================================ */

/* CSS Variables */
.ldes-landing-page {
    --wec-blue: #25346b;
    --green-yellow: #c4d600;
    --vs-tabs-green: 0, 167, 83;
    --vs-tabs-bg: rgba(0, 0, 0, 0.2);
    --vs-tabs-orange: 216, 73, 0;
    --vs-tabs-blue: rgb(165, 237, 255);
    --vs-tabs-accent-color: rgb(165, 237, 255);
    --vs-bottom-tabs-blue: rgb(122, 240, 255);
}

/* Base Styles */
.ldes-landing-page {
 text-align: center;
 width: 100%;
 height: 100%;
}

.ldes-landing-page h1, 
.ldes-landing-page h2, 
.ldes-landing-page h3, 
.ldes-landing-page h4, 
.ldes-landing-page h5, 
.ldes-landing-page h6, 
.ldes-landing-page p {
    margin: 0;  
    margin-block-start: 0em;
    margin-block-end: 0em;  
    line-height: 1.2;
    font-size: 1vw;
}


.ldes-landing-page .proven-info-text p {
    font-size: .8vw;
}

/* Remove touch highlight */
.ldes-landing-page * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;
    -webkit-touch-callout: none!important;
    -webkit-user-select: none!important;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ldes-landing-page button,
.ldes-landing-page .vs-tabs-tab-button,
.ldes-landing-page .vs-bottom-tabs-button,
.ldes-landing-page [role="button"],
.ldes-landing-page [tabindex] {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: none;
}

/* Link Styling */
.ldes-landing-page a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ldes-landing-page a:hover {
    text-decoration: underline;
}

.ldes-landing-page a:active, 
.ldes-landing-page a:focus {
    outline: 0;
    border: none;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ldes-landing-page .fade-in-up {
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

.ldes-landing-page .fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

/* Delay Classes */
.ldes-landing-page .delay-1 { animation-delay: 0.7s; }
.ldes-landing-page .delay-2 { animation-delay: 0.9s; }
.ldes-landing-page .delay-3 { animation-delay: 1.1s; }
.ldes-landing-page .delay-4 { animation-delay: 1.5s; }
.ldes-landing-page .delay-5 { animation-delay: 2s; } /* 5 second delay */
.ldes-landing-page .delay-6 { animation-delay: 3s; }
.ldes-landing-page .delay-7 { animation-delay: 4.5s; }

/* Section Gradients */
.ldes-landing-page .section-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(13, 17, 38, 0.8), 
        rgba(13, 17, 38, 0.2) 50%,
        rgba(13, 17, 38, 0.7)
    );
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.ldes-landing-page .section-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgb(22, 47, 173), 
        rgba(13, 17, 38, 1) 50%,
        rgba(13, 17, 38, 1)
    );
}

/* LDES Sections */
.ldes-landing-page .ldes-background-video-container {
    position: absolute;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ldes-landing-page .ldes-background-video {
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    right: -100%;
    bottom: -112%;
    top: -100%;
    left: -100%;
    object-fit: cover;
}

.ldes-landing-page .section-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ldes-landing-page .section-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ldes-landing-page .section-mid-no-grow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
    min-height: 0;
    max-height: 100%;
}

/* LDES Page Bottom Navigation (same as AP1000) */
.no-webflow-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    margin-bottom: 5vh;
}

.ap1000-page-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6vw;
}

.ap1000-nav-item {
    position: relative;
    cursor: pointer;
    text-align: center;
    padding-top: 1em;
}

.ap1000-nav-item a {
    padding: 0.5em 0em 0.5em 0em;
    white-space: nowrap;
    text-decoration: none;
}

.ap1000-nav-item a:focus,
.ap1000-nav-item a:active,
.ap1000-nav-item a:visited {
    text-decoration: none;
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
.ap1000-nav-item:hover a {
        color: #4bbdff;
        text-decoration: none;
    }
}

.ap1000-nav-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2em;
    height: 3px;
    background-color: #fff;
    transition: width 0.3s ease, background-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.ap1000-nav-item:hover .ap1000-nav-line {
        width: 100%;
        background-color: #4bbdff;
    }
}

/* LDES Icon Buttons (Hero Navigation) */
.ldes-landing-page .ldes-icon-button {
    background-color: rgba(0, 51, 160, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateZ(0);
    will-change: transform;
    padding: 2em 1em;
    border-radius: 1em;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .ldes-landing-page .ldes-icon-button:hover {
        background-color: rgba(0, 71, 200, 0.95);
        transition: all 0.3s ease;
    }
}

.ldes-landing-page .ldes-icon-button a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    white-space: nowrap; 
    text-transform: none; 
    letter-spacing: 0px; 
    font-family: Gotham; 
    font-weight: 400; 
    font-size: 1.2em;
}

.ldes-landing-page .ldes-hero-icon {
    width: 100%;
    height: auto;
    max-height: 4em;
    object-fit: cover;
    border-radius: .5em;
}

/* Hero Section */
.ldes-landing-page .hero-section .section-content {
    justify-content: space-between;
    overflow: hidden;
}

.ldes-landing-page .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ldes-landing-page .hero-text h1 {
    font-size: 7em;
    font-weight: 900;
}

.ldes-landing-page .hero-text h2 {
    font-size: 2em;
    font-weight: 300;
}

.ldes-landing-page .hero-text h2 span {
    font-weight: 600;
}

.ldes-landing-page .scroll-indicator {
    margin-bottom: 0em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.ldes-landing-page .scroll-indicator span {
    font-size: 1.2em;
    font-weight: 500;
    position: relative;
    top: 1em;
}

.ldes-landing-page .scroll-indicator-animation {
    width: 4em;
}

/* Section Titles & Descriptions */
.ldes-landing-page .section-title {
    font-size: 4.5em;
    font-weight: 900;
    text-align: center;
    line-height: 1;
}

.ldes-landing-page .section-description {
    font-size: 1.5em;
    text-align: center;
    max-width: 50em;
    margin-top: .5em;
}

/* Stats Grid */
.ldes-landing-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    max-width: 94em;
    margin: 0 auto;
}

.ldes-landing-page .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    flex: 1;
    width: 100%;
}

.ldes-landing-page .stat-number-container {
    text-align: center;
    padding-top: .7em;
    padding-bottom: .7em;
    background: rgba(0, 0, 0, 0.253);
    border-radius: .5em;
    border-color: #00000038;
    border-width: .2em;
    border-style: solid;
    backdrop-filter: blur(0.3em);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5em;
    flex: 1;
    width: 100%; 
    justify-content: center;
}

.ldes-landing-page .stat-image {
    width: 100%;
    height: auto;
    max-height: 12.5em;
    object-fit: cover;
    border-radius: .5em;
    border-color: #ffffff38;
    border-width: .2em;
    border-style: solid;
}

.ldes-landing-page .stat-number {
    font-size: 2em;
    font-weight: 900;
    line-height: 1;
}

.ldes-landing-page .stat-number-small {
    font-size: .7em;
}

.ldes-landing-page .stat-text {
    font-size: .9em;
    text-align: left;
    line-height: 1.1;
    width: fit-content;
}

/* Technology Section - Today's Energy Landscape */
.ldes-landing-page .technology-section .section-content {
    justify-content: flex-start;
}

.ldes-landing-page .landscape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10em;
    width: 100%;
    max-width: 90em;
    overflow: clip;
    margin-top: 5vh
}

.ldes-landing-page .landscape-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1em;
    padding: 1em;
    background: linear-gradient(to bottom, #00cf7c79 0%, #00000094 80%);
    border-radius: 0 0 0.5em 0.5em;
    border-top: 0.1em solid #25e100;
    margin-top: 1.5em;
}

.ldes-landing-page .landscape-sub-grid.challenge {
    background: linear-gradient(to bottom,  #bcac0063 0%, #00000083 80%);
    border-top: 0.1em solid #caaa0e; 
}

.ldes-landing-page .landscape-sub-item {
    display: flex; 
    align-items: center;
    flex-direction: column;
    gap: .5em;
    padding: 1em; 
}


.ldes-landing-page .landscape-sub-item img {
    width: 6em;
    height: 4em;
    object-fit: contain;
    flex-shrink: 0;
}

.ldes-landing-page .landscape-sub-item span {
    font-size: .9em;
}

.ldes-landing-page .landscape-title {
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    padding-bottom: .5em;
}

.ldes-landing-page .landscape-title::after {
    content: '';
    position: absolute;
    bottom: -0.3em;
    left: 50%;
    transform: translateX(-50%);
    width: 3em;
    height: 0.2em;
    background: #24da00;
    border-radius: 1em;
}

.ldes-landing-page .landscape-title.challenge::after {
    background: #caaa0e;
}

/* How It Works Section */
.ldes-landing-page .how-it-works-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/How-It-Works-text-2.svg');
    background-size: contain;   
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 10;
    opacity: 0.8;
}

.ldes-landing-page .how-it-works-section {
    position: relative;
    background-image: url('../images/how-it-works-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ldes-landing-page .how-it-works-section .section-gradient-bg {
    display: none;
}

/* Siting & Sustainability Section */
.ldes-landing-page .vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.6) 100%);
}

.ldes-landing-page .siting-sustainability-section {
    position: relative;
}

.ldes-landing-page .lottie-container {
    max-width: 90vw;
    max-height: 100%;
}

.ldes-landing-page .siting-sustainability-lottie {
    width: 76svw;
    object-fit: contain;
}

.ldes-landing-page .cost-effective-lottie {
    width: 80svw;
    max-width: 150svh;
    object-fit: contain;
}

.ldes-landing-page .ldes-bottom-spacer {
    height: 5vh;
}

/* Footer */
.ldes-landing-page .footer-content-wrapper {
    z-index: 2;
    width: 100%;
    height: 100%;
    grid-column-gap: 3vw;
    text-align: center;
    background-color: #25346a;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    display: flex;
}

.ldes-landing-page .social-wrapper {
    grid-column-gap: 1.5em;
    align-items: center;
    display: flex;
}

.ldes-landing-page .footer-text {
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0;
    font-family: Gotham Book, sans-serif;
    font-size: .9em;
    line-height: 1.2em;
}

.ldes-landing-page .footer-text._2 {
    font-size: 1em;
    line-height: 1em;
}

.ldes-landing-page .footer-text.small {
    font-size: .7em;
}

.ldes-landing-page .footer-top {
    grid-row-gap: 2em;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1em 3em 4em;
    display: flex;
}

.ldes-landing-page .footer-bottom {
    max-width: 70vw;
    color: #7683af;
    border-top: 1px solid #7583b5;
    justify-content: center;
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
}

.ldes-landing-page .footer-icon {
    width: 2.3em;
}

.ldes-landing-page .button.text-only {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
    text-decoration: none;
}

.ldes-landing-page .button.text-only:hover{
    text-decoration: underline;
}

.ldes-landing-page .button-text {
    margin-top: .8vw;
    margin-bottom: .7vw;
    font-family: Yantramanav, sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    font-size: 1.2em;
}

.ldes-landing-page .logo-wrapper {
    width: 20vw;
    min-width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ldes-landing-page .logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   VS TABS SYSTEM
   ============================================ */

.ldes-landing-page .vs-tabs-body {
    margin: 0;
    padding: 0;
    color: white;
    position: relative;
    font-size: 1.1vw;
    background-blend-mode: overlay;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 .1vw .1vw rgba(0, 0, 0, 0.7);
    text-shadow: 0 .1vw .3vw rgba(0, 0, 0, 0.7);
}

.ldes-landing-page .vs-tabs-container {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    text-align: left;
}

.ldes-landing-page .vs-tabs-header {
    text-align: center;
    padding: 2em 0em 1em 0em;
    max-width: 60em;
    margin: 0 auto;
}

.ldes-landing-page .vs-tabs-title {
    font-size: 3em; 
    font-weight: 900;
}

.ldes-landing-page .vs-tabs-subtitle {
    font-size: 1.21em;
    opacity: 0.9;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), margin 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    margin-bottom: 0;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-subtitle {
    opacity: 0;
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.ldes-landing-page .vs-tabs-main {
    position: relative;
    margin: 10vh auto 0;
    width: 65em;
    max-width: 1600px;
    transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ldes-landing-page .vs-tabs-main:not(.active) {
    margin-top: 10vh;
}

.ldes-landing-page .vs-tabs-main.active {
    margin-top: 0;
}

.ldes-landing-page .vs-tabs-tab-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6em;
    position: relative; 
    opacity: 1;
    width: 90%;
    padding-left: 5%;   
    padding-right: 5%;
}

.ldes-landing-page .vs-tabs-tab-content {
    position: relative;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 0;
    overflow: hidden;
    z-index: 1;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-tab-content {
    opacity: 1;
    pointer-events: auto;
    height: auto;
    overflow: visible;
}

.ldes-landing-page .vs-tabs-panel {
    visibility: hidden;
    padding: 1em;
    border-radius: 0 0 0.75em 0.75em;
    opacity: 0;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    height: 0;
    overflow: hidden;
    margin-bottom: 1vh;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0s linear 0.6s,
                height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    will-change: height, opacity;
}

.ldes-landing-page .vs-tabs-panel-container {
    flex: 1;
    min-width: 0;
}

.ldes-landing-page .vs-tabs-panel-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.ldes-landing-page .vs-tabs-panel-title {
    font-size: 3em;
    font-weight: 200;
}

.ldes-landing-page .vs-tabs-panel-subtitle {
    font-size: 1.1em;
    line-height: 1.4;
    opacity: 0.9;
}

.ldes-landing-page .vs-tabs-statements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
    background: rgba(var(--vs-tabs-green), 0.3);
    padding: .7em;
    border-radius: 0.5em;
    align-self: flex-start;
    height: fit-content;
    align-items: center;
    margin-top: 1em;
}

.ldes-landing-page .vs-tabs-statement {
    padding: 1em;
    border-radius: 0.5em;
    color: #FFFFFF;
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: rgba(var(--vs-tabs-green), 0.5);
    height: fit-content;
    gap: 1em;
    justify-content: center;
}

.ldes-landing-page .vs-tabs-statement-tag {
    position: absolute;
    top: -0.6em;
    left: 1.25em;
    padding: 0.2em 0.6em;
    border-radius: 0.3em;
    font-size: 0.8em;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
}

.ldes-landing-page .vs-tabs-statement-title { 
    font-size: 4em;
    font-weight: 900;
    line-height: 1;
    position: relative;
}

.ldes-landing-page .vs-tabs-statement-text {
    font-size: 1em;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ldes-landing-page .vs-tabs-statement-title-small {
    font-size: .17em;
    font-weight: 600;
    position: absolute;
    top: -.5em;
    left: 1em;  
}

.ldes-landing-page .vs-tabs-statement-text strong {
    font-weight: 900;
}

.ldes-landing-page .vs-tabs-main:not(.active) .vs-tabs-panel {
    opacity: 0;
    visibility: hidden;
}

.ldes-landing-page .vs-tabs-main:not(.active) .vs-tabs-panel.active {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, visibility 0s linear 0.4s;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-panel {
    position: absolute;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.6s;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-panel.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
    position: relative;
    height: auto;
    overflow: visible;
}

.ldes-landing-page .vs-tabs-panel-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--wec-blue); 
    border-radius: 0 0 0.75em 0.75em;
    height: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 0;
    border: none;
    backdrop-filter: blur(1vw);
    pointer-events: none;
    will-change: height;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-panel-background { 
    height: auto;
}

.ldes-landing-page .vs-tabs-close {
    position: absolute;
    right: -1em;
    top: 1em;
    width: 1.2em;
    height: 1.2em;
    transform: translateY(-50%);
    border: none;
    color: rgb(0, 19, 87);
    font-size: 1.5em;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    line-height: 1.2;
    background: rgb(255, 255, 255);
    border-radius: 10em;
}

.ldes-landing-page .vs-tabs-close:hover {
    transform: translateY(-50%) scale(1.1);
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-close {
    opacity: 1;
}

.ldes-landing-page .vs-tabs-tab-button {
    background: rgba(37, 52, 107, 0.3);
    border: none;
    color: white;
    font-size: 1.4em;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0.5em;
    backdrop-filter: blur(1vw);
    -webkit-backdrop-filter: blur(1vw);
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    position: relative;
    border-bottom: 0.4em solid transparent;
    position: relative;
    top: .1em;
    transition: all 0.3s ease;
    height: 3em;
}

.ldes-landing-page .vs-tabs-tab-button:hover {
    background: rgba(0, 72, 255, 0.7);
}

.ldes-landing-page .vs-tabs-tab-button span {
    transition: all 0.3s ease;
}

.ldes-landing-page .vs-tabs-tab-button.active {
    border-bottom-color: white;
    pointer-events: none;
    
}

.ldes-landing-page .vs-tabs-tab-button.active span {
    text-shadow: none;
    color: white;
}

.ldes-landing-page .vs-tabs-tab-button.active:hover span {
    color: white;
}

.ldes-landing-page .vs-tabs-main:not(.active) .vs-tabs-tab-button span {
    -webkit-text-stroke: 0 !important;
    letter-spacing: normal !important;
}

.ldes-landing-page .vs-tabs-main:not(.active) .vs-tabs-tab-button {

    background: rgba(0, 37, 173, 0.459);
    backdrop-filter: blur(1vw);
    height: 8em;
}

.ldes-landing-page .vs-tabs-main:not(.active) .vs-tabs-tab-button:hover {
    background: rgba(0, 37, 173, 1);
    backdrop-filter: blur(1vw);
}

.ldes-landing-page .vs-tabs-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.ldes-landing-page .vs-tabs-content.active {
    opacity: 1;
    transform: translateY(0);
}

.ldes-landing-page .vs-tabs-tab-icon {
    width: 4em;
    height: 4em;
    transition: opacity 0.3s ease, height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.ldes-landing-page .vs-tabs-corner-circle {
    position: absolute;
    top: -0.4em;
    right: -0.4em;
    width: 1em;
    height: 1em;
    background: rgba(0, 21, 126, 0.8);
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.ldes-landing-page .vs-tabs-corner-icon {
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    width: 1.2em;
    height: 1.2em;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-tab-button {
    padding: 0.5em 1em;
    background: rgba(0, 72, 255, 0);
    backdrop-filter: blur(0);
    border-radius: 0;
    font-size: 1.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.3);
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-tab-button:hover {
    background: transparent;
    color: white;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-tab-icon {
    opacity: 0;
    height: 0;
}

.ldes-landing-page .vs-tabs-main:not(.active) .vs-tabs-tab-icon {
    opacity: 1;
    height: 4em;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-corner-circle,
.ldes-landing-page .vs-tabs-main.active .vs-tabs-corner-icon {
    opacity: 0;
}

.ldes-landing-page .vs-tabs-main:not(.active) .vs-tabs-corner-circle,
.ldes-landing-page .vs-tabs-main:not(.active) .vs-tabs-corner-icon {
    opacity: 1;
}

.ldes-landing-page .vs-tabs-content-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-shadow: none;
}

.ldes-landing-page .vs-tabs-tab-content {
    position: relative;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 0;
    overflow: hidden;
    z-index: 1;
}

.ldes-landing-page .vs-tabs-tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

.ldes-landing-page .vs-tabs-border-line {
    position: absolute;
    top: 0;
    height: 1px;
    background: white;
    width: 0;
    transform-origin: center;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-border-line {
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
                left 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    width: 200%;
}

.ldes-landing-page .vs-tabs-tab-indicator {
    position: absolute;
    top: 0;
    height: 0.2vw;
    background: white;
    width: 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.ldes-landing-page .vs-tabs-main.active .vs-tabs-tab-indicator {
    width: var(--button-width);
}

/* ============================================
   VS BOTTOM TABS SYSTEM (How It Works)
   ============================================ */

.ldes-landing-page .vs-bottom-tabs-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ldes-landing-page .vs-bottom-tabs-panels {
    position: relative;
    width: 86vw;
    height: 80svh;
    max-height: 68svh;
    margin-bottom: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.ldes-landing-page.applications .vs-bottom-tabs-panels-applications {
    position: relative;
    width: 86vw;
    height: 100%;
    margin-bottom: 0;
    z-index: 1;
}

.ldes-landing-page .vs-bottom-tabs-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.6s;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.ldes-landing-page .vs-bottom-tabs-panel.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear;
}

.ldes-landing-page .vs-bottom-tabs-panel-content {
    position: relative;
    height: 100%;
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ldes-landing-page .vs-bottom-tabs-panel-header {
    text-align: left;
    margin-bottom: 2em;
    max-width: 40vw;
    position: relative;
    z-index: 2;
}

.ldes-landing-page .vs-bottom-tabs-panel-header h3 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: white;
}

.ldes-landing-page .vs-bottom-tabs-panel-header p {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
}

.ldes-landing-page .vs-bottom-tabs-panel-image {
    display: none;
}

.ldes-landing-page .lp-bottom-tabs-wrapper {
    display: flex;
    align-items: stretch;
    width: 90vw;
}

.ldes-landing-page .ldes-overview-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 1em;
    font-family: Gotham, sans-serif;
    letter-spacing: 0em;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    margin-right: 3em;
    border-top: .3em solid rgba(0, 251, 255, 0);
}

.ldes-landing-page .ldes-overview-link:hover {
    color: #4bbdff;
    text-decoration: none;
}

.ldes-landing-page .vs-bottom-tabs-buttons {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 8em;
    padding: 0 8em;
    height: 10svh;
    border-top: .1em solid white;
    width: 100%;
}

.ldes-landing-page .vs-bottom-tabs-button {
    border-top: .3em solid rgba(0, 251, 255, 0);
    color: white;
    padding: 1em;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
}

.ldes-landing-page .vs-bottom-tabs-button span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.ldes-landing-page .vs-bottom-tabs-button:hover span {
    transform: scale(1.1);
}

.ldes-landing-page .vs-bottom-tabs-button.active {
    border-top: .3em solid white;
    pointer-events: none;
}

/* Applications Section Bottom Tabs */
.ldes-landing-page.applications .vs-bottom-tabs-container {
    max-width: 100%;
    height: 100svh;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ldes-landing-page.applications .vs-bottom-tabs-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.6s;
}

.ldes-landing-page.applications .vs-bottom-tabs-panel.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear;
}

.ldes-landing-page.applications .vs-bottom-tabs-panel:not(.active) {
    transform: translateX(-100%);
}

.ldes-landing-page.applications .vs-bottom-tabs-panel-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0em;
    overflow: hidden;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.ldes-landing-page.applications .vs-bottom-tabs-panel-header {
    text-align: center;
    flex-shrink: 0;
}

.ldes-landing-page.applications .vs-bottom-tabs-panel-header h3 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: white;
}

.ldes-landing-page.applications .vs-bottom-tabs-panel-header p {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
}

.ldes-landing-page.applications .vs-bottom-tabs-lottie {
    flex: 1;
    width: 100%;
    height: auto;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    bottom: 5vh;
    max-width: 80svw;
}

.ldes-landing-page.applications .vs-bottom-tabs-lottie svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ldes-landing-page.applications .lp-bottom-tabs-wrapper {
    display: flex;
    align-items: stretch;
    width: 90vw;
    position: absolute;
    bottom: 0vw;
    left: 0;
    margin-left: 3vw;
    z-index: 3;

}


/* ============================================
   PROVEN TECHNOLOGY SECTION
   ============================================ */

.ldes-landing-page .proven-technology-gradient-overlay-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.ldes-landing-page .proven-technology-gradient-overlay-v2 {
    z-index: 1; 
    position: absolute; 
    width: 100vw; 
    height: 100%; 
    background: linear-gradient(to bottom, #000 0%, 
    #0a112b 10%, 
    transparent 26%, 
    transparent 74%, 
    #0a112b 90%, 
    #000 100%); 
    pointer-events: none;
}
.ldes-landing-page .proven-technology-gradient-overlay-v2-green {
    z-index:9; 
    position: absolute; 
    width: 100vw; 
    height: 100%; 
    background: linear-gradient(to bottom, 
    #000 0%, 
    #4b7181c7 10%, 
    transparent 35%, 
    transparent 60%, 
    #31361ac1 90%, 
    #000 100%); 
    pointer-events: none;
    animation: fadeOutGradient 1s ease-in-out 2s forwards;
}


@keyframes fadeOutGradient {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.ldes-landing-page .gradient-overlay-container-october {
    position: absolute;
    width: 100vw;
    min-height: 80vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.ldes-landing-page .westinghouse-ldes-gradient-overlay {    
    z-index: 10;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, #00000000 0%, transparent 70%, #0e1d12 90%, #000 100%);
    pointer-events: none;
}



.ldes-landing-page .proven-technology-section {
    justify-content: center;
}

.ldes-landing-page .proven-technology-title-container {
    z-index: 100;
    height: 100%;
    max-height: 80vw;
}

.ldes-landing-page .proven-technology-media-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 83.3vw;
    overflow: hidden;
    z-index: 0;
    display: block;
}

.ldes-landing-page .proven-technology-media-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0) 10%, 
        rgba(0, 0, 0, 0) 90%, 
        rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 10;
}

.ldes-landing-page .proven-technology-video,
.ldes-landing-page .proven-technology-img,
.ldes-landing-page .proven-technology-rollover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ldes-landing-page .proven-technology-img,
.ldes-landing-page .proven-technology-rollover-img {
    opacity:0;
    pointer-events:none;
}

.ldes-landing-page .proven-technology-rollover-img {
    transition:opacity 0.5s;
}

/* Hotspot buttons */
.ldes-landing-page .proven-hotspot {
    position: absolute;
    z-index: 10;
    color: #fff;
    background: rgba(0,21,126,0);
    padding: 0.5em 1em;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 0.5em;
    border: 1px solid #ffffff00;
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: left;
    line-height: 1.2;
    gap: 0.2em;
}

.ldes-landing-page .proven-hotspot:focus {
    font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
    .ldes-landing-page .proven-hotspot:hover {
        font-weight: 700;
    }
}

.ldes-landing-page .proven-hotspot.selected {
    font-weight: 700;
}

/* Button positions */
.ldes-landing-page .proven-hotspot[data-rollover="0"] { top: 41.5%; left: 34.5%; }
.ldes-landing-page .proven-hotspot[data-rollover="1"] { top: 71.3%; left: 18.5%; }
.ldes-landing-page .proven-hotspot[data-rollover="2"] { top: 52.1%; left: 5.5%; }
.ldes-landing-page .proven-hotspot[data-rollover="3"] { top: 68.3%; left: 7%; }
.ldes-landing-page .proven-hotspot[data-rollover="4"] { top: 38%; left: 43.0%; }
.ldes-landing-page .proven-hotspot[data-rollover="5"] { top: 73.5%; left: 28%; }
.ldes-landing-page .proven-hotspot[data-rollover="6"] { top: 70.2%; left: 73.2%; }
.ldes-landing-page .proven-hotspot[data-rollover="7"] { top: 59.6%; left: 82.5%; }

.ldes-landing-page .proven-label {
    position: absolute;
    z-index: 10;
    color: #fff;
    background: rgba(0,21,126,0);
    padding: 0.5em 1em;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 0.5em;
    border: 1px solid #ffffff00;
    line-height: 1.2;
}

.ldes-landing-page .proven-info-panel {
    position: absolute;
    top: 44%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 28vw;
    background: rgba(20, 30, 60, 0.92);
    color: #fff;
    border-radius: 1.2em;
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 1em;
    opacity: 0;
    pointer-events: auto;
    gap: 1em;
}

.ldes-landing-page .proven-info-panel.systems {
    flex-direction: column;
    padding: 0.5em;
}

.ldes-landing-page .proven-info-close {
    position: absolute;
    top: -0.5em;
    right: -1.2em;
    background: rgba(0,0,0,0);
    color: #fff;
    border: none;
    font-size: 2.2em;
    font-weight: 700;
    border-radius: 0.5em;
    cursor: pointer;
    z-index: 101;
    padding: 0.3em;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
    outline: none;
}

.ldes-landing-page .proven-info-close:hover, 
.ldes-landing-page .proven-info-close:focus {
    color: #ffffffbe;
}

.ldes-landing-page .proven-info-img {
    width: 100%;
    max-width: 11em;
    height: auto;
    border-radius: 0.7em;
    display: block;
}

.ldes-landing-page .proven-info-img.systems {
    max-width: 10em;
}

.ldes-landing-page .proven-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: .9em;
    line-height: 1.5;
    width: 100%;
    text-align: left;
}

.ldes-landing-page .proven-info-text h3 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 0.2em;
}

.ldes-landing-page .proven-info-text strong {
    font-size: .9em;
    margin-top: 0.7em;
    color: #fff;
}

.ldes-landing-page .proven-hotspot-icon {
    display: inline-block;
    vertical-align: middle;
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.5em;
    margin-bottom: 0.15em;
}

.ldes-landing-page .systems-row {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

/* Instruction Panel */
.ldes-landing-page .proven-instruction-panel {
    position: absolute;
    top: 37%;
    left: 10%;
    z-index: 100;
}

.ldes-landing-page .proven-instruction-panel-content {
    background: rgb(0 5 9 / 28%);
    color: #fff;
    border-radius: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    pointer-events: none;
    gap: 1em;
}

.ldes-landing-page .instruction-icon {
    width: 3em;
    height: 3em;
    opacity: 0.8;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.1);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.ldes-landing-page .instruction-text {
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}


@media screen and (max-width: 1024px) {
    .ldes-landing-page .landscape-grid {
        margin-top: 0vh;
        gap: 3em;
    }
    .ldes-landing-page .landscape-sub-grid {
        gap: 0em;
    }
    .ldes-landing-page .landscape-sub-item {
        padding: 0; 
    }

    .ldes-landing-page .no-webflow-nav {

        bottom: 3svh;

    }
    .ldes-landing-page .vs-tabs-main:not(.active) {
        margin-top: 0vh;
    }

    .ldes-landing-page .ldes-background-video-container {
        height: 100svh;

    }

    .ldes-landing-page .proven-technology-media-container {
        scale: .85; 
        top: 29%;
        left: 43%;
        transform: translate(-50%, -50%);
        
    }

    .ldes-landing-page .proven-technology-media-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, 
        rgb(10, 20, 53) 0%, 
        rgb(10, 20, 53, 0) 10%, 
        rgb(10, 20, 53, 0) 90%, 
        rgb(10, 20, 53) 100%);
        pointer-events: none;
        z-index: 10;
    }
    .ldes-landing-page .vs-bottom-tabs-buttons {
        gap: 8em;
        padding: 0 2em;
    }
    .ldes-landing-page .vs-bottom-tabs-panels {
        width: 92vw;
    }
    .ldes-landing-page .vs-bottom-tabs-panel-header {

        max-width: 34vw;

    }
    .ldes-landing-page .siting-sustainability-lottie {
        max-width: 150svh;
    }
    .ldes-landing-page.applications .vs-bottom-tabs-lottie {
        max-width: 140svh;
    }
}
