/* ==========================================================================
   BOOTCAMPS — page styles for /bootcamps/*.html
   --------------------------------------------------------------------------
   Every page in this folder links ../styles.css first. This file only adds
   what the marketing site does not already own, and every class is prefixed
   .bc- so nothing here can ever collide with the home page.

   Two accent systems, deliberately kept apart:

     --bc-accent   the track's own colour, straight out of the labs catalogue
                   (api/catalog.py). Used ONLY as a hairline, a dot, an open-
                   accordion edge or a hover glow. The site is monochrome; a
                   filled colourful card would read as a different product.

     --bc-gold     #ffcc57 — the same gold the home page uses for "Become a
                   Founder". Reserved for money: the enrol button, the savings
                   badge, the referral chip. Nothing else.
   ========================================================================== */

:root {
    --bc-gold: #ffcc57;
    --bc-gold-hi: #ffd873;
    --bc-wrap: 1240px;
}

/* Track accents mirror the `accent` field in api/catalog.py. If a track's
   colour changes there, change it here — these pages are the only other
   place the value is written down. */
[data-accent="cloud-devops"]   { --bc-accent: #3fb950; }
[data-accent="cyber-security"] { --bc-accent: #f778ba; }
[data-accent="ai-ml-engineer"] { --bc-accent: #a371f7; }
[data-accent="qa-automation"]  { --bc-accent: #58a6ff; }
/* The standalone labs product has no track colour of its own — it borrows
   the commercial gold, because that card only ever sells a price. */
[data-accent="labs"]           { --bc-accent: #ffcc57; }

/* ── Layout ─────────────────────────────────────────────────────────────
   `section` in styles.css is min(2200px, 95vw) wide, which is right for a
   grid of service cards and far too wide to read a curriculum in. Every
   block on these pages sits inside .bc-wrap. */
.bc-wrap {
    width: 100%;
    max-width: var(--bc-wrap);
    margin-inline: auto;
}
.bc-section { padding-top: 96px; padding-bottom: 0; }
/* In-page jump targets have to clear the fixed navbar. */
.bc-anchor { scroll-margin-top: 104px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.bc-hero {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 152px var(--pad) 16px;
}
/* A single soft bloom of the track colour behind the title — the only place
   the accent is allowed to cover any real area. */
.bc-hero::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 50%;
    translate: -50% 0;
    width: min(920px, 92%);
    height: 320px;
    background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--bc-accent, #ffffff) 15%, transparent), transparent 70%);
    filter: blur(72px);
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}
.bc-hero-inner { max-width: var(--bc-wrap); margin-inline: auto; }

/* The breadcrumb is a real <nav> landmark, and styles.css styles the bare
   `nav` element as the fixed site navbar — so undo all of that first, or the
   breadcrumb pins itself over the top of the page. */
nav.bc-crumbs {
    position: static;
    width: auto;
    z-index: auto;
    padding: 0;
    background: none;
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
}
.bc-crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-3);
}
.bc-crumbs a { color: var(--text-3); text-decoration: none; transition: color 0.25s var(--ease); }
.bc-crumbs a:hover { color: var(--text-0); }
.bc-crumbs .sep { color: var(--text-4); }
.bc-crumbs .cur { color: var(--bc-accent, var(--text-1)); }

.bc-hero h1 {
    font-size: clamp(2.1rem, 5.4vw, 4rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.035em;
    color: var(--text-0);
    margin-bottom: 18px;
    max-width: 18ch;
    animation: fadeInUp 0.8s var(--ease);
}
.bc-hero .bc-hero-lead {
    font-size: clamp(1.02rem, 1.6vw, 1.24rem);
    color: var(--text-2);
    max-width: 62ch;
    text-wrap: pretty;
    animation: fadeInUp 0.8s var(--ease) 0.08s both;
}

.bc-hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    animation: fadeInUp 0.8s var(--ease) 0.04s both;
}

/* ── Status pill ────────────────────────────────────────────────────────── */
.bc-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px 7px 12px;
    border: 1px solid var(--surface-line);
    border-radius: 999px;
    background: var(--surface);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-1);
    white-space: nowrap;
}
.bc-status .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bc-accent, #fff);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bc-accent, #fff) 18%, transparent);
}
/* The hub hero carries a live pill with no track of its own, so --bc-accent is
   undefined there. Without the fallback the color-mix() is invalid at computed-
   value time, border-color falls back to `unset` -> currentColor, and that one
   pill draws a stark near-white outline next to its subtle sibling. */
