@font-face {
    font-family: "Figtree Aorix";
    src: url("fonts/figtree/Figtree-Variable.ttf") format("truetype");
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
}

body[data-workshop-page] {
    --studio-ink: #20283c;
    --studio-ink-soft: #384054;
    --studio-paper: #f7f5ef;
    --studio-surface: #fffdf8;
    --studio-line: #dcd8d0;
    --studio-mint: #60c4be;
    --studio-mint-dark: #3f777a;
    --studio-warm: #e9b95f;
    --studio-danger: #9b3434;
    --studio-shadow: 0 26px 72px rgba(32, 40, 60, .13);
    background:
        radial-gradient(circle at 8% 4%, rgba(96, 196, 190, .14), transparent 28rem),
        var(--studio-paper);
    color: var(--studio-ink-soft);
    font-family: "Figtree Aorix", Inter, sans-serif;
}

body[data-workshop-page] h1,
body[data-workshop-page] h2,
body[data-workshop-page] h3,
body[data-workshop-page] legend {
    color: var(--studio-ink);
    font-family: "Figtree Aorix", Inter, sans-serif;
    font-weight: 760;
    letter-spacing: -.03em;
    text-wrap: balance;
}

body[data-workshop-page] .btn {
    min-height: 48px;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 760;
}

body[data-workshop-page] .btn-primary {
    border-color: var(--studio-mint);
    background: var(--studio-mint);
    color: var(--studio-ink);
    box-shadow: 0 12px 28px rgba(96, 196, 190, .2);
}

body[data-workshop-page] .btn-primary:hover {
    border-color: #7bd2cd;
    background: #7bd2cd;
    color: var(--studio-ink);
    box-shadow: 0 15px 32px rgba(96, 196, 190, .26);
}

.workshop-shell { min-height: 100vh; }

.workshop-focus-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
    padding: .75rem max(1.25rem, calc((100vw - 1240px) / 2));
    border-bottom: 1px solid rgba(220, 216, 208, .8);
    background: rgba(255, 253, 248, .95);
    backdrop-filter: blur(16px);
}

.workshop-brand {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    color: var(--studio-ink);
    font-size: .94rem;
    font-weight: 760;
}

.workshop-brand img { width: auto; height: 42px; }
.workshop-brand span { padding-left: .85rem; border-left: 1px solid var(--studio-line); }

.workshop-focus-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
}

.workshop-quiet-link,
.workshop-context-menu summary,
.workshop-tier-toggle,
.workshop-inline-action {
    color: var(--studio-ink-soft);
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: .3em;
    cursor: pointer;
}

.workshop-quiet-link:hover,
.workshop-context-menu summary:hover,
.workshop-tier-toggle:hover,
.workshop-inline-action:hover {
    color: var(--studio-mint-dark);
    text-decoration-color: currentColor;
}

.workshop-context-menu { position: relative; }
.workshop-context-menu summary { list-style: none; }
.workshop-context-menu summary::-webkit-details-marker { display: none; }
.workshop-context-menu nav {
    position: absolute;
    top: calc(100% + .75rem);
    right: 0;
    display: grid;
    min-width: 190px;
    padding: .6rem;
    border-radius: 14px;
    background: var(--studio-surface);
    box-shadow: var(--studio-shadow);
}
.workshop-context-menu nav a { padding: .7rem .8rem; border-radius: 10px; color: var(--studio-ink); font-weight: 680; }
.workshop-context-menu nav a:hover { background: rgba(96, 196, 190, .12); }

.workshop-assistant-button {
    border: 1px solid rgba(63, 119, 122, .7);
    background: transparent;
    color: var(--studio-mint-dark);
    box-shadow: none;
}
.workshop-assistant-button:hover { border-color: var(--studio-mint-dark); background: rgba(96, 196, 190, .1); }
body[data-workshop-page] .assistant-toggle { display: none; }

.workshop-stage {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.35rem 1.5rem 1.2rem;
}

.workshop-stage-copy,
.workshop-stage-progress { display: none; }

.workshop-stage-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.workshop-stage-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: .6rem;
    align-items: center;
    min-width: 0;
    color: #737985;
    font-size: .84rem;
    font-weight: 650;
}

.workshop-stage-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 38px;
    right: 8px;
    height: 1px;
    background: var(--studio-line);
}

.workshop-stage-steps li span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9e6df;
    color: #676d78;
    font-size: .8rem;
    font-weight: 800;
}

