:root {
    --wf-ink: #11120f;
    --wf-ink-soft: #34362f;
    --wf-paper: #f5f2e9;
    --wf-surface: #fffdf7;
    --wf-surface-alt: #e9e5da;
    --wf-line: rgba(17, 18, 15, 0.18);
    --wf-line-strong: #11120f;
    --wf-yellow: #f5d90a;
    --wf-blue: #3155e7;
    --wf-green: #49d68b;
    --wf-coral: #ff6d57;
    --wf-white: #ffffff;
    --wf-radius-sm: 10px;
    --wf-radius: 18px;
    --wf-radius-lg: 28px;
    --wf-shadow: 0 24px 70px rgba(17, 18, 15, 0.1);
    --wf-max: 1240px;
    --wf-font: Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --wf-display: "Arial Black", "Helvetica Neue", Arial, var(--wf-font);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--wf-paper);
    color: var(--wf-ink);
    font-family: var(--wf-font);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--wf-blue);
    outline-offset: 3px;
}

::selection {
    background: var(--wf-yellow);
    color: var(--wf-ink);
}

.wf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wf-skip {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-160%);
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--wf-ink);
    color: var(--wf-white);
    font-weight: 800;
    text-decoration: none;
}

.wf-skip:focus {
    transform: translateY(0);
}

.wf-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--wf-line);
    background: rgba(245, 242, 233, 0.9);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
}

.wf-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 34px;
    align-items: center;
    width: min(calc(100% - 40px), var(--wf-max));
    min-height: 76px;
    margin: 0 auto;
}

.wf-brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    color: var(--wf-ink);
    text-decoration: none;
}

.wf-brand__mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 2px solid currentColor;
    border-radius: 8px;
    background: var(--wf-yellow);
    transform: rotate(-4deg);
}

.wf-brand__mark::before,
.wf-brand__mark::after {
    position: absolute;
    content: "";
    background: currentColor;
}

.wf-brand__mark::before {
    width: 18px;
    height: 3px;
}

.wf-brand__mark::after {
    width: 3px;
    height: 18px;
}

.wf-brand__word {
    display: grid;
    font-family: var(--wf-display);
    font-size: 0.87rem;
    letter-spacing: 0.04em;
    line-height: 0.9;
    text-transform: uppercase;
}

.wf-nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    gap: clamp(18px, 2.3vw, 34px);
    align-items: center;
    justify-content: center;
}

.wf-nav a {
    position: relative;
    color: var(--wf-ink-soft);
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
}

.wf-nav a::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    background: var(--wf-ink);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.wf-nav a:hover::after,
.wf-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.wf-header__actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    gap: 10px;
    align-items: center;
}

.wf-language {
    display: flex;
    flex-shrink: 0;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--wf-line-strong);
    border-radius: 999px;
    background: var(--wf-surface);
}

.wf-language > a,
.wf-language > span {
    display: grid;
    place-items: center;
    min-width: 36px;
    min-height: 36px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.wf-language > [aria-current] {
    color: var(--wf-white);
    background: var(--wf-ink);
}

.wf-language > a:hover {
    background: var(--wf-yellow);
}

.wf-tool-hero .wf-language-note {
    margin: 12px 0 0;
    color: var(--wf-ink-soft);
    font-size: 0.8rem;
}

.wf-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--wf-line-strong);
    border-radius: 50%;
    background: transparent;
    color: var(--wf-ink);
    cursor: pointer;
}

.wf-nav-toggle__lines,
.wf-nav-toggle__lines::before,
.wf-nav-toggle__lines::after {
    display: block;
    width: 18px;
    height: 2px;
    margin: auto;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
}

.wf-nav-toggle__lines::before {
    transform: translateY(-6px);
}

.wf-nav-toggle__lines::after {
    transform: translateY(4px);
}

.wf-nav-toggle[aria-expanded="true"] .wf-nav-toggle__lines {
    background: transparent;
}

.wf-nav-toggle[aria-expanded="true"] .wf-nav-toggle__lines::before {
    transform: translateY(0) rotate(45deg);
}

.wf-nav-toggle[aria-expanded="true"] .wf-nav-toggle__lines::after {
    transform: translateY(-2px) rotate(-45deg);
}

.wf-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 19px;
    border: 1.5px solid var(--wf-ink);
    border-radius: 999px;
    background: var(--wf-yellow);
    color: var(--wf-ink);
    cursor: pointer;
    font-weight: 850;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.wf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 0 -4px var(--wf-ink);
}

.wf-button--small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.88rem;
}

.wf-button--dark {
    background: var(--wf-ink);
    color: var(--wf-white);
}

.wf-button--ghost {
    background: transparent;
}

.wf-button--white {
    border-color: var(--wf-white);
    background: var(--wf-white);
}

.wf-button--full {
    width: 100%;
}

.wf-text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 820;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 5px;
}

.wf-kicker,
.wf-pill {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 7px 11px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.wf-kicker::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--wf-yellow);
    content: "";
}

.wf-section {
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto;
    padding: clamp(76px, 9vw, 128px) 0;
}

