/* ============================================
   Fantasy Football Hub – Neon palette
   Dark base + neon cyan, magenta, purple
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --wbl-white: #FFFFFF;
    --neon-cyan: #00f5ff;
    --neon-magenta: #ff00ff;
    --neon-purple: #bf00ff;
    --neon-blue: #0080ff;
    --neon-pink: #ff1493;
    --wbl-cerulean: #00f5ff;
    --wbl-turquoise: #00e5ff;
    --wbl-gray: #0d0d14;
    --wbl-charleston: #0a0a12;
    --wbl-bg-dark: #050508;
    --wbl-text: #e8e8f0;
    --wbl-text-soft: #a0a0b8;
    --wbl-border: rgba(0, 245, 255, 0.2);
    --wbl-shadow: rgba(0, 245, 255, 0.08);
    --wbl-shadow-hover: rgba(255, 0, 255, 0.15);
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-wbl: all 0.3s var(--ease-out);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--wbl-text);
    background-color: var(--wbl-bg-dark);
    overflow-x: hidden;
    position: relative;
}

/* Falling stars background – dark sky + neon streaks */
.pitch-bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.stars-bg {
    background: radial-gradient(ellipse 120% 100% at 50% 0%, #0f0a1a 0%, #050508 40%, #030306 100%);
}

.falling-star {
    position: absolute;
    left: var(--x, 50%);
    top: -20%;
    width: 3px;
    height: 80px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 245, 255, 0.3) 20%,
        rgba(0, 245, 255, 0.9) 50%,
        rgba(191, 0, 255, 0.6) 80%,
        transparent 100%
    );
    transform: rotate(-55deg);
    transform-origin: center top;
    animation: fallingStar var(--duration, 2.5s) linear var(--delay, 0s) infinite;
    filter: blur(0.5px);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.6);
}

.falling-star:nth-child(odd) {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 0, 255, 0.25) 20%,
        rgba(255, 0, 255, 0.85) 50%,
        rgba(0, 245, 255, 0.5) 80%,
        transparent 100%
    );
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.5);
}

@keyframes fallingStar {
    0% {
        opacity: 0;
        transform: rotate(-55deg) translateY(0);
    }
    5% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: rotate(-55deg) translateY(120vh);
    }
}

main,
.pitch-footer {
    position: relative;
    z-index: 1;
}

body::before {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-wbl);
}

ul { list-style: none; }

/* ============================================
   HEADER – White, minimal (sportswear style)
   ============================================ */

.pitch-header {
    background: rgba(10, 10, 18, 0.92);
    box-shadow: 0 1px 0 var(--wbl-border), 0 0 24px rgba(0, 245, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.pitch-header::after {
    display: none;
}

.pitch-nav { padding: 1rem 0; }

.pitch-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pitch-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 0.02em;
    transition: var(--transition-wbl);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.pitch-logo-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    transition: var(--transition-wbl);
}

.pitch-logo:hover { color: var(--neon-magenta); text-shadow: 0 0 24px rgba(255, 0, 255, 0.5); }

.pitch-logo:hover .pitch-logo-icon {
    transform: scale(1.05);
}

.pitch-logo-text { transition: var(--transition-wbl); }

.pitch-menu-btn {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.pitch-menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 1px;
    transition: var(--transition-wbl);
}

.pitch-menu-close {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--neon-cyan);
    font-weight: 300;
}

.pitch-menu-btn[aria-expanded="true"] .pitch-menu-line {
    opacity: 0;
    visibility: hidden;
}

.pitch-menu-btn[aria-expanded="true"] .pitch-menu-close {
    display: flex;
    z-index: 1111;
}

.pitch-nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.pitch-nav-item {
    color: var(--wbl-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    position: relative;
}

.pitch-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: var(--transition-wbl);
}

.pitch-nav-item:hover::after,
.pitch-nav-item-active::after { width: 100%; }

.pitch-nav-item:hover { color: var(--neon-cyan); }
.pitch-nav-item-active { color: var(--neon-cyan); }

@media (max-width: 768px) {
    .pitch-menu-btn { display: flex; }
    .pitch-nav-list {
        position: fixed;
        top: 0;
        display: none;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 18, 0.98);
        box-shadow: -4px 0 24px rgba(0, 245, 255, 0.1);
        border-left: 1px solid var(--wbl-border);
        flex-direction: column;
        padding: 5rem 1.5rem 1.5rem;
        transition: right 0.35s var(--ease-out);
        z-index: 999;
    }
    .pitch-nav-list.is-open { right: 0; display: flex;}
    .pitch-nav-item { color: var(--wbl-text); }
}

