/**
 * Webbotica — Content Creation service page
 */

:root {
    --wb-content-primary: var(--color-primary, #496af9);
    --wb-content-primary-dark: #3452d6;
    --wb-content-surface: var(--color-surface, #ffffff);
    --wb-content-heading: var(--color-heading, #111827);
    --wb-content-copy: var(--color-paragraph, #6b7280);
    --wb-content-border: var(--color-border, #e5e7eb);
    --wb-content-soft: #f7f8fb;
    --wb-content-container: var(--container-width, 1240px);
    --wb-content-gutter: var(--container-padding, 24px);
    --wb-content-radius-sm: 10px;
    --wb-content-radius-md: 16px;
    --wb-content-radius-lg: 22px;
    --wb-content-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.wb-content-page,
.wb-content,
.wb-content * { box-sizing: border-box; }

.wb-content {
    background: #fff;
    color: var(--wb-content-heading);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: clip;
}

.wb-content a { color: inherit; }
.wb-content button,
.wb-content input { font: inherit; }

.wb-content__container {
    width: min(calc(100% - (var(--wb-content-gutter) * 2)), var(--wb-content-container));
    margin-inline: auto;
}

.wb-content__eyebrow {
    margin: 0 0 14px;
    color: var(--wb-content-primary);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.14em;
    line-height: 1.25;
}

.wb-content__button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.wb-content__button:hover { transform: translateY(-2px); }
.wb-content__button:focus-visible,
.wb-content button:focus-visible,
.wb-content a:focus-visible,
.wb-content summary:focus-visible,
.wb-content input:focus-visible + span {
    outline: 3px solid rgba(73, 106, 249, 0.24);
    outline-offset: 3px;
}

.wb-content__button--primary {
    background: var(--wb-content-primary);
    color: #fff !important;
}

.wb-content__button--primary:hover { background: var(--wb-content-primary-dark); }

.wb-content__button--text {
    padding-inline: 2px;
    border-radius: 0;
    border-bottom-color: var(--wb-content-heading);
    background: transparent;
    color: var(--wb-content-heading) !important;
}

.wb-content__button--text:hover {
    border-bottom-color: var(--wb-content-primary);
    color: var(--wb-content-primary) !important;
}

.wb-content-section {
    scroll-margin-top: calc(var(--site-header-height, 72px) + 58px);
    padding: clamp(78px, 7.2vw, 108px) 0;
    background: #fff;
}

.wb-content-section + .wb-content-section {
    border-top: 1px solid rgba(229, 231, 235, 0.84);
}

.wb-content-heading {
    max-width: 860px;
    margin-bottom: clamp(38px, 4.2vw, 56px);
}

.wb-content-heading h2 {
    max-width: 830px;
    margin: 0;
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 720;
    letter-spacing: -0.055em;
    line-height: 1.06;
}

.wb-content-heading > p:last-child {
    max-width: 740px;
    margin: 22px 0 0;
    color: var(--wb-content-copy);
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.75;
}

/* Hero */
.wb-content-hero {
    display: flex;
    align-items: center;
    padding: clamp(78px, 7vw, 104px) 0 clamp(70px, 6.5vw, 92px);
    background: #fff;
}

.wb-content-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
    align-items: center;
    gap: clamp(54px, 6vw, 82px);
}

.wb-content-hero__copy { min-width: 0; }

.wb-content-hero__copy h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.9rem, 3.8vw, 3.9rem);
    font-weight: 720;
    letter-spacing: -0.058em;
    line-height: 1.035;
    text-wrap: balance;
}

.wb-content-hero__lead {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--wb-content-copy);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.72;
}

.wb-content-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}

.wb-content-hero__note {
    margin: 18px 0 0;
    color: #858d99;
    font-size: 0.78rem;
    line-height: 1.55;
}

.wb-content-hero__visual { min-width: 0; }

.wb-content-workbench {
    padding: 20px;
    border: 1px solid var(--wb-content-border);
    border-radius: var(--wb-content-radius-lg);
    background: #fff;
    box-shadow: 0 22px 62px rgba(17, 24, 39, 0.075);
}

.wb-content-workbench__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 3px 2px 17px;
    border-bottom: 1px solid var(--wb-content-border);
}