.bc-status.is-live { border-color: color-mix(in srgb, var(--bc-accent, #fff) 34%, var(--surface-line)); }
.bc-status.is-live .dot { animation: pulse 2.4s ease-in-out infinite; }

/* ── Meta row (level · duration · schedule) ─────────────────────────────── */
.bc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 34px 0 32px;
    border-top: 1px solid var(--surface-line);
    border-bottom: 1px solid var(--surface-line);
    animation: fadeInUp 0.8s var(--ease) 0.12s both;
}
.bc-meta-item {
    padding: 18px 30px 18px 0;
    margin-right: 30px;
    border-right: 1px solid var(--surface-line);
}
.bc-meta-item:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.bc-meta-k {
    display: block;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 6px;
}
.bc-meta-v {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-0);
    letter-spacing: -0.01em;
}

.bc-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp 0.8s var(--ease) 0.16s both;
}

/* ── Gold CTA (the money button) ────────────────────────────────────────── */
.cta-btn.bc-gold {
    background: var(--bc-gold);
    border-color: var(--bc-gold);
    color: #0a0a0c;
    font-weight: 700;
}
/* styles.css glows every .cta-btn cyan on hover with !important — the enrol
   button has to win that, so it answers in kind. */
.cta-btn.bc-gold:hover {
    background: var(--bc-gold-hi);
    border-color: var(--bc-gold-hi);
    box-shadow: 0 12px 34px rgba(255, 204, 87, 0.3), 0 0 0 1px rgba(255, 204, 87, 0.45) !important;
}

/* The gold CTA repeated in the mobile sheet, where .cta-btn's pill shape
   would fight the full-bleed link list. */
.mobile-menu .bc-mobile-cta { color: var(--bc-gold); font-weight: 700; }

/* ── Chips ──────────────────────────────────────────────────────────────── */
.bc-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.bc-chip {
    padding: 5px 11px;
    border: 1px solid var(--surface-line);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-2);
    font-size: 0.74rem;
    font-weight: 500;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.bc-chip.is-rest { color: var(--text-3); border-style: dashed; }
.bc-chips-lg .bc-chip {
    padding: 9px 16px;
    border-radius: 9px;
    font-size: 0.86rem;
    color: var(--text-1);
}
.bc-chips-lg .bc-chip:hover {
    color: var(--text-0);
    border-color: color-mix(in srgb, var(--bc-accent) 36%, var(--surface-line));
}

/* ── Track cards (hub) ──────────────────────────────────────────────────── */
.bc-tracks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.bc-track-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 32px 26px;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-1);
    transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), background 0.32s var(--ease);
}
.bc-track-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, var(--bc-accent), transparent 60%);
    opacity: 0.55;
    transition: opacity 0.32s var(--ease);
}
.bc-track-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 0% 0%, color-mix(in srgb, var(--bc-accent) 11%, transparent), transparent 62%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    pointer-events: none;
}
.bc-track-card:hover {
    transform: translateY(-3px);
    background: var(--surface-hi);
    border-color: color-mix(in srgb, var(--bc-accent) 36%, var(--surface-line));
}
.bc-track-card:hover::before { opacity: 1; }
.bc-track-card:hover::after { opacity: 1; }
.bc-track-card > * { position: relative; z-index: 1; }