.workshop-stage-steps li[data-complete] { color: var(--studio-mint-dark); }
.workshop-stage-steps li[data-complete] span { background: rgba(96, 196, 190, .16); color: var(--studio-mint-dark); }
.workshop-stage-steps li[aria-current="step"] { color: var(--studio-ink); font-weight: 800; }
.workshop-stage-steps li[aria-current="step"] span { background: var(--studio-mint); color: var(--studio-ink); box-shadow: 0 7px 18px rgba(96, 196, 190, .24); }

.workshop-main { padding-bottom: 3rem; }

.workshop-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    max-width: 1240px;
    min-height: 610px;
    margin: .6rem auto 0;
    padding: clamp(2.4rem, 5vw, 5rem);
    overflow: hidden;
    border-radius: 16px;
    background: var(--studio-ink);
    color: var(--studio-surface);
    box-shadow: var(--studio-shadow);
}

.workshop-hero::before {
    content: "";
    position: absolute;
    width: 20rem;
    height: 20rem;
    right: -6rem;
    top: -8rem;
    border: 1px solid rgba(96, 196, 190, .24);
    border-radius: 50%;
}

.workshop-hero-copy { position: relative; z-index: 2; max-width: 710px; }
body[data-workshop-page] .workshop-hero h1 {
    max-width: 680px;
    margin: 0 0 1rem;
    color: var(--studio-surface);
    font-size: clamp(3rem, 5.2vw, 5.6rem);
    line-height: .98;
}
.workshop-hero-lead {
    max-width: 650px;
    margin: 0;
    color: #d7dbe4;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.68;
}

