/* =========================================
   BECOME A DIRECTOR PAGE - DRAMATIC UPGRADE
   ========================================= */

/* CSS Custom Properties for this page */
:root {
    --director-primary-rgb: 0, 166, 156;
    --director-secondary-rgb: 0, 104, 186;
    --director-coral-rgb: 255, 107, 107;
}

/* =========================================
   PHASE 1: HERO SECTION
   ========================================= */

.director-hero {
    background: linear-gradient(135deg, var(--theme-bg-secondary) 0%, var(--theme-bg-primary) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

/* Radial gradient pattern overlay */
.director-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(var(--director-primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--director-primary-rgb), 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(var(--director-secondary-rgb), 0.04) 0%, transparent 35%);
    pointer-events: none;
}

/* Art-style background overlay */
.director-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/backgrounds/flipt/geometric-tech.png') repeat;
    background-size: 400px;
    opacity: 0.04;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Two-column layout container */
.director-hero .container {
    position: relative;
    z-index: 1;
}

.director-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.director-hero-text {
    text-align: left;
}

/* Glassmorphism Badge */
.director-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(var(--director-primary-rgb), 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--director-primary-rgb), 0.3);
    color: var(--theme-text-primary);
    padding: 0.625rem 1.25rem;
    border-radius: 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-hero-badge:hover {
    background: rgba(var(--director-primary-rgb), 0.25);
    border-color: rgba(var(--director-primary-rgb), 0.5);
    transform: translateY(-2px);
}

.director-hero-badge i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--theme-accent);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
}

/* Typography */
.director-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--theme-text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.director-hero-subtitle {
    font-size: 1.25rem;
    color: var(--theme-text-secondary);
    max-width: 540px;
    margin: 0 0 2rem;
    line-height: 1.7;
}

/* CTA Section */
.director-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
}

/* Enhanced Primary Button */
/* Uses shared button system (btn-theme-*). */
.director-hero-cta .btn-theme-base {
    border-radius: 0.75rem;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
}

.director-hero-cta .btn-theme-base.btn-lg {
    padding: 1.375rem 2.75rem;
    font-size: 1.25rem;
}

/* Trust Indicators */
.hero-cta-note {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: var(--theme-text-secondary);
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-cta-note i {
    color: var(--theme-success, #10b981);
    margin-right: 0.375rem;
}

/* Secondary Link */
.director-hero-secondary {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.director-hero-secondary span {
    color: var(--theme-text-muted);
}

.director-hero-secondary a {
    color: var(--theme-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.director-hero-secondary a:hover {
    color: var(--theme-accent);
}

.director-hero-secondary a i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.director-hero-secondary a:hover i {
    transform: translateX(4px);
}

/* Hero Image Container */
.director-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.director-hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.1);
}

.director-hero-image-container:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(var(--director-primary-rgb), 0.15);
}

.director-hero-image-container img {
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 560px;
    height: auto;
    transition: all 0.3s ease;
}

.director-hero-image-container:hover img {
    filter: brightness(1.05) contrast(1.02);
}


/* Explore Button (for two-button hero variant) */

/* =========================================
   VALUE PROPS STRIP
   ========================================= */

.value-props-strip {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary, #0068BA) 100%);
    padding: 2rem 0;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-prop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.value-prop i {
    font-size: 1.75rem;
    opacity: 0.9;
}

.value-prop span {
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-prop i {
        font-size: 1.5rem;
    }

    .value-prop span {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .value-props-strip {
        padding: 1.5rem 0;
    }

    .value-props-grid {
        gap: 1rem;
    }
}

/* =========================================
   PHASE 2: THE PROBLEM SECTION
   ========================================= */

.the-problem {
    background: linear-gradient(135deg, #FF6B6B 0%, #ff5252 50%, #e84545 100%);
    color: white;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.the-problem::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.problem-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.problem-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 255, 255, 0.15);
}

.problem-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    text-align: left;
    display: inline-block;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.625rem 0;
    font-size: 1.125rem;
}

.problem-list li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.problem-solution {
    font-size: 1.125rem;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.75rem 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.problem-solution strong {
    display: block;
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
    color: white;
}

/* =========================================
   PHASE 3: BENEFITS GRID
   ========================================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin: 3rem 0;
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: var(--theme-bg-secondary);
    border: 1px solid var(--theme-border-color);
    border-radius: 1.25rem;
    padding: 2.25rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Colored top accent border */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-accent), rgba(var(--director-primary-rgb), 0.7));
    opacity: 0.8;
}

/* Rotate colors for variety */
.benefit-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2E86C1, #4396cf);
}

.benefit-card:nth-child(3)::before {
    background: linear-gradient(90deg, #FF6B6B, #ff8585);
}

.benefit-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--theme-accent), rgba(var(--director-primary-rgb), 0.7));
}