.bc-track-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 26px;
}
.bc-track-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-3);
}
.bc-track-kicker i { color: var(--bc-accent); font-size: 0.9rem; letter-spacing: 0; }
.bc-track-card h3 {
    font-size: 1.62rem;
    font-weight: 700;
    letter-spacing: -0.028em;
    color: var(--text-0);
    margin-bottom: 10px;
}
.bc-track-tag {
    font-size: 0.98rem;
    color: var(--text-2);
    line-height: 1.55;
    margin-bottom: 24px;
    text-wrap: pretty;
}
.bc-track-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 18px 0;
    margin-bottom: 22px;
    border-top: 1px solid var(--surface-line);
    border-bottom: 1px solid var(--surface-line);
}
.bc-track-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--surface-line);
}
.bc-track-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-0);
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
    transition: gap 0.25s var(--ease);
}
.bc-track-card:hover .bc-track-more { gap: 13px; color: var(--bc-accent); }

/* Compact price line used on the hub cards and the cross-sell card. */
.bc-mini-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.bc-mini-price .now {
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-0);
    font-variant-numeric: tabular-nums;
}
.bc-mini-price .was {
    font-size: 0.86rem;
    color: var(--text-3);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.32);
}
.bc-mini-price .unit { font-size: 0.76rem; color: var(--text-3); }
.bc-mini-price.is-error .now { font-size: 0.92rem; font-weight: 500; color: var(--text-2); }

/* ── "How it works" steps ───────────────────────────────────────────────── */
.bc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--surface-line);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.bc-step {
    background: var(--bg-1);
    padding: 30px 28px 32px;
    transition: background 0.3s var(--ease);
}
.bc-step:hover { background: var(--bg-2); }
.bc-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.bc-step-n {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--surface-line);
    border-radius: 10px;
    background: var(--surface-hi);
    color: var(--text-0);
    font-size: 0.8rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.bc-step:hover .bc-step-n {
    border-color: color-mix(in srgb, var(--bc-accent, #fff) 45%, var(--surface-line));
    color: var(--bc-accent, var(--text-0));
}
.bc-step-arrow { color: var(--text-4); font-size: 0.85rem; }
.bc-step h3 {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--text-0);
    margin-bottom: 8px;
}
.bc-step p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; text-wrap: pretty; }

/* ── Cross-sell (labs-only product) ─────────────────────────────────────── */
.bc-cross {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
    gap: 40px;
    align-items: center;
    padding: 44px 48px;
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 204, 87, 0.07), transparent 55%),
        var(--surface);
    transition: border-color 0.3s var(--ease);
}
.bc-cross:hover { border-color: rgba(255, 204, 87, 0.28); }
.bc-cross h3 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.028em;
    color: var(--text-0);
    margin: 12px 0 12px;
}
.bc-cross p { color: var(--text-2); font-size: 0.98rem; max-width: 60ch; text-wrap: pretty; }
.bc-cross-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-left: 40px;
    border-left: 1px solid var(--surface-line);
}
.bc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--bc-gold);
}

/* ── Pitch + price (track pages) ────────────────────────────────────────── */
.bc-pitch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.85fr);
    gap: 44px;
    align-items: start;
}
.bc-lede {
    font-size: clamp(1.06rem, 1.5vw, 1.3rem);
    line-height: 1.62;
    color: var(--text-1);
    text-wrap: pretty;
    padding-left: 26px;
    border-left: 2px solid color-mix(in srgb, var(--bc-accent) 55%, transparent);
}
.bc-includes { display: grid; gap: 14px; margin-top: 36px; }
.bc-include {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-md);
    background: var(--surface);
    transition: border-color 0.28s var(--ease), background 0.28s var(--ease);
}
.bc-include:hover { border-color: color-mix(in srgb, var(--bc-accent) 30%, var(--surface-line)); background: var(--surface-hi); }
.bc-include i { color: var(--bc-accent); font-size: 0.92rem; margin-top: 0.32rem; }
.bc-include b { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text-0); margin-bottom: 4px; }
.bc-include span { font-size: 0.89rem; color: var(--text-2); line-height: 1.55; }