.workshop-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1.2rem;
    margin: 1.75rem 0 0;
}
.workshop-trust-row span { display: inline-flex; align-items: center; gap: .48rem; color: #eef1f5; font-size: .88rem; font-weight: 680; }
.workshop-trust-row svg { width: 22px; height: 22px; fill: none; stroke: var(--studio-mint); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.workshop-start-button { min-height: 58px !important; padding: 1rem 1.35rem !important; font-size: 1rem; }
.workshop-result-promise { margin: 1rem 0 0; color: #bfc7d4; font-size: .88rem; }

.workshop-outcome-preview { position: relative; z-index: 1; display: grid; gap: 1rem; align-content: center; }
.workshop-preview-sheet { padding: 1.4rem; border-radius: 14px; background: var(--studio-surface); color: var(--studio-ink); box-shadow: 0 28px 60px rgba(0, 0, 0, .22); }
.workshop-preview-sheet > span { display: block; margin-bottom: .75rem; color: var(--studio-mint-dark); font-size: .78rem; font-weight: 800; }
.workshop-preview-sheet > div { display: grid; gap: .12rem; padding: .85rem 0; border-top: 1px solid var(--studio-line); }
.workshop-preview-sheet strong { font-size: 1rem; }
.workshop-preview-sheet small { color: #5d6470; line-height: 1.45; }
.workshop-preview-companion { display: grid; grid-template-columns: 84px 1fr; gap: .9rem; align-items: center; }
.workshop-preview-companion img { display: block; width: 84px; filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .22)); }
.workshop-preview-companion p { margin: .25rem 0; color: #d7dbe4; font-size: .82rem; line-height: 1.4; }
.workshop-preview-companion strong { color: #ffffff; }

.workshop-has-started #workshop-intro { display: none; }

.workshop-section {
    width: min(1160px, calc(100% - 2.5rem));
    min-height: 580px;
    margin: 0 auto;
    padding: clamp(2.4rem, 6vw, 5rem) 0;
}
.workshop-section[hidden] { display: none; }
.workshop-section:not([hidden]) { animation: studio-reveal .42s cubic-bezier(.16, 1, .3, 1); }

@keyframes studio-reveal {
    from { opacity: .68; transform: translateY(14px); filter: blur(3px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.workshop-task { padding: 0; border: 0; }
.workshop-question-step { max-width: 900px; margin: 0 auto; }
.workshop-task-meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; color: var(--studio-mint-dark); font-size: .84rem; font-weight: 760; }
.workshop-task-meta span:last-child { color: #6a707b; font-weight: 600; }
.workshop-question-step legend { display: block; max-width: 760px; margin: 0 0 2rem; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.06; }
.workshop-section :is(h1, h2, legend)[tabindex="-1"]:focus { outline: none; }

.workshop-options { display: grid; gap: .7rem; }
.workshop-option,
.workshop-tier-button {
    display: flex;
    align-items: center;
    gap: .9rem;
    width: 100%;
    min-height: 66px;
    padding: 1rem 1.15rem;
    border: 1px solid var(--studio-line);
    border-radius: 14px;
    background: var(--studio-surface);
    color: var(--studio-ink);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.workshop-option:hover,
.workshop-tier-button:hover { border-color: var(--studio-mint-dark); }
.workshop-option[aria-pressed="true"],
.workshop-tier-button[aria-pressed="true"] { border-color: var(--studio-mint-dark); background: rgba(96, 196, 190, .13); box-shadow: inset 0 0 0 1px var(--studio-mint-dark); }
.workshop-option-mark { width: 21px; height: 21px; flex: 0 0 auto; border: 2px solid #a7a9ad; border-radius: 50%; background: transparent; }
.workshop-option[aria-pressed="true"] .workshop-option-mark { border: 6px solid var(--studio-mint-dark); background: var(--studio-surface); }
.workshop-option:focus-visible,
.workshop-tier-button:focus-visible,
.workshop-generated-result:focus-visible,
.workshop-builder-field :is(input, select):focus-visible,
.workshop-focus-nav a:focus-visible,
.workshop-focus-nav button:focus-visible,
.workshop-tier-toggle:focus-visible,
.workshop-inline-action:focus-visible { outline: 3px solid var(--studio-mint); outline-offset: 3px; }

.workshop-question-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.workshop-question-actions .btn { min-width: 130px; }
.workshop-question-actions .btn:disabled,
.workshop-option:disabled { opacity: .48; cursor: not-allowed; box-shadow: none; }
.workshop-back { border: 1px solid var(--studio-line); background: transparent; color: var(--studio-ink); }

.workshop-recommendation-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    padding: clamp(2.2rem, 5vw, 4.5rem);
    border-radius: 16px;
    background: var(--studio-ink);
    color: #d7dbe4;
    box-shadow: var(--studio-shadow);
}
body[data-workshop-page] .workshop-recommendation-main h2 { max-width: 760px; margin: .8rem 0 1rem; color: #ffffff; font-size: clamp(2.35rem, 4.8vw, 4.6rem); line-height: 1; }
.workshop-recommendation-main > p { max-width: 67ch; line-height: 1.65; }
.workshop-tier-label { display: inline-flex; padding: .45rem .72rem; border-radius: 999px; background: var(--studio-mint); color: var(--studio-ink); font-size: .8rem; font-weight: 850; }
.workshop-signal-list { display: grid; gap: .55rem; padding: 0; margin: 1.6rem 0 2rem; list-style: none; }
.workshop-signal-list li { position: relative; padding-left: 1.4rem; color: #eef1f5; }
.workshop-signal-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--studio-mint); }
.workshop-recommendation-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.workshop-tier-toggle { padding: .6rem; border: 0; background: transparent; color: #d7dbe4; }
.workshop-tier-chooser { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin-top: 1rem; }
.workshop-tier-button { justify-content: space-between; }
.workshop-tier-button span { color: #727883; font-size: .78rem; }
.workshop-recommendation-card .workshop-companion { background: rgba(255, 255, 255, .09); color: #d7dbe4; }
.workshop-recommendation-card .workshop-companion strong { color: #ffffff; }

.workshop-progress { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; color: var(--studio-mint-dark); }
.workshop-progress span { font-size: .84rem; font-weight: 760; }
.workshop-progress strong { color: var(--studio-ink); font-size: .92rem; }

.workshop-lesson { display: grid; grid-template-columns: minmax(300px, 4fr) minmax(430px, 7fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.workshop-builder { padding-top: .5rem; }
.workshop-builder h2 { max-width: 16ch; margin: 0 0 1rem; font-size: clamp(2rem, 3.6vw, 3.35rem); line-height: 1.04; }
.workshop-builder > p { max-width: 58ch; line-height: 1.62; }
.workshop-builder-form { display: grid; gap: 1rem; margin-top: 1.6rem; }
.workshop-builder-field { display: grid; gap: .45rem; margin: 0; padding: 0; border: 0; color: var(--studio-ink); font-weight: 760; }
.workshop-builder-field > span,
.workshop-builder-field legend { font-size: .88rem; }
.workshop-builder-field :is(input[type="text"], select) { width: 100%; min-height: 52px; padding: .75rem .85rem; border: 1px solid var(--studio-line); border-radius: 12px; background: var(--studio-surface); color: var(--studio-ink); font: inherit; }
.workshop-builder-checks > div { display: grid; gap: .55rem; }
.workshop-builder-checks label { display: flex; gap: .7rem; align-items: flex-start; padding: .75rem; border-radius: 12px; background: var(--studio-surface); font-weight: 620; line-height: 1.4; }
.workshop-builder-checks input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--studio-mint-dark); }
.workshop-local-note { display: flex; gap: .55rem; align-items: center; margin-top: 1rem; color: #5d6470; font-size: .8rem; }
.workshop-local-note svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: var(--studio-mint-dark); stroke-width: 1.8; }

.workshop-companion { display: grid; grid-template-columns: 40px 1fr; gap: .85rem; align-items: start; padding: 1rem; border-radius: 14px; background: rgba(96, 196, 190, .11); }
.workshop-companion + .workshop-companion { margin-top: .7rem; }
.workshop-companion--ari { background: rgba(233, 185, 95, .13); }
.workshop-companion-avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--studio-ink); color: #ffffff; font-weight: 850; }
.workshop-companion--ari .workshop-companion-avatar { background: var(--studio-warm); color: var(--studio-ink); }
.workshop-companion p { display: grid; gap: .15rem; margin: 0; line-height: 1.45; }
.workshop-companion strong { color: var(--studio-ink); }

.workshop-result-sheet { min-height: 590px; padding: clamp(1.3rem, 3vw, 2rem); border-radius: 16px; background: #ffffff; box-shadow: var(--studio-shadow); }
.workshop-result-sheet > header { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--studio-line); }
.workshop-result-sheet > header span { color: var(--studio-mint-dark); font-size: .8rem; font-weight: 820; }
.workshop-result-sheet > header small { color: #5d6470; font-weight: 700; }
.workshop-generated-result { min-height: 320px; margin: 0; padding: 1.5rem 0; overflow: visible; white-space: pre-wrap; color: var(--studio-ink); font: 500 .96rem/1.62 "Figtree Aorix", Inter, sans-serif; }
.workshop-upgrade-preview { padding: 1rem; border-radius: 14px; background: rgba(96, 196, 190, .11); }
.workshop-upgrade-preview > span { color: var(--studio-ink); font-size: .86rem; font-weight: 800; }
.workshop-upgrade-preview ul,
.workshop-gate-benefits { display: grid; gap: .45rem; padding: 0; margin: .7rem 0 0; list-style: none; }
.workshop-upgrade-preview li,
.workshop-gate-benefits li { position: relative; padding-left: 1.25rem; line-height: 1.45; }
.workshop-upgrade-preview li::before,
.workshop-gate-benefits li::before { content: ""; position: absolute; left: 0; top: .58em; width: 7px; height: 7px; border-radius: 50%; background: var(--studio-mint-dark); }
.workshop-result-actions { display: flex; justify-content: flex-end; gap: .75rem; margin-top: 1rem; }
.workshop-result-sheet > .workshop-companion { margin-top: 1rem; }

.workshop-transition {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    overflow: hidden;
    border-radius: 16px;
    background: var(--studio-ink);
    box-shadow: var(--studio-shadow);
}
.workshop-transition-copy { padding: clamp(2.2rem, 5vw, 4.5rem); color: #d7dbe4; }
body[data-workshop-page] .workshop-transition-copy h2 { margin: 0 0 .8rem; color: #ffffff; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.02; }
.workshop-transition-copy > p { max-width: 58ch; line-height: 1.65; }
.workshop-transition-copy .workshop-gate-benefits { margin: 1rem 0 1.5rem; color: #eef1f5; }
.workshop-transition-copy .workshop-gate-benefits li::before { background: var(--studio-mint); }
.workshop-section-label { display: block; margin: .8rem 0 1rem; color: var(--studio-mint); font-size: .85rem; font-weight: 780; }
.workshop-inline-action { margin: .5rem 0 1.5rem; padding: 0; border: 0; background: transparent; color: #eef1f5; }
.workshop-transition-copy .workshop-companion { margin-top: 1rem; background: rgba(255, 255, 255, .09); color: #d7dbe4; }
.workshop-transition-copy .workshop-companion strong { color: #ffffff; }
.workshop-email-form { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 3.5rem); background: var(--studio-surface); }
.workshop-email-form > label:first-child { color: var(--studio-ink); font-weight: 760; }
.workshop-email-form input[type="email"] { width: 100%; min-height: 52px; margin: .45rem 0 .4rem; padding: .8rem .9rem; border: 1px solid var(--studio-line); border-radius: 12px; background: #ffffff; color: var(--studio-ink); font: inherit; }
.workshop-service-note { margin: 0 0 1.25rem; color: #666d78; font-size: .84rem; }
.workshop-consent { display: flex; gap: .7rem; align-items: flex-start; margin: 0 0 1.35rem; line-height: 1.48; }
.workshop-consent input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--studio-mint-dark); }
.workshop-status,
.workshop-expiry { min-height: 1.5rem; margin-top: .8rem; color: var(--studio-ink-soft); font-weight: 700; }

.workshop-return-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1160px;
    margin: .8rem auto 0;
    padding: clamp(2rem, 4vw, 3.5rem);
    border-radius: 16px;
    background: var(--studio-ink);
    color: #d7dbe4;
    box-shadow: var(--studio-shadow);
}
body[data-workshop-page] .workshop-return-hero h1 { margin: 0; color: #ffffff; font-size: clamp(2.4rem, 4.8vw, 4.6rem); line-height: 1; }
.workshop-return-hero p { max-width: 65ch; line-height: 1.6; }
.workshop-return-companion { grid-template-columns: 120px 1fr; align-items: center; background: rgba(255, 255, 255, .09); color: #d7dbe4; }
.workshop-return-companion strong { color: #ffffff; }
.workshop-return-companion img { width: 120px; height: 120px; object-fit: contain; }

.workshop-loading { display: flex; align-items: center; justify-content: center; gap: .8rem; min-height: 220px; }
.workshop-loading-mark { width: 14px; height: 14px; border-radius: 50%; background: var(--studio-mint); animation: loading-pulse 1s ease-in-out infinite alternate; }
@keyframes loading-pulse { to { transform: scale(.65); opacity: .45; } }

.workshop-message-state { max-width: 680px; margin: 0 auto; text-align: center; }
.workshop-message-state > span { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(96, 196, 190, .15); color: var(--studio-mint-dark); font-size: 1.3rem; font-weight: 850; }
.workshop-message-state h2 { margin-bottom: .8rem; font-size: clamp(2rem, 4vw, 3.2rem); }

.workshop-summary-shell {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 16px;
    background: rgba(96, 196, 190, .15);
}
.workshop-summary-mark { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--studio-mint-dark); color: #ffffff; font-size: 1.45rem; font-weight: 850; }
.workshop-summary-shell h2 { max-width: 800px; margin: 0; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.03; }
.workshop-summary-shell p { max-width: 70ch; line-height: 1.65; }

.workshop-offer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
    overflow: hidden;
    border-radius: 16px;
    background: var(--studio-ink);
    box-shadow: var(--studio-shadow);
}
.workshop-offer-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.4rem, 5vw, 4.6rem); color: #d7dbe4; }
body[data-workshop-page] .workshop-offer-copy h2 { margin: 0; color: #ffffff; font-size: clamp(2.4rem, 4.5vw, 4.4rem); line-height: 1; }
.workshop-offer-copy p { max-width: 58ch; line-height: 1.65; }
.workshop-offer-choice { padding: clamp(2rem, 4vw, 3.4rem); background: var(--studio-surface); }
.workshop-offer-card h3 { margin: 0 0 1rem; font-size: 1.35rem; }
.workshop-price { display: grid; grid-template-columns: auto 1fr; gap: .15rem .45rem; align-items: end; margin: 0 0 1rem; color: var(--studio-ink); }
.workshop-price strong { font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: .95; letter-spacing: -.04em; }
.workshop-price span { padding-bottom: .35rem; color: #666d78; }
.workshop-price del { grid-column: 1 / -1; color: #666d78; font-size: .94rem; }
.workshop-offer-terms { padding: 1rem 0; border-top: 1px solid var(--studio-line); border-bottom: 1px solid var(--studio-line); line-height: 1.55; }
#workshop-checkout-form .btn { width: 100%; margin-top: .3rem; }

.workshop-footer { margin-top: 0; background: var(--studio-ink); }
.workshop-footer .footer-container { padding-top: 2rem; padding-bottom: 2rem; }
.workshop-footer .footer-brand { display: flex; align-items: center; gap: 1rem; }
.workshop-footer .logo-img-footer { height: 42px; }

@media (max-width: 980px) {
    .workshop-hero { width: calc(100% - 2rem); grid-template-columns: 1fr; }
    .workshop-outcome-preview { grid-template-columns: minmax(0, 1fr) minmax(220px, .7fr); align-items: center; }
    .workshop-lesson { grid-template-columns: 1fr; }
    .workshop-result-sheet { min-height: auto; }
    .workshop-transition,
    .workshop-return-hero,
    .workshop-offer-shell { grid-template-columns: 1fr; }
    .workshop-recommendation-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .workshop-focus-nav { min-height: 64px; padding: .6rem 1rem; }
    .workshop-brand img { height: 36px; }
    .workshop-brand span,
    .workshop-quiet-link,
    .workshop-context-menu { display: none; }
    .workshop-assistant-button { min-height: 44px !important; padding: .65rem .85rem !important; font-size: .84rem; }

    .workshop-stage { padding: .9rem 1rem 1rem; }
    .workshop-stage-steps { display: none; }
    .workshop-stage-copy { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--studio-mint-dark); font-size: .78rem; }
    .workshop-stage-title { color: var(--studio-ink); font-size: .86rem; }
    .workshop-stage-progress { display: block; height: 4px; margin-top: .65rem; overflow: hidden; border-radius: 99px; background: #ddd9d1; }
    .workshop-stage-progress span { display: block; width: 20%; height: 100%; border-radius: inherit; background: var(--studio-mint-dark); }

    .workshop-hero { width: calc(100% - 1rem); min-height: auto; margin-top: 0; padding: 2.25rem 1.2rem 1.4rem; border-radius: 14px; }
    body[data-workshop-page] .workshop-hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
    .workshop-hero-lead { font-size: 1rem; }
    .workshop-trust-row { display: grid; margin: 1.5rem 0; }
    .workshop-start-button { width: 100%; }
    .workshop-outcome-preview { grid-template-columns: 1fr; }
    .workshop-preview-sheet { padding: 1rem; }
    .workshop-preview-companion { grid-template-columns: 72px 1fr; }
    .workshop-preview-companion img { width: 72px; }

    .workshop-section { width: calc(100% - 2rem); min-height: 500px; padding: 2.5rem 0; }
    .workshop-task-meta { align-items: flex-start; }
    .workshop-task-meta span:last-child { max-width: 150px; text-align: right; }
    .workshop-question-step legend { font-size: clamp(2rem, 9vw, 2.8rem); }
    .workshop-options,
    .workshop-tier-chooser { grid-template-columns: 1fr; }
    .workshop-option { min-height: 62px; }
    .workshop-question-actions { position: sticky; bottom: .6rem; z-index: 4; padding: .65rem; border-radius: 14px; background: rgba(247, 245, 239, .96); box-shadow: 0 12px 30px rgba(32, 40, 60, .13); }
    .workshop-question-actions .btn { min-width: 0; flex: 1; }

    .workshop-recommendation-card { padding: 2rem 1.2rem; }
    body[data-workshop-page] .workshop-recommendation-main h2 { font-size: clamp(2.3rem, 10vw, 3.5rem); }
    .workshop-recommendation-actions { align-items: stretch; }
    .workshop-recommendation-actions .btn { width: 100%; }

    .workshop-progress { align-items: flex-start; }
    .workshop-builder h2 { max-width: none; font-size: clamp(2rem, 9vw, 3rem); }
    .workshop-result-sheet { margin-inline: -.4rem; padding: 1.15rem; }
    .workshop-generated-result { min-height: 280px; font-size: .9rem; }
    .workshop-result-sheet > header { display: grid; gap: .2rem; }
    .workshop-result-actions { display: grid; grid-template-columns: .8fr 1.2fr; }

    .workshop-transition-copy,
    .workshop-email-form,
    .workshop-offer-copy,
    .workshop-offer-choice { padding: 2rem 1.2rem; }
    .workshop-return-hero { width: calc(100% - 1rem); margin-top: 0; padding: 2rem 1.2rem; border-radius: 14px; }
    .workshop-return-companion { grid-template-columns: 80px 1fr; }
    .workshop-return-companion img { width: 80px; height: 80px; }
    .workshop-summary-shell { grid-template-columns: 1fr; padding: 2rem 1.2rem; }
    .workshop-summary-mark { width: 46px; height: 46px; }
    .workshop-price { grid-template-columns: 1fr; }
    .workshop-price span { padding: 0; }

}

@media (prefers-reduced-motion: reduce) {
    body[data-workshop-page] *,
    body[data-workshop-page] *::before,
    body[data-workshop-page] *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Academy probe lesson: one decision per view, then a dominant result. */
.workshop-probe-lesson {
    display: grid;
    grid-template-columns: minmax(150px, .28fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 4vw, 3.5rem);
}

.workshop-lesson-rail {
    display: grid;
    align-content: start;
    gap: .65rem;
    position: sticky;
    top: 1rem;
    grid-row: 1 / span 5;
}

.workshop-lesson-rail span {
    padding: .75rem .85rem;
    border-radius: 12px;
    background: rgba(96, 196, 190, .1);
    color: var(--studio-mint-dark);
    font-size: .84rem;
    font-weight: 760;
}

.workshop-lesson-rail .is-active { background: var(--studio-mint-dark); color: #fff; }
.workshop-lesson-rail .is-complete { box-shadow: inset 3px 0 0 var(--studio-mint-dark); }
.workshop-lesson-intro,
.workshop-before-card,
.workshop-actions,
.workshop-after-card { grid-column: 2; }
.workshop-lesson-intro h2 { max-width: 20ch; margin: .75rem 0; font-size: clamp(2.1rem, 4.2vw, 4rem); line-height: 1.02; }
.workshop-before-card { padding: 1.25rem; border-radius: 14px; background: #f0ede6; }
.workshop-before-card > span,
.workshop-after-card > span,
.workshop-action-count { color: var(--studio-mint-dark); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.workshop-actions { display: grid; gap: 1rem; }
.workshop-lesson-action { margin: 0; padding: 1.15rem; border: 1px solid var(--studio-line); border-radius: 14px; background: var(--studio-surface); }
.workshop-lesson-action legend { padding: 0 .35rem; font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 800; }
.workshop-lesson-action > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; margin-top: .8rem; }
.workshop-lesson-choice { min-height: 52px; padding: .8rem; border: 1px solid var(--studio-line); border-radius: 11px; background: #fff; color: var(--studio-ink); text-align: left; cursor: pointer; }
.workshop-lesson-choice:hover,
.workshop-lesson-choice:focus-visible { border-color: var(--studio-mint-dark); box-shadow: 0 0 0 3px rgba(96, 196, 190, .18); }
.workshop-after-card { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid rgba(63, 119, 122, .35); border-radius: 16px; background: #fff; box-shadow: var(--studio-shadow); }
.workshop-after-card h3 { margin: .45rem 0 1rem; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.workshop-result-row { display: grid; grid-template-columns: minmax(90px, .28fr) 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--studio-line); }
.workshop-learning-point { margin-top: 1.25rem; padding: 1rem; border-left: 4px solid var(--studio-warm); border-radius: 10px; background: rgba(233, 185, 95, .13); }
.workshop-result-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.workshop-own-tool-note { max-width: 62ch; color: var(--studio-muted); font-size: .9rem; }
.workshop-external-repeat { min-height: 48px; padding: .75rem 1rem; border: 1px solid var(--studio-mint-dark); border-radius: 12px; color: var(--studio-mint-dark); background: rgba(96, 196, 190, .08); font-weight: 800; }
.workshop-copy-status { min-height: 1.4em; color: var(--studio-mint-dark); font-weight: 700; }
.workshop-complete { margin-top: 1rem; }

@media (max-width: 760px) {
    .workshop-probe-lesson { grid-template-columns: 1fr; }
    .workshop-lesson-rail { position: static; grid-row: auto; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .3rem; overflow: hidden; }
    .workshop-lesson-rail span { padding: .55rem .35rem; text-align: center; font-size: .7rem; }
    .workshop-lesson-intro,
    .workshop-before-card,
    .workshop-actions,
    .workshop-after-card { grid-column: 1; }
    .workshop-lesson-action > div,
    .workshop-result-row { grid-template-columns: 1fr; }
    .workshop-result-actions { display: grid; }
    .workshop-result-actions .btn,
    .workshop-complete { width: 100%; }
}