.wf-section--compact {
    padding-top: clamp(54px, 7vw, 86px);
    padding-bottom: clamp(54px, 7vw, 86px);
}

.wf-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
    gap: clamp(32px, 7vw, 100px);
    align-items: end;
    margin-bottom: clamp(38px, 6vw, 68px);
}

.wf-section-heading h2,
.wf-final-cta h2 {
    max-width: 880px;
    margin: 0;
    font-family: var(--wf-display);
    font-size: clamp(2.7rem, 6vw, 5.6rem);
    letter-spacing: -0.065em;
    line-height: 0.93;
    overflow-wrap: normal;
    text-transform: uppercase;
    text-wrap: balance;
}

.wf-section-heading p,
.wf-final-cta p {
    margin: 0;
    color: var(--wf-ink-soft);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    text-wrap: pretty;
}

.wf-section--ink {
    width: 100%;
    max-width: none;
    padding-right: max(20px, calc((100vw - var(--wf-max)) / 2));
    padding-left: max(20px, calc((100vw - var(--wf-max)) / 2));
    background: var(--wf-ink);
    color: var(--wf-white);
}

.wf-section--ink .wf-section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

/* Landing */
.wf-hero {
    width: min(calc(100% - 40px), 1420px);
    margin: 28px auto 0;
}

.wf-hero__panel {
    position: relative;
    min-height: min(760px, calc(100svh - 132px));
    overflow: hidden;
    border-radius: var(--wf-radius-lg);
    background: var(--wf-ink);
    color: var(--wf-white);
    box-shadow: var(--wf-shadow);
    isolation: isolate;
}

.wf-hero__media,
.wf-hero__media::after {
    position: absolute;
    inset: 0;
}

.wf-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wf-hero__media::after {
    background:
        linear-gradient(90deg, rgba(17, 18, 15, 0.96) 3%, rgba(17, 18, 15, 0.78) 42%, rgba(17, 18, 15, 0.13) 80%),
        linear-gradient(0deg, rgba(17, 18, 15, 0.78), transparent 52%);
    content: "";
}

.wf-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 830px;
    padding: clamp(34px, 6vw, 78px);
}

.wf-hero h1 {
    max-width: 100%;
    margin: 0;
    font-family: var(--wf-display);
    font-size: clamp(3rem, 6.1vw, 5.8rem);
    letter-spacing: -0.075em;
    line-height: 0.83;
    overflow-wrap: normal;
    text-transform: uppercase;
    text-wrap: balance;
}

.wf-hero__lead {
    max-width: 690px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    font-weight: 540;
    text-wrap: pretty;
}

.wf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.wf-hero__signal {
    position: absolute;
    top: clamp(24px, 4vw, 52px);
    right: clamp(24px, 4vw, 52px);
    z-index: 2;
    display: grid;
    grid-template-columns: auto auto;
    gap: 9px;
    align-items: center;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    background: rgba(17, 18, 15, 0.68);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.wf-hero__signal::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--wf-green);
    box-shadow: 0 0 0 5px rgba(73, 214, 139, 0.2);
    content: "";
}

.wf-proofbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 18px auto 0;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    background: var(--wf-surface);
}

.wf-proofbar__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    align-items: start;
    min-width: 0;
    padding: 22px;
    border-right: 1px solid var(--wf-line);
}

.wf-proofbar__item:last-child {
    border-right: 0;
}

.wf-proofbar__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--wf-yellow);
    font-size: 0.78rem;
    font-weight: 900;
}

.wf-proofbar__item:nth-child(2) .wf-proofbar__icon {
    background: var(--wf-green);
}

.wf-proofbar__item:nth-child(3) .wf-proofbar__icon {
    background: var(--wf-coral);
}

.wf-proofbar strong,
.wf-proofbar span {
    display: block;
}

.wf-proofbar strong {
    line-height: 1.25;
}

.wf-proofbar span {
    margin-top: 4px;
    color: var(--wf-ink-soft);
    font-size: 0.86rem;
}

.wf-proofbar .wf-proofbar__icon {
    display: grid;
    margin-top: 0;
    color: var(--wf-ink);
}

.wf-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    counter-reset: process;
}

.wf-process__card {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    background: var(--wf-surface);
    counter-increment: process;
    transition: transform 180ms ease, border-color 180ms ease;
}

.wf-process__card:hover {
    border-color: var(--wf-line-strong);
    transform: translateY(-5px);
}

.wf-process__card::before {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 58px;
    border-radius: 50%;
    background: var(--wf-yellow);
    content: counter(process, decimal-leading-zero);
    font-size: 0.78rem;
    font-weight: 900;
}

.wf-process__card:nth-child(2)::before {
    background: var(--wf-green);
}

.wf-process__card:nth-child(3)::before {
    background: var(--wf-coral);
}

.wf-process__card:nth-child(4)::before {
    background: var(--wf-blue);
    color: var(--wf-white);
}

.wf-process h3,
.wf-outcome-card h3,
.wf-live h3,
.wf-tool h1,
.wf-tool h2,
.wf-tool h3 {
    margin: 0;
    font-family: var(--wf-display);
    letter-spacing: -0.035em;
    line-height: 0.98;
    overflow-wrap: normal;
    text-transform: uppercase;
    text-wrap: balance;
}