.benefit-card:nth-child(5)::before {
    background: linear-gradient(90deg, #2E86C1, #4396cf);
}

.benefit-card:nth-child(6)::before {
    background: linear-gradient(90deg, #FF6B6B, #ff8585);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 24px -8px rgba(0, 0, 0, 0.12),
        0 24px 48px -12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--theme-accent) 0%, rgba(var(--director-primary-rgb), 0.8) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 16px -4px rgba(var(--director-primary-rgb), 0.3);
}

/* Icon color variations */
.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #2E86C1, #1a6aa5);
    box-shadow: 0 8px 16px -4px rgba(46, 134, 193, 0.3);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #FF6B6B, #e84545);
    box-shadow: 0 8px 16px -4px rgba(255, 107, 107, 0.3);
}

.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #2E86C1, #1a6aa5);
    box-shadow: 0 8px 16px -4px rgba(46, 134, 193, 0.3);
}

.benefit-card:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #FF6B6B, #e84545);
    box-shadow: 0 8px 16px -4px rgba(255, 107, 107, 0.3);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--theme-text-primary);
}

.benefit-card p {
    color: var(--theme-text-secondary);
    line-height: 1.65;
    margin: 0;
    font-size: 0.9375rem;
}

/* =========================================
   PHASE 4: STATS BANNER
   ========================================= */

.stats-banner {
    background: linear-gradient(135deg, var(--theme-accent) 0%, rgba(var(--director-secondary-rgb), 0.9) 100%);
    color: white;
    padding: 3.5rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.stats-banner .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    position: relative;
    padding: 1rem 0;
}

/* Subtle dividers between stats */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

.stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.625rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.stat-label {
    font-size: 0.8125rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* =========================================
   TD EARNINGS SECTION
   Warm, appreciative celebration of TD work
   ========================================= */

.td-earnings-section {
    position: relative;
    background: linear-gradient(
        135deg,
        var(--theme-bg-secondary) 0%,
        var(--theme-bg-primary) 50%,
        var(--theme-bg-secondary) 100%
    );
    padding: 4rem 2rem;
    margin: 3rem 0;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--theme-border-color);
}

/* Warm golden glow effect */
.td-earnings-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 193, 7, 0.08) 0%,
        rgba(255, 152, 0, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.td-earnings-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.td-earnings-header {
    text-align: center;
    margin-bottom: 3rem;
}

.td-earnings-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.1) 100%);
    border: 1px solid rgba(255, 193, 7, 0.25);
    color: #f59e0b;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.td-earnings-badge i {
    font-size: 0.9rem;
}

.td-earnings-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--theme-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.td-earnings-amount {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.td-earnings-subtitle {
    font-size: 1.125rem;
    color: var(--theme-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Flow Visualization */
.td-earnings-explainer {
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.td-earnings-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.td-earnings-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.td-earnings-flow-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--theme-bg-secondary);
    border: 2px solid var(--theme-border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--theme-text-secondary);
    transition: all 0.3s ease;
}

.td-earnings-flow-step span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--theme-text-secondary);
    white-space: nowrap;
}

.td-earnings-flow-step--highlight .td-earnings-flow-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px -4px rgba(245, 158, 11, 0.4);
}

.td-earnings-flow-step--highlight span {
    color: #f59e0b;
    font-weight: 700;
}

.td-earnings-flow-arrow {
    color: var(--theme-text-muted);
    font-size: 1rem;
    opacity: 0.5;
}

/* Options Section */
.td-earnings-options {
    text-align: center;
    margin-bottom: 2rem;
}

.td-earnings-options h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin-bottom: 0.5rem;
}

.td-earnings-options-intro {
    color: var(--theme-text-secondary);
    margin-bottom: 2rem;
}

/* Option Cards Grid */
.td-earnings-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .td-earnings-options-grid {
        grid-template-columns: 1fr;
    }
}

.td-option-card {
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-color);
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.td-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0.8;
}

.td-option-card--keep::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.td-option-card--shop::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.td-option-card--course::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.td-option-card--nonprofit::before {
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.td-option-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 24px -8px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.1);
}

