/* ============================================
   CONTENT CLAUDE WORKSHOP — PAGE-SPECIFIC STYLES
   Layered on top of bootcamp.css
   ============================================ */

/* ----- Hero title size tweak (smaller than the bootcamp default) ----- */
.bc-hero .bc-title {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.08;
}

/* ----- Inline code (slash commands) ----- */
code {
    font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
    font-size: 0.9em;
    background: #fff3e0;
    color: var(--bc-accent);
    padding: 2px 7px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Code inside dark sections should blend with cream text */
.bc-about code {
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.25);
}

/* ----- Founders circular photo ----- */
.ws-founders-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 32px;
    border: 4px solid var(--bc-cream);
    box-shadow:
        0 0 0 6px rgba(255, 140, 66, 0.18),
        0 20px 48px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1024px) {
    .ws-founders-img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .ws-founders-img {
        width: 180px;
        height: 180px;
    }
}

/* ----- Hero price card tweaks (single price, no strikethrough) ----- */
.ws-price-info .bc-price-row {
    justify-content: center;
}

.ws-card-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.ws-card-includes li {
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: 0.9rem;
    color: var(--bc-text-muted);
    line-height: 1.5;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.ws-card-includes li:last-child {
    border-bottom: none;
}

.ws-card-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 14px;
    background: var(--bc-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
}

/* ----- Buy button variant ----- */
.ws-buy-btn {
    margin-top: 4px;
}

/* ============================================
   BONUSES SECTION
   ============================================ */
.ws-bonuses {
    background: var(--bc-bg-warm);
    padding: 92px 0 100px;
    position: relative;
}

.ws-bonuses-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.ws-bonuses-header {
    text-align: center;
    margin-bottom: 56px;
}

.ws-section-title {
    font-family: var(--bc-font-display);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--bc-text);
    margin: 18px 0 14px;
    letter-spacing: -0.02em;
}

.ws-section-sub {
    font-size: 1.05rem;
    color: var(--bc-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

.ws-bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.ws-bonus-card {
    background: var(--bc-bg);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-top: 3px solid var(--bc-accent);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.05),
        0 4px 14px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ws-bonus-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.04);
}

.ws-bonus-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--bc-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 24px rgba(255, 140, 66, 0.28);
}

.ws-bonus-icon svg {
    width: 26px;
    height: 26px;
}

.ws-bonus-tag {
    display: inline-block;
    background: #fff3e0;
    color: var(--bc-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ws-bonus-title {
    font-family: var(--bc-font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--bc-text);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.ws-bonus-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--bc-text-muted);
    margin-bottom: 16px;
}

.ws-bonus-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bc-accent);
    letter-spacing: 0.3px;
}

/* ============================================
   21 SKILLS GRID
   ============================================ */
.ws-skills {
    background: var(--bc-bg);
    padding: 92px 0 100px;
}

.ws-skills-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.ws-skills-header {
    text-align: center;
    margin-bottom: 48px;
}

.ws-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ws-skill-card {
    background: var(--bc-bg);
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    padding: 20px 22px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ws-skill-card:hover {
    transform: translateY(-2px);
    border-color: var(--bc-accent);
    box-shadow: 0 12px 28px rgba(255, 140, 66, 0.12);
}

.ws-skill-card::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--bc-accent);
    border-radius: 2px;
    margin-bottom: 12px;
}

.ws-skill-name {
    font-family: var(--bc-font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--bc-text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.ws-skill-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--bc-text-muted);
    margin: 0;
}

/* ============================================
   FINAL CTA — pricebox
   ============================================ */
.ws-cta-pricebox {
    text-align: center;
    padding: 18px 0 24px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--bc-border);
}

.ws-cta-price-big {
    display: block;
    font-family: var(--bc-font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--bc-text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ws-cta-price-label {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--bc-text-secondary);
    font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .ws-bonuses-inner,
    .ws-skills-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1024px) {
    .ws-bonus-grid {
        grid-template-columns: 1fr;
    }

    .ws-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ws-bonuses,
    .ws-skills {
        padding: 64px 0 72px;
    }

    .ws-bonuses-inner,
    .ws-skills-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ws-bonus-card {
        padding: 28px 22px;
    }

    .ws-section-title {
        font-size: 1.75rem;
    }

    .ws-section-sub {
        font-size: 0.98rem;
    }

    .ws-skills-grid {
        grid-template-columns: 1fr;
    }

    .ws-cta-price-big {
        font-size: 2.6rem;
    }
}

@media (max-width: 480px) {
    .ws-section-title {
        font-size: 1.55rem;
    }

    .ws-bonus-title {
        font-size: 1.25rem;
    }
}