/* ============================================
   HERO – Clean full-width, image + text (sportswear)
   ============================================ */

.pitch-hero-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 75vh;
    align-items: center;
    background: rgba(5, 5, 12, 0.6);
}

@media (max-width: 900px) {
    .pitch-hero-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 3rem 0;
    }
}

.pitch-hero-bg-layer {
    display: none;
}

.pitch-hero-content {
    padding: 2rem 3rem;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 900px) {
    .pitch-hero-content { text-align: center; padding: 2rem 24px; }
}

.pitch-hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--wbl-white);
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
}

.pitch-hero-tagline {
    font-size: 1.05rem;
    color: var(--wbl-text-soft);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.pitch-hero-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    transition: var(--transition-wbl);
}

.pitch-hero-cta:hover {
    background: var(--neon-cyan);
    color: var(--wbl-charleston);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
}

.pitch-hero-visual {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .pitch-hero-visual { order: -1; padding: 2rem 24px; }
}

.pitch-hero-img {
    width: 100%;
    max-width: 520px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 245, 255, 0.15);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

@keyframes pitchFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTIONS – White / Light gray alternating
   ============================================ */

.squad-features-zone {
    padding: 2.5rem 0;
    background: rgba(10, 10, 20, 0.7);
}

.squad-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.squad-features-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.squad-features-title::after {
    display: none;
}

.squad-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .squad-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .squad-features-grid { grid-template-columns: 1fr; }
}

.squad-feature-card {
    background: rgba(15, 15, 28, 0.9);
    border: 1px solid var(--wbl-border);
    border-radius: 4px;
    padding: 1.75rem;
    transition: var(--transition-wbl);
}

.squad-feature-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 24px rgba(0, 245, 255, 0.2), inset 0 0 30px rgba(0, 245, 255, 0.03);
}

.squad-feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.squad-feature-icon { font-size: 2.5rem; line-height: 1; }

.squad-feature-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.squad-feature-text {
    font-size: 0.9rem;
    color: var(--wbl-text-soft);
    line-height: 1.55;
}

.squad-features-cta-text {
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
    color: var(--neon-magenta);
    font-size: 0.95rem;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.squad-feature-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.squad-feature-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.squad-feature-card-1 { transition-delay: 0.05s; }
.squad-feature-card-2 { transition-delay: 0.1s; }
.squad-feature-card-3 { transition-delay: 0.15s; }
.squad-feature-card-4 { transition-delay: 0.2s; }

/* ============================================
   PULSE STRIP (CTA) – Cerulean band
   ============================================ */

.pulse-strip {
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-top: 1px solid rgba(0, 245, 255, 0.3);
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    padding: 1.25rem 24px;
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.1);
}

.pulse-strip::before { display: none; }

.pulse-strip-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pulse-strip-text {
    color: var(--wbl-text);
    font-weight: 500;
    font-size: 1rem;
}

.pulse-strip-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.pulse-strip-btn:hover {
    background: var(--neon-cyan);
    color: var(--wbl-charleston);
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.5);
}

/* ============================================
   LEAGUE PULSE BLOCK
   ============================================ */

.league-pulse-block {
    padding: 2.5rem 24px;
    background: rgba(8, 8, 18, 0.6);
}

.league-pulse-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.league-pulse-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--neon-magenta);
    margin-bottom: 0.5rem;
}

.league-pulse-date { font-size: 0.9rem; color: var(--wbl-text-soft); margin-bottom: 0.5rem; }

.league-pulse-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--wbl-white);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.league-pulse-desc { color: var(--wbl-text-soft); }

/* ============================================
   PITCH TALES (Stories / New collection style)
   ============================================ */

.pitch-tales-block {
    padding: 2.5rem 0;
    background: rgba(10, 10, 22, 0.7);
}

.pitch-tales-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pitch-tales-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 700;
    text-align: center;
    color: var(--neon-cyan);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
}

.pitch-tales-subtitle {
    text-align: center;
    color: var(--wbl-text-soft);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.pitch-tales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .pitch-tales-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .pitch-tales-grid { grid-template-columns: 1fr; }
}

.pitch-tale-card {
    background: rgba(15, 15, 28, 0.9);
    border: 1px solid var(--wbl-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-wbl);
}

.pitch-tale-card:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 28px rgba(255, 0, 255, 0.2);
}

.pitch-tale-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.pitch-tale-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.pitch-tale-card:hover .pitch-tale-img { transform: scale(1.03); }