/* The price card follows the reader down the pitch column on wide screens. */
.bc-price-col { position: sticky; top: 100px; }

/* ── Live price block ───────────────────────────────────────────────────── */
.bc-price {
    position: relative;
    padding: 30px 30px 26px;
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 204, 87, 0.08), transparent 58%),
        var(--surface);
    overflow: hidden;
}
.bc-price::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, var(--bc-gold), transparent 70%);
    opacity: 0.75;
}
.bc-price-label {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 14px;
}
.bc-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 14px;
}
.bc-price-now {
    font-size: clamp(2.3rem, 5vw, 2.9rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--text-0);
    font-variant-numeric: tabular-nums;
}
.bc-price-cur {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
}
.bc-price-was {
    font-size: 1rem;
    color: var(--text-3);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.34);
    font-variant-numeric: tabular-nums;
}
.bc-price-save {
    padding: 4px 11px;
    border: 1px solid rgba(255, 204, 87, 0.34);
    border-radius: 999px;
    background: rgba(255, 204, 87, 0.1);
    color: var(--bc-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.bc-price-note {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.55;
    margin-bottom: 18px;
    text-wrap: pretty;
}
.bc-price .bc-price-cta { width: 100%; padding: 15px; margin-bottom: 12px; }
.bc-price-alt {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-2);
    text-decoration: none;
    padding: 6px 0 10px;
}
.bc-price-fine {
    font-size: 0.76rem;
    color: var(--text-3);
    line-height: 1.55;
    padding-top: 14px;
    border-top: 1px solid var(--surface-line);
    text-wrap: pretty;
}

/* The three states the block can be in. Until /billing/plans answers, the
   figures stay em-dashes — a marketing page must never invent a price. */
.bc-price.is-loading .bc-price-now,
.bc-mini-price.is-loading .now { color: var(--text-4); }
.bc-price.is-loading .bc-price-now { animation: bcPulseText 1.6s ease-in-out infinite; }
.bc-price.is-error .bc-price-now { font-size: 1.35rem; letter-spacing: -0.02em; color: var(--text-1); }
.bc-price [hidden], .bc-mini-price [hidden] { display: none; }

/* ── Referral chip ──────────────────────────────────────────────────────── */
.bc-ref {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    padding: 7px 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 204, 87, 0.32);
    border-radius: 999px;
    background: rgba(255, 204, 87, 0.09);
    color: var(--bc-gold);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
}
/* The chip ships with the `hidden` attribute and is only un-hidden once a code
   is resolved — but an author `display` beats the UA sheet's [hidden] rule, so
   without this the hub's chip greets every visitor with an empty "Referral
   applied:" pill. The price blocks get this from the rule above; the hub's chip
   lives up in the hero, so tie it to the component instead of an ancestor. */
.bc-ref[hidden] { display: none; }
.bc-hero-row .bc-ref { margin-bottom: 0; }
/* Codes are stored and sent exactly as the partner wrote them; the display
   is upper-cased here so a lower-case link still looks like a promo code. */
.bc-ref .bc-ref-code { letter-spacing: 0.08em; text-transform: uppercase; font-variant-numeric: tabular-nums; }
.bc-ref .bc-ref-state { font-weight: 500; color: color-mix(in srgb, var(--bc-gold) 70%, var(--text-2)); }
.bc-ref.is-checking { opacity: 0.72; }
.bc-ref.is-unverified,
.bc-ref.is-invalid {
    border-color: var(--surface-line);
    background: var(--surface);
    color: var(--text-2);
}
.bc-ref.is-invalid { color: var(--text-3); }
.bc-ref.is-unverified .bc-ref-state,
.bc-ref.is-invalid .bc-ref-state { color: var(--text-3); }