.td-option-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.td-option-card--keep .td-option-icon {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.td-option-card--shop .td-option-icon {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}

.td-option-card--course .td-option-icon {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.td-option-card--nonprofit .td-option-icon {
    background: rgba(236, 72, 153, 0.12);
    color: #ec4899;
}

.td-option-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin-bottom: 0.5rem;
}

.td-option-card p {
    font-size: 0.9375rem;
    color: var(--theme-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Footer Note */
.td-earnings-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--theme-border-color);
}

.td-earnings-footer p {
    font-size: 0.875rem;
    color: var(--theme-text-muted);
    margin: 0;
}

.td-earnings-footer i {
    color: var(--theme-accent);
    margin-right: 0.5rem;
}

.td-earnings-footer a {
    color: var(--theme-accent);
    text-decoration: none;
    font-weight: 500;
}

.td-earnings-footer a:hover {
    text-decoration: underline;
}

/* Dark Mode */
[data-bs-theme="dark"] .td-earnings-section {
    background: linear-gradient(
        135deg,
        var(--surface-1, #1a1a2e) 0%,
        var(--theme-bg-primary) 50%,
        var(--surface-1, #1a1a2e) 100%
    );
}

[data-bs-theme="dark"] .td-earnings-glow {
    background: radial-gradient(
        circle,
        rgba(255, 193, 7, 0.12) 0%,
        rgba(255, 152, 0, 0.06) 40%,
        transparent 70%
    );
}

[data-bs-theme="dark"] .td-earnings-badge {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.15) 100%);
    border-color: rgba(255, 193, 7, 0.3);
}

[data-bs-theme="dark"] .td-earnings-explainer {
    background: var(--surface-1, #1a1a2e);
}

[data-bs-theme="dark"] .td-option-card {
    background: var(--surface-1, #1a1a2e);
}

[data-bs-theme="dark"] .td-option-card:hover {
    box-shadow:
        0 12px 24px -8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .td-earnings-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }

    .td-earnings-flow {
        flex-direction: column;
        gap: 0.75rem;
    }

    .td-earnings-flow-arrow {
        transform: rotate(90deg);
    }

    .td-earnings-explainer {
        padding: 1.5rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .td-earnings-glow {
        animation: none;
    }

    .td-option-card {
        transition: none;
    }

    .td-option-card:hover {
        transform: none;
    }
}

/* =========================================
   PHASE 5: TESTIMONIAL / ANYONE SECTION
   ========================================= */

.anyone-section {
    background: var(--theme-bg-secondary);
    border: 1px solid var(--theme-border-color);
    border-radius: 1.5rem;
    padding: 3.5rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.anyone-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(var(--director-primary-rgb), 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.anyone-content {
    position: relative;
    z-index: 1;
}

.anyone-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--theme-text-primary);
}

.anyone-content h2 i {
    color: var(--theme-accent);
    margin-right: 0.625rem;
}

.anyone-content > p {
    font-size: 1.125rem;
    color: var(--theme-text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.anyone-testimonial {
    background: var(--theme-bg-primary);
    border-radius: 1.25rem;
    padding: 2.25rem 2.5rem;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--theme-accent), rgba(var(--director-secondary-rgb), 0.8)) 1;
}

.anyone-testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--theme-accent);
    opacity: 0.2;
    line-height: 1;
}

.anyone-testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--theme-text-primary);
    margin: 0 0 1.25rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.anyone-testimonial cite {
    color: var(--theme-text-secondary);
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 500;
}

/* Featured Testimonial with Avatar */
.anyone-testimonial--featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
}

.anyone-testimonial--featured::before {
    display: none;
}

.anyone-testimonial--featured .testimonial-avatar {
    margin-bottom: 1.5rem;
}

.anyone-testimonial--featured .testimonial-avatar .player-avatar,
.anyone-testimonial--featured .testimonial-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--theme-accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.anyone-testimonial--featured blockquote {
    font-size: 1.125rem;
    max-width: 520px;
    margin: 0 0 1.5rem;
    padding: 0;
}

.anyone-testimonial--featured .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.anyone-testimonial--featured .testimonial-name,
.anyone-testimonial--featured .testimonial-name a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--theme-text-primary);
    text-decoration: none;
}

.anyone-testimonial--featured .testimonial-name a:hover {
    color: var(--theme-accent);
}

.anyone-testimonial--featured .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
    flex-wrap: wrap;
    justify-content: center;
}

.anyone-testimonial--featured .testimonial-separator {
    color: var(--theme-text-muted);
}

/* =========================================
   PHASE 6: FINAL CTA SECTION
   ========================================= */