.pitch-tale-meta {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neon-magenta);
    margin: 1rem 1rem 0.2rem;
}

.pitch-tale-heading {
    font-size: 1rem;
    font-weight: 700;
    padding: 0 1rem 1rem;
    color: var(--wbl-text);
}

.pitch-tales-link {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
    color: var(--neon-cyan);
    font-size: 0.95rem;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.pitch-tales-link:hover { color: var(--neon-magenta); }

.pitch-tale-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.pitch-tale-card.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   DASH CTA BLOCK
   ============================================ */

.dash-cta-block {
    padding: 2.5rem 24px;
    background: linear-gradient(180deg, rgba(191, 0, 255, 0.15), rgba(0, 245, 255, 0.08));
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--wbl-text);
    text-align: center;
}

.dash-cta-inner { max-width: 720px; margin: 0 auto; }

.dash-cta-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--wbl-white);
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.dash-cta-text { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1rem; }

.dash-cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--neon-magenta);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 2px solid var(--neon-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.dash-cta-btn:hover {
    background: var(--neon-magenta);
    color: var(--wbl-charleston);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.5);
}

/* ============================================
   VELOCITY STATS
   ============================================ */

.velocity-stats-wrap {
    padding: 2.5rem 0;
    background: rgba(8, 8, 18, 0.6);
}

.velocity-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.velocity-stats-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
}

.velocity-stats-intro {
    color: var(--wbl-text-soft);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.velocity-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 700px) {
    .velocity-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.velocity-stat-item {
    padding: 1.5rem 1rem;
    background: rgba(15, 15, 28, 0.8);
    border-radius: 4px;
    border: 1px solid var(--wbl-border);
    transition: var(--transition-wbl);
}

.velocity-stat-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.velocity-stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--neon-cyan);
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.velocity-stat-unit { font-size: 0.85rem; font-weight: 600; color: var(--wbl-text-soft); }

.velocity-stat-label { display: block; font-size: 0.8rem; color: var(--wbl-text-soft); margin-top: 0.25rem; }

/* ============================================
   FAQ
   ============================================ */

.earthlings-faq-wrap {
    padding: 2.5rem 0;
    background: rgba(10, 10, 22, 0.7);
}

.earthlings-faq-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.earthlings-faq-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--neon-cyan);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
}

.earthlings-faq-subtitle { text-align: center; color: var(--wbl-text-soft); margin-bottom: 0.25rem; font-size: 0.9rem; }

.earthlings-faq-email {
    text-align: center;
    font-weight: 600;
    color: var(--neon-magenta);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.earthlings-faq-list { margin-bottom: 2rem; }

.earthlings-faq-item {
    background: rgba(15, 15, 28, 0.9);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--wbl-border);
    overflow: hidden;
}

.earthlings-faq-item:hover,
.earthlings-faq-item[open] {
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.08);
}

.earthlings-faq-question {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    font-size: 0.95rem;
    color: var(--wbl-text);
}

.earthlings-faq-question::-webkit-details-marker { display: none; }

.earthlings-faq-question::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

.earthlings-faq-item[open] .earthlings-faq-question::after { content: '−'; }

.earthlings-faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--wbl-text-soft);
    line-height: 1.6;
    font-size: 0.9rem;
}

.earthlings-faq-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.earthlings-faq-tag {
    padding: 0.5rem 1rem;
    background: rgba(15, 15, 28, 0.9);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--wbl-text);
    border: 1px solid var(--wbl-border);
}

.earthlings-faq-tag:hover {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

/* ============================================
   WHO'S CHASING (Cards grid)
   ============================================ */

.whos-chasing-block {
    padding: 2.5rem 0;
    background: rgba(8, 8, 18, 0.6);
}

.whos-chasing-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 800px) {
    .whos-chasing-inner { grid-template-columns: 1fr; }
}

.whos-chasing-slide {
    background: rgba(15, 15, 28, 0.9);
    border: 1px solid var(--wbl-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-wbl);
}

.whos-chasing-slide:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 24px rgba(0, 245, 255, 0.2);
}

.whos-chasing-visual { aspect-ratio: 3/2; overflow: hidden; }

.whos-chasing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.whos-chasing-slide:hover .whos-chasing-img { transform: scale(1.03); }

.whos-chasing-heading {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.25rem 1.25rem 0.5rem;
    color: var(--neon-cyan);
}

.whos-chasing-text {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: var(--wbl-text-soft);
}

.whos-chasing-tags {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.25rem 1.25rem;
    flex-wrap: wrap;
}

