/* Academy Styles - Aligned with Brands */

/* CSS Variables for mouse tracking */
:root {
    --mx: 0.5;
    --my: 0.4;
}

/* Animated gradient background for Academy hero */
.academy-hero {
    position: relative;
    background-color: #000000;
    overflow: hidden;
}

.academy-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0.9) 65%, #000 100%);
    z-index: 1;
}

/* Background layer with animated gradients */
.academy-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        /* Bottom fade to black for smooth transition */
        linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8) 85%, #000000 100%),
        /* Static glows from top - softer */
        radial-gradient(circle at 15% 0%, rgba(255, 115, 0, 0.25), transparent 40%),
        /* orange top-left */
        radial-gradient(circle at 85% 0%, rgba(255, 115, 0, 0.20), transparent 40%),
        /* orange top-right */
        radial-gradient(circle at 50% 0%, rgba(18, 28, 45, 0.6), transparent 50%),
        /* navy center-top */
        /* Mouse-tracked glow - very small and bright */
        radial-gradient(circle at calc(var(--mx) * 100%) calc(var(--my) * 100%),
            rgba(255, 115, 0, 0.8),
            transparent 5%);
    background-color: #000000;
}

.academy-hero-bg canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

/* Hero content layer - CLASS NAME FIXED TO MATCH HTML */
.hero-academy-content {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 2rem 80px;
}

.hero-academy-content h1 {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1000px;
}

.hero-academy-content p {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #A1A3A5;
    margin-bottom: 32px;
    max-width: 700px;
}

body.wheelers-academy {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    background: #000000;
    color: #FFFFFF;
}

