/* ============================================
   WOMEN'S LEAGUES FUNNEL PAGE
   Aesthetic: Empowering, kinetic, celebratory
   ============================================ */

/* CSS Variables */
.wl-page {
    --wl-primary: var(--flipt-primary, #00a69c);
    --wl-primary-rgb: var(--flipt-primary-rgb, 0, 166, 156);
    --wl-accent: #e879f9; /* Fuchsia accent for women's theme */
    --wl-accent-rgb: 232, 121, 249;
    --wl-gold: #fbbf24;
    --wl-dark: #0f172a;
    --wl-dark-rgb: 15, 23, 42;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.wl-section-label {
    display: inline-block;
    font-family: 'Karla', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--wl-primary);
    margin-bottom: 0.75rem;
}

.wl-section-title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--theme-text-primary);
    margin: 0;
}

.wl-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wl-section-header--light .wl-section-label {
    color: rgba(255, 255, 255, 0.7);
}

.wl-section-header--light .wl-section-title {
    color: #fff;
}

/* ============================================
   BUTTONS
   ============================================ */
.wl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.wl-btn--primary {
    background: linear-gradient(135deg, var(--wl-primary) 0%, #0891b2 100%);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(var(--wl-primary-rgb), 0.4);
}

.wl-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--wl-primary-rgb), 0.5);
    color: #fff;
    text-decoration: none;
}

.wl-btn--primary i {
    transition: transform 0.2s ease;
}

.wl-btn--primary:hover i {
    transform: translateX(4px);
}

.wl-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wl-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.wl-btn--outline {
    background: transparent;
    color: var(--wl-primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    border: 2px solid var(--wl-primary);
}

.wl-btn--outline:hover {
    background: var(--wl-primary);
    color: #fff;
    text-decoration: none;
}

.wl-btn--lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.0625rem;
}

.wl-btn--xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.wl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.wl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wl-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            var(--wl-dark) 0%,
            #1e1b4b 40%,
            #312e81 70%,
            #4c1d95 100%
        );
}

.wl-hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(var(--wl-accent-rgb), 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(var(--wl-primary-rgb), 0.12) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    /* Subtle diagonal lines */
    background-image:
        radial-gradient(circle at 20% 30%, rgba(var(--wl-accent-rgb), 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(var(--wl-primary-rgb), 0.12) 0%, transparent 35%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.01) 80px,
            rgba(255, 255, 255, 0.01) 81px
        );
}

.wl-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(var(--wl-accent-rgb), 0.15);
    border: 1px solid rgba(var(--wl-accent-rgb), 0.4);
    border-radius: 999px;
    font-family: 'Karla', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--wl-accent);
    margin-bottom: 2rem;
}

.wl-hero__badge-icon {
    font-size: 1rem;
    font-weight: 800;
}

.wl-hero__title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1.5rem;
}

.wl-hero__title-line {
    display: block;
    opacity: 0.9;
}

.wl-hero__title-accent {
    display: block;
    padding-bottom: 0.1em;
    background: linear-gradient(135deg, var(--wl-primary) 0%, var(--wl-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wl-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 3rem;
}

.wl-hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.wl-hero__stat {
    text-align: center;
}

.wl-hero__stat-value {
    display: block;
    font-family: 'Karla', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.wl-hero__stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.wl-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.wl-hero__cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wl-hero__image {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wl-hero__artwork {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wl-hero__artwork:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.wl-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
    animation: wl-bounce 2s ease-in-out infinite;
}

@keyframes wl-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   VALUE PROPS SECTION
   ============================================ */
.wl-value {
    padding: 6rem 0;
    background: var(--theme-bg-primary);
}

.wl-value__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wl-value__card {
    position: relative;
    padding: 2rem;
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.wl-value__card.wl-visible {
    opacity: 1;
    transform: translateY(0);
}

.wl-value__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(var(--wl-dark-rgb), 0.12);
    border-color: var(--wl-primary);
}

.wl-value__card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--wl-primary-rgb), 0.1) 0%, rgba(var(--wl-accent-rgb), 0.05) 100%);
    border-color: rgba(var(--wl-primary-rgb), 0.3);
}

.wl-value__card--featured .wl-value__icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
}

.wl-value__card--featured .wl-value__card-title {
    font-size: 1.5rem;
}

.wl-value__card--featured .wl-value__card-desc {
    margin: 0;
}

.wl-value__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(var(--wl-primary-rgb), 0.1);
    border-radius: 12px;
    color: var(--wl-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.wl-value__card--featured .wl-value__icon {
    margin-bottom: 0;
}

.wl-pdga-icon {
    width: 1.5rem;
    height: auto;
}

.wl-value__card-title {
    font-family: 'Karla', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin: 0 0 0.5rem;
}

.wl-value__card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--theme-text-secondary);
    margin: 0;
}

.wl-value__card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: var(--wl-primary);
    border-radius: 999px;
    font-family: 'Karla', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

/* ============================================
   PROOF SECTION (USWDGC)
   ============================================ */
.wl-proof {
    padding: 6rem 0;
    background: var(--theme-bg-secondary);
}

.wl-proof__card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 20px;
    text-align: center;
}

.wl-proof__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--wl-gold), 0.15);
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 999px;
    font-family: 'Karla', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--wl-gold);
    margin-bottom: 1.5rem;
}

.wl-proof__badge i {
    font-size: 0.875rem;
}

.wl-proof__title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--theme-text-primary);
    margin: 0 0 1rem;
}

.wl-proof__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--theme-text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.wl-proof__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.wl-proof__stat {
    text-align: center;
}

.wl-proof__stat-value {
    display: block;
    font-family: 'Karla', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--theme-text-primary);
}