.cta-section-director {
    background: linear-gradient(135deg, var(--theme-accent) 0%, rgba(var(--director-secondary-rgb), 0.95) 100%);
    padding: 4.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    margin: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-director::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section-director > * {
    position: relative;
    z-index: 1;
}

.cta-section-director h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-section-director p {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 520px;
    margin: 0 auto 2.25rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Override outline button for CTA section - ensure readability on gradient */
.cta-section-director .btn-theme-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cta-section-director .btn-theme-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    color: white;
}

/* FAQ Teaser */
.faq-teaser {
    text-align: center;
    padding: 2.5rem;
    background: var(--theme-bg-secondary);
    border-radius: 1.25rem;
    margin-top: 3rem;
    border: 1px solid var(--theme-border-color);
}

.faq-teaser h3 {
    margin-bottom: 0.625rem;
    font-weight: 700;
    color: var(--theme-text-primary);
}

.faq-teaser a {
    color: var(--theme-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.2s ease;
}

.faq-teaser a:hover {
    color: var(--theme-accent);
}

.faq-teaser a i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.faq-teaser a:hover i {
    transform: translateX(4px);
}

/* =========================================
   PHASE 7: RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 992px) {
    .director-hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .director-hero-text {
        text-align: center;
        order: 1;
    }

    .director-hero-image {
        order: 2;
    }

    .director-hero-subtitle {
        margin: 0 auto 2rem;
    }

    .director-hero-cta {
        align-items: center;
    }

    .hero-cta-note {
        justify-content: center;
    }

    .director-hero-secondary {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .director-hero {
        padding: 3rem 0 2.5rem;
    }

    .director-hero-image {
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .director-hero-image-container img {
        max-width: 100%;
        border-radius: 1rem;
    }

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

    .anyone-section {
        padding: 2.5rem 1.5rem;
    }

    .anyone-testimonial {
        padding: 1.75rem;
    }

    .cta-section-director {
        padding: 3rem 1.5rem;
    }

    .cta-section-director h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .director-hero-cta .btn-theme-base.btn-lg {
        padding: 1rem 1.75rem;
        font-size: 1.0625rem;
    }

    .problem-content h2 {
        font-size: 1.75rem;
    }

    .problem-list li {
        font-size: 1rem;
    }
}

/* =========================================
   REDUCED MOTION SUPPORT
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    .director-hero-badge,
    .benefit-card,
    .director-hero-image-container,
    .director-hero-secondary a i,
    .faq-teaser a i,
    .director-hero-cta .btn-theme-base {
        transition: none;
    }

    .director-hero-badge:hover,
    .benefit-card:hover,
    .director-hero-image-container:hover {
        transform: none;
    }

    .director-hero-image-container:hover::after {
        animation: none;
    }
}

/* =========================================
   DARK MODE ENHANCEMENTS
   ========================================= */

[data-bs-theme="dark"] .director-hero::before {
    background-image:
        radial-gradient(circle at 20% 80%, rgba(var(--director-primary-rgb), 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--director-primary-rgb), 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(var(--director-secondary-rgb), 0.06) 0%, transparent 35%);
}

[data-bs-theme="dark"] .director-hero-badge {
    background: rgba(var(--director-primary-rgb), 0.2);
    border-color: rgba(var(--director-primary-rgb), 0.4);
}

[data-bs-theme="dark"] .director-hero-image-container {
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.15);
}

[data-bs-theme="dark"] .director-hero-image-container:hover {
    box-shadow:
        0 20px 40px -15px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(var(--director-primary-rgb), 0.2);
}

[data-bs-theme="dark"] .director-hero-image-container::after {
    background: rgba(0, 0, 0, 0.85);
}

[data-bs-theme="dark"] .benefit-card:hover {
    box-shadow:
        0 12px 24px -8px rgba(0, 0, 0, 0.25),
        0 24px 48px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.15);
}

[data-bs-theme="dark"] .anyone-testimonial {
    background: var(--surface-1, #1a1a2e);
}

[data-bs-theme="dark"] .anyone-testimonial--featured .testimonial-name,
[data-bs-theme="dark"] .anyone-testimonial--featured .testimonial-name a {
    color: var(--theme-text-primary);
}

[data-bs-theme="dark"] .anyone-testimonial--featured .testimonial-name a:hover {
    color: var(--theme-accent);
}

/* =========================================
   LIVE LEAGUE SHOWCASE SECTION
   ========================================= */

.league-showcase {
    background: linear-gradient(180deg, var(--theme-bg-primary) 0%, var(--theme-bg-secondary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.league-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 30%, rgba(var(--director-primary-rgb), 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(var(--director-secondary-rgb), 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.league-showcase .container {
    position: relative;
    z-index: 1;
}

/* Showcase Header */
.showcase-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--theme-accent) 0%, rgba(var(--director-primary-rgb), 0.9) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(var(--director-primary-rgb), 0.25);
}

.showcase-badge i {
    font-size: 0.875rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.showcase-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--theme-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.showcase-subtitle {
    font-size: 1.125rem;
    color: var(--theme-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Showcase Content Layout */
.showcase-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Featured League Card */
.showcase-league {
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.07),
        0 10px 20px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-league:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 24px -8px rgba(0, 0, 0, 0.15),
        0 24px 48px -12px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(var(--director-primary-rgb), 0.1);
}

.showcase-league-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.showcase-league-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-league:hover .showcase-league-image img {
    transform: scale(1.05);
}

.showcase-league-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px #10b981;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px #10b981;
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 16px #10b981;
    }
}

.showcase-league-info {
    padding: 1.75rem;
}

.showcase-league-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.showcase-league-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.showcase-league-location i {
    color: var(--theme-accent);
    font-size: 0.875rem;
}

.showcase-league-description {
    color: var(--theme-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.showcase-link:hover {
    color: var(--theme-primary);
}

.showcase-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.showcase-link:hover i {
    transform: translateX(4px);
}

/* Bag Tag Showcase */
.showcase-bagtag {
    background: linear-gradient(135deg, var(--theme-bg-primary) 0%, var(--theme-bg-secondary) 100%);
    border: 1px solid var(--theme-border-color);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.showcase-bagtag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6B6B);
}

.showcase-bagtag-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.bagtag-crown {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
}

.bagtag-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-text-secondary);
}

.showcase-bagtag-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bagtag-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--theme-bg-secondary);
    aspect-ratio: 9 / 16;
}

.bagtag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bagtag-number {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0.375rem 0.75rem;
    border-radius: 0.625rem;
    line-height: 1;
}

.bagtag-info {
    text-align: center;
}

.bagtag-player {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin-bottom: 0.375rem;
}

.bagtag-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--theme-text-secondary);
}

.bagtag-duration i {
    font-size: 0.75rem;
    color: var(--theme-accent);
}

