.custom-tool-container{
	margin-bottom: 0;
}

/* WNBA SPY Landing Page Styles - Scoped to #wnba-spy-landing */
#wnba-spy-landing {
    /* Brand Colors */
    --navy: #00143f;
    --ultramarine: #001AFF;
    --white: #ffffff;

    /* Spacing */
    --container-max-width: 1248px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#wnba-spy-landing * {
    box-sizing: border-box;
}

#wnba-spy-landing {
    line-height: 1.6;
    color: var(--navy);
    background-color: var(--white);
    margin-top: calc(-1 * var(--space-l));
    margin-left: calc(-1 * var(--grid-outer-margin));
    margin-right: calc(-1 * var(--grid-outer-margin));
    margin-bottom: 0;
}

/* Container */
#wnba-spy-landing .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Typography */
#wnba-spy-landing h1,
#wnba-spy-landing h2,
#wnba-spy-landing h3{
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

#wnba-spy-landing h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
	color: #FF7C56;
}

#wnba-spy-landing h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

#wnba-spy-landing h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

#wnba-spy-landing p {
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* CTA Button */
#wnba-spy-landing .main-cta {
    position: relative;
    background-color: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.72rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 5, 51, 0.3);
}

#wnba-spy-landing .main-cta:hover {
    background-color: var(--ultramarine);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 5, 51, 0.4);
}

/* Sticky CTA Button */
#wnba-spy-landing .sticky-cta-wrapper {
    height: 0;
    float: right;
    position: sticky;
    top: 0;
    right: 20px;
    z-index: 1000;
}

#wnba-spy-landing .sticky-cta {
    background-color: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.72rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 5, 51, 0.3);
    border: rgba(255,255,255,0.4) 1px solid;
    margin-top: 20px;
    display: inline-block;
}

#wnba-spy-landing .sticky-cta:hover {
    background-color: var(--ultramarine);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 5, 51, 0.4);
}

/* Hero Section - Optimized for parallax */
#wnba-spy-landing .hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    /* color: var(--white); */
    color: #FF7C56;
    overflow: hidden;
}

#wnba-spy-landing .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#wnba-spy-landing .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform; /* Optimize for parallax */
	border-radius: 0;
}

#wnba-spy-landing .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 5, 51, 0.7);
    z-index: 2;
}

#wnba-spy-landing .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    will-change: transform, opacity; /* Optimize for parallax */
}

#wnba-spy-landing .hero-logos {
    margin-bottom: 2.4rem;
}

#wnba-spy-landing .logo-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

#wnba-spy-landing .partnership-logos {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

#wnba-spy-landing .partnership-text {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.9;
}

/* Unused logo classes removed */

/* Hero Title Section */
#wnba-spy-landing .hero-title-container {
    margin: 1.6rem 0;
}

#wnba-spy-landing .hero-title {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 1.6rem 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#wnba-spy-landing .title-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    animation: slideInUp 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#wnba-spy-landing .title-line:nth-child(1) { animation-delay: 0.8s; }
#wnba-spy-landing .title-line:nth-child(2) { animation-delay: 1.2s; }
#wnba-spy-landing .title-line:nth-child(3) { animation-delay: 1.6s; }

#wnba-spy-landing .title-line.highlight {
    /* color: var(--white); */
    color: #FF7C56 !important;
    font-weight: 900;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#wnba-spy-landing .hero-subtitle {
    font-size: 1.04rem;
    line-height: 1.6;
    margin-bottom: 2.4rem;
    opacity: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}




/* Section Styles */
#wnba-spy-landing section {
    padding: var(--section-padding);
    position: relative;
    will-change: transform;
}

#wnba-spy-landing .section-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

/* Unused section-subtitle removed */

/* Partnership Story Section */
#wnba-spy-landing .partnership-story {
    background-color: #FFFFFF;
}

#wnba-spy-landing .partnership-video {
    margin-top: 2.4rem;
    text-align: center;
}

#wnba-spy-landing .partnership-gif {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Unused story-grid and story-card removed */

/* Partnership Story V2 - Split Screen Parallax Effect */
#wnba-spy-landing .partnership-story-v2 {
    padding: 0;
	background-color: #FF7C56;
}

#wnba-spy-landing .split-parallax-section {
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Split Content Areas */
#wnba-spy-landing .split-content-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#wnba-spy-landing .split-content-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#wnba-spy-landing .split-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#wnba-spy-landing .split-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Text Content Styling */
#wnba-spy-landing .split-text-content {
    max-width: 500px;
    padding: 2.4rem;
    text-align: center;
}

#wnba-spy-landing .split-text-content h2 {
	font-family: 'Sharp Grotesk Bold';
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.6rem;
    letter-spacing: 2px;
}

#wnba-spy-landing .split-text-content p {
    font-size: clamp(0.88rem, 2.5vw, 1.12rem);
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Parallax Background */
#wnba-spy-landing .parallax-bg {
    position: absolute;
   /* top: -20%;*/
    left: 0;
    width: 100%;
    height: 120%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    z-index: 1;
}

