/* ==========================================
   PLAYMAKER HQ
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0B0F1A;
    color: #E6F6EE;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
}

/* ==========================================
   HEADER
========================================== */

.pm-header {
    background: #131A2A;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 1rem 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 100;
}

.pm-header h1 {
    color: #66FF99;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(102,255,153,.4);
}

.pm-nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.pm-link {
    text-decoration: none;
    color: #E6F6EE;
    transition: .2s ease;
}

.pm-link:hover {
    color: #66FF99;
}

.pm-link-cta {
    background: rgba(102,255,153,.12);
    border: 1px solid rgba(102,255,153,.3);
    padding: .55rem 1rem;
    border-radius: 999px;
}

/* ==========================================
   HERO
========================================== */

.hq-hero {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(11,15,26,.85),
            rgba(11,15,26,.92)
        ),
        url('../images/playMakerBackground.png');

    background-size: cover;
    background-position: center bottom;

    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 4rem 1rem;
}

.hero-glow {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(102,255,153,.18),
            transparent 65%
        );

    pointer-events: none;
}

.hq-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hq-pill {
    display: inline-block;

    background: rgba(102,255,153,.12);
    border: 1px solid rgba(102,255,153,.4);

    color: #66FF99;

    padding: .4rem .9rem;
    border-radius: 999px;

    margin-bottom: 1.25rem;

    font-size: .85rem;
    font-weight: 700;
}

.hq-hero h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hq-hero h2 span {
    display: block;
    color: #66FF99;
    text-shadow: 0 0 18px rgba(102,255,153,.6);
}

.hq-hero p {
    max-width: 700px;
    margin: 0 auto 2rem;

    color: #A3AABF;
    font-size: 1.1rem;
}

.hq-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;

    margin-bottom: 2rem;
}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary {
    text-decoration: none;

    background: #66FF99;
    color: #0B0F1A;

    padding: 1rem 2rem;
    border-radius: 999px;

    font-weight: 800;

    box-shadow:
        0 0 16px rgba(102,255,153,.45);

    transition: .25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 28px rgba(102,255,153,.7);
}

.btn-secondary {
    text-decoration: none;

    color: #E6F6EE;

    border: 1px solid rgba(255,255,255,.15);

    padding: 1rem 2rem;
    border-radius: 999px;

    transition: .25s ease;
}

.btn-secondary:hover {
    border-color: #66FF99;
    color: #66FF99;
}

/* ==========================================
   HERO STATS
========================================== */

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.stat-chip {
    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 999px;

    padding: .55rem .9rem;

    font-size: .9rem;
}

.stat-chip span {
    color: #66FF99;
    font-weight: 700;
}

/* ==========================================
   ASSURANCE
========================================== */

.assurance {
    background:
        linear-gradient(
            90deg,
            rgba(102,255,153,.12),
            rgba(102,255,153,.04)
        );

    border-top: 1px solid rgba(102,255,153,.25);
    border-bottom: 1px solid rgba(102,255,153,.15);
}

.assurance-inner {
    max-width: 1200px;

    margin: auto;
    padding: .9rem 1rem;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;

    flex-wrap: wrap;
}

.assurance-badge {
    color: #66FF99;
    border: 1px solid #66FF99;

    border-radius: 999px;

    padding: .3rem .8rem;

    font-weight: 700;
}

.assurance-text {
    color: #E6F6EE;
}

/* ==========================================
   SECTIONS
========================================== */

.hq-section {
    padding: 5rem 1rem;
}

.hq-section-alt {
    background: #131A2A;
}

.section-header {
    max-width: 900px;
    margin: auto auto 3rem;
    text-align: center;
}

.section-header h3 {
    color: #66FF99;
    font-size: 2rem;
    margin-bottom: .75rem;
}

.section-header p {
    color: #A3AABF;
}

/* ==========================================
   GRID CARDS
========================================== */

.hq-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 1.25rem;
}

.hq-card {
    background: #131A2A;

    border-radius: 16px;

    padding: 2rem;

    border: 1px solid rgba(255,255,255,.06);

    box-shadow:
        0 0 20px rgba(102,255,153,.08);

    transition: .25s ease;
}

.hq-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 0 28px rgba(102,255,153,.18);
}

.hq-card h4 {
    color: #66FF99;
    margin-bottom: .8rem;
}

.hq-card p {
    color: #A3AABF;
    margin-bottom: 1rem;
}

.hq-card a {
    color: #66FF99;
    text-decoration: none;
}

/* ==========================================
   CHALLENGE CARD
========================================== */

.challenge-card {
    max-width: 1000px;
    margin: auto;

    background: #131A2A;

    border: 1px solid rgba(102,255,153,.15);

    border-radius: 18px;

    padding: 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.challenge-card h4 {
    color: #66FF99;
    font-size: 1.5rem;
    margin: .75rem 0;
}

.challenge-card p {
    color: #A3AABF;
}

/* ==========================================
   REVIEWS
========================================== */

.review-preview-grid {
    max-width: 1000px;

    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));

    gap: 1rem;
}

.review-card {
    background: #131A2A;

    border-radius: 16px;

    padding: 1.5rem;

    border: 1px solid rgba(255,255,255,.06);
}

.review-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.review-top span {
    color: #66FF99;
}

.review-card p {
    color: #A3AABF;
}

.center-link {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================
   FINAL CTA
========================================== */

.final-cta {
    max-width: 1000px;

    margin: auto;

    text-align: center;

    background: linear-gradient(
        145deg,
        #131A2A,
        #0B0F1A
    );

    border-radius: 20px;

    padding: 4rem 2rem;

    border: 1px solid rgba(102,255,153,.15);
}

.final-cta h3 {
    color: #66FF99;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #A3AABF;
    margin-bottom: 2rem;
}

/* ==========================================
   FOOTER
========================================== */

footer {
    text-align: center;

    padding: 2rem 1rem;

    border-top: 1px solid rgba(255,255,255,.05);

    color: #A3AABF;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .pm-header {
        flex-direction: column;
        gap: 1rem;
    }

    .pm-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .challenge-card {
        flex-direction: column;
        text-align: center;
    }

    .hq-hero {
        min-height: auto;
        padding: 5rem 1rem;
    }

    .hq-hero h2 {
        font-size: 2.4rem;
    }
}