.wb-content-workbench__header div { min-width: 0; }
.wb-content-workbench__header small,
.wb-content-workbench__plan > p,
.wb-content-workbench__outputs > small {
    display: block;
    margin: 0;
    color: var(--wb-content-primary);
    font-size: 0.59rem;
    font-weight: 780;
    letter-spacing: 0.12em;
}
.wb-content-workbench__header strong {
    display: block;
    margin-top: 6px;
    font-size: 0.86rem;
    line-height: 1.45;
}
.wb-content-workbench__header > span {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(73, 106, 249, 0.2);
    border-radius: 999px;
    color: var(--wb-content-primary);
    font-size: 0.61rem;
    font-weight: 720;
}

.wb-content-workbench__body {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(205px, 0.96fr);
    gap: 14px;
    padding: 17px 0;
}

.wb-content-workbench__plan,
.wb-content-workbench__preview {
    border: 1px solid var(--wb-content-border);
    border-radius: 15px;
    background: #fff;
}

.wb-content-workbench__plan { padding: 17px; }
.wb-content-workbench__plan h3 {
    max-width: 300px;
    margin: 10px 0 0;
    font-size: 1.04rem;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.wb-content-workbench__stages {
    display: grid;
    gap: 7px;
    margin-top: 16px;
}
.wb-content-workbench__stages article {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px 9px;
    border: 1px solid #e8eaf0;
    border-radius: 10px;
}
.wb-content-workbench__stages article > span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #f1f3f8;
    color: var(--wb-content-primary);
    font-size: 0.58rem;
    font-weight: 780;
}
.wb-content-workbench__stages strong,
.wb-content-workbench__stages small { display: block; }
.wb-content-workbench__stages strong { font-size: 0.71rem; }
.wb-content-workbench__stages small { margin-top: 2px; color: var(--wb-content-copy); font-size: 0.57rem; line-height: 1.3; }

.wb-content-workbench__preview { padding: 13px; }
.wb-content-workbench__preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.wb-content-workbench__preview-head span { color: var(--wb-content-primary); font-size: 0.56rem; font-weight: 780; letter-spacing: 0.1em; }
.wb-content-workbench__preview-head small { color: #8a929e; font-size: 0.55rem; }
.wb-content-workbench__frame {
    min-height: 216px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    border: 1px solid #e6e9ef;
    border-radius: 12px;
    background: #f6f7f9;
}
.wb-content-workbench__play {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    border: 1px solid rgba(73, 106, 249, 0.23);
    border-radius: 50%;
    background: #fff;
    color: var(--wb-content-primary);
}
.wb-content-workbench__play svg { width: 18px; height: 18px; fill: currentColor; }
.wb-content-workbench__frame strong { max-width: 170px; font-size: 0.82rem; line-height: 1.3; }
.wb-content-workbench__frame > div:last-child { display: flex; gap: 5px; margin-top: 12px; }
.wb-content-workbench__frame i { width: 25px; height: 4px; border-radius: 999px; background: #c9ced8; }
.wb-content-workbench__frame i:first-child { width: 50px; background: var(--wb-content-primary); }
.wb-content-workbench__preview-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.wb-content-workbench__preview-meta span {
    padding: 6px 8px;
    border: 1px solid var(--wb-content-border);
    border-radius: 999px;
    color: #667080;
    font-size: 0.55rem;
    font-weight: 650;
}

.wb-content-workbench__outputs {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--wb-content-border);
}
.wb-content-workbench__outputs > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.wb-content-workbench__outputs span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 8px;
    border: 1px solid var(--wb-content-border);
    border-radius: 9px;
    color: #5f6979;
    font-size: 0.58rem;
    font-weight: 650;
    text-align: center;
}

/* Chapter navigation */
.wb-content-chapters {
    position: sticky;
    top: var(--site-header-height, 72px);
    z-index: 30;
    border-block: 1px solid rgba(229, 231, 235, 0.9);
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
}