/* Unused story-card related styles removed */

/* SPY Connection Section */
#wnba-spy-landing .spy-connection {
    background-color: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
	padding-bottom: 0;
}

#wnba-spy-landing .spy-connection .container {
    position: relative;
    z-index: 2;
}

/* Unused connection-content and related styles removed */

/* Unused showcase and interactive-stats removed */

/* SPY Header Section */
#wnba-spy-landing .spy-header-section {
    text-align: left;
    margin-bottom: 3.2rem;
}

#wnba-spy-landing .spy-main-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.6rem;
    line-height: 1.2;
}

#wnba-spy-landing h2.spy-main-title{
    max-width:95%;
}

#wnba-spy-landing .spy-intro-text,
#wnba-spy-landing .spy-description-text {
    font-size: 1.04rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.2rem;
    /* max-width: 900px; */
}

/* SPY Stats Layout - Clean CSS Grid System */
#wnba-spy-landing .spy-stats-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3.2rem;
    align-items: center;
    margin: 3.2rem 0;
}

#wnba-spy-landing .spy-callout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: 1;
}

#wnba-spy-landing .spy-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    grid-column: 2;
}

/* SPY Callout (Left Side) */

#wnba-spy-landing .spy-ticker-image {
    width: 100%;
    height: auto;
    max-width: 225px;
    object-fit: contain;
}

/* Duplicate rule removed - already defined above */

#wnba-spy-landing .stat-card-clean {
    background: #B9FFDC;
    padding: 2rem 1.6rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
}

#wnba-spy-landing .stat-card-clean:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#wnba-spy-landing .stat-number-clean {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1;
}

#wnba-spy-landing .stat-description-clean {
    font-size: 0.8rem;
    color: var(--navy);
    opacity: 0.8;
    line-height: 1.4;
    font-weight: 500;
}

/* Logo Crawl with Images */
#wnba-spy-landing .holdings-section {
    margin: 4.8rem 0 2.4rem 0;
    text-align: center;
}

#wnba-spy-landing .holdings-title {
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

#wnba-spy-landing .logo-crawl {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 0.8rem 0;
}

#wnba-spy-landing .logo-track {
    display: inline-flex;
    animation: crawl 40s linear infinite;
    align-items: center;
}

@keyframes crawl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#wnba-spy-landing .holding-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    margin: 0 0.8rem;
    /* background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15); */
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 120px;
    height: 80px;
}

/*#wnba-spy-landing .holding-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}*/

#wnba-spy-landing .holding-logo img {
    max-width: 80px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
	border-radius: 0px;
}

/* Unused spy-details removed */

/* Scroll-triggered Animation Classes - simplified */
#wnba-spy-landing [data-parallax="fade-up"] {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#wnba-spy-landing [data-parallax="fade-up"].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scale animations for scroll-triggered elements */
#wnba-spy-landing .hero-title {
    transform: scale(0.8);
    opacity: 0.3;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Title Decoration */
#wnba-spy-landing .title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.6rem 0;
    opacity: 0;
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

#wnba-spy-landing .decoration-line {
    width: 60px;
    height: 1px;
    background: var(--white);
    transition: all 0.6s ease;
}

#wnba-spy-landing .decoration-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    margin: 0 0.8rem;
    transition: all 0.6s ease;
}

/* Responsive Design */

/* Unused 1248px breakpoint removed */

/* Tablet Layout */
@media (max-width: 1024px) and (min-width: 769px) {
    #wnba-spy-landing .spy-stats-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 2.4rem;
        justify-items: center;
    }

    #wnba-spy-landing .spy-callout {
        grid-column: 1;
        grid-row: 1;
        max-width: 400px;
    }

    #wnba-spy-landing .spy-cards-grid {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        width: 100%;
    }

    #wnba-spy-landing .stat-number-clean {
        font-size: 1.6rem;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    #wnba-spy-landing {
        --section-padding: var(--section-padding-mobile);
    }
	
	#wnba-spy-landing  {
		padding-bottom:0;
	}
	
	#wnba-spy-landing  .spy-connection{
		padding-bottom:0;
	}

    #wnba-spy-landing .logo-lockup {
        gap: 0.6rem;
    }

    #wnba-spy-landing .partnership-logos {
        max-width: 300px;
    }

    #wnba-spy-landing .partnership-text {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }

    /* Unused mobile styles removed */

    #wnba-spy-landing .hero-title {
        font-size: 2rem;
    }

    /* SPY stats - Clean 2x2 grid for mobile */
    #wnba-spy-landing .spy-stats-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0.8rem;
        margin: 1.6rem 0;
        align-items: stretch;
    }

    #wnba-spy-landing .spy-callout {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #wnba-spy-landing .spy-cards-grid {
        display: contents;
    }

    #wnba-spy-landing .stat-card-clean:nth-child(1) {
        grid-column: 2;
        grid-row: 1;
    }

    #wnba-spy-landing .stat-card-clean:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    #wnba-spy-landing .stat-card-clean:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    #wnba-spy-landing .spy-ticker-image {
        max-width: 200px;
        height: auto;
    }

    #wnba-spy-landing .stat-card-clean {
        padding: 0.8rem 0.4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #wnba-spy-landing .stat-number-clean {
        font-size: 1.28rem;
        margin-bottom: 0.4rem;
    }

    #wnba-spy-landing .stat-description-clean {
        font-size: 0.64rem;
        line-height: 1.3;
    }

    /* Split parallax sections on mobile */
    #wnba-spy-landing .split-parallax-section {
        height: 80vh;
        flex-direction: column;
    }

    /* MOBILE REORDERING: Text first, then image for all sections */
    #wnba-spy-landing .split-content-left,
    #wnba-spy-landing .split-content-right {
        order: 1;
    }

    #wnba-spy-landing .split-image-left,
    #wnba-spy-landing .split-image-right {
        order: 2;
    }
}