.wf-process h3 {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.wf-process p {
    margin: 15px 0 0;
    color: var(--wf-ink-soft);
    font-size: 0.95rem;
}

.wf-process-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 24px 26px;
    border-radius: var(--wf-radius);
    background: var(--wf-yellow);
}

.wf-process-cta p {
    max-width: 720px;
    margin: 0;
    font-weight: 720;
}

.wf-method-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
    gap: clamp(30px, 7vw, 100px);
    align-items: start;
}

.wf-method-intro {
    position: sticky;
    top: 112px;
}

.wf-method-intro h2 {
    margin: 0;
    font-family: var(--wf-display);
    font-size: clamp(3rem, 6vw, 5.6rem);
    letter-spacing: -0.065em;
    line-height: 0.93;
    text-transform: uppercase;
    text-wrap: balance;
}

.wf-method-intro > p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
}

.wf-method-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wf-method-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wf-method-step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.wf-method-step > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--wf-yellow);
    font-size: 0.78rem;
    font-weight: 900;
}

.wf-method-step strong {
    display: block;
    font-family: var(--wf-display);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.wf-method-step p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.wf-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.wf-outcome-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    background: var(--wf-surface);
}

.wf-outcome-card__tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--wf-yellow);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.wf-outcome-card:nth-child(2) .wf-outcome-card__tag {
    background: var(--wf-green);
}

.wf-outcome-card:nth-child(3) .wf-outcome-card__tag {
    background: var(--wf-coral);
}

.wf-outcome-card h3 {
    margin-top: 58px;
    font-size: clamp(1.8rem, 2.7vw, 2.8rem);
}

.wf-outcome-card p {
    margin: 14px 0 0;
    color: var(--wf-ink-soft);
}

.wf-outcome-card a {
    margin-top: 28px;
}

.wf-trust {
    padding: clamp(28px, 5vw, 58px);
    border-radius: var(--wf-radius-lg);
    background: #233ec0;
    color: var(--wf-white);
    box-shadow: var(--wf-shadow);
}

.wf-trust__intro {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.65fr);
    gap: 38px;
    align-items: end;
}

.wf-trust__intro h2 {
    margin: 0;
    font-family: var(--wf-display);
    font-size: clamp(3rem, 6vw, 5.8rem);
    letter-spacing: -0.06em;
    line-height: 0.9;
    overflow-wrap: normal;
    hyphens: none;
    text-transform: uppercase;
}

.wf-trust__intro p {
    margin: 0;
    color: var(--wf-white);
    font-size: 1.05rem;
}

.wf-trust__intro p strong {
    display: block;
    margin-bottom: 8px;
    color: var(--wf-white);
}

.wf-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.wf-trust__item {
    min-height: 230px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: var(--wf-radius-sm);
    background: rgba(255, 255, 255, 0.08);
}

.wf-trust__item > span {
    color: var(--wf-yellow);
    font-size: 0.78rem;
    font-weight: 900;
}

.wf-trust__item strong {
    display: block;
    margin-top: 54px;
    font-family: var(--wf-display);
    font-size: 1.3rem;
    line-height: 1;
    text-transform: uppercase;
}

.wf-trust__item p {
    margin: 11px 0 0;
    color: var(--wf-white);
    font-size: 0.9rem;
}

.wf-live {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 14px;
}

.wf-live__column {
    min-width: 0;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    background: var(--wf-surface);
}

.wf-live__column--dark {
    background: var(--wf-ink);
    color: var(--wf-white);
}

.wf-live__header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.wf-live h3 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.wf-live__count {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-weight: 850;
}

.wf-post-list,
.wf-event-list {
    display: grid;
    gap: 12px;
}

.wf-post-card a {
    display: grid;
    grid-template-columns: 156px 1fr;
    min-height: 160px;
    overflow: hidden;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-paper);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease;
}

.wf-post-card a:hover,
.wf-event-card a:hover {
    border-color: currentColor;
    transform: translateY(-3px);
}

.wf-post-card__media {
    min-height: 160px;
    overflow: hidden;
    background: var(--wf-yellow);
}

.wf-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wf-post-card__media span {
    display: grid;
    height: 100%;
    place-items: center;
    font-family: var(--wf-display);
    font-size: 1.7rem;
    line-height: 0.85;
    text-align: center;
    text-transform: uppercase;
}

.wf-post-card__body,
.wf-event-card__body {
    padding: 20px;
}

.wf-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin-bottom: 11px;
    color: var(--wf-ink-soft);
    font-size: 0.75rem;
    font-weight: 760;
    text-transform: uppercase;
}

.wf-post-card h4,
.wf-event-card h4 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.2;
}

.wf-post-card p,
.wf-event-card p {
    display: -webkit-box;
    margin: 9px 0 0;
    overflow: hidden;
    color: var(--wf-ink-soft);
    font-size: 0.9rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wf-card-action {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.83rem;
    font-weight: 830;
}

.wf-event-card a {
    display: grid;
    grid-template-columns: 74px 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--wf-radius-sm);
    color: var(--wf-white);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease;
}