.whos-chasing-tags li {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 245, 255, 0.1);
    border-radius: 4px;
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 245, 255, 0.3);
}

/* ============================================
   WHY NEED BLOCK
   ============================================ */

.why-need-block {
    padding: 2rem 24px;
    background: rgba(10, 10, 22, 0.7);
}

.why-need-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .why-need-inner { grid-template-columns: 1fr; }
}

.why-need-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 15, 28, 0.9);
    border-radius: 4px;
    border: 1px solid var(--wbl-border);
    transition: var(--transition-wbl);
}

.why-need-card:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 24px rgba(255, 0, 255, 0.15);
}

.why-need-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-need-icon { font-size: 2.5rem; line-height: 1; }

.why-need-heading { font-size: 1.1rem; font-weight: 700; color: var(--neon-magenta); margin-bottom: 0.35rem; text-shadow: 0 0 15px rgba(255, 0, 255, 0.3); }

.why-need-text { font-size: 0.9rem; color: var(--wbl-text-soft); }

/* ============================================
   SKY'S LIMIT STRIP
   ============================================ */

.skys-limit-strip {
    padding: 1.75rem 24px;
    background: linear-gradient(90deg, rgba(191, 0, 255, 0.2), rgba(0, 245, 255, 0.15));
    border-top: 1px solid rgba(191, 0, 255, 0.3);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
    color: var(--wbl-text);
    box-shadow: 0 0 40px rgba(191, 0, 255, 0.08);
}

.skys-limit-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--wbl-white);
    text-shadow: 0 0 25px rgba(191, 0, 255, 0.4);
}

.skys-limit-text { margin-bottom: 1rem; font-size: 0.95rem; opacity: 0.95; }

.skys-limit-btn {
    display: inline-block;
    padding: 0.7rem 1.75rem;
    background: transparent;
    color: var(--neon-purple);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(191, 0, 255, 0.3);
}

.skys-limit-btn:hover {
    background: var(--neon-purple);
    color: var(--wbl-white);
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.5);
}

/* ============================================
   WHAT MAKES FLY
   ============================================ */

.what-makes-fly-block {
    padding: 2.5rem 0;
    background: rgba(8, 8, 18, 0.6);
}

.what-makes-fly-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 800px) {
    .what-makes-fly-inner { grid-template-columns: 1fr; }
}

.what-makes-fly-card {
    background: rgba(15, 15, 28, 0.9);
    border: 1px solid var(--wbl-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-wbl);
}

.what-makes-fly-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 24px rgba(0, 245, 255, 0.2);
}

.what-makes-fly-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.what-makes-fly-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.what-makes-fly-card:hover .what-makes-fly-img { transform: scale(1.03); }

.what-makes-fly-heading {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1.25rem 0.25rem;
    color: var(--neon-cyan);
}

.what-makes-fly-text {
    padding: 0 1.25rem;
    font-size: 0.9rem;
    color: var(--wbl-text-soft);
}

.what-makes-fly-cta {
    display: inline-block;
    margin: 0.75rem 1.25rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.witness-frenzy-block {
    padding: 2.5rem 0;
    background: rgba(10, 10, 22, 0.7);
    border-top: none;
}

.witness-frenzy-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.witness-frenzy-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--neon-magenta);
    margin-bottom: 0.25rem;
}

.witness-frenzy-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--wbl-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(0, 245, 255, 0.2);
}

.witness-frenzy-desc { color: var(--wbl-text-soft); margin-bottom: 1.25rem; font-size: 0.95rem; }

.witness-frenzy-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 800px) {
    .witness-frenzy-slider { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .witness-frenzy-slider { grid-template-columns: 1fr; }
}

.witness-frenzy-quote {
    background: rgba(15, 15, 28, 0.9);
    padding: 1.25rem;
    border-radius: 4px;
    border: 1px solid var(--wbl-border);
    text-align: left;
    transition: var(--transition-wbl);
}

.witness-frenzy-quote:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.witness-frenzy-quote-text {
    font-size: 0.9rem;
    color: var(--wbl-text);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.5;
}

.witness-frenzy-quote-author { font-weight: 700; color: var(--neon-cyan); font-size: 0.95rem; }

.witness-frenzy-quote-role { display: block; font-size: 0.8rem; color: var(--wbl-text-soft); }

/* ============================================
   FEEL PULSE BLOCK
   ============================================ */

.feel-pulse-block {
    padding: 2.5rem 24px;
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.08), rgba(255, 0, 255, 0.1));
    border-top: 1px solid rgba(0, 245, 255, 0.25);
    border-bottom: 1px solid rgba(255, 0, 255, 0.25);
    color: var(--wbl-text);
    text-align: center;
}

