/* Free lead magnet: Direction Deck wizard (screen + print/PDF) */

.bs-page {
    --bs-ink: #1a1f2e;
    --bs-muted: #5c6578;
    --bs-line: #c5cdd8;
    --bs-accent: #b8924e;
}

/* Clear fixed .landing-nav (same idea as about.html inline padding) */
.bs-page .about-content {
    padding: calc(5.5rem + env(safe-area-inset-top, 0px)) 0 4rem;
    box-sizing: border-box;
}

.bs-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bs-hero .about-header h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.bs-lead {
    color: var(--text-primary, #e8ecf4);
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
    font-size: 1.05rem;
}

.bs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.bs-btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(232, 201, 135, 0.45);
    background: linear-gradient(135deg, rgba(232, 201, 135, 0.18), rgba(120, 90, 40, 0.12));
    color: var(--landing-gold, #e8c987);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
}

.bs-btn-pdf:hover {
    border-color: rgba(232, 201, 135, 0.75);
    color: #fff;
}

.bs-hint {
    font-size: 0.85rem;
    color: #8b95a8;
    max-width: 28rem;
    text-align: center;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}

.bs-toast {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 120;
    max-width: min(92vw, 28rem);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    background: rgba(26, 31, 46, 0.95);
    border: 1px solid rgba(232, 201, 135, 0.35);
    color: #e8ecf4;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.bs-deck-surface {
    max-width: 960px;
    margin: 0 auto 2.5rem;
    padding: 1rem 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(232, 201, 135, 0.18);
    background: rgba(12, 14, 22, 0.45);
}

.bs-strategy-root {
    min-height: 12rem;
}

/* Wizard shell (strategy tab styles were scoped to Signal Corps; these mirror essentials) */
.strategy-workspace-inner {
    color: #e8ecf4;
}

.strategy-unified-wizard-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.75rem 0 1rem;
}

.strategy-unified-wizard-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.strategy-unified-wizard-dot.is-active {
    background: var(--landing-gold, #e8c987);
}

.strategy-unified-wizard-body {
    margin-top: 0.5rem;
}

.strategy-unified-wizard-lead {
    color: #b2bac9;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.strategy-unified-wizard-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.strategy-field {
    display: block;
    margin-bottom: 1rem;
}

.strategy-field-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9aa3b5;
    margin-bottom: 0.35rem;
}

.strategy-textarea,
.strategy-risk-input {
    width: 100%;
    box-sizing: border-box;
}

.strategy-swot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 720px) {
    .strategy-swot-grid {
        grid-template-columns: 1fr;
    }
}

.strategy-swot-cell {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.65rem;
    background: rgba(0, 0, 0, 0.2);
}

.strategy-swot-quad-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem;
    color: var(--landing-gold, #e8c987);
}

.strategy-swot-area {
    min-height: 6rem;
}

.strategy-unified-risk-block {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.85rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.15);
}

.strategy-unified-risk-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    margin: 0 0 0.65rem;
    color: #e8ecf4;
}

.strategy-risk-ip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.65rem;
    margin: 0.5rem 0;
}

.strategy-risk-score-value {
    margin: 0.25rem 0 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--landing-gold, #e8c987);
}

.strategy-val-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.85rem;
    margin-bottom: 0.85rem;
    background: rgba(0, 0, 0, 0.15);
}

.strategy-val-card-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.strategy-val-card-snippet {
    font-size: 0.88rem;
    color: #b2bac9;
    margin: 0 0 0.65rem;
}

.strategy-val-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.strategy-val-opt {
    font-size: 0.88rem;
    cursor: pointer;
}

.strategy-unified-review-details {
    margin-bottom: 0.65rem;
    color: #dce1ea;
}

.strategy-unified-review-details summary {
    cursor: pointer;
    font-weight: 600;
}

.strategy-dash-header {
    margin-bottom: 1.25rem;
}

.strategy-dash-title {
    font-family: 'Oswald', sans-serif;
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
}

.strategy-dash-lead {
    color: #b2bac9;
    margin: 0 0 1rem;
}

.strategy-dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.strategy-dash-card {
    text-align: left;
}

.strategy-dash-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin: 0 0 0.65rem;
    color: var(--landing-gold, #e8c987);
}

.strategy-dash-ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #dce1ea;
}

.strategy-dash-li {
    margin-bottom: 0.35rem;
}

.strategy-dash-kv {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #dce1ea;
}

.strategy-dash-meta {
    color: #9aa3b5;
    font-size: 0.85rem;
}

.strategy-dash-sub {
    font-size: 0.85rem;
    color: #9aa3b5;
}

.strategy-dash-okr-mount {
    margin-bottom: 1.25rem;
}

.bs-cta-banner {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(232, 201, 135, 0.25);
    background: linear-gradient(135deg, rgba(232, 201, 135, 0.12), rgba(40, 48, 64, 0.4));
    margin-bottom: 3rem;
}

.bs-cta-banner h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--landing-gold, #e8c987);
    margin-bottom: 0.75rem;
}

.bs-cta-banner p {
    color: #b2bac9;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.bs-cta-banner a {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    background: rgba(232, 201, 135, 0.2);
    border: 1px solid rgba(232, 201, 135, 0.4);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}

.bs-cta-banner a:hover {
    background: rgba(232, 201, 135, 0.3);
}

/* Print / Save as PDF */
@media print {
    .landing-nav,
    footer,
    .bs-actions,
    .bs-hint,
    .bs-cta-banner,
    .bs-toast {
        display: none !important;
    }

    body {
        background: #fff !important;
    }

    .bs-page .about-content {
        padding: 0.5rem 0 0 !important;
        min-height: auto !important;
    }

    .bs-page .about-container {
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }

    .bs-deck-surface {
        border: none !important;
        background: #fff !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    .strategy-workspace-inner,
    .strategy-dash-kv,
    .strategy-dash-li,
    .strategy-unified-review-details,
    .strategy-val-card-snippet {
        color: #1a1f2e !important;
    }

    .strategy-dash-lead,
    .strategy-unified-wizard-lead {
        color: #333 !important;
    }

    .war-card,
    .card {
        box-shadow: none !important;
        page-break-inside: avoid;
        break-inside: avoid;
        border: 1px solid #bbb !important;
    }

    .bs-hero {
        margin-bottom: 0.75rem;
    }

    .bs-hero .about-header h1 {
        color: #1a1f2e !important;
        font-size: 1.4rem;
    }

    .bs-lead {
        color: #333 !important;
        font-size: 0.9rem;
    }

    .sc-input,
    textarea.sc-input {
        border: 1px solid #999 !important;
        background: #fff !important;
        color: #1a1f2e !important;
    }
}