.wf-event-card__date {
    display: grid;
    align-content: center;
    justify-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--wf-yellow);
    color: var(--wf-ink);
    text-transform: uppercase;
}

.wf-event-card__date strong {
    font-family: var(--wf-display);
    font-size: 1.8rem;
    line-height: 1;
}

.wf-event-card .wf-card-meta,
.wf-event-card p {
    color: rgba(255, 255, 255, 0.64);
}

.wf-empty-state {
    padding: 36px;
    border: 1px dashed currentColor;
    border-radius: var(--wf-radius-sm);
    text-align: center;
}

.wf-empty-state strong {
    display: block;
    font-size: 1.05rem;
}

.wf-empty-state p {
    margin: 7px 0 0;
    opacity: 0.66;
}

.wf-accordion {
    max-width: 920px;
    margin: 0 auto;
    border-top: 1px solid var(--wf-line-strong);
}

.wf-accordion__item {
    border-bottom: 1px solid var(--wf-line-strong);
}

.wf-accordion__item summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    list-style: none;
}

.wf-accordion__item summary::-webkit-details-marker {
    display: none;
}

.wf-accordion__item summary strong {
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.wf-accordion__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
}

.wf-accordion__panel {
    max-width: 720px;
    padding: 0 56px 24px 0;
}

.wf-accordion__panel p {
    margin: 0;
    color: var(--wf-ink-soft);
}

.wf-accordion__icon::before {
    content: "+";
}

.wf-accordion__item[open] .wf-accordion__icon::before {
    content: "−";
}

.wf-final-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 44px;
    align-items: end;
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto clamp(76px, 9vw, 120px);
    padding: clamp(34px, 6vw, 70px);
    border-radius: var(--wf-radius-lg);
    background: var(--wf-yellow);
}

.wf-final-cta h2 {
    max-width: 900px;
    font-size: clamp(2.5rem, 5.6vw, 5.3rem);
}

.wf-final-cta p {
    max-width: 700px;
    margin-top: 20px;
}

/* Network tool */
.wf-breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto;
    padding-top: 28px;
    color: var(--wf-ink-soft);
    font-size: 0.78rem;
    font-weight: 760;
}

.wf-breadcrumb a {
    text-decoration-color: var(--wf-line);
    text-underline-offset: 4px;
}

.wf-breadcrumb [aria-current="page"] {
    color: var(--wf-ink);
}

.wf-tool-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
    gap: 38px;
    align-items: end;
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 96px) 0 42px;
}

.wf-tool h1 {
    max-width: 780px;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    line-height: 1.02;
}

.wf-tool-hero__lead {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--wf-ink-soft);
    font-size: 1.08rem;
}

.wf-board-entry {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.wf-board-start p {
    margin: 8px 0 0;
    color: var(--wf-ink-soft);
    font-size: 0.85rem;
}

.wf-board-switcher {
    width: min(100%, 310px);
    padding: 16px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    background: var(--wf-surface);
}

.wf-board-switcher label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wf-board-switcher p {
    margin: 12px 0 0;
    color: var(--wf-ink-soft);
    font-size: 0.85rem;
}

.wf-board-switcher__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.wf-board-switcher input {
    min-width: 0;
}

.wf-board-switcher button {
    width: 44px;
    min-height: 44px;
    padding: 0;
}

.wf-board-refresh {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto 18px;
}

.wf-board-refresh p {
    margin: 0;
    color: var(--wf-ink-soft);
    font-size: 0.86rem;
}

.wf-board-refresh [hidden] {
    display: none;
}

.wf-board-refresh [aria-disabled="true"] {
    cursor: progress;
}

.wf-board-share {
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto 18px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-surface);
}

.wf-board-share summary {
    padding: 13px 18px;
    cursor: pointer;
    font-weight: 800;
}

.wf-board-share__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    padding: 4px 18px 18px;
}

.wf-board-share__body p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--wf-ink-soft);
    font-size: 0.86rem;
}

.wf-board-share [data-board-copy][hidden] {
    display: none;
}

.wf-board-share [role="status"] {
    min-height: 1.4em;
    font-weight: 700;
}

.wf-statusbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto 18px;
}

.wf-status {
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-surface);
}

.wf-status span,
.wf-status strong {
    display: block;
}