.wl-proof__stat-label {
    font-size: 0.75rem;
    color: var(--theme-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wl-proof__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Karla', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--wl-primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.wl-proof__link:hover {
    gap: 0.75rem;
    text-decoration: none;
}

/* ============================================
   DIRECTOR BENEFITS SECTION
   ============================================ */
.wl-director {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--wl-dark) 0%, #1e293b 100%);
}

.wl-director__content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.wl-director__lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0 0 2rem;
}

.wl-director__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.wl-director__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.wl-director__list li.wl-visible {
    opacity: 1;
    transform: translateX(0);
}

.wl-director__list li i {
    flex-shrink: 0;
    color: var(--wl-primary);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.wl-director__note {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 1.5rem;
    border-left: 2px solid rgba(var(--wl-primary-rgb), 0.4);
}

.wl-director__asterisk {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1.5rem;
    font-style: italic;
}

.wl-director__visual {
    position: relative;
    height: 300px;
}

.wl-director__icon-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.wl-director__floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(var(--wl-primary-rgb), 0.2);
    border: 2px solid rgba(var(--wl-primary-rgb), 0.4);
    border-radius: 20px;
    color: var(--wl-primary);
    font-size: 2rem;
    animation: wl-float 6s ease-in-out infinite;
}

.wl-director__floating-icon--1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.wl-director__floating-icon--2 {
    top: 40%;
    right: 10%;
    animation-delay: -2s;
}

.wl-director__floating-icon--3 {
    bottom: 10%;
    left: 30%;
    animation-delay: -4s;
    background: rgba(var(--wl-primary-rgb), 0.3);
    border-color: var(--wl-primary);
}

@keyframes wl-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.wl-faq {
    padding: 6rem 0;
    background: var(--theme-bg-primary);
}

.wl-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.wl-faq__item {
    padding: 1.5rem;
    background: var(--theme-surface-1);
    border: 1px solid var(--theme-border-color);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.wl-faq__item.wl-visible {
    opacity: 1;
    transform: translateY(0);
}

.wl-faq__question {
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin: 0 0 0.5rem;
}

.wl-faq__answer {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--theme-text-secondary);
    margin: 0;
}

.wl-faq__more {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.wl-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg,
        #4c1d95 0%,
        #6d28d9 50%,
        var(--wl-primary) 100%
    );
    position: relative;
    overflow: hidden;
}

.wl-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 40%);
}

.wl-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.wl-cta__title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 1rem;
}

.wl-cta__desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2.5rem;
}

.wl-cta__actions {
    margin-bottom: 2rem;
}

.wl-cta .wl-btn--primary {
    background: #fff;
    color: var(--wl-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.wl-cta .wl-btn--primary:hover {
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.wl-cta__contact {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.wl-cta__contact a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wl-cta__contact a:hover {
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .wl-value__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wl-value__card--featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wl-value__card--featured .wl-value__icon {
        margin: 0 auto 1rem;
    }

    .wl-director__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wl-director__visual {
        display: none;
    }
}

@media (max-width: 767px) {
    .wl-hero {
        min-height: auto;
        padding: 5rem 0 4rem;
    }

    .wl-hero__title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .wl-hero__image {
        margin-top: 2rem;
    }

    .wl-hero__artwork {
        border-radius: 12px;
    }

    .wl-hero__stats {
        gap: 1rem;
    }

    .wl-hero__stat-value {
        font-size: 1.5rem;
    }

    .wl-hero__stat-divider {
        display: none;
    }

    .wl-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .wl-hero__scroll-hint {
        display: none;
    }

    .wl-value__grid {
        grid-template-columns: 1fr;
    }

    .wl-faq__grid {
        grid-template-columns: 1fr;
    }

    .wl-proof__card {
        padding: 2rem 1.5rem;
    }

    .wl-proof__stats {
        gap: 1.5rem;
    }

    .wl-section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .wl-value, .wl-proof, .wl-director, .wl-faq {
        padding: 4rem 0;
    }

    .wl-cta {
        padding: 5rem 0;
    }
}

/* ============================================
   DARK MODE ADJUSTMENTS
   ============================================ */
[data-bs-theme="dark"] .wl-value__card {
    background: var(--theme-surface-1);
}

[data-bs-theme="dark"] .wl-value__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="dark"] .wl-proof__card {
    background: var(--theme-surface-1);
}

[data-bs-theme="dark"] .wl-faq__item {
    background: var(--theme-surface-1);
}

/* Animation delays for staggered reveals */
.wl-value__card:nth-child(1) { transition-delay: 0.1s; }
.wl-value__card:nth-child(2) { transition-delay: 0.15s; }
.wl-value__card:nth-child(3) { transition-delay: 0.2s; }
.wl-value__card:nth-child(4) { transition-delay: 0.25s; }
.wl-value__card:nth-child(5) { transition-delay: 0.3s; }
.wl-value__card:nth-child(6) { transition-delay: 0.35s; }
.wl-value__card:nth-child(7) { transition-delay: 0.4s; }

.wl-director__list li:nth-child(1) { transition-delay: 0.1s; }
.wl-director__list li:nth-child(2) { transition-delay: 0.2s; }
.wl-director__list li:nth-child(3) { transition-delay: 0.3s; }
.wl-director__list li:nth-child(4) { transition-delay: 0.4s; }
.wl-director__list li:nth-child(5) { transition-delay: 0.5s; }

.wl-faq__item:nth-child(1) { transition-delay: 0.1s; }
.wl-faq__item:nth-child(2) { transition-delay: 0.15s; }
.wl-faq__item:nth-child(3) { transition-delay: 0.2s; }
.wl-faq__item:nth-child(4) { transition-delay: 0.25s; }
.wl-faq__item:nth-child(5) { transition-delay: 0.3s; }
.wl-faq__item:nth-child(6) { transition-delay: 0.35s; }