/* Bag Tag Link Styling */
.showcase-bagtag-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.showcase-bagtag-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bagtag-view-history {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--theme-primary);
    padding-top: 0.75rem;
    border-top: 1px solid var(--theme-border);
    transition: gap 0.2s ease;
}

.showcase-bagtag-link:hover .bagtag-view-history {
    gap: 0.75rem;
}

.bagtag-view-history i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.showcase-bagtag-link:hover .bagtag-view-history i {
    transform: translateX(3px);
}

/* Explainer Section */
.showcase-explainer {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--theme-bg-secondary);
    border: 1px solid var(--theme-border-color);
    border-radius: 1.25rem;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}

.showcase-explainer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--theme-accent), rgba(var(--director-secondary-rgb), 0.8));
}

.explainer-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--theme-accent) 0%, rgba(var(--director-primary-rgb), 0.8) 100%);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px -4px rgba(var(--director-primary-rgb), 0.25);
}

.explainer-content h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin-bottom: 0.75rem;
}

.explainer-content p {
    color: var(--theme-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.explainer-content p:last-child {
    margin-bottom: 0;
}

.explainer-kicker {
    color: var(--theme-accent);
    font-size: 1.0625rem;
    font-weight: 500;
}

.explainer-kicker em {
    font-style: normal;
}

/* Responsive for Showcase */
@media (max-width: 768px) {
    .league-showcase {
        padding: 3.5rem 0;
    }

    .showcase-header {
        margin-bottom: 2.5rem;
    }

    .showcase-content {
        margin-bottom: 2.5rem;
    }

    .showcase-explainer {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.75rem;
    }

    .explainer-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }
}

/* Dark mode for showcase */
[data-bs-theme="dark"] .league-showcase {
    background: linear-gradient(180deg, var(--theme-bg-secondary) 0%, var(--theme-bg-primary) 100%);
}

[data-bs-theme="dark"] .league-showcase::before {
    background-image:
        radial-gradient(circle at 10% 30%, rgba(var(--director-primary-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(var(--director-secondary-rgb), 0.08) 0%, transparent 40%);
}

[data-bs-theme="dark"] .showcase-league {
    background: var(--surface-1, #1a1a2e);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        0 10px 20px -5px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.1);
}

[data-bs-theme="dark"] .showcase-league:hover {
    box-shadow:
        0 12px 24px -8px rgba(0, 0, 0, 0.35),
        0 24px 48px -12px rgba(0, 0, 0, 0.25),
        0 0 80px rgba(var(--director-primary-rgb), 0.15);
}

[data-bs-theme="dark"] .showcase-bagtag {
    background: linear-gradient(135deg, var(--surface-1, #1a1a2e) 0%, var(--surface-2, #252538) 100%);
}

[data-bs-theme="dark"] .showcase-explainer {
    background: var(--surface-1, #1a1a2e);
}

[data-bs-theme="dark"] .bagtag-image-container {
    background: var(--surface-2, #252538);
}

[data-bs-theme="dark"] .live-indicator {
    background: rgba(0, 0, 0, 0.85);
}

/* Reduced motion for showcase */
@media (prefers-reduced-motion: reduce) {
    .showcase-badge i,
    .live-dot {
        animation: none;
    }

    .showcase-league,
    .showcase-league-image img {
        transition: none;
    }

    .showcase-league:hover {
        transform: none;
    }

    .showcase-league:hover .showcase-league-image img {
        transform: none;
    }
}

/* =========================================
   PILOT PROGRAM SIGNUP FORM
   ========================================= */

.pilot-signup-form-container {
    max-width: 540px;
    margin: 2rem auto 0;
    background: var(--surface-2, #f8f9fa);
    border-radius: 16px;
    padding: 2rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(var(--director-primary-rgb), 0.1);
}

.pilot-signup-form .form-floating {
    margin-bottom: 0;
}

.pilot-signup-form .form-control,
.pilot-signup-form .form-select {
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border, #dee2e6);
    color: var(--theme-text-primary);
    border-radius: 8px;
    /* Don't override padding - let Bootstrap's form-floating handle it dynamically */
    height: auto;
    min-height: 3.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pilot-signup-form .form-control:focus,
.pilot-signup-form .form-select:focus {
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 3px rgba(var(--director-primary-rgb), 0.15);
    background: var(--theme-bg-primary);
}

.pilot-signup-form .form-floating > label {
    color: var(--theme-text-secondary);
}

.pilot-signup-form .form-floating > .form-control:focus ~ label,
.pilot-signup-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.pilot-signup-form .form-floating > .form-select ~ label {
    color: var(--theme-accent);
}

.pilot-signup-form .text-danger {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

.pilot-signup-form button[type="submit"] {
    margin-top: 0.5rem;
}

/* Dark mode for pilot signup form */
[data-bs-theme="dark"] .pilot-signup-form-container {
    background: var(--surface-1, #1a1a2e);
    border-color: rgba(var(--director-primary-rgb), 0.2);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .pilot-signup-form .form-control,
[data-bs-theme="dark"] .pilot-signup-form .form-select {
    background: var(--surface-2, #252538);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .pilot-signup-form .form-control:focus,
[data-bs-theme="dark"] .pilot-signup-form .form-select:focus {
    background: var(--surface-2, #252538);
    border-color: var(--theme-accent);
}

/* Responsive for pilot signup form */
@media (max-width: 576px) {
    .pilot-signup-form-container {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .pilot-signup-form .row.g-3 {
        --bs-gutter-x: 0.75rem;
    }
}

/* =========================================
   FEATURED SERIES SHOWCASE
   For prospective directors: Series → League
   ========================================= */

.series-showcase {
    padding: 3rem 0;
    margin: 2rem 0;
}

.series-showcase-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.series-showcase-header h2 {
    font-size: 1.75rem;
    margin: 1rem 0 0.75rem;
}

.series-showcase-subtitle {
    color: var(--theme-text-muted);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Series → League layout */
.series-then-league {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.series-arrow {
    color: var(--theme-primary);
    font-size: 1.5rem;
    opacity: 0.6;
}

/* Series Card */
.series-card {
    background: var(--surface-2);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.series-card-label {
    background: var(--theme-primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    display: inline-block;
}

.series-card-image {
    aspect-ratio: 16/9;
}

.series-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-card-content {
    padding: 1rem 1.25rem;
}

.series-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.series-card-content p {
    color: var(--theme-text-muted);
    font-size: 0.8125rem;
}

/* League Card */
.league-card {
    background: var(--surface-2);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.league-card-label {
    background: var(--surface-3);
    color: var(--theme-text-muted);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    display: inline-block;
}

.league-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.league-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.league-card-meta {
    color: var(--theme-text-muted);
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.league-card-meta .league-day {
    color: var(--theme-primary);
    font-weight: 600;
}

.league-card-content .showcase-link {
    margin-top: auto;
}

@media (max-width: 768px) {
    .series-then-league {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .series-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }
}

/* =========================================
   SERIES-FIRST REDESIGN
   Hero Stacked Cards + Immersive Showcase
   ========================================= */

/* =========================================
   HERO: STACKED CARD VISUALIZATION
   ========================================= */

.card-stack-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 340px;
    perspective: 1200px;
    margin: 0 auto;
}

/* Series card (back) - the large umbrella */
.card-stack-series {
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    transform: rotateY(-8deg) translateZ(-30px);
    transform-style: preserve-3d;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-stack-visual:hover .card-stack-series {
    transform: rotateY(-4deg) translateZ(-20px);
}

.card-stack-series img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9);
}

.card-stack-series::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--director-primary-rgb), 0.15) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.card-stack-series-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    z-index: 2;
}

/* League cards (front) - fanning out */
.card-stack-leagues {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    transform-style: preserve-3d;
}

.card-stack-league {
    width: 100px;
    height: 130px;
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.2),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: rotateY(5deg) translateZ(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFanIn 0.6s ease-out backwards;
}

.card-stack-league:nth-child(1) {
    animation-delay: 0.2s;
    --fan-offset: -5deg;
}

.card-stack-league:nth-child(2) {
    animation-delay: 0.35s;
    --fan-offset: 0deg;
}

.card-stack-league:nth-child(3) {
    animation-delay: 0.5s;
    --fan-offset: 5deg;
}

@keyframes cardFanIn {
    from {
        opacity: 0;
        transform: rotateY(20deg) translateZ(50px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: rotateY(var(--fan-offset, 5deg)) translateZ(20px) translateY(0);
    }
}

.card-stack-visual:hover .card-stack-league {
    transform: rotateY(var(--fan-offset, 3deg)) translateZ(30px) translateY(-5px);
    box-shadow:
        0 15px 35px -5px rgba(0, 0, 0, 0.25),
        0 10px 15px -6px rgba(0, 0, 0, 0.15);
}

.card-stack-league-emblem {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-bg-secondary);
    padding: 0.5rem;
}

.card-stack-league-emblem img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--theme-border-color);
}

.card-stack-league-info {
    padding: 0.5rem;
    text-align: center;
}

.card-stack-league-day {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}

/* Day badge colors */
.card-stack-league-day--mon { background: rgba(var(--director-primary-rgb), 0.15); color: var(--theme-accent); }
.card-stack-league-day--tue { background: rgba(var(--director-secondary-rgb), 0.15); color: #0068BA; }
.card-stack-league-day--wed { background: rgba(var(--director-coral-rgb), 0.15); color: #FF6B6B; }
.card-stack-league-day--thu { background: rgba(var(--director-primary-rgb), 0.15); color: var(--theme-accent); }
.card-stack-league-day--fri { background: rgba(var(--director-secondary-rgb), 0.15); color: #0068BA; }
.card-stack-league-day--sat { background: rgba(var(--director-coral-rgb), 0.15); color: #FF6B6B; }
.card-stack-league-day--sun { background: rgba(var(--director-primary-rgb), 0.15); color: var(--theme-accent); }

.card-stack-league-name {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--theme-text-primary);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive adjustments for card stack */
@media (max-width: 992px) {
    .card-stack-visual {
        max-width: 400px;
        height: 280px;
    }

    .card-stack-league {
        width: 85px;
        height: 110px;
    }

    .card-stack-league-emblem {
        height: 55px;
    }

    .card-stack-league-emblem img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .card-stack-visual {
        max-width: 320px;
        height: 240px;
    }

    .card-stack-league {
        width: 75px;
        height: 100px;
    }

    .card-stack-league-emblem {
        height: 50px;
    }

    .card-stack-league-emblem img {
        width: 35px;
        height: 35px;
    }

    .card-stack-league-info {
        padding: 0.375rem;
    }
}

/* =========================================
   IMMERSIVE SERIES SHOWCASE
   ========================================= */

.series-showcase-immersive {
    background: linear-gradient(180deg, var(--theme-bg-secondary) 0%, var(--theme-bg-primary) 50%, var(--theme-bg-secondary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.series-showcase-immersive::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(var(--director-primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(var(--director-secondary-rgb), 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.series-showcase-immersive .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.series-immersive-header {
    text-align: center;
    margin-bottom: 3rem;
}

.series-immersive-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--theme-text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.series-immersive-subtitle {
    font-size: 1.125rem;
    color: var(--theme-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Series Hero Card */
.series-hero-card {
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.07),
        0 10px 30px -5px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.05);
    margin-bottom: 2.5rem;
    animation: seriesReveal 0.6s ease-out;
}

@keyframes seriesReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.series-hero-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

@media (max-width: 768px) {
    .series-hero-card-inner {
        grid-template-columns: 1fr;
    }
}

.series-hero-image {
    position: relative;
    overflow: hidden;
}

.series-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.series-hero-card:hover .series-hero-image img {
    transform: scale(1.03);
}

.series-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, var(--theme-bg-primary) 100%);
}

@media (max-width: 768px) {
    .series-hero-image {
        aspect-ratio: 16 / 9;
    }

    .series-hero-image::after {
        background: linear-gradient(180deg, transparent 60%, var(--theme-bg-primary) 100%);
    }
}

.series-hero-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.series-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--theme-accent) 0%, rgba(var(--director-primary-rgb), 0.9) 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 2rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(var(--director-primary-rgb), 0.25);
}

.series-hero-badge i {
    animation: pulse 2s ease-in-out infinite;
}

.series-hero-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--theme-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.series-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--theme-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.series-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.series-hero-meta-item i {
    color: var(--theme-accent);
    font-size: 0.875rem;
}

.series-hero-description {
    color: var(--theme-text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* League Cards Grid - Dynamic Display */
.league-cards-section {
    margin-top: 2rem;
}

.league-cards-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.league-cards-section-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin: 0;
}

.league-cards-section-header .league-count {
    background: var(--theme-bg-secondary);
    color: var(--theme-text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
}

.league-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Compact League Card */
.league-card-compact {
    flex: 0 0 calc(25% - 0.75rem);
    min-width: 180px;
    max-width: 220px;
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-color);
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: leagueCardReveal 0.5s ease-out backwards;
}

/* Staggered animation delays via CSS custom property */
.league-card-compact:nth-child(1) { animation-delay: 0.15s; }
.league-card-compact:nth-child(2) { animation-delay: 0.25s; }
.league-card-compact:nth-child(3) { animation-delay: 0.35s; }
.league-card-compact:nth-child(4) { animation-delay: 0.45s; }
.league-card-compact:nth-child(5) { animation-delay: 0.55s; }
.league-card-compact:nth-child(6) { animation-delay: 0.65s; }

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

.league-card-compact:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 24px -8px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.15);
}

/* Day Badge (top of card) */
.league-card-day-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
}

/* Rotating day colors */
.league-card-day-badge--mon { background: linear-gradient(135deg, var(--theme-accent) 0%, #00857A 100%); }
.league-card-day-badge--tue { background: linear-gradient(135deg, #0068BA 0%, #005298 100%); }
.league-card-day-badge--wed { background: linear-gradient(135deg, #FF6B6B 0%, #e84545 100%); }
.league-card-day-badge--thu { background: linear-gradient(135deg, var(--theme-accent) 0%, #00857A 100%); }
.league-card-day-badge--fri { background: linear-gradient(135deg, #0068BA 0%, #005298 100%); }
.league-card-day-badge--sat { background: linear-gradient(135deg, #FF6B6B 0%, #e84545 100%); }
.league-card-day-badge--sun { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); }

/* Course Emblem */
.league-card-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--theme-bg-secondary);
}

.league-card-emblem img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--theme-bg-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.league-card-emblem-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-accent) 0%, rgba(var(--director-primary-rgb), 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Card Content */
.league-card-compact-content {
    padding: 1rem;
    text-align: center;
}

.league-card-compact-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.league-card-compact-course {
    font-size: 0.8125rem;
    color: var(--theme-text-secondary);
    margin-bottom: 0.75rem;
}

/* Registration Status Pill */
.league-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
}

.league-card-status--open {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.league-card-status--open::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

.league-card-status--full {
    background: var(--theme-bg-secondary);
    color: var(--theme-text-muted);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .league-card-compact {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
}

@media (max-width: 768px) {
    .league-card-compact {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .series-hero-content {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .league-card-compact {
        flex: 1 1 100%;
        max-width: none;
    }
}

/* Explore Series CTA */
.series-showcase-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Dark Mode Enhancements for Series Showcase */
[data-bs-theme="dark"] .series-showcase-immersive {
    background: linear-gradient(180deg, var(--theme-bg-primary) 0%, var(--surface-1, #1a1a2e) 50%, var(--theme-bg-primary) 100%);
}

[data-bs-theme="dark"] .series-showcase-immersive::before {
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(var(--director-primary-rgb), 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(var(--director-secondary-rgb), 0.1) 0%, transparent 50%);
}

[data-bs-theme="dark"] .series-hero-card {
    background: var(--surface-1, #1a1a2e);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        0 10px 30px -5px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.1);
}

[data-bs-theme="dark"] .league-card-compact {
    background: var(--surface-1, #1a1a2e);
}

[data-bs-theme="dark"] .league-card-compact:hover {
    box-shadow:
        0 12px 24px -8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.2);
}

[data-bs-theme="dark"] .card-stack-series::after {
    background: linear-gradient(
        135deg,
        rgba(var(--director-primary-rgb), 0.2) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

[data-bs-theme="dark"] .card-stack-league {
    background: var(--surface-1, #1a1a2e);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .card-stack-league,
    .series-hero-card,
    .league-card-compact,
    .series-hero-badge i {
        animation: none;
    }

    .card-stack-visual:hover .card-stack-series,
    .card-stack-visual:hover .card-stack-league,
    .series-hero-card:hover .series-hero-image img,
    .league-card-compact:hover {
        transform: none;
    }
}

/* ============================================
   PILOT PROGRAM STYLES
   ============================================ */

/* Pilot Hero Badge */
.director-hero-badge--pilot {
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.15) 0%,
        rgba(255, 152, 0, 0.1) 100%
    );
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.director-hero-badge--pilot i {
    color: #ffc107;
}

[data-bs-theme="dark"] .director-hero-badge--pilot {
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.2) 0%,
        rgba(255, 152, 0, 0.15) 100%
    );
}

/* Pilot Value Props Strip */
.value-props-strip--pilot .value-prop {
    flex-direction: row;
    gap: 1rem;
    text-align: left;
    padding: 1rem 1.5rem;
}

.value-props-strip--pilot .value-prop i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-prop-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.value-prop-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--theme-text-primary);
}

.value-prop-desc {
    font-size: 0.8rem;
    color: var(--theme-text-secondary);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .value-props-strip--pilot .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-props-strip--pilot .value-prop {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
}

/* Pilot Showcase Badge */
.showcase-badge--pilot {
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.15) 0%,
        rgba(255, 152, 0, 0.1) 100%
    );
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.showcase-badge--pilot i {
    color: #ffc107;
}

/* Series Showcase CTA Note */
.series-showcase-cta-note {
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Pilot Signup Section (Elevated Position) */
.pilot-signup-section {
    padding: 4rem 0;
    background: linear-gradient(
        180deg,
        var(--surface-1, #f8f9fa) 0%,
        var(--theme-bg-primary, #ffffff) 100%
    );
    border-top: 1px solid rgba(var(--director-primary-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--director-primary-rgb), 0.1);
}

[data-bs-theme="dark"] .pilot-signup-section {
    background: linear-gradient(
        180deg,
        rgba(var(--director-primary-rgb), 0.05) 0%,
        var(--theme-bg-primary, #0d0d0d) 100%
    );
}

.pilot-signup-elevated {
    max-width: 600px;
    margin: 0 auto;
    background: var(--theme-bg-primary, #ffffff);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.1);
}

[data-bs-theme="dark"] .pilot-signup-elevated {
    background: var(--surface-1, #1a1a2e);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        0 10px 30px -5px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(var(--director-primary-rgb), 0.15);
}

.pilot-signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pilot-signup-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(
        135deg,
        var(--theme-accent, #00a99d) 0%,
        var(--director-secondary, #3b82f6) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pilot-signup-header p {
    color: var(--theme-text-secondary);
    font-size: 1rem;
}

.pilot-signup-note {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--director-primary-rgb), 0.1);
    font-size: 0.85rem;
    color: var(--theme-text-secondary);
}

.pilot-signup-note i {
    margin-right: 0.5rem;
    color: var(--theme-accent, #00a99d);
}

/* Pilot CTA Section (Bottom) */
.cta-section-director--pilot {
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.05) 0%,
        rgba(var(--director-primary-rgb), 0.08) 100%
    );
    border: 1px solid rgba(255, 193, 7, 0.15);
}

.cta-section-director--pilot h2 {
    background: linear-gradient(
        135deg,
        #ffc107 0%,
        var(--theme-accent, #00a99d) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 576px) {
    .pilot-signup-elevated {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .pilot-signup-header h2 {
        font-size: 1.5rem;
    }
}