.wf-status span {
    color: var(--wf-ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wf-status strong {
    margin-top: 4px;
    font-family: var(--wf-display);
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    letter-spacing: -0.04em;
    line-height: 1;
    overflow-wrap: normal;
}

/* Codes are identifiers: keep them intact and allow selecting/scrolling the
   complete value, even when a board uses the maximum 48 characters. */
.wf-status--code strong {
    overflow-x: auto;
    white-space: nowrap;
    font-family: var(--wf-font);
    font-size: 1rem;
    letter-spacing: normal;
    line-height: 1.5;
}

.wf-tool-workspace {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    gap: 18px;
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto;
}

.wf-tool-workspace--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 800px;
}

.wf-tool-panel {
    min-width: 0;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    background: var(--wf-surface);
}

.wf-tool-panel--results {
    background: var(--wf-ink);
    color: var(--wf-white);
}

.wf-tool-panel__head {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.wf-tool-panel__head > div,
.wf-trust__intro > * {
    min-width: 0;
}

.wf-tool h2 {
    font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.wf-tool h3 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.wf-tool-panel__head p {
    max-width: 600px;
    margin: 10px 0 0;
    color: var(--wf-ink-soft);
}

.wf-tool-panel--results .wf-tool-panel__head p {
    color: rgba(255, 255, 255, 0.62);
}

.wf-tool-panel__head--review {
    flex-wrap: wrap;
}

.wf-review {
    width: min(calc(100% - 40px), 1100px);
    margin: 0 auto;
    padding-bottom: 64px;
}

.wf-review .wf-breadcrumb--review {
    width: 100%;
}

.wf-review__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: end;
    margin: 32px 0;
}

.wf-review__heading h1 {
    margin: 20px 0 0;
    font-family: var(--wf-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: -0.055em;
    line-height: 1;
    text-transform: uppercase;
}

.wf-review__heading p,
.wf-review-results__head p,
.wf-review-export p {
    color: var(--wf-ink-soft);
}

.wf-review-search {
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    background: var(--wf-surface);
}

.wf-review-scope {
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius);
    background: #fff1bf;
    overflow-wrap: normal;
}

.wf-review-scope h2 {
    margin: 16px 0 10px;
    font-size: 1.4rem;
    scroll-margin-top: 96px;
}

.wf-review-scope p {
    margin: 0 0 14px;
    color: var(--wf-ink-soft);
    font-size: 0.9rem;
}

.wf-review-search > label {
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
}

.wf-review-search__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.wf-review-search input {
    min-width: 0;
    width: 100%;
}

.wf-review-search > a {
    display: inline-flex;
    margin-top: 16px;
}

.wf-review-results {
    margin-top: 36px;
    scroll-margin-top: 96px;
}

.wf-review-results__head,
.wf-review-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.wf-review-results__head h2,
.wf-review-export h2 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.wf-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.wf-review-selection {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-surface);
}

.wf-review-selection > div {
    flex: 1 1 260px;
    min-width: 0;
}

.wf-review-selection p {
    margin: 0;
    color: var(--wf-ink-soft);
    font-size: 0.85rem;
    line-height: 1.5;
}

.wf-review-selection p + p {
    margin-top: 6px;
}

.wf-review-grid .wf-impulse {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-surface);
    overflow-wrap: normal;
}

.wf-review-grid .wf-impulse p {
    white-space: pre-line;
}

.wf-review-grid .wf-empty-state {
    grid-column: 1 / -1;
}

.wf-review-pagination {
    margin-top: 28px;
}

.wf-review-pagination > span {
    font-weight: 750;
}

.wf-review-export {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--wf-line);
}

.wf-review-export__links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 18px 0;
}

.wf-review-export__note {
    max-width: 75ch;
    font-size: 0.85rem;
}

.wf-export-error {
    width: calc(100% - 40px);
    max-width: 760px;
    margin: clamp(28px, 6vw, 76px) auto;
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-surface);
}

.wf-export-error h1 {
    margin: 14px 0 24px;
    font-family: var(--wf-font);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: none;
    line-height: 1.12;
    overflow-wrap: normal;
}

.wf-export-error p {
    line-height: 1.6;
    color: var(--wf-ink-soft);
}

.wf-export-error .wf-export-error__message {
    color: var(--wf-ink);
    font-size: 1.1rem;
    font-weight: 650;
}

.wf-export-error__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 24px;
}

.wf-export-error__actions > a {
    white-space: normal;
}

.wf-export-error__note {
    font-size: 0.8rem;
}

@media (max-width: 620px) {
    .wf-review__heading,
    .wf-review-grid,
    .wf-review-search__row {
        grid-template-columns: minmax(0, 1fr);
    }

    .wf-review__heading {
        gap: 12px;
    }

    .wf-review-pagination {
        justify-content: flex-start;
    }
}

.wf-data-menu {
    position: relative;
    flex: 0 0 auto;
}

.wf-data-menu summary {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 820;
    list-style: none;
}

.wf-data-menu summary::-webkit-details-marker {
    display: none;
}

.wf-data-menu__links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 5;
    display: grid;
    width: 180px;
    overflow: hidden;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-surface);
    color: var(--wf-ink);
    box-shadow: var(--wf-shadow);
}

.wf-data-menu__links a {
    padding: 10px 13px;
    border-bottom: 1px solid var(--wf-line);
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: none;
}

.wf-data-menu__links a:last-child {
    border-bottom: 0;
}

.wf-form {
    display: grid;
    gap: 26px;
}

.wf-form-hint {
    margin: 0 0 4px;
    color: var(--wf-ink-soft);
    font-size: 0.9rem;
}

.wf-form-extra {
    min-width: 0;
    padding-top: 16px;
    border-top: 1px solid var(--wf-line);
}