/* ── Curriculum accordion ───────────────────────────────────────────────── */
.bc-modules {
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-lg);
    background: var(--bg-1);
    overflow: hidden;
}
.bc-module + .bc-module { border-top: 1px solid var(--surface-line); }
.bc-module summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 19px 24px;
    cursor: pointer;
    list-style: none;
    transition: background 0.25s var(--ease);
}
.bc-module summary::-webkit-details-marker { display: none; }
.bc-module summary:hover { background: var(--bg-2); }
.bc-module-n {
    min-width: 24px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-4);
    font-variant-numeric: tabular-nums;
    transition: color 0.25s var(--ease);
}
.bc-module-t {
    flex: 1;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--text-0);
}
.bc-module-chev {
    color: var(--text-3);
    font-size: 0.8rem;
    transition: transform 0.3s var(--ease), color 0.25s var(--ease);
}
.bc-module[open] { background: var(--bg-2); box-shadow: inset 2px 0 0 var(--bc-accent); }
.bc-module[open] .bc-module-n { color: var(--bc-accent); }
.bc-module[open] .bc-module-chev { transform: rotate(90deg); color: var(--text-1); }
.bc-module-d {
    padding: 0 28px 22px 66px;
    font-size: 0.94rem;
    line-height: 1.68;
    color: var(--text-2);
    text-wrap: pretty;
}
.bc-modules-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}
.bc-modules-count { font-size: 0.82rem; color: var(--text-3); }
.bc-expand {
    padding: 8px 16px;
    border: 1px solid var(--surface-line);
    border-radius: 999px;
    background: transparent;
    color: var(--text-1);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.bc-expand:hover { border-color: rgba(255, 255, 255, 0.28); background: var(--surface); }

/* ── Audiences ──────────────────────────────────────────────────────────── */
.bc-aud {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.bc-aud-card {
    padding: 26px 28px;
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.bc-aud-card:hover {
    transform: translateY(-2px);
    background: var(--surface-hi);
    border-color: color-mix(in srgb, var(--bc-accent) 32%, var(--surface-line));
}
.bc-aud-who {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 1.04rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--text-0);
    margin-bottom: 9px;
}
.bc-aud-who::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bc-accent);
    flex-shrink: 0;
}
.bc-aud-why { font-size: 0.93rem; color: var(--text-2); line-height: 1.6; text-wrap: pretty; }

/* ── Outcomes ───────────────────────────────────────────────────────────── */
.bc-outcomes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
    list-style: none;
}
.bc-outcome {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--surface-line);
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-1);
}
.bc-outcome i { color: var(--bc-accent); font-size: 0.78rem; margin-top: 0.42rem; flex-shrink: 0; }

/* ── Roles ──────────────────────────────────────────────────────────────── */
.bc-roles { display: flex; flex-wrap: wrap; gap: 10px; }
.bc-role {
    padding: 11px 20px;
    border: 1px solid var(--surface-line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-1);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: border-color 0.28s var(--ease), color 0.28s var(--ease), background 0.28s var(--ease);
}
.bc-role:hover {
    color: var(--text-0);
    background: var(--surface-hi);
    border-color: color-mix(in srgb, var(--bc-accent) 38%, var(--surface-line));
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.bc-faq { display: grid; gap: 12px; max-width: 900px; }
.bc-q {
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-md);
    background: var(--surface);
    overflow: hidden;
    transition: border-color 0.28s var(--ease);
}
.bc-q[open] { border-color: rgba(255, 255, 255, 0.16); background: var(--surface-hi); }
.bc-q summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 0.99rem;
    font-weight: 600;
    letter-spacing: -0.012em;
    color: var(--text-0);
}
.bc-q summary::-webkit-details-marker { display: none; }
.bc-q summary::after {
    content: '+';
    color: var(--text-3);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.28s var(--ease), color 0.25s var(--ease);
}
.bc-q[open] summary::after { transform: rotate(45deg); color: var(--bc-accent); }
.bc-q-a {
    padding: 0 24px 22px;
    font-size: 0.94rem;
    line-height: 1.68;
    color: var(--text-2);
    text-wrap: pretty;
}
.bc-q-a a { color: var(--text-1); }