@media (max-width: 480px) {
    #wnba-spy-landing .container {
        padding: 0 15px;
    }

    #wnba-spy-landing .hero-subtitle {
        font-size: 0.88rem;
    }

    #wnba-spy-landing .partnership-video {
        margin-top: 1.6rem;
    }

    #wnba-spy-landing .partnership-gif {
        max-width: 100%;
        border-radius: 8px;
    }

    /* SPY stats refinements for very small screens */
    #wnba-spy-landing .spy-stats-layout {
        gap: 0.4rem;
        margin: 1.2rem 0;
    }

    #wnba-spy-landing .spy-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    #wnba-spy-landing .spy-ticker-image {
        max-width: 150px;
    }

    #wnba-spy-landing .stat-card-clean {
        padding: 1.2rem 0.8rem;
        min-height: 120px;
    }

    /* Unused spy-logo-large and spy-subtitle-large removed */

    #wnba-spy-landing .stat-number-clean {
        font-size: 1.44rem;
    }

    #wnba-spy-landing .stat-description-clean {
        font-size: 0.72rem;
    }

    /* Style all content and image sections for mobile */
    #wnba-spy-landing .split-content-left,
    #wnba-spy-landing .split-content-right,
    #wnba-spy-landing .split-image-left,
    #wnba-spy-landing .split-image-right {
        width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
        display: block !important;
    }

    /* Ensure text content is properly styled */
    #wnba-spy-landing .split-text-content {
        padding: 1.6rem !important;
        text-align: center !important;
    }

    /* Ensure images fill their containers */
    #wnba-spy-landing .parallax-bg {
        position: relative !important;
        height: 300px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    #wnba-spy-landing .split-content-left,
    #wnba-spy-landing .split-content-right,
    #wnba-spy-landing .split-image-left,
    #wnba-spy-landing .split-image-right {
        min-height: auto;
        position: relative;
    }

    /* Content sections */
    #wnba-spy-landing .split-content-left,
    #wnba-spy-landing .split-content-right {
        padding: 2.4rem 0;
    }

    /* Image sections */
    #wnba-spy-landing .split-image-left,
    #wnba-spy-landing .split-image-right {
        height: 300px;
        overflow: hidden;
    }

    /* Disable parallax backgrounds on mobile */
    #wnba-spy-landing .parallax-bg {
        position: absolute;
        top: 0;
        height: 100%;
        background-attachment: scroll !important;
        background-position: center center;
        background-size: cover;
    }

    #wnba-spy-landing .split-text-content {
        padding: 1.6rem 1.2rem;
        max-width: 100%;
    }

    #wnba-spy-landing .split-text-content h2 {
        font-size: clamp(1.44rem, 5vw, 2rem);
        margin-bottom: 1.2rem;
    }

    #wnba-spy-landing .split-text-content p {
        font-size: clamp(0.8rem, 2.5vw, 0.96rem);
    }

    #wnba-spy-landing .parallax-bg {
        background-attachment: scroll; /* Better performance on mobile */
    }

    /* Unused SPY mobile styles removed */

    #wnba-spy-landing .holdings-title {
        font-size: 0.96rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    #wnba-spy-landing .holding-logo {
        padding: 0.6rem 0.8rem;
        margin: 0 0.4rem;
        min-width: 100px;
        height: 60px;
    }

    #wnba-spy-landing .holding-logo img {
        max-width: 60px;
        max-height: 30px;
    }
}

/* Accessibility - Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    #wnba-spy-landing * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Disabled Sticky header */
.header {
    position: relative;
}

/* Disable vh unit for Author Mode */
.cq-Editable-dom #wnba-spy-landing .hero {
    min-height: auto;
}

.cq-Editable-dom #wnba-spy-landing .split-parallax-section {
    height: auto;
}

@media (max-width: 768px) {
    .cq-Editable-dom #wnba-spy-landing .split-parallax-section {
        height: auto;
    }
}

.invest-now-banner {
	margin-bottom:0;
	padding-bottom:96px;
}

@media (max-width: 599px) {
	.invest-now-banner {
		padding-bottom:48px;
	}
}