.wf-form-extra summary {
    margin-bottom: 14px;
    font-weight: 760;
    cursor: pointer;
}

.wf-notice {
    padding: 18px 20px;
    border: 1px solid currentColor;
    border-radius: var(--wf-radius-sm);
    overflow-wrap: normal;
}

.wf-notice p {
    margin: 6px 0 0;
}

.wf-notice ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.wf-notice a {
    text-underline-offset: 3px;
}

.wf-notice--success {
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto 18px;
    color: #174b2f;
    background: #e4f6e9;
}

.wf-notice--error {
    color: #842d20;
    background: #fff0eb;
}

.wf-notice--warning {
    color: #564014;
    background: #fff1bf;
}

.wf-board-notice {
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 0 auto 18px;
}

.wf-notice .wf-text-link {
    margin-top: 14px;
}

.wf-notice .wf-retry-hint {
    font-size: 0.85rem;
}

.wf-analysis-alternatives {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}

.wf-field-errors {
    margin: 0;
    padding-left: 18px;
    color: #842d20;
    font-size: 0.86rem;
}

.wf-form [aria-invalid="true"],
.wf-board-switcher [aria-invalid="true"] {
    border-color: #842d20;
}

.wf-form button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.wf-form fieldset {
    display: grid;
    gap: 14px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.wf-form legend:not(.wf-sr-only) {
    width: 100%;
    margin-bottom: 14px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--wf-line);
    color: var(--wf-ink-soft);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wf-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wf-field,
.wf-checkbox {
    display: grid;
    gap: 7px;
    min-width: 0;
    color: var(--wf-ink-soft);
    font-size: 0.86rem;
    font-weight: 760;
}

.wf-field--wide {
    grid-column: 1 / -1;
}

.wf-field input,
.wf-field select,
.wf-field textarea,
.wf-review-search input[type="search"],
.wf-board-switcher input {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-paper);
    color: var(--wf-ink);
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.wf-field textarea {
    min-height: 112px;
    resize: vertical;
}

.wf-field input:hover,
.wf-field select:hover,
.wf-field textarea:hover,
.wf-review-search input[type="search"]:hover,
.wf-board-switcher input:hover {
    border-color: rgba(17, 18, 15, 0.45);
}

.wf-field input:focus,
.wf-field select:focus,
.wf-field textarea:focus,
.wf-review-search input[type="search"]:focus,
.wf-board-switcher input:focus {
    border-color: var(--wf-blue);
    background: var(--wf-surface);
    box-shadow: 0 0 0 3px rgba(49, 85, 231, 0.13);
}

.wf-checkbox {
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    cursor: pointer;
    font-weight: 650;
}

.wf-checkbox input {
    width: 20px;
    height: 20px;
    margin: 1px 0 0;
    accent-color: var(--wf-blue);
}

.wf-transparency {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 15px;
    border-radius: var(--wf-radius-sm);
    background: rgba(73, 214, 139, 0.16);
}

.wf-transparency__icon {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--wf-green);
    font-size: 0.78rem;
    font-weight: 900;
}

.wf-transparency strong,
.wf-transparency p {
    display: block;
}

.wf-transparency strong {
    font-size: 0.84rem;
}

.wf-transparency p {
    margin: 3px 0 0;
    color: var(--wf-ink-soft);
    font-size: 0.77rem;
}

.wf-cluster-list,
.wf-connection-list,
.wf-impulse-list {
    display: grid;
    gap: 10px;
}

.wf-cluster {
    min-width: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--wf-radius-sm);
    background: rgba(255, 255, 255, 0.07);
    overflow-wrap: normal;
}

.wf-cluster__head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
}

.wf-cluster__count {
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--wf-yellow);
    color: var(--wf-ink);
    font-weight: 900;
}

.wf-cluster__link {
    margin-top: 18px;
}

.wf-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 15px;
}

.wf-meta span {
    max-width: 100%;
    padding: 5px 8px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 780;
    line-height: 1;
    text-transform: uppercase;
    overflow-wrap: normal;
}

.wf-tool-panel--results .wf-meta span {
    color: rgba(255, 255, 255, 0.72);
}

.wf-tool-lower {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(calc(100% - 40px), var(--wf-max));
    margin: 18px auto clamp(76px, 8vw, 110px);
}

.wf-tool-lower--single {
    grid-template-columns: minmax(0, 1fr);
}

.wf-connection,
.wf-impulse {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--wf-line);
    border-radius: var(--wf-radius-sm);
    background: var(--wf-paper);
    overflow-wrap: normal;
}

.wf-connection {
    background: rgba(245, 217, 10, 0.22);
}

.wf-connections-intro {
    margin: 0 0 20px;
    color: var(--wf-ink-soft);
    font-size: 0.9rem;
}

.wf-connection > summary {
    cursor: pointer;
    list-style: none;
}

.wf-connection > summary::-webkit-details-marker {
    display: none;
}

.wf-connection > summary h3 {
    margin: 0;
}

.wf-connection__title {
    display: block;
    margin-top: 10px;
    overflow-wrap: normal;
}

.wf-connection__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: none;
}