.wb-content-chapters > .wb-content__container {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.wb-content-chapters__label {
    flex: 0 0 auto;
    color: #949ca8;
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wb-content-chapters__toggle { display:none; }
.wb-content-chapters__links { display:flex; align-items:center; gap:24px; margin-left:auto; }
.wb-content-chapters__links a {
    position: relative;
    padding: 21px 0 18px;
    color: #687182;
    font-size: 0.73rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}
.wb-content-chapters__links a::after {
    position:absolute; right:0; bottom:-1px; left:0; height:2px; background:var(--wb-content-primary); content:""; transform:scaleX(0); transform-origin:left; transition:transform 180ms ease;
}
.wb-content-chapters__links a:hover,
.wb-content-chapters__links a.is-active { color:var(--wb-content-heading); }
.wb-content-chapters__links a.is-active::after { transform:scaleX(1); }

/* Shared cards */
.wb-content-purpose-grid,
.wb-content-channel-grid {
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:14px;
}

.wb-content-purpose-grid article,
.wb-content-channel-grid article,
.wb-content-process-grid article,
.wb-content-camera-grid article,
.wb-content-support-grid article {
    border:1px solid var(--wb-content-border);
    border-radius:var(--wb-content-radius-md);
    background:#fff;
}

.wb-content-purpose-grid article,
.wb-content-channel-grid article { min-height:210px; padding:25px; }
.wb-content-card-title,
.wb-content-process-grid__title {
    display:flex;
    align-items:center;
    gap:11px;
}
.wb-content-card-title > span,
.wb-content-process-grid__title > span {
    flex:0 0 auto;
    color:var(--wb-content-primary);
    font-size:0.67rem;
    font-weight:780;
    letter-spacing:0.08em;
}
.wb-content-card-title h3,
.wb-content-process-grid__title h3 { margin:0; font-size:1.02rem; letter-spacing:-0.025em; }
.wb-content-purpose-grid article > p,
.wb-content-channel-grid article > p { margin:17px 0 0; color:var(--wb-content-copy); font-size:0.88rem; line-height:1.7; }
.wb-content-channel-grid article > a { display:inline-block; margin-top:18px; color:var(--wb-content-primary); font-size:0.75rem; font-weight:700; text-decoration:none; }

/* Flexible builder */
.wb-content-builder {
    border: 1px solid var(--wb-content-border);
    border-radius: var(--wb-content-radius-lg);
    overflow: hidden;
    background: #fff;
}
.wb-content-builder__controls { padding: clamp(27px, 3vw, 38px); }
.wb-content-builder__question + .wb-content-builder__question { margin-top: 24px; padding-top: 23px; border-top: 1px solid var(--wb-content-border); }
.wb-content-builder__question > p,
.wb-content-builder__question-head p { margin: 0 0 13px; font-size: 0.9rem; font-weight: 720; }
.wb-content-builder__question-head { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; }
.wb-content-builder__question-head small { color: #929aa6; font-size: 0.66rem; }
.wb-content-choice-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.wb-content-choice-grid--goals { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wb-content-choice-grid label,
.wb-content-module-grid label { position: relative; cursor: pointer; }
.wb-content-choice-grid input,
.wb-content-module-grid input { position: absolute; opacity: 0; pointer-events: none; }
.wb-content-choice-grid span {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 11px;
    border: 1px solid var(--wb-content-border);
    border-radius: 10px;
    color: #626c7c;
    font-size: 0.72rem;
    font-weight: 650;
    text-align: center;
    transition: 160ms ease;
}
.wb-content-choice-grid input:checked + span {
    border-color: rgba(73, 106, 249, 0.48);
    background: rgba(73, 106, 249, 0.06);
    color: var(--wb-content-primary);
}
.wb-content-module-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.wb-content-module-grid label > span {
    min-height: 92px;
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-content: center;
    gap: 4px 9px;
    padding: 13px;
    border: 1px solid var(--wb-content-border);
    border-radius: 12px;
    transition: 160ms ease;
}
.wb-content-module-grid b {
    grid-row: 1 / span 2;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #f1f3f8;
    color: var(--wb-content-primary);
    font-size: 0.59rem;
}
.wb-content-module-grid strong { align-self: end; font-size: 0.78rem; }
.wb-content-module-grid small { color: var(--wb-content-copy); font-size: 0.6rem; line-height: 1.4; }
.wb-content-module-grid input:checked + span { border-color: rgba(73, 106, 249, 0.48); background: rgba(73, 106, 249, 0.045); }
.wb-content-module-grid input:checked + span b { background: var(--wb-content-primary); color: #fff; }

.wb-content-builder__result {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: start;
    padding: clamp(27px, 3.2vw, 42px);
    border-top: 1px solid var(--wb-content-border);
    background: #fbfbfc;
}
.wb-content-builder__result h3 { max-width: 650px; margin: 0; font-size: clamp(1.55rem, 2.25vw, 2.15rem); line-height: 1.16; letter-spacing: -0.043em; }
.wb-content-builder__result-summary > p:not(.wb-content__eyebrow) { max-width: 680px; margin: 14px 0 0; color: var(--wb-content-copy); font-size: 0.86rem; line-height: 1.65; }
.wb-content-builder__selection { margin-top: 19px; padding-top: 18px; border-top: 1px solid var(--wb-content-border); }
.wb-content-builder__selection > small { color: #929aa6; font-size: 0.59rem; font-weight: 760; letter-spacing: 0.1em; }
.wb-content-builder__selection > div { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.wb-content-builder__selection span { padding: 6px 9px; border: 1px solid rgba(73, 106, 249, 0.2); border-radius: 999px; color: var(--wb-content-primary); font-size: 0.63rem; font-weight: 700; background: #fff; }
.wb-content-builder__result ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
.wb-content-builder__result li { position: relative; padding: 11px 11px 11px 28px; border: 1px solid var(--wb-content-border); border-radius: 10px; color: #596374; font-size: 0.68rem; line-height: 1.45; background: #fff; }
.wb-content-builder__result li::before { position: absolute; left: 12px; top: 16px; width: 5px; height: 5px; border-radius: 50%; background: var(--wb-content-primary); content: ""; }
.wb-content-builder__result-action { display: grid; gap: 13px; }
.wb-content-builder__price-note { margin: 0; padding: 17px; border: 1px solid var(--wb-content-border); border-radius: 13px; background: #fff; }
.wb-content-builder__price-note strong { font-size: 0.75rem; }
.wb-content-builder__price-note p { margin: 7px 0 0; color: var(--wb-content-copy); font-size: 0.69rem; line-height: 1.55; }
.wb-content-builder__result-action .wb-content__button { width: 100%; }

/* Repurpose */
.wb-content-repurpose {
    display:grid;
    grid-template-columns:minmax(260px,.7fr) 80px minmax(0,1.3fr);
    align-items:center;
    gap:0;
    padding:clamp(28px,4vw,50px);
    border:1px solid var(--wb-content-border);
    border-radius:var(--wb-content-radius-lg);
}
.wb-content-repurpose__source { padding:26px; border:1px solid rgba(73,106,249,.24); border-radius:16px; background:rgba(73,106,249,.035); }
.wb-content-repurpose__source > span { color:var(--wb-content-primary); font-size:.64rem; font-weight:780; letter-spacing:.12em; }
.wb-content-repurpose__source strong { display:block; margin-top:12px; font-size:1.15rem; line-height:1.45; }
.wb-content-repurpose__source p { margin:13px 0 0; color:var(--wb-content-copy); font-size:.76rem; line-height:1.55; }
.wb-content-repurpose__line { height:1px; background:#ccd2de; }
.wb-content-repurpose__outputs { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:11px; }
.wb-content-repurpose__outputs article { display:grid; grid-template-columns:30px minmax(0,1fr); align-items:center; gap:11px; padding:15px; border:1px solid var(--wb-content-border); border-radius:12px; }
.wb-content-repurpose__outputs article > span { width:30px; height:30px; display:grid; place-items:center; border-radius:8px; background:#f1f3f8; color:var(--wb-content-primary); font-size:.62rem; font-weight:760; }
.wb-content-repurpose__outputs strong,
.wb-content-repurpose__outputs small { display:block; }
.wb-content-repurpose__outputs strong { font-size:.76rem; }
.wb-content-repurpose__outputs small { margin-top:3px; color:var(--wb-content-copy); font-size:.62rem; line-height:1.35; }

/* Process */
.wb-content-process-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.wb-content-process-grid article { padding:26px; }
.wb-content-process-grid article > p { margin:17px 0 0; color:var(--wb-content-copy); font-size:.82rem; line-height:1.65; }
.wb-content-process-grid ul { display:grid; gap:8px; margin:20px 0 0; padding:18px 0 0; border-top:1px solid var(--wb-content-border); list-style:none; }
.wb-content-process-grid li { color:#626c7b; font-size:.71rem; }

/* Ideas */
.wb-content-ideas { border:1px solid var(--wb-content-border); border-radius:var(--wb-content-radius-lg); overflow:hidden; }
.wb-content-ideas__tabs { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); border-bottom:1px solid var(--wb-content-border); }
.wb-content-ideas__tabs button { min-height:58px; border:0; border-right:1px solid var(--wb-content-border); background:#fff; color:#697284; font-size:.77rem; font-weight:700; cursor:pointer; }
.wb-content-ideas__tabs button:last-child { border-right:0; }
.wb-content-ideas__tabs button.is-active { background:#f8f9ff; color:var(--wb-content-primary); }
.wb-content-ideas__panel { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:60px; align-items:start; padding:clamp(30px,4.5vw,58px); }
.wb-content-ideas__panel h3 { margin:0; font-size:clamp(1.8rem,3vw,2.9rem); letter-spacing:-.045em; line-height:1.1; }
.wb-content-ideas__panel > div > p:last-child { margin:18px 0 0; color:var(--wb-content-copy); line-height:1.7; }
.wb-content-ideas__panel ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:11px; margin:0; padding:0; list-style:none; }
.wb-content-ideas__panel li { min-height:78px; display:flex; align-items:center; padding:16px; border:1px solid var(--wb-content-border); border-radius:12px; color:#596374; font-size:.78rem; line-height:1.5; }

/* Camera */
.wb-content-camera-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.wb-content-camera-grid article { display:grid; grid-template-columns:48px minmax(0,1fr); align-items:start; gap:18px; min-height:150px; padding:26px; }
.wb-content-icon { width:48px; height:48px; display:grid; place-items:center; border:1px solid rgba(73,106,249,.2); border-radius:13px; color:var(--wb-content-primary); background:rgba(73,106,249,.04); }
.wb-content-icon svg { width:23px; height:23px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.wb-content-camera-grid h3 { margin:1px 0 0; font-size:1rem; }
.wb-content-camera-grid p { margin:11px 0 0; color:var(--wb-content-copy); font-size:.82rem; line-height:1.65; }

/* Metrics */
.wb-content-metrics { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr); gap:16px; }
.wb-content-metrics__chart,
.wb-content-metrics__cards article { border:1px solid var(--wb-content-border); border-radius:var(--wb-content-radius-md); }
.wb-content-metrics__chart { padding:28px; }
.wb-content-metrics__chart-head { display:flex; justify-content:space-between; align-items:flex-start; gap:20px; }
.wb-content-metrics__chart-head small,
.wb-content-metrics__chart-head strong { display:block; }
.wb-content-metrics__chart-head small { color:var(--wb-content-primary); font-size:.62rem; font-weight:780; letter-spacing:.11em; }
.wb-content-metrics__chart-head strong { margin-top:8px; font-size:1rem; }
.wb-content-metrics__chart-head > span { color:#9aa1ac; font-size:.62rem; }
.wb-content-metrics__bars { height:210px; display:flex; align-items:flex-end; gap:16px; margin-top:28px; padding:0 10px 28px; border-bottom:1px solid var(--wb-content-border); }
.wb-content-metrics__bars i { position:relative; flex:1; height:var(--h); border-radius:8px 8px 2px 2px; background:#dfe4f3; }
.wb-content-metrics__bars i:nth-last-child(-n+2) { background:var(--wb-content-primary); }
.wb-content-metrics__bars span { position:absolute; bottom:-22px; left:50%; transform:translateX(-50%); color:#929aa6; font-size:.58rem; font-style:normal; }
.wb-content-metrics__chart > p { margin:22px 0 0; color:var(--wb-content-copy); font-size:.75rem; line-height:1.55; }
.wb-content-metrics__cards { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.wb-content-metrics__cards article { display:grid; grid-template-columns:31px minmax(0,1fr); align-items:start; gap:11px; padding:20px; }
.wb-content-metrics__cards article > span { width:31px; height:31px; display:grid; place-items:center; border-radius:9px; background:#f1f3f8; color:var(--wb-content-primary); font-size:.62rem; font-weight:780; }
.wb-content-metrics__cards strong,
.wb-content-metrics__cards small { display:block; }
.wb-content-metrics__cards strong { font-size:.78rem; }
.wb-content-metrics__cards small { margin-top:7px; color:var(--wb-content-copy); font-size:.65rem; line-height:1.5; }

/* Support */
.wb-content-support-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.wb-content-support-grid article { padding:28px; }
.wb-content-support-grid h3 { margin:0; font-size:1.25rem; line-height:1.35; letter-spacing:-.03em; }
.wb-content-support-grid ul { display:grid; gap:10px; margin:22px 0 0; padding:20px 0 0; border-top:1px solid var(--wb-content-border); list-style:none; }
.wb-content-support-grid li { position:relative; padding-left:17px; color:#5f6979; font-size:.73rem; line-height:1.5; }
.wb-content-support-grid li::before { position:absolute; left:0; top:.55em; width:5px; height:5px; border-radius:50%; background:var(--wb-content-primary); content:""; }
.wb-content-boundary { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr); gap:60px; align-items:end; margin-top:16px; padding:32px; border:1px solid var(--wb-content-border); border-radius:var(--wb-content-radius-md); }
.wb-content-boundary h3 { margin:0; font-size:clamp(1.45rem,2.5vw,2.25rem); line-height:1.22; letter-spacing:-.04em; }
.wb-content-boundary > p { margin:0; color:var(--wb-content-copy); font-size:.82rem; line-height:1.7; }

.wb-content-faq { max-width:920px; margin:56px auto 0; border-top:1px solid var(--wb-content-border); }
.wb-content-faq details { border-bottom:1px solid var(--wb-content-border); }
.wb-content-faq summary { position:relative; padding:23px 44px 23px 0; cursor:pointer; list-style:none; font-size:.9rem; font-weight:700; }
.wb-content-faq summary::-webkit-details-marker { display:none; }
.wb-content-faq summary::after { position:absolute; right:4px; top:50%; width:10px; height:10px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; content:""; transform:translateY(-65%) rotate(45deg); transition:transform 160ms ease; }
.wb-content-faq details[open] summary::after { transform:translateY(-35%) rotate(225deg); }
.wb-content-faq details p { max-width:760px; margin:-5px 0 23px; color:var(--wb-content-copy); font-size:.82rem; line-height:1.7; }

/* Reveal */
.wb-content.is-reveal-ready [data-reveal] { opacity:0; transform:translateY(18px); transition:opacity 600ms ease, transform 600ms ease; }
.wb-content.is-reveal-ready [data-reveal].is-visible { opacity:1; transform:none; }

@media (max-width: 1120px) {
    .wb-content-hero__grid { grid-template-columns:minmax(0,1fr) minmax(450px,.92fr); gap:44px; }
    .wb-content-workbench__body { grid-template-columns:1fr; }
    .wb-content-workbench__stages { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-workbench__frame { min-height:178px; }
    .wb-content-module-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-builder__result { grid-template-columns:1fr; gap:22px; }
    .wb-content-builder__result ul { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .wb-content-chapters__links { gap:17px; }
    .wb-content-chapters__links a { font-size:.68rem; }
    .wb-content-purpose-grid,
    .wb-content-channel-grid,
    .wb-content-process-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-choice-grid--goals { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 920px) {
    .wb-content-hero__grid { grid-template-columns:1fr; }
    .wb-content-hero__copy { max-width:820px; }
    .wb-content-hero__visual { max-width:720px; }

    .wb-content-chapters > .wb-content__container { position:relative; min-height:58px; justify-content:space-between; }
    .wb-content-chapters__label { display:block; }
    .wb-content-chapters__toggle {
        display:flex;
        align-items:center;
        justify-content:flex-end;
        gap:12px;
        min-height:58px;
        padding:0;
        border:0;
        background:transparent;
        color:var(--wb-content-heading);
        font-size:.84rem;
        font-weight:700;
        cursor:pointer;
    }
    .wb-content-chapters__toggle svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.7; transition:transform 180ms ease; }
    .wb-content-chapters.is-open .wb-content-chapters__toggle svg { transform:rotate(180deg); }
    .wb-content-chapters__links {
        position:absolute;
        top:100%;
        right:0;
        left:0;
        display:none;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:0;
        margin:0;
        border:1px solid var(--wb-content-border);
        border-top:0;
        border-radius:0 0 18px 18px;
        overflow:hidden;
        background:#fff;
        box-shadow:0 20px 45px rgba(17,24,39,.09);
    }
    .wb-content-chapters.is-open .wb-content-chapters__links { display:grid; }
    .wb-content-chapters__links a {
        min-height:67px;
        display:flex;
        align-items:center;
        padding:17px 19px;
        border-right:1px solid var(--wb-content-border);
        border-bottom:1px solid var(--wb-content-border);
        font-size:.76rem;
    }
    .wb-content-chapters__links a:nth-child(2n) { border-right:0; }
    .wb-content-chapters__links a:nth-last-child(-n+2) { border-bottom:0; }
    .wb-content-chapters__links a:last-child:nth-child(odd) { grid-column:1 / -1; border-right:0; }
    .wb-content-chapters__links a::after { display:none; }
    .wb-content-chapters__links a.is-active { color:var(--wb-content-primary); background:#fbfbff; }

    .wb-content-choice-grid,
    .wb-content-choice-grid--goals { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-module-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-builder__result ul { grid-template-columns:1fr; }
    .wb-content-repurpose { grid-template-columns:1fr; gap:18px; }
    .wb-content-repurpose__line { width:1px; height:30px; margin:auto; }
    .wb-content-ideas__panel { grid-template-columns:1fr; gap:32px; }
    .wb-content-metrics { grid-template-columns:1fr; }
    .wb-content-support-grid { grid-template-columns:1fr; }
    .wb-content-boundary { grid-template-columns:1fr; gap:22px; }
}

@media (max-width: 680px) {
    :root { --wb-content-gutter:18px; }
    .wb-content-section { padding:66px 0; }
    .wb-content-heading { margin-bottom:31px; }
    .wb-content-heading h2 { font-size:clamp(2rem,10vw,2.85rem); line-height:1.08; }
    .wb-content-heading > p:last-child { margin-top:17px; font-size:.94rem; line-height:1.7; }

    .wb-content-hero { padding:64px 0 58px; }
    .wb-content-hero__grid { gap:38px; }
    .wb-content-hero__copy h1 { max-width:610px; font-size:clamp(2.5rem,10.8vw,3.45rem); line-height:1.045; }
    .wb-content-hero__lead { margin-top:20px; font-size:.96rem; }
    .wb-content-hero__actions { align-items:flex-start; flex-direction:column; gap:14px; margin-top:24px; }
    .wb-content-workbench { padding:15px; border-radius:18px; box-shadow:0 16px 42px rgba(17,24,39,.065); }
    .wb-content-workbench__header { align-items:flex-start; flex-direction:column; gap:10px; }
    .wb-content-workbench__body { grid-template-columns:1fr; }
    .wb-content-workbench__stages { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-workbench__frame { min-height:170px; }
    .wb-content-workbench__outputs { grid-template-columns:1fr; gap:10px; }
    .wb-content-workbench__outputs > div { grid-template-columns:repeat(2,minmax(0,1fr)); }

    .wb-content-chapters { top:var(--site-header-height-mobile,64px); }
    .wb-content-chapters > .wb-content__container { width:calc(100% - 36px); }
    .wb-content-chapters__label { font-size:.64rem; }
    .wb-content-chapters__toggle { max-width:68%; font-size:.78rem; }
    .wb-content-chapters__links a { min-height:64px; padding:15px 18px; font-size:.72rem; }

    .wb-content-purpose-grid,
    .wb-content-channel-grid,
    .wb-content-process-grid,
    .wb-content-camera-grid { grid-template-columns:1fr; }
    .wb-content-purpose-grid article,
    .wb-content-channel-grid article { min-height:0; padding:21px; }

    .wb-content-builder__controls,
    .wb-content-builder__result { padding:22px 19px; }
    .wb-content-builder__question + .wb-content-builder__question { margin-top:20px; padding-top:20px; }
    .wb-content-choice-grid,
    .wb-content-choice-grid--goals { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-choice-grid span { min-height:45px; padding:8px; font-size:.68rem; }
    .wb-content-module-grid { grid-template-columns:1fr; }
    .wb-content-module-grid label > span { min-height:0; grid-template-columns:27px minmax(0,1fr); padding:13px; }
    .wb-content-builder__question-head { align-items:flex-start; flex-direction:column; gap:4px; }
    .wb-content-builder__result { grid-template-columns:1fr; gap:20px; }
    .wb-content-builder__result ul { grid-template-columns:1fr; }
    .wb-content-builder__result-action .wb-content__button { width:100%; }

    .wb-content-repurpose { padding:20px; }
    .wb-content-repurpose__source { padding:20px; }
    .wb-content-repurpose__outputs { grid-template-columns:1fr; }

    .wb-content-process-grid article { padding:22px; }
    .wb-content-ideas__tabs { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .wb-content-ideas__tabs button { min-height:54px; border-bottom:1px solid var(--wb-content-border); }
    .wb-content-ideas__tabs button:nth-child(2) { border-right:0; }
    .wb-content-ideas__tabs button:nth-last-child(-n+2) { border-bottom:0; }
    .wb-content-ideas__panel { padding:25px 20px; }
    .wb-content-ideas__panel ul { grid-template-columns:1fr; }
    .wb-content-ideas__panel li { min-height:0; }

    .wb-content-camera-grid article { min-height:0; grid-template-columns:42px minmax(0,1fr); gap:14px; padding:21px; }
    .wb-content-icon { width:42px; height:42px; }
    .wb-content-metrics__chart { padding:22px 18px; }
    .wb-content-metrics__bars { height:180px; gap:10px; }
    .wb-content-metrics__cards { grid-template-columns:1fr; }
    .wb-content-support-grid article { padding:23px; }
    .wb-content-boundary { padding:23px; }
    .wb-content-faq { margin-top:43px; }
    .wb-content-faq summary { font-size:.82rem; }
}

@media (prefers-reduced-motion: reduce) {
    .wb-content *,
    .wb-content *::before,
    .wb-content *::after { scroll-behavior:auto!important; transition:none!important; animation:none!important; }
    .wb-content.is-reveal-ready [data-reveal] { opacity:1; transform:none; }
}


/* V3 refinement — social-content cues and restored desktop builder balance */
.wb-content-workbench__account {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}
.wb-content-workbench__account > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(73, 106, 249, 0.18);
    border-radius: 9px;
    background: #f2f4ff;
    color: var(--wb-content-primary);
    font-size: 0.59rem;
    font-weight: 800;
}
.wb-content-workbench__account strong,
.wb-content-workbench__account small { display: block; }
.wb-content-workbench__account strong { font-size: 0.68rem; line-height: 1.25; }
.wb-content-workbench__account small { margin-top: 2px; color: var(--wb-content-copy); font-size: 0.53rem; }
.wb-content-workbench__engagement {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 2px 0;
    color: #5f6979;
}
.wb-content-workbench__engagement > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.wb-content-workbench__engagement svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.wb-content-workbench__engagement small { font-size: 0.55rem; font-weight: 650; }
.wb-content-workbench__engagement .wb-content-workbench__save { margin-left: auto; }

@media (min-width: 921px) {
    .wb-content-builder {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    }
    .wb-content-builder__controls { padding: clamp(27px, 3vw, 40px); }
    .wb-content-builder__question + .wb-content-builder__question {
        margin-top: 19px;
        padding-top: 19px;
    }
    .wb-content-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wb-content-choice-grid--goals { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .wb-content-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .wb-content-module-grid label > span {
        min-height: 82px;
        align-content: center;
        padding: 13px 14px;
    }
    .wb-content-builder__result {
        display: block;
        padding: clamp(28px, 3.5vw, 44px);
        border-top: 0;
        border-left: 1px solid var(--wb-content-border);
    }
    .wb-content-builder__result h3 {
        max-width: 470px;
        font-size: clamp(1.65rem, 2.4vw, 2.28rem);
    }
    .wb-content-builder__result-summary > p:not(.wb-content__eyebrow) {
        max-width: 510px;
        margin-top: 16px;
        font-size: 0.88rem;
        line-height: 1.7;
    }
    .wb-content-builder__selection { margin-top: 22px; padding-top: 20px; }
    .wb-content-builder__result ul {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 21px;
    }
    .wb-content-builder__result li {
        padding: 0 0 0 20px;
        border: 0;
        border-radius: 0;
        background: transparent;
        font-size: 0.76rem;
        line-height: 1.55;
    }
    .wb-content-builder__result li::before { left: 0; top: 0.57em; }
    .wb-content-builder__result-action {
        display: block;
        margin-top: 22px;
    }
    .wb-content-builder__price-note { margin: 0 0 18px; }
    .wb-content-builder__result-action .wb-content__button { width: auto; }
}

@media (max-width: 920px) {
    .wb-content-builder { display: block; }
    .wb-content-builder__result {
        display: block;
        border-left: 0;
        border-top: 1px solid var(--wb-content-border);
    }
}