.feel-pulse-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--wbl-white);
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.feel-pulse-text { margin-bottom: 0.5rem; opacity: 0.95; font-size: 1rem; }

.feel-pulse-tagline { margin-bottom: 1.5rem; opacity: 0.9; font-size: 0.95rem; }

.feel-pulse-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.feel-pulse-btn:hover {
    background: var(--neon-cyan);
    color: var(--wbl-charleston);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 245, 255, 0.5);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.join-race-block {
    padding: 2.5rem 0;
    background: rgba(8, 8, 18, 0.6);
}

.join-race-inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
}

.join-race-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
}

.join-race-subtitle { text-align: center; color: var(--wbl-text-soft); margin-bottom: 1.25rem; font-size: 0.95rem; }

.join-race-form-row { margin-bottom: 1.25rem; }

.join-race-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--wbl-text);
    font-size: 0.9rem;
}

.join-race-input,
.join-race-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--wbl-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(15, 15, 28, 0.8);
    color: var(--wbl-text);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.join-race-input::placeholder,
.join-race-textarea::placeholder {
    color: var(--wbl-text-soft);
}

.join-race-input:focus,
.join-race-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.15);
}

.join-race-textarea { resize: vertical; min-height: 100px; }

.join-race-submit {
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-wbl);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.join-race-submit:hover {
    background: var(--neon-cyan);
    color: var(--wbl-charleston);
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.join-race-connect {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--wbl-text-soft);
}

.join-race-legal {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--wbl-text-soft);
}

.join-race-legal a {
    color: var(--neon-cyan);
}

.join-race-legal a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

.pitch-footer {
    background: rgba(5, 5, 12, 0.95);
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--wbl-text);
    padding: 1.5rem 24px;
    box-shadow: 0 -4px 30px rgba(0, 245, 255, 0.05);
}

.pitch-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pitch-footer-copy { font-size: 0.9rem; opacity: 0.9; }

.pitch-footer-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pitch-footer-link {
    color: var(--wbl-text);
    font-size: 0.9rem;
}

.pitch-footer-link:hover { color: var(--neon-cyan); text-shadow: 0 0 15px rgba(0, 245, 255, 0.4); }

.pitch-footer-sep { opacity: 0.6; }

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page-wrap {
    padding: 3rem 24px 4rem;
    min-height: 60vh;
    background: var(--wbl-bg-dark);
}

.legal-page-inner {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(15, 15, 28, 0.95);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 245, 255, 0.06);
    border: 1px solid var(--wbl-border);
}

.legal-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
}

.legal-page-updated {
    font-size: 0.9rem;
    color: var(--wbl-text-soft);
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--wbl-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-section a {
    color: var(--neon-cyan);
}

.legal-section a:hover {
    text-decoration: underline;
}

/* ============================================
   FORM POPUP
   ============================================ */

.form-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 12, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.form-popup-overlay:not([hidden]) {
    display: flex;
}

.form-popup-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.form-popup-box {
    background: rgba(15, 15, 28, 0.98);
    border: 1px solid var(--wbl-border);
    border-radius: 4px;
    padding: 1.75rem 2rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 245, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.form-popup-overlay[aria-hidden="false"] .form-popup-box {
    transform: scale(1);
}

.form-popup-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.form-popup-text {
    font-size: 0.95rem;
    color: var(--wbl-text-soft);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.form-popup-close {
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-wbl);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.form-popup-close:hover {
    background: var(--neon-cyan);
    color: var(--wbl-charleston);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.4);
}

/* ============================================
   EMOJI ANIMATION
   ============================================ */

.squad-feature-icon,
.why-need-icon {
    display: inline-block;
    animation: emojiBounce 2s ease-in-out infinite;
}

.squad-feature-card:nth-child(1) .squad-feature-icon { animation-delay: 0s; }
.squad-feature-card:nth-child(2) .squad-feature-icon { animation-delay: 0.2s; }
.squad-feature-card:nth-child(3) .squad-feature-icon { animation-delay: 0.4s; }
.squad-feature-card:nth-child(4) .squad-feature-icon { animation-delay: 0.6s; }

.why-need-card:nth-child(1) .why-need-icon { animation-delay: 0s; }
.why-need-card:nth-child(2) .why-need-icon { animation-delay: 0.15s; }
.why-need-card:nth-child(3) .why-need-icon { animation-delay: 0.3s; }

@keyframes emojiBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.08); }
}