.wf-connection__indicator {
    font-size: 1.5rem;
    line-height: 1;
}

.wf-connection[open] .wf-connection__indicator {
    transform: rotate(45deg);
}

.wf-connection__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--wf-line);
}

.wf-connection__body h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
    overflow-wrap: normal;
}

.wf-connection__comparison {
    display: grid;
    gap: 12px;
}

.wf-connection__comparison .wf-impulse > .wf-kicker {
    margin-bottom: 12px;
}

.wf-connection__next {
    padding: 16px;
    border-radius: var(--wf-radius-sm);
    background: var(--wf-paper);
}

.wf-impulse__label,
.wf-impulse__text {
    display: block;
}

.wf-impulse__label {
    margin-bottom: 4px;
    font-size: 0.78rem;
}

.wf-impulse__text {
    white-space: pre-wrap;
    overflow-wrap: normal;
}

.wf-connection p,
.wf-impulse p {
    margin: 9px 0 0;
    color: var(--wf-ink-soft);
    font-size: 0.9rem;
}

.wf-tool .wf-empty-state {
    color: inherit;
}

.wf-tool-panel--results .wf-empty-state {
    border-color: rgba(255, 255, 255, 0.34);
}

/* Footer */
.wf-footer {
    padding: 60px max(20px, calc((100vw - var(--wf-max)) / 2)) 24px;
    background: var(--wf-ink);
    color: var(--wf-white);
}

.wf-footer__main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    padding-bottom: 50px;
}

.wf-brand--footer {
    color: var(--wf-white);
}

.wf-footer__main p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.58);
}

.wf-footer nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 36px;
}

.wf-footer nav a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.wf-footer nav a:hover {
    color: var(--wf-white);
}

.wf-footer__meta {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

@media (max-width: 1060px) {
    .wf-header__inner {
        gap: 20px;
    }

    .wf-nav {
        gap: 18px;
    }

    .wf-header__actions > .wf-button {
        display: none;
    }

    .wf-process,
    .wf-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wf-tool-workspace {
        grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr);
    }
}

