/* static/css/landing/pitch_training.css */
/* ===============================================================
   PITCH TRAINING — Landing Page Styles
   ============================================================== */

/* ── Hero stat strip ──────────────────────────────────────────── */
.pt-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: auto;
    margin-top: 40px;
    max-width: 760px;
}

.pt-hero-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    color: #fff;
}

.pt-hero-stat__num {
    display: block;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    line-height: 1;
    margin-bottom: 6px;
}

.pt-hero-stat__lbl {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.75);
}

.lp-section{
    padding: 20px;
}

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

    .pt-hero-stat__num {
        font-size: 1.3rem;
    }
}

/* ── Flow (Test → Train → Master) ─────────────────────────────── */
.pt-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
    margin-top: 20px;
}

.pt-flow__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 22px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pt-flow__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(19, 75, 161, 0.08);
}

.pt-flow__card--step1 {
    border-top: 4px solid #134BA1;
}

.pt-flow__card--step2 {
    border-top: 4px solid #7c3aed;
}

.pt-flow__card--step3 {
    border-top: 4px solid #16a34a;
}

.pt-flow__num {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #9ca3af;
    margin-bottom: 8px;
}

.pt-flow__icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pt-flow__card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #111827;
}

.pt-flow__card p {
    font-size: 0.87rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0 0 14px;
}

.pt-flow__link {
    font-weight: 700;
    font-size: 0.87rem;
    color: #134BA1;
    text-decoration: none;
}

.pt-flow__arrow {
    align-self: center;
    font-size: 1.8rem;
    color: #9ca3af;
    font-weight: 300;
}

@media (max-width: 860px) {
    .pt-flow {
        grid-template-columns: 1fr;
    }

    .pt-flow__arrow {
        transform: rotate(90deg);
        justify-self: center;
    }
}

/* ── Six Disciplines grid ─────────────────────────────────────── */
.pt-tracks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

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

@media (max-width: 620px) {
    .pt-tracks {
        grid-template-columns: 1fr;
    }
}

.pt-track {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pt-track::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pt-track-accent-soft, #eef3ff) 0%, transparent 55%);
    pointer-events: none;
    opacity: 0.8;
}

.pt-track:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(19, 75, 161, 0.1);
    border-color: var(--pt-track-accent, #134BA1);
}

.pt-track>* {
    position: relative;
    z-index: 1;
}

.pt-track__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.pt-track__icon {
    font-size: 2rem;
    line-height: 1;
}

.pt-track__code {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--pt-track-accent, #134BA1);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
}

.pt-track__title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #111827;
    margin: 0 0 4px;
}

.pt-track__tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pt-track-accent, #134BA1);
    margin: 0 0 12px;
}

.pt-track__body {
    font-size: 0.86rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1;
}

.pt-track__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pt-track__meta-item {
    font-size: 0.72rem;
    font-weight: 600;
    color: #4b5563;
    background: rgba(17, 24, 39, 0.04);
    padding: 4px 10px;
    border-radius: 6px;
}

.pt-track__cta {
    font-weight: 700;
    font-size: 0.87rem;
    color: var(--pt-track-accent, #134BA1);
    text-decoration: none;
    margin-top: auto;
}

.pt-track__cta:hover {
    text-decoration: underline;
}

/* Track-specific accents */
.pt-track--ap {
    --pt-track-accent: #134BA1;
    --pt-track-accent-soft: #eef3ff;
}

.pt-track--rp {
    --pt-track-accent: #7c3aed;
    --pt-track-accent-soft: #f3edff;
}

.pt-track--pm {
    --pt-track-accent: #db2777;
    --pt-track-accent-soft: #ffeef5;
}

.pt-track--chord {
    --pt-track-accent: #b45309;
    --pt-track-accent-soft: #fffbeb;
}

.pt-track--prog {
    --pt-track-accent: #0891b2;
    --pt-track-accent-soft: #ecfeff;
}

.pt-track--nr {
    --pt-track-accent: #16a34a;
    --pt-track-accent-soft: #f0fdf4;
}

/* ── App preview carousel ─────────────────────────────────────── */
.pt-app-preview-section {
    background: #0f172a;
}

.pt-app-preview-section h2,
.pt-app-preview-section .lp-section__sub,
.pt-app-preview-section .lp-eyebrow {
    color: #fff;
}

.pt-app-preview-section .lp-section__sub {
    color: rgba(255, 255, 255, 0.7);
}

.pt-app-preview-section .lp-eyebrow {
    color: rgba(255, 255, 255, 0.55);
}

.pt-slides {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.pt-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pt-slide.active {
    display: grid;
}

.pt-slide__img-wrap {
    border-radius: 30px;
    overflow: hidden;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
}

.pt-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pt-slide__title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 0 12px;
}

.pt-slide__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.pt-slide-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.pt-slide-arrow {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background .2s ease;
}

.pt-slide-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
}

.pt-slide-dots {
    display: flex;
    gap: 8px;
}

.pt-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.pt-slide-dot.active {
    background: #fff;
    transform: scale(1.4);
}

@media (max-width: 720px) {
    .pt-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .pt-slide__title {
        font-size: 1.3rem;
        text-align: center;
    }
}

/* ── Learning library grid ────────────────────────────────────── */
.pt-learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .pt-learn-grid {
        grid-template-columns: 1fr;
    }

    .pt-slide__desc{
        padding: 0 20px;
    }
}

.pt-learn-cat {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pt-learn-cat:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(19, 75, 161, 0.08);
}

.pt-learn-cat__icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pt-learn-cat h3 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: #111827;
}

.pt-learn-cat p {
    font-size: 0.87rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 14px;
}

.pt-learn-cat__count {
    font-size: 0.75rem;
    font-weight: 700;
    color: #134BA1;
    background: #eef3ff;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.pt-learn-cat--fundamentals {
    border-top: 4px solid #134BA1;
}

.pt-learn-cat--reading {
    border-top: 4px solid #7c3aed;
}

.pt-learn-cat--rhythm {
    border-top: 4px solid #db2777;
}

.pt-learn-cat--culture {
    border-top: 4px solid #16a34a;
}

.pt-learn-footnote {
    text-align: center;
    font-size: 0.86rem;
    color: #6b7280;
    margin-top: 28px;
    font-style: italic;
}

/* ── Science grid ─────────────────────────────────────────────── */
.pt-science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 860px) {
    .pt-science-grid {
        grid-template-columns: 1fr;
    }
}

.pt-science-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
}

.pt-science-card__num {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #134BA1, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
}

.pt-science-card h3 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #111827;
    margin: 0 0 10px;
}

.pt-science-card p {
    font-size: 0.86rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* ── Reviews grid ─────────────────────────────────────────────── */
.pt-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .pt-reviews {
        grid-template-columns: 1fr;
    }
}

.pt-review {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.pt-review--featured {
    background: linear-gradient(145deg, #134BA1, #2563eb);
    border: none;
    color: #fff;
}

.pt-review--featured .pt-review__body {
    color: #fff;
}

.pt-review--featured .pt-review__name {
    color: #fff;
}

.pt-review--featured .pt-review__meta {
    color: rgba(255, 255, 255, 0.8);
}

.pt-review__stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.pt-review__body {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 14px;
}

.pt-review__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pt-review__name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #111827;
}

.pt-review__meta {
    font-size: 0.8rem;
    color: #6b7280;
}

.pt-review-summary {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pt-review-avg {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #f59e0b;
}

.pt-review-count {
    font-size: 0.85rem;
    color: #6b7280;
}