/* ── Closing CTA band ───────────────────────────────────────────────────── */
.bc-band {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 46px 48px;
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--bc-accent, #fff) 10%, transparent), transparent 58%),
        var(--surface);
}
.bc-band h3 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-0);
    margin-bottom: 10px;
}
.bc-band p { color: var(--text-2); font-size: 0.98rem; max-width: 56ch; text-wrap: pretty; }
.bc-band-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Scroll reveal ──────────────────────────────────────────────────────────
   Gated on the .js class bootcamps.js sets on <html> before anything paints,
   so a reader with JS disabled gets the whole page rather than a blank one. */
.js .bc-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .bc-reveal.is-in { opacity: 1; transform: none; }

@keyframes bcPulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
    .bc-pitch-grid { grid-template-columns: 1fr; gap: 36px; }
    .bc-price-col { position: static; }
    .bc-price { max-width: 520px; }
}
@media (max-width: 960px) {
    .bc-hero { padding-top: 128px; }
    .bc-tracks { grid-template-columns: 1fr; }
    .bc-steps { grid-template-columns: repeat(2, 1fr); }
    .bc-step-arrow { display: none; }
    .bc-cross { grid-template-columns: 1fr; gap: 28px; padding: 36px; }
    .bc-cross-side { padding-left: 0; padding-top: 28px; border-left: 0; border-top: 1px solid var(--surface-line); width: 100%; }
    .bc-aud { grid-template-columns: 1fr; }
    .bc-outcomes { grid-template-columns: 1fr; gap: 0; }
    .bc-section { padding-top: 76px; }
}
@media (max-width: 640px) {
    .bc-hero { padding-top: 116px; }
    .bc-meta { margin: 26px 0; }
    .bc-meta-item {
        width: 100%;
        padding: 14px 0;
        margin-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--surface-line);
    }
    .bc-meta-item:last-child { border-bottom: 0; }
    .bc-track-card { padding: 28px 22px 22px; }
    .bc-track-card h3 { font-size: 1.4rem; }
    .bc-track-meta { grid-template-columns: 1fr; gap: 12px; }
    .bc-track-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
    .bc-steps { grid-template-columns: 1fr; }
    .bc-price { padding: 24px 22px 22px; }
    .bc-lede { padding-left: 18px; font-size: 1.02rem; }
    .bc-module summary { gap: 12px; padding: 16px 18px; }
    .bc-module-d { padding: 0 18px 18px 18px; }
    .bc-q summary { padding: 17px 18px; font-size: 0.94rem; }
    .bc-q-a { padding: 0 18px 18px; }
    .bc-band { padding: 32px 24px; }
    .bc-cross { padding: 28px 22px; }
    .bc-hero-ctas .cta-btn,
    .bc-hero-ctas .cta-secondary { flex: 1 1 100%; justify-content: center; }
}
@media (max-width: 380px) {
    .bc-hero h1 { font-size: 1.92rem; }
    .bc-price-row { gap: 8px; }
    .bc-price-now { font-size: 2.05rem; }
    .bc-chip { font-size: 0.7rem; padding: 4px 9px; }
    .bc-role { padding: 9px 15px; font-size: 0.86rem; }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js .bc-reveal { opacity: 1; transform: none; transition: none; }
    .bc-hero h1,
    .bc-hero .bc-hero-lead,
    .bc-hero-row,
    .bc-meta,
    .bc-hero-ctas { animation: none; }
    .bc-status.is-live .dot { animation: none; }
    .bc-price.is-loading .bc-price-now { animation: none; }
    .bc-track-card:hover { transform: none; }
    .bc-aud-card:hover { transform: none; }
    .bc-module-chev,
    .bc-q summary::after { transition: none; }
}