@media (max-width: 820px) {
    .wf-header {
        position: static;
    }

    .wf-navigation-ready .wf-header {
        position: sticky;
    }

    .wf-header__inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: 68px;
    }

    .wf-navigation-ready .wf-nav-toggle {
        display: block;
    }

    .wf-header__actions {
        grid-column: 2;
    }

    .wf-header__actions .wf-button {
        display: none;
    }

    .wf-nav {
        display: grid;
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 20px;
        padding-bottom: 14px;
    }

    .wf-navigation-ready .wf-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        grid-template-columns: minmax(0, 1fr);
        max-height: calc(100svh - 69px);
        overflow-y: auto;
        align-content: start;
        justify-content: stretch;
        padding: 12px 20px 20px;
        border-bottom: 1px solid var(--wf-line);
        background: var(--wf-paper);
        box-shadow: var(--wf-shadow);
    }

    .wf-navigation-ready .wf-nav.is-open {
        display: grid;
    }

    .wf-nav a {
        padding: 17px 0;
        border-bottom: 1px solid var(--wf-line);
        font-family: var(--wf-display);
        font-size: 1.1rem;
        line-height: 1;
        text-transform: uppercase;
        overflow-wrap: normal;
    }

    .wf-nav a::after {
        display: none;
    }

    .wf-section-heading,
    .wf-method-wrap,
    .wf-trust__intro,
    .wf-live,
    .wf-tool-hero,
    .wf-tool-workspace,
    .wf-tool-lower,
    .wf-final-cta {
        grid-template-columns: 1fr;
    }

    .wf-section-heading {
        align-items: start;
    }

    .wf-method-intro {
        position: static;
    }

    .wf-proofbar {
        grid-template-columns: 1fr;
    }

    .wf-proofbar__item {
        border-right: 0;
        border-bottom: 1px solid var(--wf-line);
    }

    .wf-proofbar__item:last-child {
        border-bottom: 0;
    }

    .wf-outcomes {
        grid-template-columns: 1fr;
    }

    .wf-outcome-card {
        min-height: 260px;
    }

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

    .wf-tool-hero {
        align-items: start;
    }

    .wf-board-switcher {
        width: 100%;
    }

    .wf-final-cta {
        align-items: start;
    }

    .wf-footer__main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .wf-header__inner,
    .wf-section,
    .wf-proofbar,
    .wf-breadcrumb,
    .wf-tool-hero,
    .wf-board-refresh,
    .wf-board-share,
    .wf-statusbar,
    .wf-tool-workspace,
    .wf-tool-lower,
    .wf-final-cta {
        width: min(calc(100% - 28px), var(--wf-max));
    }

    .wf-hero {
        width: calc(100% - 16px);
        margin-top: 8px;
    }

    .wf-board-share__body {
        grid-template-columns: minmax(0, 1fr);
    }

    .wf-hero__panel {
        min-height: 690px;
        border-radius: 20px;
    }

    .wf-hero__media img {
        object-position: 62% center;
    }

    .wf-hero__media::after {
        background:
            linear-gradient(0deg, rgba(17, 18, 15, 0.98) 7%, rgba(17, 18, 15, 0.74) 61%, rgba(17, 18, 15, 0.18) 100%);
    }

    .wf-hero__content {
        padding: 24px;
    }

    .wf-hero h1 {
        font-size: clamp(2.15rem, 11vw, 3.8rem);
    }

    .wf-hero__lead {
        font-size: 1rem;
    }

    .wf-hero__signal {
        top: 18px;
        right: 18px;
    }

    .wf-hero__actions,
    .wf-hero__actions .wf-button {
        width: 100%;
    }

    .wf-process,
    .wf-trust__grid,
    .wf-statusbar,
    .wf-field-grid {
        grid-template-columns: 1fr;
    }

    .wf-process__card {
        min-height: 230px;
    }

    .wf-process__card::before,
    .wf-outcome-card h3,
    .wf-trust__item strong {
        margin-top: 0;
        margin-bottom: 36px;
    }

    .wf-process-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .wf-method-step {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .wf-trust {
        border-radius: 20px;
    }

    .wf-trust__item {
        min-height: 0;
    }

    .wf-live__column,
    .wf-tool-panel {
        padding: 20px;
    }

    .wf-post-card a {
        grid-template-columns: 1fr;
    }

    .wf-post-card__media {
        min-height: 190px;
    }

    .wf-tool h1 {
        font-size: clamp(2.15rem, 10vw, 3.5rem);
    }

    .wf-tool-panel--results h2 {
        font-size: 1.65rem;
        overflow-wrap: normal;
        hyphens: none;
    }

    .wf-tool-panel__head {
        display: grid;
    }

    .wf-data-menu {
        width: fit-content;
    }

    .wf-data-menu__links {
        right: auto;
        left: 0;
    }

    .wf-footer nav {
        grid-template-columns: 1fr;
    }

    .wf-footer__meta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* Size display text to its actual column, so German compound words stay whole
   at intermediate widths as well as on phones. These containers have explicit
   grid/flex allocation; inline containment never determines the column width. */
.wf-section-heading > div,
.wf-hero__content,
.wf-method-intro,
.wf-trust__intro > div,
.wf-final-cta > div,
.wf-tool-hero > div:first-child,
.wf-tool-panel__head > div,
.wf-review__heading > div,
.wf-outcome-card > div {
    min-width: 0;
    container-type: inline-size;
}

.wf-hero__content {
    width: 100%;
}

.wf-tool-panel__head {
    grid-template-columns: minmax(0, 1fr);
    flex-wrap: wrap;
}

.wf-tool-panel__head > div {
    flex: 1 1 100%;
}

.wf-section-heading h2 {
    font-size: min(clamp(2.7rem, 6vw, 5.6rem), 14cqi);
}

.wf-hero h1 {
    font-size: min(clamp(2.15rem, 6.1vw, 5.8rem), 15cqi);
}

.wf-method-intro h2,
.wf-final-cta h2 {
    font-size: min(clamp(2.5rem, 5.6vw, 5.3rem), 14cqi);
}

.wf-trust__intro h2 {
    font-size: min(clamp(3rem, 6vw, 5.8rem), 10.4cqi);
}

.wf-tool h1,
.wf-review__heading h1 {
    font-size: min(clamp(2.15rem, 5.5vw, 5rem), 10cqi);
}

.wf-tool-panel__head h2 {
    font-size: min(clamp(2rem, 3.6vw, 3.5rem), 14cqi);
}

.wf-outcome-card h3 {
    font-size: min(clamp(1.5rem, 3vw, 2.4rem), 10cqi);
}

/* Arbitrarily long participant words and URLs remain readable at their normal
   size through local scrolling, without widening the page or breaking words. */
.wf-impulse h3,
.wf-impulse h4,
.wf-impulse__text,
.wf-cluster__head h3,
.wf-connection__title,
.wf-meta span,
.wf-review-scope h2,
.wf-review__heading .wf-kicker,
.wf-notice,
.wf-cluster p,
.wf-connection p,
.wf-impulse p {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
}

.wf-breadcrumb {
    flex-wrap: wrap;
}

/* The longest editorial compounds need more room than the shorter headings. */
#network-title {
    font-size: min(clamp(2.7rem, 6vw, 5.6rem), 7.8cqi);
}

#clusters-title {
    font-size: min(clamp(2rem, 3.6vw, 3.5rem), 7.8cqi);
}

#connections-title {
    font-size: min(clamp(2rem, 3.6vw, 3.5rem), 6.4cqi);
}

#entry-title {
    font-size: min(clamp(2.7rem, 6vw, 5.6rem), 12cqi);
}

.wf-connection__action {
    flex-wrap: wrap;
}

/* Scroll containers need enough line height for display-font descenders. */
.wf-cluster__head h3,
.wf-impulse h3,
.wf-connection__title {
    padding-block: 0.12em;
    line-height: 1.2;
}

@media (max-width: 620px) {
    /* The always-visible navigation also fits when JavaScript is disabled. */
    .wf-nav {
        grid-template-columns: minmax(0, 1fr);
    }
}