/* Typography */
.wheelers-academy .wm-title,
.wheelers-academy .section-title {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.wheelers-academy .wm-subtitle,
.wheelers-academy .section-subtitle {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #A1A3A5;
}

/* Navigation */
.wheelers-academy .nav-link {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.wheelers-academy .nav-link:hover {
    color: #FF7300;
}

/* Buttons - Aligned with Brands */
.wheelers-academy .wm-btn,
.wheelers-academy .cta-button {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    background: #FF7300;
    border-radius: 9999px;
    padding: 12px 24px;
    display: inline-block;
    transition: all 0.3s ease, transform 0.2s, color 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
    letter-spacing: normal;
    box-shadow: none;
    border: 1px solid transparent;
}

.wheelers-academy .wm-btn:hover,
.wheelers-academy .cta-button:hover {
    background: transparent;
    color: #FF7300;
    border-color: #FF7300;
    transform: translateY(-1px);
}

/* Footer Links */
.wheelers-academy .footer-link {
    color: #A1A3A5;
    transition: all 0.3s ease;
}

.wheelers-academy .footer-link:hover {
    color: #FF7300;
}

/* Animations */
.wheelers-academy .reveal-element {
    opacity: 0;
    transform: translateY(30px);
}

/* Sections */
.wheelers-academy .wm-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .wheelers-academy .wm-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

@media (min-width: 1024px) {
    .wheelers-academy .wm-section {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
}

/* Generic Link Hover Override */
.wheelers-academy a:hover,
.wheelers-academy a:focus {
    color: #FF7300;
    transition: color 0.3s;
}

/* Category Filters */
.wheelers-academy .category-filter {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.wheelers-academy .category-filter:hover {
    background: rgba(255, 115, 0, 0.2);
    color: #FF7300;
    border-color: #FF7300;
}

.wheelers-academy .category-filter.active {
    background: #FF7300;
    color: #fff;
}

/* Waitlist Form Styles */
.wheelers-academy .waitlist-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #181A1B;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wheelers-academy .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.wheelers-academy .form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #A1A3A5;
    font-size: 0.9rem;
}

.wheelers-academy .form-input,
.wheelers-academy .form-textarea {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.wheelers-academy .form-input:focus,
.wheelers-academy .form-textarea:focus {
    outline: none;
    border-color: #FF7300;
}

.wheelers-academy .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.wheelers-academy .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    color: #fff;
}

.wheelers-academy .checkbox-input {
    accent-color: #FF7300;
    width: 18px;
    height: 18px;
}

/* Interest Selector Cards */
.wheelers-academy .interest-card {
    background: #181A1B;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.wheelers-academy .interest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 115, 0, 0.15);
    border-color: rgba(255, 115, 0, 0.3);
}

.wheelers-academy .interest-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #FF7300;
}

.wheelers-academy .interest-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.wheelers-academy .interest-desc {
    color: #A1A3A5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Community Page Layout */
.wheelers-academy .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.wheelers-academy .hero-link {
    color: #A1A3A5;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wheelers-academy .hero-link:hover,
.wheelers-academy .hero-link:focus {
    color: #FF7300;
}

.wheelers-academy .section-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #FF7300;
    margin-bottom: 1rem;
}

.wheelers-academy .community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.wheelers-academy .community-tile {
    background: #111214;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    min-height: 280px;
}

.wheelers-academy .tile-icon {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.wheelers-academy .community-tile h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.wheelers-academy .community-tile p {
    color: #A1A3A5;
}

.wheelers-academy .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.wheelers-academy .roadmap-card {
    background: linear-gradient(180deg, rgba(255, 115, 0, 0.1), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    min-height: 260px;
}

.wheelers-academy .phase-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FF7300;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.wheelers-academy .roadmap-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.wheelers-academy .roadmap-card p {
    color: #A1A3A5;
}

.wheelers-academy .community-cta .wm-btn {
    padding-left: 48px;
    padding-right: 48px;
}

/* ================================================================
   ACADEMY FOOTER — mirrors brands-sweep.css .wm-footer pattern
   ================================================================ */
body.wheelers-academy .wm-footer {
    background-color: #000000;
    color: #A1A3A5;
    font-family: 'neue-haas-grotesk-display', sans-serif;
}

body.wheelers-academy .wm-footer .footer-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 3rem !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 5rem 2rem 3rem !important;
}

body.wheelers-academy .wm-footer .footer-about img {
    height: 32px !important;
    width: auto !important;
    max-width: 200px !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

body.wheelers-academy .wm-footer .footer-about p {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    color: #A1A3A5 !important;
    max-width: 280px !important;
}

body.wheelers-academy .wm-footer .footer-column h4,
body.wheelers-academy .wm-footer .footer-heading {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin-bottom: 1.25rem !important;
    font-family: 'neue-haas-grotesk-display', sans-serif !important;
}

body.wheelers-academy .wm-footer .footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
}

body.wheelers-academy .wm-footer .footer-column ul li a {
    color: #A1A3A5 !important;
    font-size: 0.92rem !important;
    text-decoration: none !important;
    transition: color .2s !important;
}

body.wheelers-academy .wm-footer .footer-column ul li a:hover {
    color: #FF7300 !important;
}

body.wheelers-academy .wm-footer .footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
    gap: 1rem !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 1.5rem 2rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}



body.wheelers-academy .wm-footer .footer-bottom p,
body.wheelers-academy .wm-footer .footer-bottom-left p {
    font-size: 0.82rem !important;
    color: #A1A3A5 !important;
    margin: 0 !important;
}



body.wheelers-academy .wm-footer .footer-bottom-center {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.82rem !important;
    color: #A1A3A5 !important;
    white-space: nowrap !important;
}

body.wheelers-academy .wm-footer .footer-bottom-center a {
    color: #A1A3A5 !important;
    text-decoration: none !important;
    transition: color .2s !important;
}

body.wheelers-academy .wm-footer .footer-bottom-center a:hover {
    color: #FF7300 !important;
}

body.wheelers-academy .wm-footer .footer-social {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-right: 20px !important;
    flex-shrink: 0 !important;
}

body.wheelers-academy .wm-footer .footer-social a img {
    height: 22px !important;
    width: 22px !important;
    opacity: 0.65 !important;
    transition: opacity .2s ease !important;
    display: block !important;
}

body.wheelers-academy .wm-footer .footer-social a:hover img {
    opacity: 1 !important;
}

@media (max-width: 1024px) {
    body.wheelers-academy .wm-footer .footer-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
        padding: 4rem 2rem 2rem !important;
    }

    body.wheelers-academy .wm-footer .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 1.5rem 1.25rem !important;
        text-align: center !important;
    }

    body.wheelers-academy .wm-footer .footer-bottom-center {
        position: static !important;
        transform: none !important;
        left: auto !important;
        justify-content: center !important;
    }

    body.wheelers-academy .wm-footer .footer-social {
        margin-right: 0 !important;
        justify-content: center !important;
    }
}

@media (max-width: 640px) {
    body.wheelers-academy .wm-footer .footer-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 3rem 1.25rem 1.5rem !important;
    }
}

/* ================================================================
   COMMUNITY PAGE — community.html
   ================================================================ */

/* Hero CTA row */
.hero-cta-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Community features grid — 4 tiles on desktop, 2 on tablet, 1 on mobile */
.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

/* Individual community tile — border-top card, no gradient */
.community-tile {
    border-top: 2px solid #FF7300;
    padding: 2rem 1.5rem 2rem 0;
    background: transparent;
}

/* SVG icon wrapper */
.tile-icon-wrap {
    width: 36px;
    height: 36px;
    color: #FF7300;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.tile-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.community-tile h3 {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.community-tile p {
    font-size: 0.9rem;
    color: #A1A3A5;
    line-height: 1.6;
}

/* Roadmap grid — 3 cards */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Roadmap card — border-top, academy orange phase label */
.roadmap-card {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding: 2rem 2rem 2rem 0;
    background: transparent;
}

.phase-label {
    display: block;
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FF7300;
    margin-bottom: 1rem;
}

.roadmap-card h3 {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.roadmap-card p {
    font-size: 0.9rem;
    color: #A1A3A5;
    line-height: 1.6;
}

/* Community final CTA */
.community-cta .wm-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }

    .community-tile {
        padding: 1.5rem 0 1.5rem 0;
    }

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

    .roadmap-card {
        padding: 1.5rem 0 1.5rem 0;
    }
}

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

    .community-tile {
        padding: 1.25rem 0;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}