/**
 * Penalty Kick Tracker landing page (v2-editorial family).
 * Companion to resources/views/scorekeeper/penalty-kicks-landing.blade.php.
 */
.pkl-hero { padding: 3rem 1.5rem 3rem; text-align: center; }
.pkl-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 .75rem;
    line-height: 1.1;
}
.pkl-hero p { max-width: 640px; margin: 0 auto 2rem; color: var(--muted, #666); font-size: 1.1rem; line-height: 1.5; }
.pkl-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.pkl-btn {
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    padding: .85rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color, #ddd);
    background: var(--bg-primary, #fff);
    color: var(--text-primary, #222);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.pkl-btn:hover { background: var(--bg-secondary, #f5f5f5); }
.pkl-btn-primary { background: #2ba8ff; color: #fff; border-color: #2ba8ff; }
.pkl-btn-primary:hover { background: #1d96ec; }

.pkl-presets { max-width: 860px; margin: 0 auto 3.5rem; padding: 0 1.5rem; }
.pkl-presets h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.6rem;
    text-align: center;
    margin: 0 0 .5rem;
}
.pkl-presets > p { text-align: center; color: var(--text-secondary, #555); margin: 0 0 1.5rem; }
.pkl-preset-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.pkl-preset {
    display: block;
    background: var(--bg-primary, #fff);
    border: 1px solid var(--border-color, #e5e5e5);
    border-radius: 12px;
    padding: 1.15rem 1.15rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, transform .15s ease;
}
.pkl-preset:hover { border-color: #2ba8ff; transform: translateY(-2px); }
.pkl-preset h3 { font-family: 'Fraunces', Georgia, serif; margin: 0 0 .4rem; font-size: 1.1rem; }
.pkl-preset p { margin: 0; color: var(--text-secondary, #555); font-size: .85rem; line-height: 1.5; }
.pkl-preset .pkl-preset-go { display: inline-block; margin-top: .6rem; color: #2ba8ff; font-weight: 700; font-size: .85rem; }

/* ============ v2 split hero (art + copy) ============ */
.pkh-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2.5rem;
}
.pkh-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1d96ec;
    background: rgba(43, 168, 255, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}
.pkh-copy h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 0 0 0.75rem;
    line-height: 1.08;
}
.pkh-deck {
    color: var(--muted, #666);
    font-size: 1.1rem;
    line-height: 1.55;
    margin: 0 0 1.75rem;
    max-width: 34rem;
}
.pkh-ctas { justify-content: flex-start; }
.pkh-art img {
    width: 100%;
    height: auto;
    max-width: 440px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 14px 30px rgba(43, 168, 255, 0.18));
}
@media (max-width: 768px) {
    .pkh-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1.25rem 2rem;
    }
    .pkh-art { order: -1; }
    .pkh-art img { max-width: 260px; }
    .pkh-ctas { justify-content: center; }
    .pkh-deck { margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   Unlock page (penalty-kicks-upsell.blade.php) — the Pro gate a non-Pro
   visitor sees at the tracker URL. Same v2 palette as the landing hero.
   ========================================================================== */
.pku-page { min-height: calc(100vh - 120px); display: flex; align-items: center; justify-content: center; padding: 2.5rem 1.25rem 3.5rem; background: #faf6ef; }
.pku-card { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.25rem; align-items: center; max-width: 920px; width: 100%; background: #fff; border: 1px solid #e8e0d2; border-radius: 20px; padding: 2.25rem; box-shadow: 0 10px 40px rgba(30, 41, 59, 0.08); }
.pku-art img { width: 100%; height: auto; display: block; }
.pku-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #2ba8ff; margin: 0 0 0.5rem; }
.pku-body h1 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.6rem, 3.4vw, 2.2rem); line-height: 1.12; color: #1b2431; margin: 0 0 0.65rem; }
.pku-deck { color: #4b5563; font-size: 0.98rem; line-height: 1.55; margin: 0 0 1.35rem; }
.pku-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 1.25rem; }
.pku-option { text-align: left; border-radius: 14px; padding: 1rem 1.05rem; cursor: pointer; font: inherit; display: flex; flex-direction: column; gap: 0.3rem; transition: transform 0.12s ease, box-shadow 0.12s ease; }
.pku-option:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(30, 41, 59, 0.12); }
.pku-option-day { background: #fff; border: 2px dashed #2ba8ff; }
.pku-option-pro { background: #1b2431; border: 2px solid #1b2431; color: #fff; }
.pku-opt-name { font-weight: 800; font-size: 0.98rem; display: flex; align-items: center; gap: 0.45rem; }
.pku-option-day .pku-opt-name { color: #1b2431; }
.pku-option-day .pku-opt-name i, .pku-option-pro .pku-opt-name i { color: #2ba8ff; }
.pku-opt-price { font-family: 'Fraunces', Georgia, serif; font-size: 1.45rem; font-weight: 700; }
.pku-option-day .pku-opt-price { color: #1b2431; }
.pku-opt-price em { font-style: normal; font-size: 0.78rem; font-weight: 600; opacity: 0.7; }
.pku-opt-desc { font-size: 0.82rem; line-height: 1.45; opacity: 0.85; }
.pku-option-day .pku-opt-desc { color: #4b5563; }
.pku-perks { list-style: none; margin: 0 0 1.1rem; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.pku-perks li { font-size: 0.88rem; color: #374151; display: flex; align-items: baseline; gap: 0.5rem; }
.pku-perks i { color: #16a34a; font-size: 0.78rem; }
.pku-links { font-size: 0.84rem; color: #6b7280; margin: 0; }
.pku-links a { color: #2ba8ff; font-weight: 600; text-decoration: none; }
.pku-links a:hover { text-decoration: underline; }
@media (max-width: 720px) {
    .pku-card { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.25rem; }
    .pku-art { max-width: 240px; margin: 0 auto; }
    .pku-options { grid-template-columns: 1fr; }
}

/* ==========================================================================
   "See it in action" demo (penalty-demo.blade.php) — real grid + outcome
   buttons + a filled history feed, on the landings and the unlock page.
   ========================================================================== */
.pkd-section { max-width: 1040px; margin: 0 auto; padding: 3rem 1.25rem; text-align: center; }
.pkd-title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.1rem); color: #1b2431; margin: 0 0 0.5rem; }
.pkd-deck { color: #4b5563; max-width: 620px; margin: 0 auto 1.75rem; line-height: 1.55; }
.pkd-card { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.5rem; background: #fff; border: 1px solid #e8e0d2; border-radius: 18px; padding: 1.5rem; box-shadow: 0 10px 36px rgba(30, 41, 59, 0.08); text-align: left; }
.pkd-play .pk-grid-hint { text-align: center; }
.pkd-outcomes { margin-top: 0.5rem; }
.pkd-side { display: flex; flex-direction: column; min-width: 0; }
.pkd-scoreline { display: flex; align-items: baseline; justify-content: center; gap: 0.6rem; font-weight: 800; color: #1b2431; }
.pkd-scoreline .pkd-score { font-family: 'Fraunces', Georgia, serif; font-size: 1.6rem; color: #2ba8ff; }
.pkd-team { font-size: 0.92rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pkd-result { text-align: center; font-size: 0.8rem; color: #6b7280; margin: 0.2rem 0 0.8rem; }
.pkd-history { list-style: none; margin: 0; padding: 0; border-top: 1px solid #eef0f3; max-height: 300px; overflow-y: auto; }
.pkd-h-row { display: flex; align-items: baseline; gap: 0.55rem; padding: 0.45rem 0.15rem; border-bottom: 1px solid #f2f4f7; font-size: 0.84rem; color: #374151; }
.pkd-h-round { font-weight: 800; font-size: 0.7rem; color: #9ca3af; flex-shrink: 0; width: 1.6rem; }
.pkd-h-who { font-weight: 700; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pkd-h-outcome { flex-shrink: 0; font-size: 0.78rem; color: #6b7280; }
.pkd-h-goal .pkd-h-outcome i { color: #22c55e; }
.pkd-h-saved .pkd-h-outcome i { color: #f59e0b; }
.pkd-h-off .pkd-h-outcome i { color: #94a3b8; }
.pkd-h-wood .pkd-h-outcome i { color: #f97316; }
.pkd-cta-row { margin: 1.5rem 0 0; display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; align-items: baseline; }
.pkd-cta { display: inline-block; background: #2ba8ff; color: #fff; font-weight: 700; padding: 0.7rem 1.4rem; border-radius: 999px; text-decoration: none; }
.pkd-cta:hover { background: #1c7fd6; }
.pkd-cta-quiet { background: none; color: #2ba8ff; padding: 0.7rem 0.25rem; }
.pkd-cta-quiet:hover { background: none; text-decoration: underline; }
@media (max-width: 760px) {
    .pkd-card { grid-template-columns: 1fr; }
    .pkd-history { max-height: 220px; }
}
